* Makefile.in (WARN_CFLAGS): Get it from configure.
[deliverable/binutils-gdb.git] / gdb / gdbserver / ChangeLog
1 2010-08-26 Pedro Alves <pedro@codesourcery.com>
2
3 * Makefile.in (WARN_CFLAGS): Get it from configure.
4 (WERROR_CFLAGS): New.
5 (INTERNAL_CFLAGS): Add WERROR_CFLAGS.
6 * configure.ac: Introduce --enable-werror, which adds -Werror to
7 the compiler command line. Enabled by default. Disable with
8 --disable-werror. Add -Wdeclaration-after-statement
9 Wpointer-arith and -Wformat-nonliteral to warning flags.
10 * configure: Regenerate.
11
12 2010-08-26 Pedro Alves <pedro@codesourcery.com>
13
14 * mem-break.c [HAVE_MALLOC_H]: Include malloc.h.
15
16 2010-08-26 Pedro Alves <pedro@codesourcery.com>
17
18 * gdbreplay.c (remote_error): New.
19 (gdbchar): New.
20 (expect): Use gdbchar. Check for error reading from GDB.
21 Clarify sync error output.
22 (play): Check for errors writing to GDB.
23 * linux-low.c (sigchld_handler): Really ignore `write' errors.
24 * remote-utils.c (getpkt): Check for errors writing to the remote
25 descriptor.
26
27 2010-08-25 Pedro Alves <pedro@codesourcery.com>
28
29 * linux-low.c (linux_wait_1): Move non-debugging code out of
30 `debug_threads' control.
31
32 2010-08-25 Pedro Alves <pedro@codesourcery.com>
33
34 * linux-low.c (linux_wait_1): Don't set last_status here.
35 * server.c (push_event, queue_stop_reply_callback): Assert we're
36 not pushing a TARGET_WAITKIND_IGNORE event.
37 (start_inferior, start_inferior, attach_inferior, handle_v_cont)
38 (myresume, handle_target_event): Set the thread's last_resume_kind
39 and last_status from the target returned status.
40
41 2010-08-25 Pedro Alves <pedro@codesourcery.com>
42
43 PR threads/10729
44
45 * linux-x86-low.c (update_debug_registers_callback): New.
46 (i386_dr_low_set_addr): Use it.
47 (i386_dr_low_get_addr): New.
48 (i386_dr_low_set_control): Use update_debug_registers_callback.
49 (i386_dr_low_get_control): New.
50 (i386_dr_low_get_status): Adjust.
51 * linux-low.c (linux_stop_lwp): New.
52 * linux-low.h (linux_stop_lwp): Declare.
53
54 * i386-low.c (I386_DR_GET_RW_LEN): Take the dr7 contents as
55 argument instead of a i386_debug_reg_state.
56 (I386_DR_WATCH_HIT): Take the dr6 contents as argument instead of
57 a i386_debug_reg_state.
58 (i386_insert_aligned_watchpoint): Adjust.
59 (i386_remove_aligned_watchpoint): Adjust.
60 (i386_low_stopped_data_address): Read the debug registers from the
61 inferior instead of from the mirrors.
62 * i386-low.h (struct i386_debug_reg_state): Extend comment.
63 (i386_dr_low_get_addr): Declare.
64 (i386_dr_low_get_control): Declare.
65 (i386_dr_low_get_status): Change prototype.
66
67 * win32-i386-low.c (dr_status_mirror, dr_control_mirror): New globals.
68 (i386_dr_low_get_addr): New.
69 (i386_dr_low_get_control): New.
70 (i386_dr_low_get_status): Adjust prototype. Return
71 dr_status_mirror.
72 (i386_initial_stuff): Clear dr_status_mirror and
73 dr_control_mirror.
74 (i386_get_thread_context): Adjust.
75 (i386_set_thread_context): Adjust.
76 (i386_thread_added): Adjust.
77
78 2010-08-24 Pedro Alves <pedro@codesourcery.com>
79
80 * linux-low.h (linux_thread_area): Delete declaration.
81
82 2010-08-11 Thomas Schwinge <thomas@codesourcery.com>
83
84 * linux-low.c (linux_wait_1): Correctly return the ptid of the child
85 after its termination.
86
87 2010-08-09 Pedro Alves <pedro@codesourcery.com>
88
89 * linux-low.c (gdb_wants_lwp_stopped): Delete.
90 (gdb_wants_all_stopped): Delete.
91 (linux_wait_1): Don't call them.
92 * server.c (handle_v_cont): Tag all threads as want-stopped.
93 (gdb_wants_thread_stopped): Fix comments. Tag the thread that
94 stopped as "client-wants-stopped".
95
96 2010-07-31 Pedro Alves <pedro@codesourcery.com>
97
98 * Makefile.in (signals_h): New.
99 (server_h): Depend on it.
100 (server.o): Don't depend on $(signals_def).
101 (signals.o): Depend on $(signals_def).
102
103 2010-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
104
105 * Makefile.in (signals_def): New.
106 (server_h): Append include/gdb/signals.h and signals_def.
107 (server.o): Append signals_def.
108
109 2010-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
110
111 * server.c (handle_target_event): Use target_signal_to_host for
112 resume_info.sig initialization.
113 * target.h (struct thread_resume) <sig>: New comment.
114
115 2010-07-20 Ozkan Sezer <sezeroz@gmail.com>
116
117 * server.c (handle_query): strcpy() the returned string from paddress()
118 instead of sprintf().
119 * utils.c (paddress): Return phex_nz().
120
121 2010-07-07 Joel Brobecker <brobecker@adacore.com>
122
123 * server.c (handle_v_cont): Call mourn_inferior if process
124 just exited.
125 (myresume): Likewise.
126
127 2010-07-01 Pedro Alves <pedro@codesourcery.com>
128
129 Static tracepoints, and integration with UST.
130
131 * configure.ac: Handle --with-ust. substitute ustlibs and ustinc.
132 * mem-break.c (uninsert_all_breakpoints)
133 (reinsert_all_breakpoints): New.
134 * mem-break.h (reinsert_all_breakpoints, uninsert_all_breakpoints):
135 * tracepoint.c (ust_loaded, helper_thread_id, cmd_buf): New.
136 (gdb_agent_ust_loaded, helper_thread_id)
137 (gdb_agent_helper_thread_id): New macros.
138 (struct ipa_sym_addresses): Add addr_ust_loaded,
139 addr_helper_thread_id, addr_cmd_buf.
140 (symbol_list): Add ust_loaded, helper_thread_id, cmd_buf.
141 (in_process_agent_loaded_ust): New.
142 (write_e_ust_not_loaded): New.
143 (maybe_write_ipa_ust_not_loaded): New.
144 (struct collect_static_trace_data_action): New.
145 (enum tracepoint_type) <static_tracepoint>: New.
146 (struct tracepoint) <handle>: Mention static tracepoints.
147 (struct static_tracepoint_ctx): New.
148 (CMD_BUF_SIZE): New.
149 (add_tracepoint_action): Handle static tracepoint actions.
150 (unprobe_marker_at): New.
151 (clear_installed_tracepoints): Handle static tracepoints.
152 (cmd_qtdp): Handle static tracepoints.
153 (probe_marker_at): New.
154 (cmd_qtstart): Handle static tracepoints.
155 (response_tracepoint): Handle static tracepoints.
156 (cmd_qtfstm, cmd_qtsstm, cmd_qtstmat): New.
157 (handle_tracepoint_query): Handle qTfSTM, qTsSTM and qTSTMat.
158 (get_context_regcache): Handle static tracepoints.
159 (do_action_at_tracepoint): Handle static tracepoint actions.
160 (traceframe_find_block_type): Handle static trace data blocks.
161 (traceframe_read_sdata): New.
162 (download_tracepoints): Download static tracepoint actions.
163 [HAVE_UST] Include ust/ust.h, dlfcn.h, sys/socket.h, and sys/un.h.
164 (GDB_PROBE_NAME): New.
165 (ust_ops): New.
166 (GET_UST_SYM): New.
167 (USTF): New.
168 (dlsym_ust): New.
169 (ust_marker_to_static_tracepoint): New.
170 (gdb_probe): New.
171 (collect_ust_data_at_tracepoint): New.
172 (gdb_ust_probe): New.
173 (UNIX_PATH_MAX, SOCK_DIR): New.
174 (gdb_ust_connect_sync_socket): New.
175 (resume_thread, stop_thread): New.
176 (run_inferior_command): New.
177 (init_named_socket): New.
178 (gdb_ust_socket_init): New.
179 (cstr_to_hexstr): New.
180 (next_st): New.
181 (first_marker, next_marker): New.
182 (response_ust_marker): New.
183 (cmd_qtfstm, cmd_qtsstm): New.
184 (unprobe_marker_at, probe_marker_at): New.
185 (cmd_qtstmat, gdb_ust_thread): New.
186 (gdb_ust_init): New.
187 (initialize_tracepoint_ftlib): Call gdb_ust_init.
188 * linux-amd64-ipa.c [HAVE_UST]: Include ust/processor.h
189 (ST_REGENTRY): New.
190 (x86_64_st_collect_regmap): New.
191 (X86_64_NUM_ST_COLLECT_GREGS): New.
192 (AMD64_RIP_REGNUM): New.
193 (supply_static_tracepoint_registers): New.
194 * linux-i386-ipa.c [HAVE_UST]: Include ust/processor.h
195 (ST_REGENTRY): New.
196 (i386_st_collect_regmap): New.
197 (i386_NUM_ST_COLLECT_GREGS): New.
198 (supply_static_tracepoint_registers): New.
199 * server.c (handle_query): Handle qXfer:statictrace:read.
200 <qSupported>: Report support for StaticTracepoints, and
201 qXfer:statictrace:read features.
202 * server.h (traceframe_read_sdata)
203 (supply_static_tracepoint_registers): Declare.
204 * remote-utils.c (convert_int_to_ascii, hexchars, ishex, tohex)
205 (unpack_varlen_hex): Include in IPA build.
206 * Makefile.in (ustlibs, ustinc): New.
207 (IPA_OBJS): Add remote-utils-ipa.o.
208 ($(IPA_LIB)): Link -ldl and -lpthread.
209 (UST_CFLAGS): New.
210 (IPAGENT_CFLAGS): Add UST_CFLAGS.
211 * config.in, configure: Regenerate.
212
213 2010-06-20 Ian Lance Taylor <iant@google.com>
214 Pedro Alves <pedro@codesourcery.com>
215
216 * linux-x86-low.c (always_true): Delete.
217 (EMIT_ASM, EMIT_ASM32): Use an uncondition asm jmp instead of
218 trying to fool the compiler with always_true.
219
220 2010-06-20 Pedro Alves <pedro@codesourcery.com>
221
222 * tracepoint.c (condition_true_at_tracepoint): Don't run compiled
223 conditions in gdbserver.
224
225 2010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
226
227 * spu-low.c (spu_read_memory): Wrap around local store limit.
228 (spu_write_memory): Likewise.
229
230 2010-06-15 Pedro Alves <pedro@codesourcery.com>
231
232 * linux-x86-low.c (amd64_emit_const, amd64_emit_void_call_2)
233 (i386_emit_const, i386_emit_void_call_2): Replace int64_t uses with
234 LONGEST uses.
235 * server.h (struct emit_ops): Replace int64_t uses with LONGEST
236 uses.
237 * tracepoint.c (emit_const, emit_void_call_2): Replace int64_t
238 uses with LONGEST uses.
239
240 2010-06-14 Stan Shebs <stan@codesourcery.com>
241 Pedro Alves <pedro@codesourcery.com>
242
243 Bytecode compiler.
244
245 * linux-x86-low.c: Include limits.h.
246 (add_insns): New.
247 (always_true): New.
248 (EMIT_ASM): New.
249 (EMIT_ASM32): New.
250 (amd64_emit_prologue, amd64_emit_epilogue, amd64_emit_add)
251 (amd64_emit_sub, amd64_emit_mul, amd64_emit_lsh)
252 (amd64_emit_rsh_signed, amd64_emit_rsh_unsigned, amd64_emit_ext,
253 (amd64_emit_log_not, amd64_emit_bit_and, amd64_emit_bit_or)
254 (amd64_emit_bit_xor, amd64_emit_bit_not, amd64_emit_equal,
255 (amd64_emit_less_signed, amd64_emit_less_unsigned, amd64_emit_ref,
256 (amd64_emit_if_goto, amd64_emit_goto, amd64_write_goto_address)
257 (amd64_emit_const, amd64_emit_call, amd64_emit_reg)
258 (amd64_emit_pop, amd64_emit_stack_flush, amd64_emit_zero_ext)
259 (amd64_emit_swap, amd64_emit_stack_adjust, amd64_emit_int_call_1)
260 (amd64_emit_void_call_2): New.
261 (amd64_emit_ops): New.
262 (i386_emit_prologue, i386_emit_epilogue, i386_emit_add)
263 (i386_emit_sub,i386_emit_mul, i386_emit_lsh, i386_emit_rsh_signed)
264 (i386_emit_rsh_unsigned, i386_emit_ext, i386_emit_log_not)
265 (i386_emit_bit_and, i386_emit_bit_or, i386_emit_bit_xor)
266 (i386_emit_bit_not, i386_emit_equal, i386_emit_less_signed)
267 (i386_emit_less_unsigned, i386_emit_ref, i386_emit_if_goto)
268 (i386_emit_goto, i386_write_goto_address, i386_emit_const)
269 (i386_emit_call, i386_emit_reg, i386_emit_pop)
270 (i386_emit_stack_flush, i386_emit_zero_ext, i386_emit_swap)
271 (i386_emit_stack_adjust, i386_emit_int_call_1)
272 (i386_emit_void_call_2): New.
273 (i386_emit_ops): New.
274 (x86_emit_ops): New.
275 (the_low_target): Install x86_emit_ops.
276 * server.h (struct emit_ops): New.
277 (get_raw_reg_func_addr): Declare.
278 (current_insn_ptr, emit_error): Declare.
279 * tracepoint.c (get_raw_reg, get_trace_state_variable_value)
280 (set_trace_state_variable_value): New defines.
281 (struct ipa_sym_addresses): New fields addr_get_raw_reg,
282 addr_get_trace_state_variable_value and
283 addr_set_trace_state_variable_value.
284 (symbol_list): New fields for get_raw_reg,
285 get_trace_state_variable_value and set_trace_state_variable_value.
286 (condfn): New typedef.
287 (struct tracepoint): New field `compiled_cond'.
288 (do_action_at_tracepoint): Clear compiled_cond.
289 (get_trace_state_variable_value, set_trace_state_variable_value):
290 Export in the IPA.
291 (condition_true_at_tracepoint): If there's a compiled condition,
292 run that.
293 (current_insn_ptr, emit_error): New globals.
294 (struct bytecode_address): New.
295 (get_raw_reg_func_addr): New.
296 (emit_prologue, emit_epilogue, emit_add, emit_sub, emit_mul)
297 (emit_lsh, emit_rsh_signed, emit_rsh_unsigned, emit_ext)
298 (emit_log_not, emit_bit_and, emit_bit_or, emit_bit_xor)
299 (emit_bit_not, emit_equal, emit_less_signed, emit_less_unsigned)
300 (emit_ref, emit_if_goto, emit_goto, write_goto_address, emit_const)
301 (emit_reg, emit_pop, emit_stack_flush, emit_zero_ext, emit_swap)
302 (emit_stack_adjust, emit_int_call_1, emit_void_call_2): New.
303 (compile_tracepoint_condition, compile_bytecodes): New.
304 * target.h (emit_ops): Forward declare.
305 (struct target_ops): New field emit_ops.
306 (target_emit_ops): New.
307 * linux-amd64-ipa.c (gdb_agent_get_raw_reg): New.
308 * linux-i386-ipa.c (gdb_agent_get_raw_reg): New.
309 * linux-low.c (linux_emit_ops): New.
310 (linux_target_ops): Install it.
311 * linux-low.h (struct linux_target_ops): New field emit_ops.
312
313 2010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
314
315 * linux-ppc-low.c (ppc_arch_setup): Use private regcache to test MSR.
316 * linux-s390-low.c (ppc_arch_setup): Use private regcache to test PSW.
317
318 2010-06-01 Pedro Alves <pedro@codesourcery.com>
319 Stan Shebs <stan@codesourcery.com>
320
321 * Makefile.in (IPA_DEPFILES, extra_libraries): New.
322 (all): Depend on $(extra_libraries).
323 (install-only): Install the IPA.
324 (IPA_OBJS, IPA_LIB): New.
325 (clean): Remove the IPA lib.
326 (IPAGENT_CFLAGS): New.
327 (tracepoint-ipa.o, utils-ipa.o, remote-utils-ipa.o)
328 (regcache-ipa.o, i386-linux-ipa.o, linux-i386-ipa.o)
329 (linux-amd64-ipa.o, amd64-linux-ipa.o): New rules.
330 * linux-amd64-ipa.c, linux-i386-ipa.c: New files.
331 * configure.ac: Check for atomic builtins support in the compiler.
332 (IPA_DEPFILES, extra_libraries): Define.
333 * configure.srv (ipa_obj): Add description.
334 (ipa_i386_linux_regobj, ipa_amd64_linux_regobj): Define.
335 (i[34567]86-*-linux*): Set ipa_obj.
336 (x86_64-*-linux*): Set ipa_obj.
337 * linux-low.c (stabilizing_threads): New.
338 (supports_fast_tracepoints): New.
339 (linux_detach): Stabilize threads before detaching.
340 (handle_tracepoints): Handle internal tracing breakpoints. Assert
341 the lwp is either not stabilizing, or is moving out of a jump pad.
342 (linux_fast_tracepoint_collecting): New.
343 (maybe_move_out_of_jump_pad): New.
344 (enqueue_one_deferred_signal): New.
345 (dequeue_one_deferred_signal): New.
346 (linux_wait_for_event_1): If moving out of a jump pad, defer
347 pending signals to later.
348 (linux_stabilize_threads): New.
349 (linux_wait_1): Check if threads need moving out of jump pads, and
350 do it if so.
351 (stuck_in_jump_pad_callback): New.
352 (move_out_of_jump_pad_callback): New.
353 (lwp_running): New.
354 (linux_resume_one_lwp): Handle moving out of jump pads.
355 (linux_set_resume_request): Dequeue deferred signals.
356 (need_step_over_p): Also step over fast tracepoint jumps.
357 (start_step_over): Also uninsert fast tracepoint jumps.
358 (finish_step_over): Also reinsert fast tracepoint jumps.
359 (linux_install_fast_tracepoint_jump): New.
360 (linux_target_ops): Install linux_stabilize_threads and
361 linux_install_fast_tracepoint_jump_pad.
362 * linux-low.h (linux_target_ops) <get_thread_area,
363 install_fast_tracepoint_jump_pad>: New fields.
364 (struct lwp_info) <collecting_fast_tracepoint,
365 pending_signals_to_report, exit_jump_pad_bkpt>: New fields.
366 (linux_get_thread_area): Declare.
367 * linux-x86-low.c (jump_insn): New.
368 (x86_get_thread_area): New.
369 (append_insns): New.
370 (push_opcode): New.
371 (amd64_install_fast_tracepoint_jump_pad): New.
372 (i386_install_fast_tracepoint_jump_pad): New.
373 (x86_install_fast_tracepoint_jump_pad): New.
374 (the_low_target): Install x86_get_thread_area and
375 x86_install_fast_tracepoint_jump_pad.
376 * mem-break.c (set_raw_breakpoint_at): Use read_inferior_memory.
377 (struct fast_tracepoint_jump): New.
378 (fast_tracepoint_jump_insn): New.
379 (fast_tracepoint_jump_shadow): New.
380 (find_fast_tracepoint_jump_at): New.
381 (fast_tracepoint_jump_here): New.
382 (delete_fast_tracepoint_jump): New.
383 (set_fast_tracepoint_jump): New.
384 (uninsert_fast_tracepoint_jumps_at): New.
385 (reinsert_fast_tracepoint_jumps_at): New.
386 (set_breakpoint_at): Use write_inferior_memory.
387 (uninsert_raw_breakpoint): Use write_inferior_memory.
388 (check_mem_read): Mask out fast tracepoint jumps.
389 (check_mem_write): Mask out fast tracepoint jumps.
390 * mem-break.h (struct fast_tracepoint_jump): Forward declare.
391 (set_fast_tracepoint_jump): Declare.
392 (delete_fast_tracepoint_jump)
393 (fast_tracepoint_jump_here, uninsert_fast_tracepoint_jumps_at)
394 (reinsert_fast_tracepoint_jumps_at): Declare.
395 * regcache.c: Don't compile many functions when building the
396 in-process agent library.
397 (init_register_cache) [IN_PROCESS_AGENT]: Don't allow allocating
398 the register buffer in the heap.
399 (free_register_cache): If the register buffer isn't owned by the
400 regcache, don't free it.
401 (set_register_cache) [IN_PROCESS_AGENT]: Don't re-alocate
402 pre-existing register caches.
403 * remote-utils.c (convert_int_to_ascii): Constify `from' parameter
404 type.
405 (convert_ascii_to_int): : Constify `from' parameter type.
406 (decode_M_packet, decode_X_packet): Replace the `to' parameter by
407 a `to_p' pointer to pointer parameter. If TO_P is NULL, malloc
408 the needed buffer in-place.
409 (relocate_instruction): New.
410 * server.c (handle_query) <qSymbols>: If the target supports
411 tracepoints, give it a chance of looking up symbols. Report
412 support for fast tracepoints.
413 (handle_status): Stabilize threads.
414 (process_serial_event): Adjust.
415 * server.h (struct fast_tracepoint_jump): Forward declare.
416 (struct process_info) <fast_tracepoint_jumps>: New field.
417 (convert_ascii_to_int, convert_int_to_ascii): Adjust.
418 (decode_X_packet, decode_M_packet): Adjust.
419 (relocate_instruction): Declare.
420 (in_process_agent_loaded): Declare.
421 (tracepoint_look_up_symbols): Declare.
422 (struct fast_tpoint_collect_status): Declare.
423 (fast_tracepoint_collecting): Declare.
424 (force_unlock_trace_buffer): Declare.
425 (handle_tracepoint_bkpts): Declare.
426 (initialize_low_tracepoint)
427 (supply_fast_tracepoint_registers) [IN_PROCESS_AGENT]: Declare.
428 * target.h (struct target_ops) <stabilize_threads,
429 install_fast_tracepoint_jump_pad>: New fields.
430 (stabilize_threads, install_fast_tracepoint_jump_pad): New.
431 * tracepoint.c [HAVE_MALLOC_H]: Include malloc.h.
432 [HAVE_STDINT_H]: Include stdint.h.
433 (trace_debug_1): Rename to ...
434 (trace_vdebug): ... this.
435 (trace_debug): Rename to ...
436 (trace_debug_1): ... this. Add `level' parameter.
437 (trace_debug): New.
438 (ATTR_USED, ATTR_NOINLINE): New.
439 (IP_AGENT_EXPORT): New.
440 (gdb_tp_heap_buffer, gdb_jump_pad_buffer, gdb_jump_pad_buffer_end)
441 (collecting, gdb_collect, stop_tracing, flush_trace_buffer)
442 (about_to_request_buffer_space, trace_buffer_is_full)
443 (stopping_tracepoint, expr_eval_result, error_tracepoint)
444 (tracepoints, tracing, trace_buffer_ctrl, trace_buffer_ctrl_curr)
445 (trace_buffer_lo, trace_buffer_hi, traceframe_read_count)
446 (traceframe_write_count, traceframes_created)
447 (trace_state_variables)
448 New renaming defines.
449 (struct ipa_sym_addresses): New.
450 (STRINGIZE_1, STRINGIZE, IPA_SYM): New.
451 (symbol_list): New.
452 (ipa_sym_addrs): New.
453 (all_tracepoint_symbols_looked_up): New.
454 (in_process_agent_loaded): New.
455 (write_e_ipa_not_loaded): New.
456 (maybe_write_ipa_not_loaded): New.
457 (tracepoint_look_up_symbols): New.
458 (debug_threads) [IN_PROCESS_AGENT]: New.
459 (read_inferior_memory) [IN_PROCESS_AGENT]: New.
460 (UNKNOWN_SIDE_EFFECTS): New.
461 (stop_tracing): New.
462 (flush_trace_buffer): New.
463 (stop_tracing_bkpt): New.
464 (flush_trace_buffer_bkpt): New.
465 (read_inferior_integer): New.
466 (read_inferior_uinteger): New.
467 (read_inferior_data_pointer): New.
468 (write_inferior_data_pointer): New.
469 (write_inferior_integer): New.
470 (write_inferior_uinteger): New.
471 (struct collect_static_trace_data_action): Delete.
472 (enum tracepoint_type): New.
473 (struct tracepoint) <type>: New field `type'.
474 <actions_str, step_actions, step_actions_str>: Only include in GDBserver.
475 <orig_size, obj_addr_on_target, adjusted_insn_addr>
476 <adjusted_insn_addr_end, jump_pad, jump_pad_end>: New fields.
477 (tracepoints): Use IP_AGENT_EXPORT.
478 (last_tracepoint): Don't include in the IPA.
479 (stopping_tracepoint): Use IP_AGENT_EXPORT.
480 (trace_buffer_is_full): Use IP_AGENT_EXPORT.
481 (alloced_trace_state_variables): New.
482 (trace_state_variables): Use IP_AGENT_EXPORT.
483 (traceframe_t): Delete unused variable.
484 (circular_trace_buffer): Don't include in the IPA.
485 (trace_buffer_start): Delete.
486 (struct trace_buffer_control): New.
487 (trace_buffer_free): Delete.
488 (struct ipa_trace_buffer_control): New.
489 (GDBSERVER_FLUSH_COUNT_MASK, GDBSERVER_FLUSH_COUNT_MASK_PREV)
490 (GDBSERVER_FLUSH_COUNT_MASK_CURR, GDBSERVER_UPDATED_FLUSH_COUNT_BIT):
491 New.
492 (trace_buffer_ctrl): New.
493 (TRACE_BUFFER_CTRL_CURR): New.
494 (trace_buffer_start, trace_buffer_free, trace_buffer_end_free):
495 Reimplement as macros.
496 (trace_buffer_wrap): Delete.
497 (traceframe_write_count, traceframe_read_count)
498 (traceframes_created, tracing): Use IP_AGENT_EXPORT.
499 (struct tracepoint_hit_ctx) <type>: New field.
500 (struct fast_tracepoint_ctx): New.
501 (memory_barrier): New.
502 (cmpxchg): New.
503 (record_tracepoint_error): Update atomically in the IPA.
504 (clear_inferior_trace_buffer): New.
505 (about_to_request_buffer_space): New.
506 (trace_buffer_alloc): Handle GDBserver and inferior simulatenous
507 updating the same buffer.
508 (add_tracepoint): Default the tracepoint's type to trap
509 tracepoint, and orig_size to -1.
510 (get_trace_state_variable) [IN_PROCESS_AGENT]: Handle allocated
511 internal variables.
512 (create_trace_state_variable): New parameter `gdb'. Handle it.
513 (clear_installed_tracepoints): Clear fast tracepoint jumps.
514 (cmd_qtdp): Handle fast tracepoints.
515 (cmd_qtdv): Adjust.
516 (max_jump_pad_size): New.
517 (gdb_jump_pad_head): New.
518 (get_jump_space_head): New.
519 (claim_jump_space): New.
520 (sort_tracepoints): New.
521 (MAX_JUMP_SIZE): New.
522 (cmd_qtstart): Handle fast tracepoints. Sync tracepoints with the
523 IPA.
524 (stop_tracing) [IN_PROCESS_AGENT]: Don't include the tdisconnected
525 support. Upload fast traceframes, and delete internal IPA
526 breakpoints.
527 (stop_tracing_handler): New.
528 (flush_trace_buffer_handler): New.
529 (cmd_qtstop): Upload fast tracepoints.
530 (response_tracepoint): Handle fast tracepoints.
531 (tracepoint_finished_step): Upload fast traceframes. Set the
532 tracepoint hit context's tracepoint type.
533 (handle_tracepoint_bkpts): New.
534 (tracepoint_was_hit): Set the tracepoint hit context's tracepoint
535 type. Add comment about fast tracepoints.
536 (collect_data_at_tracepoint) [IN_PROCESS_AGENT]: Don't access the
537 non-existing action_str field.
538 (get_context_regcache): Handle fast tracepoints.
539 (do_action_at_tracepoint) [!IN_PROCESS_AGENT]: Don't write the PC
540 to the regcache.
541 (fast_tracepoint_from_jump_pad_address): New.
542 (fast_tracepoint_from_ipa_tpoint_address): New.
543 (collecting_t): New.
544 (force_unlock_trace_buffer): New.
545 (fast_tracepoint_collecting): New.
546 (collecting): New.
547 (gdb_collect): New.
548 (write_inferior_data_ptr): New.
549 (target_tp_heap): New.
550 (target_malloc): New.
551 (download_agent_expr): New.
552 (UALIGN): New.
553 (download_tracepoints): New.
554 (download_trace_state_variables): New.
555 (upload_fast_traceframes): New.
556 (IPA_FIRST_TRACEFRAME): New.
557 (IPA_NEXT_TRACEFRAME_1): New.
558 (IPA_NEXT_TRACEFRAME): New.
559 [IN_PROCESS_AGENT]: Include sys/mman.h and fcntl.h.
560 [IN_PROCESS_AGENT] (gdb_tp_heap_buffer, gdb_jump_pad_buffer)
561 (gdb_jump_pad_buffer_end): New.
562 [IN_PROCESS_AGENT] (initialize_tracepoint_ftlib): New.
563 (initialize_tracepoint): Adjust.
564 [IN_PROCESS_AGENT]: Allocate the IPA heap, and jump pad scratch
565 buffer. Initialize the low module.
566 * utils.c (PREFIX, TOOLNAME): New.
567 (malloc_failure): Use PREFIX.
568 (error): In the IPA, an error causes an exit.
569 (fatal, warning): Use PREFIX.
570 (internal_error): Use TOOLNAME.
571 (NUMCELLS): Increase to 10.
572 * configure, config.in: Regenerate.
573
574 2010-06-01 Pedro Alves <pedro@codesourcery.com>
575
576 * server.c (handle_query) <qSupported>: Do two passes over the
577 qSupported string to avoid nesting strtok.
578
579 2010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
580
581 * Makefile.in (SFILES): Add $(srcdir)/proc-service.list.
582 (CDEPS): New.
583 * configure.ac (RDYNAMIC): New AC_MSG_CHECKING wrapping. Test also
584 -Wl,--dynamic-list.
585 * configure: Regenerate.
586 * proc-service.list: New.
587
588 2010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
589
590 * linux-low.c (linux_core_of_thread): Fix crash on invalid CONTENT.
591 New comment.
592
593 2010-05-26 Ozkan Sezer <sezeroz@gmail.com>
594
595 * gdbreplay.c (remote_open): Check error return from socket() call by
596 its equality to -1 not by it being negative.
597 * remote-utils.c (remote_open): Likewise.
598
599 2010-05-23 Pedro Alves <pedro@codesourcery.com>
600
601 * config.h: Regenerate.
602
603 2010-05-19 Maxim Kuvyrkov <maxim@codesourcery.com>
604
605 * linux-m68k-low.c (ps_get_thread_area): Don't define if kernel
606 doesn't provide PTRACE_GET_THREAD_AREA.
607
608 2010-05-19 Maxim Kuvyrkov <maxim@codesourcery.com>
609
610 * linux-m68k-low.c: Include <asm/ptrace.h>
611 (ps_get_thread_area): Implement.
612
613 2010-05-03 Doug Evans <dje@google.com>
614
615 * event-loop.c (struct callback_event): New struct.
616 (callback_list): New global.
617 (append_callback_event, delete_callback_event): New functions.
618 (process_callback): New function.
619 (start_event_loop): Call it.
620 * remote-utils.c (NOT_SCHEDULED): Define.
621 (readchar_buf, readchar_bufcnt, readchar_bufp): New static globals,
622 moved out of readchar.
623 (readchar): Rewrite. Call reschedule before returning.
624 (reset_readchar): New function.
625 (remote_close): Call it.
626 (process_remaining, reschedule): New functions.
627 * server.h (callback_handler_func): New typedef.
628 (append_callback_event, delete_callback_event): Declare.
629
630 2010-05-03 Pedro Alves <pedro@codesourcery.com>
631
632 * proc-service.c (ps_pglobal_lookup): Use
633 thread_db_look_up_one_symbol.
634 * remote-utils.c (look_up_one_symbol): Add new `may_ask_gdb'
635 parameter. Use it instead of all_symbols_looked_up.
636 * server.h (struct process_info) <all_symbols_looked_up>: Delete
637 field.
638 (all_symbols_looked_up): Don't declare.
639 (look_up_one_symbol): Add new `may_ask_gdb' parameter.
640 * thread-db.c (struct thread_db) <all_symbols_looked_up>: New
641 field.
642 (thread_db_look_up_symbols): Adjust call to look_up_one_symbol.
643 Set all_symbols_looked_up here.
644 (thread_db_look_up_one_symbol): New.
645 (thread_db_get_tls_address): Adjust.
646 (thread_db_load_search, try_thread_db_load_1): Always allocate the
647 thread_db object on the heap, and tentatively set it in the
648 process structure.
649 (thread_db_init): Don't set all_symbols_looked_up here.
650 * linux-low.h (thread_db_look_up_one_symbol): Declare.
651
652 2010-05-03 Pedro Alves <pedro@codesourcery.com>
653
654 * linux-low.c (linux_kill, linux_detach): Adjust.
655 (status_pending_p_callback): Remove redundant statement. Check
656 for !TARGET_WAITIKIND_IGNORE, instead of
657 TARGET_WAITKIND_STOPPED.
658 (handle_tracepoints): Make sure LWP is locked. Adjust.
659 (linux_wait_for_event_1): Adjust.
660 (linux_cancel_breakpoints): New.
661 (unsuspend_one_lwp): New.
662 (unsuspend_all_lwps): New.
663 (linux_wait_1): If finishing a step-over, unsuspend all lwps.
664 (send_sigstop_callback): Change return type to int, add new
665 `except' parameter and handle it.
666 (suspend_and_send_sigstop_callback): New.
667 (stop_all_lwps): Add new `suspend' and `expect' parameters, and
668 pass them down. If SUSPEND, also increment the lwp's suspend
669 count.
670 (linux_resume_one_lwp): Add notice about resuming a suspended LWP.
671 (need_step_over_p): Don't consider suspended LWPs.
672 (start_step_over): Adjust.
673 (proceed_one_lwp): Change return type to int, add new `except'
674 parameter and handle it.
675 (unsuspend_and_proceed_one_lwp): New.
676 (proceed_all_lwps): Use find_inferior instead of
677 for_each_inferior.
678 (unstop_all_lwps): Add `unsuspend' parameter. If UNSUSPEND, them
679 also decrement the suspend count of LWPs. Pass `except' down,
680 instead of hacking its suspend count.
681 (linux_pause_all): Add `freeze' parameter. Adjust.
682 (linux_unpause_all): New.
683 (linux_target_ops): Install linux_unpause_all.
684 * server.c (handle_status): Adjust.
685 * target.h (struct target_ops): New fields `unpause_all' and
686 `cancel_breakpoints'. Add new parameter to `pause_all'.
687 (pause_all): Add new `freeze' parameter.
688 (unpause_all): New.
689 (cancel_breakpoints): New.
690 * tracepoint.c (clear_installed_tracepoints): Pause threads, and
691 cancel breakpoints.
692 (cmd_qtstart): Pause threads.
693 (stop_tracing): Pause threads, and cancel breakpoints.
694 * win32-low.c (win32_target_ops): Adjust.
695
696 2010-05-03 Pedro Alves <pedro@codesourcery.com>
697
698 * linux-low.c (linux_wait_for_event_1): Move passing the signal to
699 the inferior right away from here...
700 (linux_wait_1): ... to here, and adjust to check the thread's
701 last_resume_kind instead of the lwp's step or stop_expected flags.
702
703 2010-05-02 Pedro Alves <pedro@codesourcery.com>
704
705 * README: Use consistent `GDB' and `GDBserver' spellings.
706
707 2010-05-02 Pedro Alves <pedro@codesourcery.com>
708
709 * linux-low.c (linux_kill_one_lwp): Assume the lwp is stopped.
710 (linux_kill): Stop all lwps here. Don't delete the main lwp here.
711 (linux_detach_one_lwp): Assume the lwp is stopped.
712 (any_thread_of): Delete.
713 (linux_detach): Stop all lwps here. Don't blindly delete all
714 breakpoints.
715 (delete_lwp_callback): New.
716 (linux_mourn): Delete all lwps of the process that is gone.
717 (linux_wait_1): Don't delete the last lwp of the process here.
718 * mem-break.h (mark_breakpoints_out): Declare.
719 * mem-break.c (mark_breakpoints_out): New.
720 (free_all_breakpoints): Use it.
721 * server.c (handle_target_event): If the process is gone, mark
722 breakpoints out.
723 * thread-db.c (struct thread_db) <create_bp>: New field.
724 (thread_db_enable_reporting): Fix prototype. Store a thread event
725 breakpoint reference in the thread_db struct.
726 (thread_db_load_search): Clear the thread_db object.
727 (try_thread_db_load_1): Ditto.
728 (switch_to_process): New.
729 (disable_thread_event_reporting): Use it.
730 (remove_thread_event_breakpoints): New.
731 (thread_db_detach, thread_db_mourn): Use it.
732
733 2010-05-01 Pedro Alves <pedro@codesourcery.com>
734
735 * linux-low.c (linux_enable_event_reporting): New.
736 (linux_wait_for_event_1, handle_extended_wait): Use it.
737
738 2010-04-30 Pedro Alves <pedro@codesourcery.com>
739
740 * linux-low.c (linux_kill_one_lwp, linux_kill)
741 (linux_detach_one_lwp): Adjust to send_sigstop interface change.
742 (send_sigstop): Take an lwp_info as parameter instead. Queue a
743 SIGSTOP even if the LWP is stopped.
744 (send_sigstop_callback): New.
745 (stop_all_lwps): Use send_sigstop_callback instead.
746 (linux_resume_one_thread): Adjust.
747 (proceed_one_lwp): Still proceed an LWP that the client has
748 requested to stop, if we haven't reported it as stopped yet. Make
749 sure that LWPs the client want stopped, have a pending SIGSTOP.
750
751 2010-04-26 Doug Evans <dje@google.com>
752
753 * server.c (handle_general_set): Make static.
754
755 * remote-utils.c (putpkt_binary_1): Call readchar instead of read.
756 Print received char after testing for error/eof instead of before.
757 (input_interrupt): Tweak comment.
758
759 2010-04-23 Doug Evans <dje@google.com>
760
761 * server.c (start_inferior): Print inferior argv if --debug.
762
763 2010-04-21 Aleksandar Ristovski <aristovski@qnx.com>
764
765 * Makefile.in (nto_low_h nto-low.o nto-x86-low.o): New dependency lists.
766 * nto-x86-low.c: Include server.h
767
768 2010-04-20 Pierre Muller <muller@ics.u-strasbg.fr>
769
770 * win32-i386-low.c: Use __x86_64__ macro instead of __x86_64 to
771 be consistent with other sources of this directory.
772 (init_registers_amd64): Correct name of source file of this function
773 in the comment.
774
775 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
776
777 * configure.srv (x86_64-*-mingw*): New configuration for Windows
778 64-bit executables.
779
780 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
781
782 * win32-i386-low.c: Add 64-bit support.
783 (CONTEXT_EXTENDED_REGISTERS): Set macro to zero if not exisiting.
784 (init_registers_amd64): Declare.
785 (mappings): Add 64-bit version of array.
786 (init_windows_x86): New function.
787 (the_low_target): Change init_arch field to init_windows_x86.
788
789 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
790
791 * win32-low.c: Adapt to support also 64-bit architecture.
792 (child_xfer_memory): Use uintptr_t type for local variable `addr'.
793 (get_image_name): Use SIZE_T type for local variable `done'.
794 (psapi_get_dll_name): Use LPVOID type for parameter `BaseAddress'.
795 (toolhelp_get_dll_name): Idem.
796 (handle_load_dll): Use CORE_ADDR type for local variable `load_addr'.
797 Use uintptr_t typecast to avoid warning.
798 (handle_unload_dll): Use uintptr_t typecast to avoid warning.
799 (handle_exception): Use phex_nz to avoid warning.
800 (win32_wait): Remove unused local variable `process'.
801
802 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
803
804 * configure.srv (srv_amd64_regobj): Replace `x86-64-avx.o' by
805 `amd64-avx.o'.
806
807 2010-04-17 Pierre Muller <muller@ics.u-strasbg.fr>
808
809 * configure.ac: Use `ws2_32' library for srv_mingw.
810 * configure: Regenerate.
811 * gdbreplay.c: Include winsock2.h instead of winsock.h.
812 * remote-utils.c: Likewise.
813
814 2010-04-17 H.J. Lu <hongjiu.lu@intel.com>
815
816 * linux-x86-low.c (xmltarget_amd64_linux_no_xml): Define only
817 if __x86_64__ is defined.
818
819 2010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
820
821 * configure: Regenerate.
822
823 2010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
824
825 * server.c (handle_query): Handle 'qGetTIBAddr' query.
826 * target.h (target_ops): New get_tib_address field.
827 * win32-low.h (win32_thread_info): Add thread_local_base field.
828 * win32-low.c (child_add_thread): Add tlb argument.
829 Set thread_local_base field to TLB.
830 (get_child_debug_event): Adapt to child_add_thread change.
831 (win32_get_tib_address): New function.
832 (win32_target_ops): Set get_tib_address field to
833 win32_get_tib_address.
834 * linux-low.c (linux_target_ops): Set get_tib_address field to NULL.
835
836 2010-04-12 Pedro Alves <pedro@codesourcery.com>
837
838 * linux-low.c (linux_mourn): Also remove the process.
839 * server.c (handle_target_event): Don't remove the process here.
840 * nto-low.c (nto_mourn): New.
841 (nto_target_ops): Install it.
842 * spu-low.c (spu_mourn): New.
843 (spu_target_ops): Install it.
844 * win32-low.c (win32_mourn): New.
845 (win32_target_ops): Install it.
846
847 2010-04-12 Pedro Alves <pedro@codesourcery.com>
848
849 * server.h (buffer_xml_printf): Remove redundant `;'.
850
851 2010-04-12 Pedro Alves <pedro@codesourcery.com>
852
853 * regcache.c (set_register_cache): Invalidate regcaches before
854 changing the register cache layout.
855 (regcache_invalidate_one): Allow a NULL regcache.
856 * linux-x86-low.c (x86_linux_update_xmltarget): Invalidate
857 regcaches before changing the register cache layout or the target
858 regsets.
859
860 2010-04-12 H.J. Lu <hongjiu.lu@intel.com>
861
862 * linux-x86-low.c (x86_linux_update_xmltarget): Avoid unused
863 variable warning on Linux/x86-64.
864
865 2010-04-11 Pedro Alves <pedro@codesourcery.com>
866
867 GDBserver disconnected tracing support.
868
869 * linux-low.c (linux_remove_process): Delete.
870 (add_lwp): Don't set last_resume_kind here.
871 (linux_kill): Use `mourn'.
872 (linux_detach): Use `thread_db_detach', and `mourn'.
873 (linux_mourn): New.
874 (linux_attach_lwp_1): Adjust comment.
875 (linux_attach): last_resume_kind moved the thread_info; adjust.
876 (status_pending_p_callback): Adjust.
877 (linux_wait_for_event_1): Adjust.
878 (count_events_callback, select_singlestep_lwp_callback)
879 (select_event_lwp_callback, cancel_breakpoints_callback)
880 (db_wants_lwp_stopped, linux_wait_1, need_step_over_p)
881 (proceed_one_lwp): Adjust.
882 (linux_async): Add debug output.
883 (linux_thread_stopped): New.
884 (linux_pause_all): New.
885 (linux_target_ops): Install linux_mourn, linux_thread_stopped and
886 linux_pause_all.
887 * linux-low.h (struct lwp_info): Delete last_resume_kind field.
888 (thread_db_free): Delete declaration.
889 (thread_db_detach, thread_db_mourn): Declare.
890 * thread-db.c (thread_db_init): Use thread_db_mourn.
891 (thread_db_free): Delete, split in two.
892 (disable_thread_event_reporting): New.
893 (thread_db_detach): New.
894 (thread_db_mourn): New.
895
896 * server.h (struct thread_info) <last_resume_kind>: New field.
897 <attached>: Add comment.
898 <gdb_detached>: New field.
899 (handler_func): Change return type to int.
900 (handle_serial_event, handle_target_event): Ditto.
901 (gdb_connected): Declare.
902 (tracing): Delete.
903 (disconnected_tracing): Declare.
904 (stop_tracing): Declare.
905
906 * server.c (handle_query) <qSupported>: Report support for
907 disconnected tracing.
908 (queue_stop_reply_callback): Account for running threads.
909 (gdb_wants_thread_stopped): New.
910 (gdb_wants_all_threads_stopped): New.
911 (gdb_reattached_process): New.
912 (handle_status): Clear the `gdb_detached' flag of all processes.
913 In all-stop, stop all threads.
914 (main): Be sure to leave tfind mode. Handle disconnected tracing.
915 (process_serial_event): If the remote connection breaks, or if an
916 exit was forced with "monitor exit", force an event loop exit.
917 Handle disconnected tracing on detach.
918 (handle_serial_event): Adjust.
919 (handle_target_event): If GDB isn't connected, forward events back
920 to the inferior, unless the last process exited, in which case,
921 exit gdbserver. Adjust interface.
922
923 * remote-utils.c (remote_open): Don't block in accept. Instead
924 register an event loop source on the listen socket file
925 descriptor. Refactor bits into ...
926 (listen_desc): ... this new global.
927 (gdb_connected): ... this new function.
928 (enable_async_notification): ... this new function.
929 (handle_accept_event): ... this new function.
930 (remote_close): Clear remote_desc.
931
932 * inferiors.c (add_thread): Set the new thread's last_resume_kind.
933
934 * target.h (struct target_ops) <mourn, thread_stopped, pause_all>:
935 New fields.
936 (mourn_inferior): Define.
937 (target_process_qsupported): Avoid the dangling else problem.
938 (thread_stopped): Define.
939 (pause_all): Define.
940 (target_waitstatus_to_string): Declare.
941 * target.c (target_waitstatus_to_string): New.
942
943 * tracepoint.c (tracing): Make extern.
944 (disconnected_tracing): New.
945 (stop_tracing): Make extern. Handle tracing stops due to GDB
946 disconnecting.
947 (cmd_qtdisconnected): New.
948 (cmd_qtstatus): Report disconnected tracing status in trace reply.
949 (handle_tracepoint_general_set): Handle QTDisconnected.
950
951 * event-loop.c (event_handler_func): Change return type to int.
952 (process_event): Bail out if the event handler wants the event
953 loop to stop.
954 (handle_file_event): Ditto.
955 (start_event_loop): Bail out if the event handler wants the event
956 loop to stop.
957
958 * nto-low.c (nto_target_ops): Adjust.
959 * spu-low.c (spu_wait): Don't remove the process here.
960 (spu_target_ops): Adjust.
961 * win32-low.c (win32_wait): Don't remove the process here.
962 (win32_target_ops): Adjust.
963
964 2010-04-11 Pedro Alves <pedro@codesourcery.com>
965
966 * regcache.c (realloc_register_cache): Invalidate inferior's
967 regcache before recreating it.
968
969 2010-04-09 Pedro Alves <pedro@codesourcery.com>
970
971 * tracepoint.c (cmd_qtstatus): Report trace buffer circularity.
972
973 2010-04-09 Stan Shebs <stan@codesourcery.com>
974 Pedro Alves <pedro@codesourcery.com>
975
976 * server.h (LONGEST): New.
977 (struct thread_info) <while_stepping>: New field.
978 (unpack_varlen_hex, xrealloc, pulongest, plongest, phex_nz):
979 Declare.
980 (initialize_tracepoint, handle_tracepoint_general_set)
981 (handle_tracepoint_query, tracepoint_finished_step)
982 (tracepoint_was_hit, release_while_stepping_state_list):
983 (current_traceframe): Declare.
984 * server.c (handle_general_set): Handle tracepoint packets.
985 (read_memory): New.
986 (write_memory): New.
987 (handle_search_memory_1): Use read_memory.
988 (handle_query): Report support for conditional tracepoints, trace
989 state variables, and tracepoint sources. Handle tracepoint
990 queries.
991 (main): Initialize the tracepoints module.
992 (process_serial_event): Handle traceframe reads/writes.
993
994 * linux-low.c (handle_tracepoints): New.
995 (linux_wait_1): Call it.
996 (linux_resume_one_lwp): Handle while-stepping.
997 (linux_supports_tracepoints, linux_read_pc, linux_write_pc): New.
998 (linux_target_ops): Install them.
999 * linux-low.h (struct linux_target_ops) <supports_tracepoints>:
1000 New field.
1001 * linux-x86-low.c (x86_supports_tracepoints): New.
1002 (the_low_target). Install it.
1003
1004 * mem-break.h (delete_breakpoint): Declare.
1005 * mem-break.c (delete_breakpoint): Make external.
1006
1007 * target.h (struct target_ops): Add `supports_tracepoints',
1008 `read_pc', and `write_pc' fields.
1009 (target_supports_tracepoints): Define.
1010 * utils.c (xrealloc, decimal2str, pulongest, plongest, thirty_two)
1011 (phex_nz): New.
1012
1013 * regcache.h (struct regcache) <registers_owned>: New field.
1014 (init_register_cache, regcache_cpy): Declare.
1015 (regcache_read_pc, regcache_write_pc): Declare.
1016 (register_cache_size): Declare.
1017 (supply_regblock): Declare.
1018 * regcache.c (init_register_cache): New.
1019 (new_register_cache): Use it.
1020 (regcache_cpy): New.
1021 (register_cache_size): New.
1022 (supply_regblock): New.
1023 (regcache_read_pc, regcache_write_pc): New.
1024
1025 * tracepoint.c: New.
1026
1027 * Makefile.in (OBS): Add tracepoint.o.
1028 (tracepoint.o): New rule.
1029
1030 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
1031
1032 * Makefile.in (clean): Also remove i386-mmx.c i386-mmx-linux.c.
1033 (i386-mmx.o): New.
1034 (i386-mmx.c): Likewise.
1035 (i386-mmx-linux.o): Likewise.
1036 (i386-mmx-linux.c): Likewise.
1037
1038 * configure.srv (srv_i386_regobj): Add i386-mmx.o.
1039 (srv_i386_linux_regobj): Add i386-mmx-linux.o.
1040 (srv_i386_xmlfiles): Add i386/i386-mmx.xml.
1041 (srv_i386_linux_xmlfiles): Add i386/i386-mmx-linux.xml.
1042
1043 * linux-x86-low.c (init_registers_i386_mmx_linux): New.
1044 (x86_linux_update_xmltarget): Call init_registers_i386_mmx_linux
1045 and return if ptrace PTRACE_GETFPXREGS failed in 32bit.
1046
1047 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
1048
1049 * Makefile.in (clean): Updated.
1050 (i386-avx.o): New.
1051 (i386-avx.c): Likewise.
1052 (i386-avx-linux.o): Likewise.
1053 (i386-avx-linux.c): Likewise.
1054 (amd64-avx.o): Likewise.
1055 (amd64-avx.c): Likewise.
1056 (amd64-avx-linux.o): Likewise.
1057 (amd64-avx-linux.c): Likewise.
1058
1059 * configure.srv (srv_i386_regobj): Add i386-avx.o.
1060 (srv_i386_linux_regobj): Add i386-avx-linux.o.
1061 (srv_amd64_regobj): Add amd64-avx.o.
1062 (srv_amd64_linux_regobj): Add amd64-avx-linux.o.
1063 (srv_i386_32bit_xmlfiles): Add i386/32bit-avx.xml.
1064 (srv_i386_64bit_xmlfiles): Add i386/64bit-avx.xml.
1065 (srv_i386_xmlfiles): Add i386/i386-avx.xml.
1066 (srv_amd64_xmlfiles): Add i386/amd64-avx.xml.
1067 (srv_i386_linux_xmlfiles): Add i386/i386-avx-linux.xml.
1068 (srv_amd64_linux_xmlfiles): Add i386/amd64-avx-linux.xml.
1069
1070 * i387-fp.c: Include "i386-xstate.h".
1071 (i387_xsave): New.
1072 (i387_cache_to_xsave): Likewise.
1073 (i387_xsave_to_cache): Likewise.
1074 (x86_xcr0): Likewise.
1075
1076 * i387-fp.h (i387_cache_to_xsave): Likewise.
1077 (i387_xsave_to_cache): Likewise.
1078 (x86_xcr0): Likewise.
1079
1080 * linux-arm-low.c (target_regsets): Initialize nt_type to 0.
1081 * linux-crisv32-low.c (target_regsets): Likewise.
1082 * linux-m68k-low.c (target_regsets): Likewise.
1083 * linux-mips-low.c (target_regsets): Likewise.
1084 * linux-ppc-low.c (target_regsets): Likewise.
1085 * linux-s390-low.c (target_regsets): Likewise.
1086 * linux-sh-low.c (target_regsets): Likewise.
1087 * linux-sparc-low.c (target_regsets): Likewise.
1088 * linux-xtensa-low.c (target_regsets): Likewise.
1089
1090 * linux-low.c: Include <sys/uio.h>.
1091 (regsets_fetch_inferior_registers): Support nt_type.
1092 (regsets_store_inferior_registers): Likewise.
1093 (linux_process_qsupported): New.
1094 (linux_target_ops): Add linux_process_qsupported.
1095
1096 * linux-low.h (regset_info): Add nt_type.
1097 (linux_target_ops): Add process_qsupported.
1098
1099 * linux-x86-low.c: Include "i386-xstate.h", "elf/common.h"
1100 and <sys/uio.h>.
1101 (init_registers_i386_avx_linux): New.
1102 (init_registers_amd64_avx_linux): Likewise.
1103 (xmltarget_i386_linux_no_xml): Likewise.
1104 (xmltarget_amd64_linux_no_xml): Likewise.
1105 (PTRACE_GETREGSET): Likewise.
1106 (PTRACE_SETREGSET): Likewise.
1107 (x86_fill_xstateregset): Likewise.
1108 (x86_store_xstateregset): Likewise.
1109 (use_xml): Likewise.
1110 (x86_linux_update_xmltarget): Likewise.
1111 (x86_linux_process_qsupported): Likewise.
1112 (target_regsets): Add NT_X86_XSTATE entry and Initialize nt_type.
1113 (x86_arch_setup): Don't call init_registers_amd64_linux nor
1114 init_registers_i386_linux here. Call
1115 x86_linux_update_xmltarget.
1116 (the_low_target): Add x86_linux_process_qsupported.
1117
1118 * server.c (handle_query): Call target_process_qsupported.
1119
1120 * target.h (target_ops): Add process_qsupported.
1121 (target_process_qsupported): New.
1122
1123 2010-04-03 Pedro Alves <pedro@codesourcery.com>
1124
1125 * inferiors.c (add_thread): Set last_status kind to
1126 TARGET_WAITKIND_IGNORE.
1127 * linux-low.c (cancel_breakpoint): Remove unnecessary regcache
1128 fetch. Use ptid_of. Avoid unnecessary get_lwp_thread calls.
1129 (linux_wait_1): Move `thread' local definition to block that uses
1130 it. Don't NULL initialize `event_child'.
1131 (linux_resume_one_thread): Avoid unnecessary get_lwp_thread calls.
1132 Alway set the thread's last_status to TARGET_WAITKIND_IGNORE.
1133 * linux-x86-low.c (x86_breakpoint_at): Read raw memory.
1134
1135 2010-04-01 Pedro Alves <pedro@codesourcery.com>
1136
1137 * linux-low.c (get_stop_pc): Don't adjust the PC if stopped with
1138 an extended waitstatus, or by a watchpoint.
1139 (cancel_breakpoints_callback): Don't cancel a breakpoint if the
1140 thread was stepping or has been stopped by a watchpoint.
1141
1142 2010-04-01 Pedro Alves <pedro@codesourcery.com>
1143
1144 * mem-break.c (struct raw_breakpoint): New field shlib_disabled.
1145 (set_gdb_breakpoint_at): If GDB is inserting a breakpoint on top
1146 of another, then delete the previous, and validate all
1147 breakpoints.
1148 (validate_inserted_breakpoint): New.
1149 (delete_disabled_breakpoints): New.
1150 (validate_breakpoints): New.
1151 (check_mem_read): Validate breakpoints before trusting their
1152 shadow. Delete disabled breakpoints.
1153 (check_mem_write): Validate breakpoints before trusting they
1154 should be inserted. Delete disabled breakpoints.
1155 * mem-break.h (validate_breakpoints):
1156 * server.c (handle_query): Validate breakpoints when we see a
1157 qSymbol query.
1158
1159 2010-04-01 Pedro Alves <pedro@codesourcery.com>
1160
1161 * linux-low.c (linux_wait_1): Avoid setting need_step_over is
1162 there's a GDB breakpoint at stop_pc. Always report a trap to GDB
1163 if we could tell there's a GDB breakpoint at stop_pc.
1164 (need_step_over_p): Don't do a step over if we find a GDB
1165 breakpoint at the resume PC.
1166
1167 * mem-break.c (struct raw_breakpoint): New.
1168 (enum bkpt_type): New type `gdb_breakpoint'.
1169 (struct breakpoint): Delete the `PC', `old_data' and `inserted'
1170 fields. New field `raw'.
1171 (find_raw_breakpoint_at): New.
1172 (set_raw_breakpoint_at): Handle refcounting. Create a raw
1173 breakpoint instead.
1174 (set_breakpoint_at): Adjust.
1175 (delete_raw_breakpoint): New.
1176 (release_breakpoint): New.
1177 (delete_breakpoint): Rename to...
1178 (delete_breakpoint_1): ... this. Add proc parameter. Use
1179 release_breakpoint. Return ENOENT.
1180 (delete_breakpoint): Reimplement.
1181 (find_breakpoint_at): Delete.
1182 (find_gdb_breakpoint_at): New.
1183 (delete_breakpoint_at): Delete.
1184 (set_gdb_breakpoint_at): New.
1185 (delete_gdb_breakpoint_at): New.
1186 (gdb_breakpoint_here): New.
1187 (set_reinsert_breakpoint): Use release_breakpoint.
1188 (uninsert_breakpoint): Rename to ...
1189 (uninsert_raw_breakpoint): ... this.
1190 (uninsert_breakpoints_at): Adjust to handle raw breakpoints.
1191 (reinsert_raw_breakpoint): Change parameter type to
1192 raw_breakpoint.
1193 (reinsert_breakpoints_at): Adjust to handle raw breakpoints
1194 instead.
1195 (check_breakpoints): Adjust. Use release_breakpoint.
1196 (breakpoint_here): Rewrite using find_raw_breakpoint_at.
1197 (breakpoint_inserted_here): Ditto.
1198 (check_mem_read): Adjust to iterate over raw breakpoints instead.
1199 Don't trust the breakpoint's shadow if it is not inserted.
1200 (check_mem_write): Adjust to iterate over raw breakpoints instead.
1201 (delete_all_breakpoints): Adjust.
1202 (free_all_breakpoints): Mark all breakpoints as uninserted, and
1203 use delete_breakpoint_1.
1204
1205 * mem-break.h (breakpoints_supported): Delete declaration.
1206 (set_gdb_breakpoint_at): Declare.
1207 (gdb_breakpoint_here): Declare.
1208 (delete_breakpoint_at): Delete.
1209 (delete_gdb_breakpoint_at): Declare.
1210
1211 * server.h (struct raw_breakpoint): Forward declare.
1212 (struct process_info): New field `raw_breakpoints'.
1213
1214 * linux-x86-low.c (x86_insert_point, x86_remote_point): Handle Z0
1215 breakpoints.
1216
1217 2010-03-24 Pedro Alves <pedro@codesourcery.com>
1218
1219 * linux-low.c (status_pending_p_callback): Fix comment.
1220 (linux_wait_for_event_1): Move most of the internal breakpoint
1221 handling from here...
1222 (linux_wait_1): ... to here.
1223 (count_events_callback): New.
1224 (select_singlestep_lwp_callback): New.
1225 (select_event_lwp_callback): New.
1226 (cancel_breakpoints_callback): New.
1227 (select_event_lwp): New.
1228 (linux_wait_1): Simplify internal breakpoint handling. Give equal
1229 priority to all LWPs that have had events that should be reported
1230 to the client. Cancel breakpoints when about to reporting the
1231 event to the client, not while stopping lwps. No longer cancel
1232 finished single-steps here.
1233 (cancel_finished_single_step): Delete.
1234 (cancel_finished_single_steps): Delete.
1235
1236 2010-03-24 Pedro Alves <pedro@codesourcery.com>
1237
1238 * mem-break.c (enum bkpt_type): New.
1239 (struct breakpoint): New field `type'.
1240 (set_breakpoint_at): Change return type to struct breakpoint
1241 pointer. Set type to `other_breakpoint' by default.
1242 (delete_breakpoint): Rewrite, supporting more than one breakpoint
1243 in the breakpoint list.
1244 (delete_reinsert_breakpoints): Only delete reinsert breakpoints.
1245 (reinsert_breakpoint): Rename to ...
1246 (reinsert_raw_breakpoint): ... this.
1247 (reinsert_breakpoints_at): Adjust.
1248 * mem-break.h (struct breakpoint): Declare.
1249 (set_breakpoint_at): Change return type to struct breakpoint
1250 pointer.
1251
1252 2010-03-24 Pedro Alves <pedro@codesourcery.com>
1253
1254 * server.c (handle_query): Assign, not compare.
1255
1256 2010-03-24 Pedro Alves <pedro@codesourcery.com>
1257
1258 Teach linux gdbserver to step-over-breakpoints.
1259
1260 * linux-low.c (can_hardware_single_step): New.
1261 (supports_breakpoints): New.
1262 (handle_extended_wait): If stopping threads, read the stop pc of
1263 the new cloned LWP.
1264 (get_pc): New.
1265 (get_stop_pc): Add `lwp' parameter. Handle it. Bail out if the
1266 low target doesn't support retrieving the PC.
1267 (add_lwp): Set last_resume_kind to resume_continue.
1268 (linux_attach_lwp_1): Adjust comments. Always set stop_expected.
1269 (linux_attach): Don't clear stop_expected. Set the lwp's
1270 last_resume_kind to resume_stop.
1271 (linux_detach_one_lwp): Don't check for removed breakpoints.
1272 (check_removed_breakpoint): Delete.
1273 (status_pending_p): Rename to ...
1274 (status_pending_p_callback): ... this. Don't check for removed
1275 breakpoints. Don't consider threads that are stopped from GDB's
1276 perspective.
1277 (linux_wait_for_lwp): Always read the stop_pc here.
1278 (cancel_breakpoint): New.
1279 (step_over_bkpt): New global.
1280 (linux_wait_for_event_1): Implement stepping over breakpoints.
1281 (gdb_wants_lwp_stopped): New.
1282 (gdb_wants_all_stopped): New.
1283 (linux_wait_1): Tag threads as gdb-wants-stopped. Cancel finished
1284 single-step traps here. Store the thread's last reported target
1285 wait status.
1286 (send_sigstop): Don't clear stop_expected. Always set it,
1287 instead.
1288 (mark_lwp_dead): Remove reference to pending_is_breakpoint.
1289 (cancel_finished_single_step): New.
1290 (cancel_finished_single_steps): New.
1291 (wait_for_sigstop): Don't cancel finished single-step traps here.
1292 (linux_resume_one_lwp): Don't check for removed breakpoints.
1293 Don't set `step' on non-hardware step archs.
1294 (linux_set_resume_request): Ignore resume_stop requests if already
1295 stopping or stopped. Set the lwp's last_resume_kind.
1296 (resume_status_pending_p): Don't check for removed breakpoints.
1297 (need_step_over_p): New.
1298 (start_step_over): New.
1299 (finish_step_over): New.
1300 (linux_resume_one_thread): Always queue a sigstop for resume_stop
1301 requests. Clear the thread's last reported target waitstatus.
1302 Don't use the `suspended' flag. Don't consider pending breakpoints.
1303 (linux_resume): Start a step-over if necessary.
1304 (proceed_one_lwp): New.
1305 (proceed_all_lwps): New.
1306 (unstop_all_lwps): New.
1307 * linux-low.h (struct lwp_info): Rewrite comment for the
1308 `suspended' flag. Add the `stop_pc' field. Delete the
1309 `pending_stop_pc' field. Tweak the `stepping' flag's comment.
1310 Add `'last_resume_kind' and `need_step_over' fields.
1311 * inferiors.c (struct thread_info): Delete, moved elsewhere.
1312 * mem-break.c (struct breakpoint): Delete `reinserting' flag.
1313 Delete `breakpoint_to_reinsert' field. New flag `inserted'.
1314 (set_raw_breakpoint_at): New.
1315 (set_breakpoint_at): Rewrite to use it.
1316 (reinsert_breakpoint_handler): Delete.
1317 (set_reinsert_breakpoint): New.
1318 (reinsert_breakpoint_by_bp): Delete.
1319 (delete_reinsert_breakpoints): New.
1320 (uninsert_breakpoint): Rewrite.
1321 (uninsert_breakpoints_at): New.
1322 (reinsert_breakpoint): Rewrite.
1323 (reinsert_breakpoints_at): New.
1324 (check_breakpoints): Rewrite.
1325 (breakpoint_here): New.
1326 (breakpoint_inserted_here): New.
1327 (check_mem_read): Adjust.
1328 * mem-break.h (breakpoints_supported, breakpoint_here)
1329 (breakpoint_inserted_here, set_reinsert_breakpoint): Declare.
1330 (reinsert_breakpoint_by_bp): Delete declaration.
1331 (delete_reinsert_breakpoints): Declare.
1332 (reinsert_breakpoint): Delete declaration.
1333 (reinsert_breakpoints_at): Declare.
1334 (uninsert_breakpoint): Delete declaration.
1335 (uninsert_breakpoints_at): Declare.
1336 (check_breakpoints): Adjust prototype.
1337 * server.h: Adjust include order.
1338 (struct thread_info): Declare here. Add a `last_status' field.
1339
1340 2010-03-23 Michael Snyder <msnyder@vmware.com>
1341
1342 * server.c (crc32): New function.
1343 (handle_query): Add handling for 'qCRC:' request.
1344
1345 2010-03-23 Pedro Alves <pedro@codesourcery.com>
1346
1347 * linux-x86-low.c (x86_linux_prepare_to_resume): Clear DR6 if the
1348 lwp had been stopped by a watchpoint.
1349
1350 2010-03-16 Pedro Alves <pedro@codesourcery.com>
1351
1352 * server.h (internal_error): Declare.
1353 (gdb_assert, ASSERT_FUNCTION, gdb_assert_fail): Define.
1354 * utils.c (internal_error): New function.
1355
1356 2010-03-15 Andreas Schwab <schwab@redhat.com>
1357
1358 * configure.srv: Fix typo setting srv_regobj.
1359
1360 2010-03-15 Pedro Alves <pedro@codesourcery.com>
1361
1362 * linux-low.c (fetch_register): Avoid passing a non string literal
1363 format to `error'.
1364 (usr_store_inferior_registers): Ditto.
1365
1366 2010-03-14 Pedro Alves <pedro@codesourcery.com>
1367
1368 * linux-low.c (linux_write_memory): Bail out early if peeking
1369 memory failed.
1370
1371 2010-03-14 Pedro Alves <pedro@codesourcery.com>
1372
1373 * linux-low.h (struct lwp_info): New fields
1374 `stopped_by_watchpoint' and `stopped_data_address'.
1375 * linux-low.c (linux_wait_for_lwp): Check for watchpoint triggers
1376 here, and cache them in the lwp object.
1377 (wait_for_sigstop): Check stopped_by_watchpoint lwp field
1378 directly.
1379 (linux_resume_one_lwp): Clear the lwp's stopped_by_watchpoint
1380 field.
1381 (linux_stopped_by_watchpoint): Rewrite.
1382 (linux_stopped_data_address): Rewrite.
1383
1384 2010-03-06 Simo Melenius <simo.melenius@iki.fi>
1385
1386 * linux-low.c (linux_wait_for_lwp): Fetch the regcache after
1387 switching the current inferior, not before.
1388
1389 2010-03-01 H.J. Lu <hongjiu.lu@intel.com>
1390
1391 * Makefile.in (clean): Replace reg-i386.c, reg-x86-64.c,
1392 reg-i386-linux.c and reg-x86-64-linux.c with i386.c, amd64.c,
1393 i386-linux.c and amd64-linux.c.
1394 (reg-i386.o): Removed.
1395 (reg-i386.c): Likewise.
1396 (reg-i386-linux.o): Likewise.
1397 (reg-i386-linux.c): Likewise.
1398 (reg-x86-64.o): Likewise.
1399 (reg-x86-64.c): Likewise.
1400 (reg-x86-64-linux.o): Likewise.
1401 (reg-x86-64-linux.c): Likewise.
1402 (i386.o): New.
1403 (i386.c): Likewise.
1404 (i386-linux.o): Likewise.
1405 (i386-linux.c): Likewise.
1406 (amd64.o): Likewise.
1407 (amd64.c): Likewise.
1408 (amd64-linux.o): Likewise.
1409 (amd64-linux.c): Likewise.
1410
1411 * configure.srv (srv_i386_regobj): New.
1412 (srv_i386_linux_regobj): Likewise.
1413 (srv_amd64_regobj): Likewise.
1414 (srv_amd64_linux_regobj): Likewise.
1415 (srv_i386_32bit_xmlfiles): Likewise.
1416 (srv_i386_64bit_xmlfiles): Likewise.
1417 (srv_i386_xmlfiles): Likewise.
1418 (srv_amd64_xmlfiles): Likewise.
1419 (srv_i386_linux_xmlfiles): Likewise.
1420 (srv_amd64_linux_xmlfiles): Likewise.
1421 (i[34567]86-*-cygwin*): Set srv_regobj to $srv_i386_regobj. Set
1422 srv_xmlfiles to $srv_i386_xmlfiles.
1423 (i[34567]86-*-mingw32ce*): Likewise.
1424 (i[34567]86-*-mingw*): Likewise.
1425 (i[34567]86-*-nto*): Likewise.
1426 (i[34567]86-*-linux*): Set srv_regobj to $srv_i386_linux_regobj
1427 and $srv_amd64_linux_regobj. Set srv_xmlfiles to
1428 $srv_i386_linux_xmlfiles and $srv_amd64_linux_xmlfiles.
1429 (x86_64-*-linux*): Likewise.
1430
1431 * linux-x86-low.c (init_registers_x86_64_linux): Removed.
1432 (init_registers_amd64_linux): New.
1433 (x86_arch_setup): Replace init_registers_x86_64_linux with
1434 init_registers_amd64_linux.
1435
1436 2010-02-23 Maxim Kuvyrkov <maxim@codesourcery.com>
1437
1438 * configure.ac: Check for libdl. If it is not available link against
1439 static libthread_db.
1440 * configure: Regenerate.
1441
1442 2010-02-22 Pedro Alves <pedro@codesourcery.com>
1443
1444 PR9605
1445
1446 * i386-low.c (i386_length_and_rw_bits): Throw a fatal error if
1447 handing a read watchpoint.
1448 (i386_low_insert_watchpoint): Read watchpoints aren't supported.
1449
1450 2010-02-12 Doug Evans <dje@google.com>
1451
1452 * linux-low.c (linux_supports_tracefork_flag): Document.
1453 (linux_look_up_symbols): Add comment.
1454
1455 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
1456
1457 * regcache.c (supply_register): Clear regcache if buf is NULL.
1458
1459 2010-02-02 Nicolas Roche <roche@sourceware.org>
1460 Joel Brobecker <brobecker@adacore.com>
1461
1462 * inferiors.c (find_inferior): Add function documentation.
1463 (unloaded_dll): Handle the case where the unloaded dll has not
1464 been previously registered in the dll list.
1465
1466 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
1467
1468 * linux-arm-low.c (thumb_breakpoint_len): Delete.
1469 (thumb2_breakpoint): New.
1470 (arm_breakpoint_at): Check for Thumb-2 breakpoints.
1471
1472 2010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
1473
1474 * linux-low.c (get_stop_pc): Check for SIGTRAP.
1475 (linux_wait_for_event_1): Handle SIGILL and SIGSEGV as possible
1476 breakpoints.
1477
1478 2010-01-21 Pedro Alves <pedro@codesourcery.com>
1479
1480 * linux-ppc-low.c (ppc_arch_setup): Adjust to regcache changes.
1481
1482 2010-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
1483
1484 * linux-s390-low.c (s390_collect_ptrace_register)
1485 (s390_supply_ptrace_register): Adjust it for the new regcache parameter.
1486
1487 2010-01-21 Doug Evans <dje@google.com>
1488
1489 * linux-low.c (PTRACE_ARG3_TYPE): Change from long to void*.
1490 (PTRACE_ARG4_TYPE): New macro.
1491 (handle_extended_wait): Cast ptrace arg4 to PTRACE_ARG4_TYPE.
1492 (linux_wait_for_event_1, linux_resume_one_lwp): Ditto.
1493 (fetch_register): Cast to uintptr_t before casting to PTRACE_ARG3_TYPE.
1494 (usr_store_inferior_registers): Ditto.
1495 (linux_read_memory, linux_write_memory): Ditto.
1496 (linux_test_for_tracefork): Ditto.
1497
1498 * linux-arm-low.c: Remove redundant include of gdb_proc_service.h.
1499 Only include elf.h if gdb_proc_service.h didn't include linux/elf.h.
1500
1501 2010-01-21 Pedro Alves <pedro@codesourcery.com>
1502
1503 * proc-service.c (ps_lgetregs): Don't refetch registers from the
1504 target.
1505
1506 2010-01-21 Pedro Alves <pedro@codesourcery.com>
1507
1508 * spu-low.c (spu_fetch_registers, spu_store_registers): Change
1509 prototype to take a regcache. Adjust.
1510
1511 2010-01-20 Pedro Alves <pedro@codesourcery.com>
1512
1513 * regcache.h (struct thread_info): Forward declare.
1514 (struct regcache): New.
1515 (new_register_cache): Adjust prototype.
1516 (get_thread_regcache): Declare.
1517 (free_register_cache): Adjust prototype.
1518 (registers_to_string, registers_from_string): Ditto.
1519 (supply_register, supply_register_by_name, collect_register)
1520 (collect_register_as_string, collect_register_by_name): Ditto.
1521 * regcache.c (struct inferior_regcache_data): Delete.
1522 (get_regcache): Rename to ...
1523 (get_thread_regcache): ... this. Adjust. Switch inferior before
1524 fetching registers.
1525 (regcache_invalidate_one): Adjust.
1526 (regcache_invalidate): Fix prototype.
1527 (new_register_cache): Return the new register cache.
1528 (free_register_cache): Change prototype.
1529 (realloc_register_cache): Adjust.
1530 (registers_to_string): Change prototype to take a regcache. Adjust.
1531 (registers_from_string): Ditto.
1532 (register_data): Ditto.
1533 (supply_register): Ditto.
1534 (supply_register_by_name): Ditto.
1535 (collect_register): Ditto.
1536 (collect_register_as_string): Ditto.
1537 (collect_register_by_name): Ditto.
1538 * server.c (process_serial_event): Adjust.
1539 * linux-low.h (regset_fill_func, regset_store_func): Change
1540 prototype.
1541 (get_pc, set_pc, collect_ptrace_register, supply_ptrace_register):
1542 Change prototype.
1543 * linux-low.c (get_stop_pc): Adjust.
1544 (check_removed_breakpoint): Adjust.
1545 (linux_wait_for_event): Adjust.
1546 (linux_resume_one_lwp): Adjust.
1547 (fetch_register): Add regcache parameter. Adjust.
1548 (usr_store_inferior_registers): Ditto.
1549 (regsets_fetch_inferior_registers): Ditto.
1550 (regsets_store_inferior_registers): Ditto.
1551 (linux_fetch_registers, linux_store_registers): Ditto.
1552 * i387-fp.c (i387_cache_to_fsave): Change prototype to take a
1553 regcache. Adjust.
1554 (i387_fsave_to_cache, i387_cache_to_fxsave, i387_fxsave_to_cache): Ditto.
1555 * i387-fp.h (i387_cache_to_fsave, i387_fsave_to_cache): Change
1556 prototype to take a regcache.
1557 (i387_cache_to_fxsave, i387_fxsave_to_cache): Ditto.
1558 * remote-utils.c (convert_ascii_to_int, outreg)
1559 (prepare_resume_reply): Change prototype to take a regcache.
1560 Adjust.
1561 * target.h (struct target_ops) <fetch_registers, store_registers>:
1562 Change prototype to take a regcache.
1563 (fetch_inferior_registers, store_inferior_registers): Change
1564 prototype to take a regcache. Adjust.
1565 * proc-service.c (ps_lgetregs): Adjust.
1566 * linux-x86-low.c (x86_fill_gregset, x86_store_gregset)
1567 (x86_fill_fpregset, x86_store_fpregset, x86_fill_fpxregset)
1568 (x86_store_fpxregset, x86_get_pc, x86_set_pc): Change prototype to
1569 take a regcache. Adjust.
1570 * linux-arm-low.c (arm_fill_gregset, arm_store_gregset)
1571 (arm_fill_wmmxregset, arm_store_wmmxregset, arm_fill_vfpregset)
1572 (arm_store_vfpregset, arm_get_pc, arm_set_pc):
1573 (arm_breakpoint_at): Change prototype to take a regcache. Adjust.
1574 * linux-cris-low.c (cris_get_pc, cris_set_pc)
1575 (cris_cannot_fetch_register):
1576 (cris_breakpoint_at): Change prototype to take a regcache.
1577 Adjust.
1578 * linux-crisv32-low.c (cris_get_pc, cris_set_pc,
1579 cris_reinsert_addr, cris_write_data_breakpoint): Change prototype
1580 to take a regcache. Adjust.
1581 (cris_breakpoint_at, cris_insert_point, cris_remove_point):
1582 Adjust.
1583 * linux-m32r-low.c (m32r_get_pc, m32r_set_pc): Change prototype to
1584 take a regcache. Adjust.
1585 * linux-m68k-low.c (m68k_fill_gregset, m68k_store_gregset)
1586 (m68k_fill_fpregset, m68k_store_fpregset, m68k_get_pc,
1587 (m68k_set_pc): Change prototype to take a regcache. Adjust.
1588 * linux-mips-low.c (mips_get_pc):
1589 (mips_set_pc): Change prototype to take a regcache. Adjust.
1590 (mips_reinsert_addr): Adjust.
1591 (mips_collect_register): Change prototype to take a regcache.
1592 Adjust.
1593 (mips_supply_register):
1594 (mips_collect_register_32bit, mips_supply_register_32bit)
1595 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
1596 (mips_store_fpregset): Ditto.
1597 * linux-ppc-low.c (ppc_supply_ptrace_register, ppc_supply_ptrace_register):
1598 Ditto.
1599 (parse_spufs_run): Adjust.
1600 (ppc_get_pc, ppc_set_pc, ppc_fill_gregset, ppc_fill_vsxregset)
1601 (ppc_store_vsxregset, ppc_fill_vrregset, ppc_store_vrregset)
1602 (ppc_fill_evrregset, ppc_store_evrregset): Change prototype to
1603 take a regcache. Adjust.
1604 * linux-s390-low.c (s390_collect_ptrace_register)
1605 (s390_supply_ptrace_register, s390_fill_gregset, s390_get_pc)
1606 (s390_set_pc): Change prototype to take a regcache. Adjust.
1607 (s390_arch_setup): Adjust.
1608 * linux-sh-low.c (sh_get_pc, sh_breakpoint_at)
1609 (sh_fill_gregset): Change prototype to take a regcache. Adjust.
1610 * linux-sparc-low.c (sparc_fill_gregset_to_stack)
1611 (sparc_fill_gregset, sparc_store_gregset_from_stack)
1612 (sparc_store_gregset, sparc_get_pc): Change prototype to take a
1613 regcache. Adjust.
1614 (sparc_breakpoint_at): Adjust.
1615 * linux-xtensa-low.c (xtensa_fill_gregset):
1616 (xtensa_store_gregset):
1617 (xtensa_fill_xtregset, xtensa_store_xtregset, xtensa_get_pc)
1618 (xtensa_set_pc): Change prototype to take a regcache. Adjust.
1619 * nto-low.c (nto_fetch_registers, nto_store_registers): Change
1620 prototype to take a regcache. Adjust.
1621 * win32-arm-low.c (arm_fetch_inferior_register)
1622 (arm_store_inferior_register): Change prototype to take a
1623 regcache. Adjust.
1624 * win32-i386-low.c (i386_fetch_inferior_register)
1625 (i386_store_inferior_register): Change prototype to take a
1626 regcache. Adjust.
1627 * win32-low.c (child_fetch_inferior_registers)
1628 (child_store_inferior_registers): Change prototype to take a
1629 regcache. Adjust.
1630 (win32_wait): Adjust.
1631 (win32_fetch_inferior_registers): Change prototype to take a
1632 regcache. Adjust.
1633 (win32_store_inferior_registers): Adjust.
1634 * win32-low.h (struct win32_target_ops) <fetch_inferior_register,
1635 store_inferior_register>: Change prototype to take a regcache.
1636
1637 2010-01-20 Doug Evans <dje@google.com>
1638
1639 * linux-low.c (linux_create_inferior): Wrap use of __SIGRTMIN in
1640 #ifdef.
1641 (linux_wait_for_event1, linux_init_signals): Ditto.
1642 (W_STOPCODE): Provide definition if missing.
1643
1644 2010-01-13 Vladimir Prus <vladimir@codesourcery.com>
1645
1646 * linux-low.c (linux_core_of_thread): New.
1647 (compare_ints, show_process, list_threads): New.
1648 (linux_qxfer_osdata): Report threads and cores.
1649 (linux_target_op): Register linux_core_of_thread.
1650 * remote-utils.c (prepare_resume_reply): Report the core.
1651 (buffer_xml_printf): Support %d specifier.
1652 * server.c (handle_threads_qxfer_proper, handle_threads_qxfer):
1653 New.
1654 (handle_query): Handle qXfer:threads. Announce availability
1655 thereof.
1656 * target.h (struct target_ops): New field core_of_thread.
1657
1658 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
1659
1660 * Makefile.in (clean): Remove new generated files.
1661 (reg-s390.o, reg-s390.c): Remove rules.
1662 (reg-s390x.o, reg-s390x.c): Likewise.
1663 (s390-linux32.o, s390-linux32.c): Add rules.
1664 (s390-linux64.o, s390-linux64.c): Likewise.
1665 (s390x-linux64.o, s390x-linux64.c): Likewise.
1666 * configure.srv (s390*-*-linux*): Update srv_regobj and srv_xmlfiles.
1667 * linux-s390-low.c: Include <elf.h>.
1668 (HWCAP_S390_HIGH_GPRS): Define if undefined.
1669 (init_registers_s390): Remove prototype.
1670 (init_registers_s390x): Likewise.
1671 (init_registers_s390_linux32): Add prototype.
1672 (init_registers_s390_linux64): Likewise.
1673 (init_registers_s390x_linux64): Likewise.
1674 (s390_num_regs_3264): New define.
1675 (s390_regmap_3264): New global variable.
1676 (s390_cannot_fetch_register): Remove obsolete check.
1677 (s390_cannot_store_register): Likewise.
1678 (s390_collect_ptrace_register): Handle upper/lower register halves.
1679 (s390_supply_ptrace_register): Likewise.
1680 (s390_fill_gregset): Update to register number changes.
1681 (s390_get_hwcap): New routine.
1682 (s390_arch_setup): Detect 32-bit process running on 64-bit system.
1683 Install appropriate regmap and register set.
1684
1685 2010-01-01 Joel Brobecker <brobecker@adacore.com>
1686
1687 * server.c (gdbserver_version): Update copyright year to 2010.
1688 * gdbreplay.c (gdbreplay_version): Likewise.
1689
1690 2009-12-28 Doug Evans <dje@google.com>
1691
1692 * linux-low.c: Delete inclusion of ansidecl.h, elf/common.h,
1693 elf/external.h. Include <elf.h> instead but only if necessary.
1694
1695 2009-12-28 Pedro Alves <pedro@codesourcery.com>
1696
1697 * linux-low.c (linux_remove_process): Remove `detaching'
1698 parameter. Don't release/detach from thread_db here.
1699 (linux_kill): Release/detach from thread_db here, ...
1700 (linux_detach): ... and here, before actually detaching.
1701 (linux_wait_1): ... and here, when a process exits.
1702 * thread-db.c (any_thread_of): New.
1703 (thread_db_free): Switch the current inferior to a thread of the
1704 passed in process.
1705
1706 2009-12-21 Doug Evans <dje@google.com>
1707
1708 * linux-x86-low.c: Delete outdated comment about Elf32_Phdr.
1709
1710 * linux-low.c (kill_lwp): Use __NR_tkill instead of SYS_tkill.
1711 Move definition of tkill_failed to ifdef __NR_tkill to avoid gcc
1712 warning ifndef __NR_tkill. Move setting of errno there too.
1713 Delete unnecessary resetting of errno after syscall.
1714 Minor comment changes to match gdb/linux-nat.c:kill_lwp.
1715
1716 * configure.ac: Check for dladdr.
1717 * config.in: Regenerate.
1718 * configure: Regenerate.
1719 * thread-db.c (dladdr_to_soname): Only define ifdef HAVE_DLADDR.
1720 (try_thread_db_load): Update.
1721
1722 * linux-low.c (my_waitpid): Delete unnecessary prototype.
1723
1724 2009-12-18 Doug Evans <dje@google.com>
1725
1726 * event-loop.c: Include unistd.h if it exists.
1727
1728 * linux-low.c (my_waitpid): Move definition away from being in
1729 between linux_tracefork_child/linux_test_for_tracefork.
1730
1731 * gdb_proc_service.h (psaddr_t): Fix type.
1732 * thread-db.c (thread_db_info.td_thr_tls_get_addr_p): Fix
1733 signature to match glibc.
1734
1735 2009-12-16 Doug Evans <dje@google.com>
1736
1737 * linux-low.c (linux_read_memory): Fix argument to read.
1738
1739 2009-11-26 Pedro Alves <pedro@codesourcery.com>
1740
1741 * win32-low.c (get_child_debug_event): On EXIT_THREAD_DEBUG_EVENT
1742 events, don't leave current_inferior pointing at null.
1743
1744 2009-11-26 Pedro Alves <pedro@codesourcery.com>
1745
1746 * win32-low.c (LOG): Delete.
1747 (OUTMSG): Output to stderr.
1748 (OUTMSG2): Conditionalize on `debug_threads' variable, instead of
1749 on compile time LOG macro.
1750 (win32_wait): Fix debug output.
1751
1752 2009-11-26 Pedro Alves <pedro@codesourcery.com>
1753
1754 * win32-low.c (win32_add_one_solib): If the dll name is
1755 "ntdll.dll", prepend the system directory to the dll path.
1756
1757 2009-11-17 Daniel Jacobowitz <dan@codesourcery.com>
1758
1759 * m68k-tdep.c (m68k_gdbarch_init): Reuse previous initialization.
1760
1761 2009-11-17 Nathan Sidwell <nathan@codesourcery.com>
1762 Vladimir Prus <vladimir@codesourcery.com>
1763
1764 * Makefile.in (reg-cf.o, reg-cf.c): New targets.
1765 * configure.ac: Check for __mcoldfire__ and set
1766 gdb_cv_m68k_is_coldfire.
1767 * configure.srv: Use gdb_cv_m68k_is_coldfire to select between
1768 reg-cf.o and reg-m68k.o.
1769 * configure: Regenerated.
1770
1771 2009-11-16 Pedro Alves <pedro@codesourcery.com>
1772
1773 * linux-low.c (linux_remove_process): Add `detaching' parameter.
1774 Pass it to thread_db_free.
1775 (linux_kill, linux_detach, linux_wait_1): Adjust to pass the
1776 proper `detaching' argument to linux_remove_process.
1777 * linux-low.h (thread_db_free): Add `detaching' parameter.
1778 * thread-db.c (thread_db_init): Pass false as `detaching' argument
1779 to thread_db_free.
1780 (thread_db_free): Add `detaching' parameter. Only
1781 call td_ta_clear_event if detaching from process.
1782
1783 2009-11-12 Maxim Kuvyrkov <maxim@codesourcery.com>
1784
1785 * thread-db.c (thread_db_free): Fix typo.
1786
1787 2009-11-11 Paul Pluzhnikov <ppluzhnikov@google.com>
1788
1789 PR gdb/10838
1790 * thread-db.c (thread_db_free): Call td_ta_clear_event.
1791
1792 2009-11-03 Nathan Sidwell <nathan@codesourcery.com>
1793
1794 * configure.ac (i[34567]86-*): Check if we're targetting x86-64
1795 with an i686 compiler.
1796 * configure.srv (i[34567]86-*-linux*): Pull in x86-64 handling if
1797 needed.
1798 * configure: Rebuilt.
1799
1800 2009-10-29 Sandra Loosemore <sandra@codesourcery.com>
1801
1802 PR gdb/10783
1803
1804 * server.c (handle_search_memory_1): Correct read_addr initialization
1805 in loop for searching subsequent chunks.
1806
1807 2009-10-29 Paul Pluzhnikov <ppluzhnikov@google.com>
1808
1809 * configure.ac: New --with-libthread-db option.
1810 * thread-db.c: Allow direct dependence on libthread_db.
1811 (thread_db_free): Adjust.
1812 * config.in: Regenerate.
1813 * configure: Likewise.
1814
1815 2009-10-28 Paul Pluzhnikov <ppluzhnikov@google.com>
1816
1817 PR gdb/10757
1818 * thread-db.c (attach_thread): New function.
1819 (maybe_attach_thread): Return success/failure.
1820 (find_new_threads_callback): Adjust.
1821 (thread_db_find_new_threads): Loop until no new threads.
1822
1823 2009-10-13 Pedro Alves <pedro@codesourcery.com>
1824
1825 * proc-service.c (ps_lgetregs): Formatting.
1826
1827 2009-10-08 Paul Pluzhnikov <ppluzhnikov@google.com>
1828
1829 * acinclude.m4: (SRV_CHECK_THREAD_DB, SRV_CHECK_TLS_GET_ADDR): Remove.
1830 * configure.ac: Adjust.
1831 * linux-low.h (struct process_info_private): Move members to struct
1832 thread_db.
1833 (thread_db_free, thread_db_handle_monitor_command): New prototype.
1834 * linux-low.c (linux_remove_process): Adjust.
1835 (linux_wait_for_event_1, linux_look_up_symbols): Likewise.
1836 * server.c (handle_query): Move code ...
1837 (handle_monitor_command): ... here. New function.
1838 * target.h (struct target_ops): New member.
1839 * thread-db.c (struct thread_db): New.
1840 (libthread_db_search_path): New variable.
1841 (thread_db_create_event, thread_db_enable_reporting)
1842 (find_one_thread, maybe_attach_thread, find_new_threads_callback)
1843 (thread_db_find_new_threads, (thread_db_get_tls_address): Adjust.
1844 (try_thread_db_load_1, dladdr_to_soname): New functions.
1845 (try_thread_db_load, thread_db_load_search): New functions.
1846 (thread_db_init): Search for libthread_db.
1847 (thread_db_free): New function.
1848 (thread_db_handle_monitor_command): Likewise.
1849 * config.in: Regenerate.
1850 * configure: Regenerate.
1851
1852 2009-09-27 Ulrich Weigand <uweigand@de.ibm.com>
1853
1854 * spu-low.c (spu_kill): Wait for inferior to terminate.
1855 Call clear_inferiors.
1856 (spu_detach): Call clear_inferiors.
1857
1858 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1859
1860 * aclocal.m4: Regenerate.
1861 * config.in: Likewise.
1862 * configure: Likewise.
1863
1864 2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
1865
1866 * linux-ppc-low.c (INSTR_SC, NR_spu_run): Define.
1867 (parse_spufs_run): New function.
1868 (ppc_get_pc, ppc_set_pc): Detect and handle SPU PC.
1869 (ppc_breakpoint_at): Handle SPU breakpoints.
1870
1871 2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
1872
1873 * linux-low.c: Include <sys/stat.h> and <sys/vfs.h>.
1874 (SPUFS_MAGIC): Define.
1875 (spu_enumerate_spu_ids): New function.
1876 (linux_qxfer_spu): New function.
1877 (linux_target_ops): Install linux_qxfer_spu.
1878
1879 2009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
1880
1881 * configure.srv (powerpc*-*-linux*): Add powerpc-cell32l.o
1882 and powerpc-cell64l.o to srv_regobj. Add rs6000/powerpc-cell32l.xml
1883 and rs6000/powerpc-cell64l.xml to srv_xmlfiles.
1884 * Makefile.in (powerpc-cell32l.o, powerpc-cell32l.c): New rules.
1885 (powerpc-cell64l.o, powerpc-cell64l.c): Likewise.
1886 (clean): Handle powerpc-cell32l.c and powerpc-cell64l.c.
1887 * linux-ppc-low.c (PPC_FEATURE_CELL): Define.
1888 (init_registers_powerpc_cell32l): Add prototype.
1889 (init_registers_powerpc_cell64l): Likewise.
1890 (ppc_arch_setup): Detect Cell/B.E. architecture.
1891
1892 2009-07-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1893
1894 * Makefile.in (datarootdir): New variable.
1895
1896 2009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
1897
1898 * linux-low.c (linux_write_memory): Update debugging output.
1899 * Makefile.in (clean): Add new descriptions.
1900 (arm-with-vfpv2.o, arm-with-vfpv2.c, arm-with-vfpv3.o)
1901 (arm-with-vfpv3.c, arm-with-neon.o, arm-with-neon.c): New rules.
1902 * configure.srv: Add new files for arm*-*-linux*.
1903 * linux-arm-low.c: Add new declarations.
1904 (PTRACE_GETVFPREGS, PTRACE_SETVFPREGS): Define if undefined.
1905 (arm_hwcap, HWCAP_VFP, HWCAP_IWMMXT, HWCAP_NEON, HWCAP_VFPv3)
1906 (HWCAP_VFPv3D16): New.
1907 (arm_fill_wmmxregset, arm_store_wmmxregset): Check HWCAP_IWMMXT
1908 instead of __IWMMXT__.
1909 (arm_fill_vfpregset, arm_store_vfpregset, arm_get_hwcap)
1910 (arm_arch_setup): New.
1911 (target_regsets): Remove #ifdef. Add VFP regset.
1912 (the_low_target): Use arm_arch_setup.
1913
1914 2009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
1915
1916 * linux-low.c (linux_kill_one_lwp): Adjust kernel workaround to skip
1917 the main thread again.
1918
1919 2009-07-06 Aleksandar Ristovski <aristovski@qnx.com>
1920
1921 Adding Neutrino gdbserver.
1922 * configure: Regenerated.
1923 * configure.ac: Add case for srv_qnx and set LIBS accordingly.
1924 * configure.srv (i[34567]86-*-nto*): New target.
1925 * nto-low.c, nto-low.h, nto-x86-low.c: New files.
1926 * remote-utils.c [__QNX__]: Include sys/iomgr.h
1927 (nto_comctrl) [__QNX__]: New function.
1928 (enable_async_io, disable_async_io) [__QNX__]: Call nto_comctrl.
1929
1930 2009-07-05 Danny Backx <dannybackx@users.sourceforge.net>
1931
1932 * configure.srv (i[34567]86-*-mingw32ce*): Add i386-low.o to
1933 srv_tgtobj.
1934
1935 2009-07-04 Danny Backx <dannybackx@users.sourceforge.net>
1936 Pedro Alves <pedro@codesourcery.com>
1937
1938 * win32-i386-low.c (i386_get_thread_context): Handle systems that
1939 don't support CONTEXT_EXTENDED_REGISTERS.
1940 (i386_win32_breakpoint, i386_win32_breakpoint_len): New.
1941 (the_low_target): Install them.
1942 * win32-low.c (get_child_debug_event): Handle WaitForDebugEvent
1943 failing with ERROR_PIPE_NOT_CONNECTED.
1944
1945 2009-06-30 Doug Evans <dje@google.com>
1946 Pierre Muller <muller@ics.u-strasbg.fr>
1947
1948 Add h/w watchpoint support to x86-linux, win32-i386.
1949 * Makefile.in (SFILES): Add i386-low.c
1950 (i386_low_h): Define.
1951 (i386-low.o): Add dependencies.
1952 (linux-x86-low.o): Add i386-low.h dependency.
1953 (win32-i386-low.o): Ditto.
1954 * i386-low.c: New file.
1955 * i386-low.h: New file.
1956 * configure.srv (i[34567]86-*-cygwin*): Add i386-low.o to srv_tgtobj.
1957 (i[34567]86-*-linux*, i[34567]86-*-mingw*, x86_64-*-linux*): Ditto.
1958 * linux-low.c (linux_add_process): Initialize arch_private.
1959 (linux_remove_process): Free arch_private.
1960 (add_lwp): Initialize arch_private.
1961 (delete_lwp): Free arch_private.
1962 (linux_resume_one_lwp): Call the_low_target.prepare_to_resume if
1963 provided.
1964 * linux-low.h (process_info_private): New member arch_private.
1965 (lwp_info): New member arch_private.
1966 (linux_target_ops): New members new_process, new_thread,
1967 prepare_to_resume.
1968 (ptid_of): New macro.
1969 * linux-x86-low.c: Include stddef.h, i386-low.h.
1970 (arch_process_info): New struct.
1971 (arch_lwp_info): New struct.
1972 (x86_linux_dr_get, x86_linux_dr_set): New functions.
1973 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
1974 (i386_dr_low_get_status): New function.
1975 (x86_insert_point, x86_remove_point): New functions.
1976 (x86_stopped_by_watchpoint): New function.
1977 (x86_stopped_data_address): New function.
1978 (x86_linux_new_process, x86_linux_new_thread): New functions.
1979 (x86_linux_prepare_to_resume): New function.
1980 (the_low_target): Add entries for insert_point, remove_point,
1981 stopped_by_watchpoint, stopped_data_address, new_process, new_thread,
1982 prepare_to_resume.
1983 * server.c (debug_hw_points): New global.
1984 (monitor_show_help): Document set debug-hw-points.
1985 (handle_query): Process "set debug-hw-points".
1986 * server.h (debug_hw_points): Declare.
1987 (paddress): Declare.
1988 * utils.c (NUMCELLS, CELLSIZE): New macros.
1989 (get_sell, xsnprintf, paddress): New functions.
1990 * win32-arm-low.c (the_low_target): Add entries for insert_point,
1991 remove_point, stopped_by_watchpoint, stopped_data_address.
1992 * win32-i386-low.c: Include i386-low.h.
1993 (debug_reg_state): Replaces dr.
1994 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
1995 (i386_dr_low_get_status): New function.
1996 (i386_insert_point, i386_remove_point): New functions.
1997 (i386_stopped_by_watchpoint): New function.
1998 (i386_stopped_data_address): New function.
1999 (i386_initial_stuff): Update.
2000 (get_thread_context,set_thread_context,i386_thread_added): Update.
2001 (the_low_target): Add entries for insert_point,
2002 remove_point, stopped_by_watchpoint, stopped_data_address.
2003 * win32-low.c (win32_insert_watchpoint): New function.
2004 (win32_remove_watchpoint): New function.
2005 (win32_stopped_by_watchpoint): New function.
2006 (win32_stopped_data_address): New function.
2007 (win32_target_ops): Add entries for insert_watchpoint,
2008 remove_watchpoint, stopped_by_watchpoint, stopped_data_address.
2009 * win32-low.h (win32_target_ops): New members insert_point,
2010 remove_point, stopped_by_watchpoint, stopped_data_address.
2011
2012 2009-06-25 Pedro Alves <pedro@codesourcery.com>
2013
2014 * server.c (process_serial_event): Re-return unsupported, not
2015 error, if the type isn't recognized. Re-allow supporting only
2016 insert or remove packets. Also call require_running for
2017 breakpoints. Add missing break statement to default case. Tidy.
2018 * target.h (struct target_ops): Rename insert_watchpoint to
2019 insert_point, and remove_watchpoint to remove_point.
2020
2021 * linux-low.h (struct linux_target_ops): Likewise.
2022 * linux-low.c (linux_insert_watchpoint): Rename to ...
2023 (linux_insert_point): ... this. Adjust.
2024 (linux_remove_watchpoint): Rename to ...
2025 (linux_remove_point): ... this. Adjust.
2026 (linux_target_ops): Adjust.
2027 * linux-crisv32-low.c (cris_insert_watchpoint): Rename to ...
2028 (cris_insert_point): ... this.
2029 (cris_remove_watchpoint): Rename to ...
2030 (cris_remove_point): ... this.
2031 (the_low_target): Adjust.
2032
2033 2009-06-24 Pierre Muller <muller@ics.u-strasbg.fr>
2034
2035 * server.c (handle_v_kill): Pass signal_pid to
2036 kill_inferior if multi_process is zero.
2037
2038 2009-06-23 Aleksandar Ristovski <aristovski@qnx.com>
2039
2040 * server.c (process_serial_event): Add support for Z0 and Z1 packet.
2041 * target.h (target_ops): Comment for *_watchpoint to make it clear
2042 the functions can get types '0' and '1'.
2043
2044 2009-06-22 Aleksandar Ristovski <aristovski@qnx.com>
2045
2046 * linux-low.c (usr_fetch_inferior_registers): Remove check for regno 0.
2047 * proc-service.c (ps_lgetregs): Pass -1 to fetch all registers.
2048 * regcache.c (get_regcache): Likewise.
2049 * spu-low.c (spu_fetch_registers): Remove 0 to -1 conversion.
2050 * win32-low.c (child_fetch_inferior_registers): Remove check for
2051 regno 0.
2052
2053 2009-06-19 Aleksandar Ristovski <aristovski@qnx.com>
2054 Pedro Alves <pedro@codesourcery.com>
2055
2056 * target.h (struct target_ops) <supports_multi_process>: New
2057 callback.
2058 (target_supports_multi_process): New.
2059 * server.c (handle_query): Even if GDB reports support, only
2060 enable multi-process if the target also supports it. Report
2061 multi-process support only if the target backend supports it.
2062 * linux-low.c (linux_supports_multi_process): New function.
2063 (linux_target_ops): Install it as target_supports_multi_process
2064 callback.
2065
2066 2009-05-24 Doug Evans <dje@google.com>
2067
2068 Global renaming of find_thread_pid to find_thread_ptid.
2069 * server.h (find_thread_ptid): Renamed from find_thread_pid.
2070 * inferiors.c (find_thread_ptid): Renamed from find_thread_pid.
2071 All callers updated.
2072
2073 * linux-low.c (handle_extended_wait): Use linux_resume_one_lwp
2074 to resume the newly created thread, don't call ptrace (PTRACE_CONT)
2075 directly.
2076
2077 * linux-low.c (get_stop_pc): Print pc if debug_threads.
2078 (check_removed_breakpoint, linux_wait_for_lwp): Ditto.
2079 (linux_resume_one_lwp): Ditto.
2080
2081 2009-05-23 Doug Evans <dje@google.com>
2082
2083 * linux-low.c (linux_resume_one_lwp): Change type of first arg
2084 from struct inferior_list_entry * to struct lwp_info *.
2085 All callers updated.
2086
2087 2009-05-13 Doug Evans <dje@google.com>
2088
2089 * linux-x86-low.c: Don't include assert.h.
2090 (x86_siginfo_fixup): Use fatal, not assert.
2091 (x86_arch_setup): Fix comment.
2092
2093 2009-05-12 Doug Evans <dje@google.com>
2094
2095 Biarch support for i386/amd64 gdbserver.
2096 * Makefile.in (SFILES): Remove linux-i386-low.c, linux-x86-64-low.c.
2097 Add linux-x86-low.c.
2098 (linux-i386-low.o, linux-x86-64-low.o): Delete.
2099 (linux-x86-low.o): Add.
2100 * linux-x86-64-low.c: Delete.
2101 * linux-i386-low.c: Delete.
2102 * linux-x86-low.c: New file.
2103 * configure.srv (i?86-linux srv_tgtobj): Replace linux-i386-low.o with
2104 linux-x86-low.o.
2105 (x86_64-linux srv_tgtobj): Replace linux-x86-64-low.o with
2106 linux-x86-low.o.
2107 (x86_64-linux srv_regobj): Add reg-i386-linux.o.
2108 * linux-low.c: Include ansidecl.h, elf/common.h, elf/external.h.
2109 (linux_child_pid_to_exec_file): New function.
2110 (elf_64_header_p, elf_64_file_p): New functions.
2111 (siginfo_fixup): New function.
2112 (linux_xfer_siginfo): New local inf_siginfo. Call siginfo_fixup to
2113 give target a chance to convert layout.
2114 * linux-low.h (linux_target_ops): New member siginfo_fixup.
2115 (linux_child_pid_to_exec_file, elf_64_file_p): Declare.
2116
2117 2009-05-07 Doug Evans <dje@google.com>
2118
2119 * linux-low.c (regsets_fetch_inferior_registers): Fix memory leak.
2120 (regsets_store_inferior_registers): Ditto.
2121
2122 2009-05-06 Pedro Alves <pedro@codesourcery.com>
2123
2124 PR server/10048
2125
2126 * linux-low.c (must_set_ptrace_flags): Delete.
2127 (linux_create_inferior): Set `lwp->must_set_ptrace_flags' instead
2128 of the global.
2129 (linux_attach_lwp_1): Don't set PTRACE_SETOPTIONS here. Set
2130 `lwp->must_set_ptrace_flags' instead.
2131 (linux_wait_for_event_1): Set ptrace options here.
2132 (linux_wait_1): ... not here.
2133
2134 2009-04-30 Doug Evans <dje@google.com>
2135
2136 * inferiors.c (started_inferior_callback): New function.
2137 (attached_inferior_callback): New function.
2138 (have_started_inferiors_p, have_attached_inferiors_p): New functions.
2139 * server.c (print_started_pid, print_attached_pid): New functions.
2140 (detach_or_kill_for_exit): New function.
2141 (main): Call it instead of for_each_inferior (kill_inferior_callback).
2142 * server.h (have_started_inferiors_p): Declare.
2143 (have_attached_inferiors_p): Declare.
2144
2145 * inferiors.c (remove_process): Fix memory leak, free process.
2146 * linux-low.c (linux_remove_process): New function.
2147 (linux_kill): Call it instead of remove_process.
2148 (linux_detach, linux_wait_1): Ditto.
2149
2150 2009-04-19 Danny Backx <dannybackx@users.sourceforge.net>
2151
2152 * configure.srv: Add x86 Windows CE target.
2153
2154 2009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
2155
2156 * inferiors.c (get_thread_process): Make global.
2157 * server.h (get_thread_process): Add prototype.
2158 * thread-db.c (find_one_thread): Use get_thread_process
2159 instead of current_process.
2160 (thread_db_get_tls_address): Do not crash if called when
2161 thread layer is not yet initialized.
2162
2163 2009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
2164
2165 * remote-utils.c (prepare_resume_reply): Null-terminate packet.
2166 * spu-low.c (current_tid): Rename to ...
2167 (current_ptid): ... this.
2168 (fetch_ppc_register, fetch_ppc_memory, store_ppc_memory,
2169 spu_proc_xfer_spu, spu_resume, spu_request_interrupt): Use
2170 ptid_get_lwp (current_ptid) instead of current_tid.
2171 (spu_kill, spu_detach, spu_join, spu_wait): Use pid argument
2172 instead of current_tid. Use find_process_pid to verify pid
2173 argument is valid. Pass proper argument to remove_process.
2174 (spu_thread_alive): Compare current_ptid instead of current_tid.
2175 (spu_resume): Likewise.
2176
2177 2009-04-02 Pedro Alves <pedro@codesourcery.com>
2178
2179 * linux-low.c (usr_store_inferior_registers): Declare local `pid'
2180 variable.
2181
2182 2009-04-01 Pedro Alves <pedro@codesourcery.com>
2183
2184 Implement the multiprocess extensions, and add linux multiprocess
2185 support.
2186
2187 * server.h (ULONGEST): Declare.
2188 (struct ptid, ptid_t): New.
2189 (minus_one_ptid, null_ptid): Declare.
2190 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
2191 (ptid_get_tid, ptid_equal, ptid_is_pid): Declare.
2192 (struct inferior_list_entry): Change `id' type from unsigned from
2193 to ptid_t.
2194 (struct sym_cache, struct breakpoint, struct
2195 process_info_private): Forward declare.
2196 (struct process_info): Declare.
2197 (current_process): Declare.
2198 (all_processes): Declare.
2199 (initialize_inferiors): Declare.
2200 (add_thread): Adjust to use ptid_t.
2201 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): Ditto.
2202 (add_process, remove_process, find_thread_pid): Declare.
2203 (find_inferior_id): Adjust to use ptid_t.
2204 (cont_thread, general_thread, step_thread): Change type to ptid_t.
2205 (multi_process): Declare.
2206 (push_event): Adjust to use ptid_t.
2207 (read_ptid, write_ptid): Declare.
2208 (prepare_resume_reply): Adjust to use ptid_t.
2209 (clear_symbol_cache): Declare.
2210 * inferiors.c (all_processes): New.
2211 (null_ptid, minus_one_ptid): New.
2212 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
2213 (ptid_get_tid, ptid_equal, ptid_is_pid): New.
2214 (add_thread): Change unsigned long to ptid. Remove gdb_id
2215 parameter. Adjust.
2216 (thread_id_to_gdb_id, thread_to_gdb_id): Change unsigned long to ptid.
2217 (gdb_id_to_thread): Rename to ...
2218 (find_thread_pid): ... this. Change unsigned long to ptid.
2219 (gdb_id_to_thread_id, find_inferior_id): Change unsigned long to ptid.
2220 (loaded_dll, pull_pid_from_list): Adjust.
2221 (add_process, remove_process, find_process_pid)
2222 (get_thread_process, current_process, initialize_inferiors): New.
2223 * target.h (struct thread_resume) <thread>: Change type to ptid_t.
2224 (struct target_waitstatus) <related_pid>: Ditto.
2225 (struct target_ops) <kill, detach>: Add `pid' argument. Change
2226 return type to int.
2227 (struct target_ops) <join>: Add `pid' argument.
2228 (struct target_ops) <thread_alive>: Change pid's type to ptid_t.
2229 (struct target_ops) <wait>: Add `ptid' field. Change return type
2230 to ptid.
2231 (kill_inferior, detach_inferior, join_inferior): Add `pid' argument.
2232 (mywait): Add `ptid' argument. Change return type to ptid_t.
2233 (target_pid_to_str): Declare.
2234 * target.c (set_desired_inferior): Adjust to use ptids.
2235 (mywait): Add new `ptid' argument. Adjust.
2236 (target_pid_to_str): New.
2237 * mem-break.h (free_all_breakpoints): Declare.
2238 * mem-break.c (breakpoints): Delelete.
2239 (set_breakpoint_at, delete_breakpoint, find_breakpoint_at)
2240 (check_mem_read, check_mem_write, delete_all_breakpoints): Adjust
2241 to use per-process breakpoint list.
2242 (free_all_breakpoints): New.
2243 * remote-utils.c (struct sym_cache) <name>: Drop `const'.
2244 (symbol_cache, all_symbols_looked_up): Delete.
2245 (hexchars): New.
2246 (ishex, unpack_varlen_hex, write_ptid, hex_or_minus_one,
2247 read_ptid): New.
2248 (prepare_resume_reply): Change ptid argument's type from unsigned
2249 long to ptid_t. Adjust. Implement W;process and X;process.
2250 (free_sym_cache, clear_symbol_cache): New.
2251 (look_up_one_symbol): Adjust to per-process symbol cache. *
2252 * server.c (cont_thread, general_thread, step_thread): Change type
2253 to ptid_t.
2254 (attached): Delete.
2255 (multi_process): New.
2256 (last_ptid): Change type to ptid_t.
2257 (struct vstop_notif) <ptid>: Change type to ptid_t.
2258 (queue_stop_reply, push_event): Change `ptid' argument's type to
2259 ptid_t.
2260 (discard_queued_stop_replies): Add `pid' argument.
2261 (start_inferior): Adjust to use ptids. Adjust to mywait interface
2262 changes. Don't reference the `attached' global.
2263 (attach_inferior): Adjust to mywait interface changes.
2264 (handle_query): Adjust to use ptids. Parse GDB's qSupported
2265 features. Handle and report "multiprocess+". Handle
2266 "qAttached:PID".
2267 (handle_v_cont): Adjust to use ptids. Adjust to mywait interface
2268 changes.
2269 (handle_v_kill): New.
2270 (handle_v_stopped): Adjust to use target_pid_to_str.
2271 (handle_v_requests): Allow multiple attaches and runs when
2272 multiprocess extensions are in effect. Handle "vKill".
2273 (myresume): Adjust to use ptids.
2274 (queue_stop_reply_callback): Add `arg' parameter. Handle it.
2275 (handle_status): Adjust to discard_queued_stop_replies interface
2276 change.
2277 (first_thread_of, kill_inferior_callback)
2278 (detach_or_kill_inferior_callback, join_inferiors_callback): New.
2279 (main): Call initialize_inferiors. Adjust to use ptids, killing
2280 and detaching from all inferiors. Handle multiprocess packet
2281 variants.
2282 * linux-low.h: Include gdb_proc_service.h.
2283 (struct process_info_private): New.
2284 (struct linux_target_ops) <pid_of>: Use ptid_get_pid.
2285 <lwpid_of>: Use ptid_get_lwp.
2286 (get_lwp_thread): Adjust.
2287 (struct lwp_info): Add `dead' member.
2288 (find_lwp_pid): Declare.
2289 * linux-low.c (thread_db_active): Delete.
2290 (new_inferior): Adjust comment.
2291 (inferior_pid): Delete.
2292 (linux_add_process): New.
2293 (handle_extended_wait): Adjust.
2294 (add_lwp): Change unsigned long to ptid.
2295 (linux_create_inferior): Add process to processes table. Adjust
2296 to use ptids. Don't set new_inferior here.
2297 (linux_attach_lwp): Rename to ...
2298 (linux_attach_lwp_1): ... this. Add `initial' argument. Handle
2299 it. Adjust to use ptids.
2300 (linux_attach_lwp): New.
2301 (linux_attach): Add process to processes table. Don't set
2302 new_inferior here.
2303 (struct counter): New.
2304 (second_thread_of_pid_p, last_thread_of_process_p): New.
2305 (linux_kill_one_lwp): Add `args' parameter. Handle it. Adjust to
2306 multiple processes.
2307 (linux_kill): Add `pid' argument. Handle it. Adjust to multiple
2308 processes. Remove process from process table.
2309 (linux_detach_one_lwp): Add `args' parameter. Handle it. Adjust
2310 to multiple processes.
2311 (any_thread_of): New.
2312 (linux_detach): Add `pid' argument, and handle it. Remove process
2313 from processes table.
2314 (linux_join): Add `pid' argument. Handle it.
2315 (linux_thread_alive): Change unsighed long argument to ptid_t.
2316 Consider dead lwps as not being alive.
2317 (status_pending_p): Rename `dummy' argument to `arg'. Filter out
2318 threads we're not interested in.
2319 (same_lwp, find_lwp_pid): New.
2320 (linux_wait_for_lwp): Change `pid' argument's type from int to
2321 ptid_t. Adjust.
2322 (linux_wait_for_event): Rename to ...
2323 (linux_wait_for_event_1): ... this. Change `pid' argument's type
2324 from int to ptid_t. Adjust.
2325 (linux_wait_for_event): New.
2326 (linux_wait_1): Add `ptid' argument. Change return type to
2327 ptid_t. Adjust. Use last_thread_of_process_p. Remove processes
2328 that exit from the process table.
2329 (linux_wait): Add `ptid' argument. Change return type to ptid_t.
2330 Adjust.
2331 (mark_lwp_dead): New.
2332 (wait_for_sigstop): Adjust to use ptids. If a process exits while
2333 stopping all threads, mark its main lwp as dead.
2334 (linux_set_resume_request, linux_resume_one_thread): Adjust to use
2335 ptids.
2336 (fetch_register, usr_store_inferior_registers)
2337 (regsets_fetch_inferior_registers)
2338 (regsets_store_inferior_registers, linux_read_memory)
2339 (linux_write_memory): Inline `inferior_pid'.
2340 (linux_look_up_symbols): Adjust to use per-process
2341 `thread_db_active'.
2342 (linux_request_interrupt): Adjust to use ptids.
2343 (linux_read_auxv): Inline `inferior_pid'.
2344 (initialize_low): Don't reference thread_db_active.
2345 * gdb_proc_service.h (struct ps_prochandle) <pid>: Remove.
2346 * proc-service.c (ps_lgetregs): Use find_lwp_pid.
2347 (ps_getpid): Return the pid of the current inferior.
2348 * thread-db.c (proc_handle, thread_agent): Delete.
2349 (thread_db_create_event, thread_db_enable_reporting): Adjust to
2350 per-process data.
2351 (find_one_thread): Change argument type to ptid_t. Adjust to
2352 per-process data.
2353 (maybe_attach_thread): Adjust to per-process data and ptids.
2354 (thread_db_find_new_threads): Ditto.
2355 (thread_db_init): Ditto.
2356 * spu-low.c (spu_create_inferior, spu_attach): Add process to
2357 processes table. Adjust to use ptids.
2358 (spu_kill, spu_detach): Adjust interface. Remove process from
2359 processes table.
2360 (spu_join, spu_thread_alive): Adjust interface.
2361 (spu_wait): Adjust interface. Remove process from processes
2362 table. Adjust to use ptids.
2363 * win32-low.c (current_inferior_tid): Delete.
2364 (current_inferior_ptid): New.
2365 (debug_event_ptid): New.
2366 (thread_rec): Take a ptid. Adjust.
2367 (child_add_thread): Add `pid' argument. Adjust to use ptids.
2368 (child_delete_thread): Ditto.
2369 (do_initial_child_stuff): Add `attached' argument. Add process to
2370 processes table.
2371 (child_fetch_inferior_registers, child_store_inferior_registers):
2372 Adjust.
2373 (win32_create_inferior): Pass 0 to do_initial_child_stuff.
2374 (win32_attach): Pass 1 to do_initial_child_stuff.
2375 (win32_kill): Adjust interface. Remove process from processes
2376 table.
2377 (win32_detach): Ditto.
2378 (win32_join): Adjust interface.
2379 (win32_thread_alive): Take a ptid.
2380 (win32_resume): Adjust to use ptids.
2381 (get_child_debug_event): Ditto.
2382 (win32_wait): Adjust interface. Remove exiting process from
2383 processes table.
2384
2385 2009-04-01 Pedro Alves <pedro@codesourcery.com>
2386
2387 Non-stop mode support.
2388
2389 * server.h (non_stop): Declare.
2390 (gdb_client_data, handler_func): Declare.
2391 (delete_file_handler, add_file_handler, start_event_loop):
2392 Declare.
2393 (handle_serial_event, handle_target_event, push_event)
2394 (putpkt_notif): Declare.
2395 * target.h (enum resume_kind): New.
2396 (struct thread_resume): Replace `step' field by `kind' field.
2397 (TARGET_WNOHANG): Define.
2398 (struct target_ops) <wait>: Add `options' argument.
2399 <supports_non_stop, async, start_non_stop>: New fields.
2400 (target_supports_non_stop, target_async): New.
2401 (start_non_stop): Declare.
2402 (mywait): Add `options' argument.
2403 * target.c (mywait): Add `options' argument. Print child exit
2404 notifications here.
2405 (start_non_stop): New.
2406 * server.c (non_stop, own_buf, mem_buf): New globals.
2407 (struct vstop_notif): New.
2408 (notif_queue): New global.
2409 (queue_stop_reply, push_event, discard_queued_stop_replies)
2410 (send_next_stop_reply): New.
2411 (start_inferior): Adjust to use resume_kind. Adjust to mywait
2412 interface changes.
2413 (attach_inferior): In non-stop mode, don't wait for the target
2414 here.
2415 (handle_general_set): Handle QNonStop.
2416 (handle_query): When handling qC, return the current general
2417 thread, instead of the first thread of the list.
2418 (handle_query): If the backend supports non-stop mode, include
2419 QNonStop+ in the qSupported query response.
2420 (handle_v_cont): Adjust to use resume_kind. Handle resume_stop
2421 and non-stop mode.
2422 (handle_v_attach, handle_v_run): Handle non-stop mode.
2423 (handle_v_stopped): New.
2424 (handle_v_requests): Report support for vCont;t. Handle vStopped.
2425 (myresume): Adjust to use resume_kind. Handle non-stop.
2426 (queue_stop_reply_callback): New.
2427 (handle_status): Handle non-stop mode.
2428 (main): Clear non_stop flag on reconnection. Use the event-loop.
2429 Refactor serial protocol handling from here ...
2430 (process_serial_event): ... to this new function. When GDB
2431 selects any thread, select one here. In non-stop mode, wait until
2432 GDB acks all pending events before exiting.
2433 (handle_serial_event, handle_target_event): New.
2434 * remote-utils.c (remote_open): Install remote_desc in the event
2435 loop.
2436 (remote_close): Remove remote_desc from the event loop.
2437 (putpkt_binary): Rename to...
2438 (putpkt_binary_1): ... this. Add `is_notic' argument. Handle it.
2439 (putpkt_binary): New as wrapper around putpkt_binary_1.
2440 (putpkt_notif): New.
2441 (prepare_resume_reply): In non-stop mode, don't change the
2442 general_thread.
2443 * event-loop.c: New.
2444 * Makefile.in (OBJ): Add event-loop.o.
2445 (event-loop.o): New rule.
2446
2447 * linux-low.h (pid_of): Moved here.
2448 (lwpid_of): New.
2449 (get_lwp_thread): Use lwpid_of.
2450 (struct lwp_info): Delete `lwpid' field. Add `suspended' field.
2451 * linux-low.c (pid_of): Delete.
2452 (inferior_pid): Use lwpid_of.
2453 (linux_event_pipe): New.
2454 (target_is_async_p): New.
2455 (delete_lwp): New.
2456 (handle_extended_wait): Use lwpid_of.
2457 (add_lwp): Don't set lwpid field.
2458 (linux_attach_lwp): Adjust debug output. Use lwpid_of.
2459 (linux_kill_one_lwp): If killing a running lwp, stop it first.
2460 Use lwpid_of. Adjust to linux_wait_for_event interface changes.
2461 (linux_detach_one_lwp): If detaching from a running lwp, stop it
2462 first. Adjust to linux_wait_for_event interface changes. Use
2463 lwpid_of.
2464 (linux_detach): Don't delete the main lwp here.
2465 (linux_join): Use my_waitpid. Avoid signal_pid. Use lwpid_of.
2466 (status_pending_p): Don't consider explicitly suspended lwps.
2467 (linux_wait_for_lwp): Take an integer pid instead of a lwp_info
2468 pointer. Add OPTIONS argument. Change return type to int. Use
2469 my_waitpid instead of sleeping. Handle WNOHANG. Use lwpid_of.
2470 (linux_wait_for_event): Take an integer pid instead of a lwp_info
2471 pointer. Add status pointer argument. Return a pid instead of a
2472 status. Use lwpid_of. Adjust to linux_wait_for_lwp interface
2473 changes. In non-stop mode, don't switch to a random thread.
2474 (linux_wait): Rename to...
2475 (linux_wait_1): ... this. Add target_options argument, and handle
2476 it. Adjust to use resume_kind. Use lwpid_of. In non-stop mode,
2477 don't handle the continue thread. Handle TARGET_WNOHANG. Merge
2478 clean exit and signal exit code. Don't stop all threads in
2479 non-stop mode. In all-stop mode, only stop all threads when
2480 reporting a stop to GDB. Handle explicit thread stop requests.
2481 (async_file_flush, async_file_mark): New.
2482 (linux_wait): New.
2483 (send_sigstop): Use lwpid_of.
2484 (wait_for_sigstop): Use lwpid_of. Adjust to linux_wait_for_event
2485 interface changes. In non-stop mode, don't switch to a random
2486 thread.
2487 (linux_resume_one_lwp): Use lwpid_of.
2488 (linux_continue_one_thread, linux_queue_one_thread): Merge into ...
2489 (linux_resume_one_thread): ... this. Handle resume_stop. In
2490 non-stop mode, don't look for pending flag in all threads.
2491 (resume_status_pending_p): Don't consider explicitly suspended
2492 threads.
2493 (my_waitpid): Reimplement. Emulate __WALL.
2494 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
2495 Use lwpid_of.
2496 (sigchld_handler, linux_supports_non_stop, linux_async)
2497 (linux_start_non_stop): New.
2498 (linux_target_ops): Register linux_supports_non_stop, linux_async
2499 and linux_start_non_stop.
2500 (initialize_low): Install SIGCHLD handler.
2501 * thread-db.c (thread_db_create_event, find_one_thread)
2502 (thread_db_get_tls_address): Use lwpid_of.
2503 * win32-low.c (win32_detach): Adjust to use resume_kind.
2504 (win32_wait): Add `options' argument.
2505 * spu-low.c (spu_resume): Adjust to use resume_kind.
2506 (spu_wait): Add `options' argument.
2507
2508 2009-04-01 Pedro Alves <pedro@codesourcery.com>
2509
2510 Decouple target code from remote protocol.
2511
2512 * target.h (enum target_waitkind): New.
2513 (struct target_waitstatus): New.
2514 (struct target_ops) <wait>: Return an unsigned long. Take a
2515 target_waitstatus pointer instead of a char pointer.
2516 (mywait): Likewise.
2517 * target.c (mywait): Change prototype to return an unsigned long.
2518 Take a target_waitstatus pointer instead of a char pointer. Adjust.
2519 * server.h (thread_from_wait, old_thread_from_wait): Delete
2520 declarations.
2521 (prepare_resume_reply): Change prototype to take a
2522 target_waitstatus.
2523 * server.c (thread_from_wait, old_thread_from_wait): Delete.
2524 (last_status, last_ptid): New.
2525 (start_inferior): Remove "statusptr" argument. Adjust. Return a
2526 pid instead of a signal.
2527 (attach_inferior): Remove "status" and "signal" parameters.
2528 Adjust.
2529 (handle_query): For qGetTLSAddr, parse the thread id with strtol,
2530 not as an address.
2531 (handle_v_cont, handle_v_attach, handle_v_run, handle_v_kill)
2532 (handle_v_requests, myresume): Remove "status" and "signal"
2533 parameters. Adjust.
2534 (handle_status): New.
2535 (main): Delete local `status'. Adjust.
2536 * remote-utils.c: Include target.h.
2537 (prepare_resume_reply): Change prototype to take a
2538 target_waitstatus. Adjust.
2539
2540 * linux-low.c (linux_wait): Adjust to new target_ops->wait
2541 interface.
2542 * spu-low.c (spu_wait): Adjust.
2543 * win32-low.c (enum target_waitkind, struct target_waitstatus):
2544 Delete.
2545 (win32_wait): Adjust.
2546
2547 2009-04-01 Pedro Alves <pedro@codesourcery.com>
2548
2549 * target.h (struct thread_resume): Delete leave_stopped member.
2550 (struct target_ops): Add a `n' argument to the `resume' callback.
2551 * server.c (start_inferior): Adjust.
2552 (handle_v_cont, myresume): Adjust.
2553 * linux-low.c (check_removed_breakpoint): Adjust to resume
2554 interface change, and to removed leave_stopped field.
2555 (resume_ptr): Delete.
2556 (struct thread_resume_array): New.
2557 (linux_set_resume_request): Add new `arg' parameter. Adjust to
2558 resume interface change.
2559 (linux_continue_one_thread, linux_queue_one_thread)
2560 (resume_status_pending_p): Check if the resume field is NULL
2561 instead of checking the leave_stopped member.
2562 (linux_resume): Adjust to the target resume interface change.
2563 * spu-low.c (spu_resume): Adjust to the target resume interface
2564 change.
2565 * win32-low.c (win32_detach, win32_resume): Ditto.
2566
2567 2009-04-01 Pedro Alves <pedro@codesourcery.com>
2568
2569 * linux-low.c (linux_wait_for_event): Don't clear the `stepping'
2570 flag.
2571 (wait_for_sigstop): Don't leave a finished single-step SIGTRAP
2572 pending.
2573 (linux_continue_one_thread): Only preserve the stepping flag if
2574 there's a pending breakpoint.
2575
2576 2009-03-31 Pedro Alves <pedro@codesourcery.com>
2577
2578 * server.c (main): After the inferior having exited, call
2579 remote_close before exiting gdbserver.
2580
2581 2009-03-25 Thiago Jung Bauermann <bauerman@br.ibm.com>
2582
2583 Fix size of FPSCR in Power 7 processors.
2584 * linux-ppc-low.c (PPC_FEATURE_ARCH_2_05): Remove #define.
2585 (PPC_FEATURE_HAS_DFP): New #define.
2586 (ppc_arch_setup): Check for DFP feature instead of ISA 2.05 to decide on
2587 size of the FPSCR.
2588
2589 2009-03-23 Pedro Alves <pedro@codesourcery.com>
2590
2591 * server.c (handle_query) Whitespace and formatting.
2592
2593 2009-03-22 Pedro Alves <pedro@codesourcery.com>
2594
2595 * i387-fp.c, linux-arm-low.c, linux-cris-low.c,
2596 linux-crisv32-low.c, linux-i386-low.c, linux-low.c,
2597 linux-mips-low.c, linux-s390-low.c, linux-sparc-low.c,
2598 linux-x86-64-low.c, linux-xtensa-low.c, proc-service.c,
2599 regcache.c, remote-utils.c, server.c, spu-low.c, target.h,
2600 thread-db.c, win32-low.c, xtensa-xtregs.c, gdbreplay.c,
2601 Makefile.in, configure.ac: Fix whitespace throughout.
2602 * configure: Regenerate.
2603
2604 2009-03-22 Pedro Alves <pedro@codesourcery.com>
2605
2606 * inferiors.c (find_inferior): Make it safe for the callback
2607 function to delete the currently iterated inferior.
2608
2609 2009-03-22 Pedro Alves <pedro@codesourcery.com>
2610
2611 * Makefile.in (linuw_low_h): Move higher.
2612 (thread-db.o): Depend on $(linux_low_h).
2613
2614 2009-03-17 Pedro Alves <pedro@codesourcery.com>
2615
2616 Rename "process" to "lwp" throughout.
2617
2618 * linux-low.c (all_processes): Rename to...
2619 (all_lwps): ... this.
2620 (inferior_pid, handle_extended_wait, get_stop_pc): Adjust.
2621 (add_process): Rename to ...
2622 (add_lwp): ... this. Adjust.
2623 (linux_create_inferior): Adjust.
2624 (linux_attach_lwp): Adjust.
2625 (linux_attach): Adjust.
2626 (linux_kill_one_process): Rename to ...
2627 (linux_kill_one_lwp): ... this. Adjust.
2628 (linux_kill): Adjust.
2629 (linux_detach_one_process): Rename to ...
2630 (linux_detach_one_lwp): ... this. Adjust.
2631 (linux_detach): Adjust.
2632 (check_removed_breakpoint): Adjust.
2633 (status_pending_p): Adjust.
2634 (linux_wait_for_process): Rename to ...
2635 (linux_wait_for_lwp): ... this. Adjust.
2636 (linux_wait_for_event): Adjust.
2637 (send_sigstop): Adjust.
2638 (wait_for_sigstop): Adjust.
2639 (stop_all_processes): Rename to ...
2640 (stop_all_lwps): ... this.
2641 (linux_resume_one_process): Rename to ...
2642 (linux_resume_one_lwp): ... this. Adjust.
2643 (linux_set_resume_request, linux_continue_one_thread)
2644 (linux_queue_one_thread, resume_status_pending_p)
2645 (usr_store_inferior_registers, regsets_store_inferior_registers)
2646 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
2647 Adjust.
2648 * linux-low.h (get_process): Rename to ...
2649 (get_lwp): ... this. Adjust.
2650 (get_thread_process): Rename to ...
2651 (get_thread_lwp): ... this. Adjust.
2652 (get_process_thread): Rename to ...
2653 (get_lwp_thread): ... this. Adjust.
2654 (struct process_info): Rename to ...
2655 (struct lwp_info): ... this.
2656 (all_processes): Rename to ...
2657 (all_lwps): ... this.
2658 * proc-service.c (ps_lgetregs): Adjust.
2659 * thread-db.c (thread_db_create_event, find_one_thread)
2660 (maybe_attach_thread, thread_db_get_tls_address): Adjust.
2661
2662 2009-03-14 Pedro Alves <pedro@codesourcery.com>
2663
2664 * server.c (handle_query): Handle "qAttached".
2665
2666 2009-03-13 Nathan Sidwell <nathan@codesourcery.com>
2667
2668 * Makefile.in, hostio-errno.c, errno.c, xtensa-xtregs.c: Change to
2669 GPLv3, update license URL.
2670
2671 2009-03-01 Doug Evans <dje@google.com>
2672
2673 * Makefile.in (INCLUDE_CFLAGS): Add -I$(srcdir)/../common.
2674 (server_h): Add gdb_signals.h.
2675 (signals.o): Update.
2676 * server.h (target_signal_from_host,target_signal_to_host_p)
2677 (target_signal_to_host,target_signal_to_name): Moved to gdb_signals.h.
2678
2679 2009-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
2680
2681 * remote-utils.c (getpkt): Also generate remote-debug
2682 information if noack_mode is set.
2683
2684 2009-02-06 Pedro Alves <pedro@codesourcery.com>
2685
2686 * server.c (handle_query): Report qXfer:siginfo:read and
2687 qXfer:siginfo:write as supported and handle them.
2688 * target.h (struct target_ops) <qxfer_siginfo>: New field.
2689 * linux-low.c (linux_xfer_siginfo): New.
2690 (linux_target_ops): Set it.
2691
2692 2009-01-26 Pedro Alves <pedro@codesourcery.com>
2693
2694 * server.c (gdbserver_usage): Mention --remote-debug.
2695 (main): Accept '--remote-debug' switch.
2696
2697 2009-01-18 Doug Evans <dje@google.com>
2698
2699 * regcache.c (new_register_cache): No need to check result of xcalloc.
2700 * server.c (handle_search_memory): Back out calls to xmalloc,
2701 result is checked and error is returned to user upon failure.
2702 (handle_query): Ditto. Add more checks for result of malloc.
2703 (handle_v_cont): Check result of malloc, report error back to
2704 user upon failure.
2705 (handle_v_run): Ditto. Call freeargv.
2706 * server.h (freeargv): Declare.
2707 * utils.c (freeargv): New fn.
2708
2709 2009-01-15 Doug Evans <dje@google.com>
2710
2711 * gdbreplay.c (perror_with_name): Make arg const char *.
2712 * server.h (target_signal_to_name): Make return type const char *.
2713 * thread-db.c (thread_db_err_str): Make return type const char *.
2714 * utils.c (perror_with_name): Make arg const char *.
2715
2716 2009-01-14 Pedro Alves <pedro@codesourcery.com>
2717
2718 * win32-low.c (get_child_debug_event): Issue a final DBG_CONTINUE
2719 when handling a EXIT_PROCESS_DEBUG_EVENT.
2720
2721 2009-01-06 Joel Brobecker <brobecker@adacore.com>
2722
2723 * gdbreplay.c (gdbreplay_version): Update copyright year.
2724 * server.c (gdbserver_version): Likewise.
2725
2726 2009-01-05 Doug Evans <dje@google.com>
2727
2728 * linux-low.c (linux_attach_lwp): Add some comments/fixmes.
2729 (handle_extended_wait): Improve comment.
2730
2731 2008-12-13 Doug Evans <dje@google.com>
2732
2733 * utils.c (xmalloc,xcalloc,xstrdup): New fns.
2734 * server.h (ATTR_MALLOC): New macro.
2735 (xmalloc,xcalloc,xstrdup): Declare.
2736 * hostio.c: Replace malloc,calloc,strdup with xmalloc,xcalloc,xstrdup.
2737 * inferiors.c: Ditto.
2738 * linux-low.c: Ditto.
2739 * mem-break.c: Ditto.
2740 * regcache.c: Ditto.
2741 * remote-utils.c: Ditto.
2742 * server.c: Ditto.
2743 * target.c: Ditto.
2744 * win32-low.c: Ditto.
2745
2746 2008-12-12 Doug Evans <dje@google.com>
2747
2748 * linux-low.c (linux_wait_for_process): Don't clobber current_inferior
2749 in debugging printf.
2750
2751 * linux-low.c (handle_extended_wait): Simplify, use my_waitpid.
2752
2753 2008-12-09 Doug Evans <dje@google.com>
2754
2755 * linux-low.h (struct process_info): Delete member tid, unused.
2756 * thread-db.c (find_one_thread): Update.
2757 (maybe_attach_thread): Update.
2758
2759 2008-12-02 Pedro Alves <pedro@codesourcery.com>
2760
2761 * target.h (struct target_ops): Add qxfer_osdata member.
2762 * linux-low.c: Include ctype.h and pwd.h and sys/types.h
2763 and dirent.h.
2764 (linux_qxfer_osdata): New functions.
2765 (linux_target_ops): Register linux_qxfer_osdata as qxfer_osdata
2766 callback.
2767 * server.c (handle_query): Handle "qXfer:osdata:read:".
2768 * remote-utils.c (buffer_grow, buffer_free, buffer_init, buffer_finish)
2769 (buffer_xml_printf): New functions.
2770 * server.h (struct buffer): New.
2771 (buffer_grow_str, buffer_grow_str0): New macros.
2772 (buffer_grow, buffer_free, buffer_init, buffer_finish)
2773 (buffer_xml_printf): Declare.
2774
2775 2008-11-24 Doug Evans <dje@google.com>
2776
2777 * Makefile.in (VERSION,DIST,LINT,LINTFLAGS): Delete, unused.
2778
2779 2008-11-24 Daniel Jacobowitz <dan@codesourcery.com>
2780
2781 * server.c (handle_v_run): Always use the supplied argument list.
2782
2783 2008-11-19 Bob Wilson <bob.wilson@acm.org>
2784
2785 * xtensa-xtregs.c (XTENSA_ELF_XTREG_SIZE): Change to 4.
2786 (xtensa_regmap_table): Add entry for scompare1.
2787
2788 2008-11-18 Thiago Jung Bauermann <bauerman@br.ibm.com>
2789
2790 * Makefile.in (powerpc-isa205-32l.o, powerpc-isa205-32l.c,
2791 powerpc-isa205-altivec32l.o, powerpc-isa205-altivec32l.c,
2792 powerpc-isa205-vsx32l.o, powerpc-isa205-vsx32l.c,
2793 powerpc-isa205-64l.o, powerpc-isa205-64l.c,
2794 powerpc-isa205-altivec64l.o, powerpc-isa205-altivec64l.c,
2795 powerpc-isa205-vsx64l.o, powerpc-isa205-vsx64l.c): New targets.
2796 * configure.srv (powerpc*-*-linux*): Add ISA 2.05 object files and
2797 XML target descriptions.
2798 * linux-ppc-low.c (ppc_arch_setup): Init registers with 64-bit FPSCR
2799 when inferior is running on an ISA 2.05 or later processor. Add
2800 special case to return offset for full 64-bit slot of FPSCR when
2801 in 32-bits.
2802
2803 2008-11-14 Daniel Gutson <dgutson@codesourcery.com>
2804
2805 * Makefile.in (SFILES, clean): Added sparc64 files.
2806 (reg-sparc64.o, reg-sparc64.c): New.
2807 * configure.srv (sparc*-*-linux*): New configuration.
2808 * linux-low.c (regsets_fetch_inferior_registers): Swap ptrace
2809 syscall arguments for SPARC.
2810 (regsets_store_inferior_registers): Likewise.
2811 * linux-sparc-low.c: New file.
2812
2813 2008-10-21 Doug Evans <dje@google.com>
2814
2815 * Makefile.in (BFD_DIR,BFD,BFD_SRC,BFD_CFLAGS): Delete.
2816 (READLINE_DIR,READLINE_DEP): Delete.
2817 (INTERNAL_CFLAGS): Update.
2818 (LINTFLAGS): Update.
2819
2820 2008-10-10 Pedro Alves <pedro@codesourcery.com>
2821
2822 * server.c (handle_v_run): If GDB didn't specify an argv, use the
2823 whole argv from the last run, not just argv[0].
2824
2825 2008-09-08 Pedro Alves <pedro@codesourcery.com>
2826
2827 * regcache.c (new_register_cache): Return NULL if the register
2828 cache size isn't known yet.
2829 (free_register_cache): Avoid dereferencing a NULL regcache.
2830
2831 2008-09-04 Daniel Jacobowitz <dan@codesourcery.com>
2832
2833 * configure.srv: Merge MIPS and MIPS64.
2834
2835 2008-08-24 Maciej W. Rozycki <macro@linux-mips.org>
2836
2837 * Makefile.in (uninstall): Apply $(EXEEXT) too.
2838
2839 2008-08-18 Luis Machado <luisgpm@br.ibm.com>
2840
2841 * Makefile.in: Add required vsx dependencies.
2842
2843 * linux-ppc-low: Define PPC_FEATURE_HAS_VSX.
2844 Declare init_registers_powerpc_vsx32l.
2845 Declare init_registers_powerpc_vsx64l.
2846 Define PTRACE_GETVSXREGS and PTRACE_SETVSXREGS.
2847 (ppc_arch_setup): Check for VSX in hwcap.
2848 (ppc_fill_vsxregset): New function.
2849 (ppc_store_vsxregset): New function.
2850 Add new VSX entry in regset_info target_regsets.
2851
2852 * configure.srv: Add new VSX dependencies.
2853
2854 2008-08-12 Pedro Alves <pedro@codesourcery.com>
2855
2856 * remote-utils.c (noack_mode, transport_is_reliable): New globals.
2857 (remote_open): Set or clear transport_is_reliable.
2858 (putpkt_binary): Don't expect acks in noack mode.
2859 (getpkt): Don't send ack/nac in noack mode.
2860 * server.c (handle_general_set): Handle QStartNoAckMode.
2861 (handle_query): If connected by tcp pass QStartNoAckMode+ in
2862 qSupported.
2863 (main): Reset noack_mode on every connection.
2864 * server.h (noack_mode): Declare.
2865
2866 2008-08-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2867
2868 * Makefile.in (GDBREPLAY_OBS): New variable.
2869 (gdbreplay$(EXEEXT)): Use it to avoid unportable $^.
2870
2871 2008-08-05 Ulrich Weigand <uweigand@de.ibm.com>
2872 Daniel Jacobowitz <dan@codesourcery.com>
2873
2874 * linux-low.c (linux_resume_one_process): Ignore ESRCH.
2875 (usr_store_inferior_registers): Likewise.
2876 (regsets_store_inferior_registers): Likewise.
2877
2878 2008-07-31 Rolf Jansen <rj@surtec.com>
2879 Pedro Alves <pedro@codesourcery.com>
2880
2881 * configure.ac: Check for memmem declaration.
2882 * server.c [HAVE_MALLOC_H]: Include malloc.h.
2883 (disable_packet_vCont, disable_packet_Tthread, disable_packet_qC)
2884 (disable_packet_qfThreadInfo): Unconditionally compile.
2885 * server.h [!HAVE_DECL_MEMMEM]: Declare memmem.
2886 * configure, config.in: Regenerate.
2887
2888 2008-07-28 Doug Kwan <dougkwan@google.com>
2889
2890 * linux-low.c (sys/dir.h, sys/user.h): Remove includes.
2891 (linux_write_memory): Remove declaration of errno.
2892
2893 2008-07-12 Ulrich Weigand <uweigand@de.ibm.com>
2894
2895 * linux-low.c (handle_extended_wait): Do not use "status"
2896 variable uninitialized.
2897
2898 2008-07-07 Pedro Alves <pedro@codesourcery.com>
2899
2900 * server.c (handle_v_attach): Inhibit reporting dll changes.
2901
2902 2008-06-27 Pedro Alves <pedro@codesourcery.com>
2903
2904 * remote-utils.c (prepare_resume_reply): If requested, don't
2905 output "thread:TID" in the T stop reply.
2906
2907 * server.c (disable_packet_vCont, disable_packet_Tthread)
2908 (disable_packet_qC, disable_packet_qfThreadInfo): New globals.
2909 (handle_query): If requested, disable support for qC, qfThreadInfo
2910 and qsThreadInfo.
2911 (handle_v_requests): If requested, disable support for vCont.
2912 (gdbserver_show_disableable): New.
2913 (main): Handle --disable-packet and --disable-packet=LIST.
2914
2915 * server.h (disable_packet_vCont, disable_packet_Tthread)
2916 (disable_packet_qC, disable_packet_qfThreadInfo): Declare.
2917
2918 2008-06-20 Carlos O'Donell <carlos@codesourcery.com>
2919
2920 * server.c (gdbserver_usage): Mention --version.
2921
2922 2008-06-06 Daniel Jacobowitz <dan@codesourcery.com>
2923
2924 * Makefile.in (gdbreplay.o): New rule.
2925
2926 2008-06-06 Joseph Myers <joseph@codesourcery.com>
2927
2928 * gdbreplay.c (gdbreplay_version): Say gdbreplay in version
2929 message, not gdbserver.
2930
2931 2008-06-05 Vladimir Prus <vladimir@codesourcery.com>
2932 Nathan Sidwell <nathan@codesourcery.com>
2933 Joseph Myers <joseph@codesourcery.com>
2934
2935 * acinclude.m4: Include ../../config/acx.m4.
2936 * configure.ac: Use ACX_PKGVERSION and ACX_BUGURL.
2937 * configure, config.in: Regenerate.
2938 * Makefile.in (gdbreplay$(EXEEXT)): Add version.o.
2939 * server.c (gdbserver_version): Print PKGVERSION.
2940 (gdbsrever_usage): Add stream parameter. Print REPORT_BUGS_TO.
2941 (main): Adjust gdbserver_usage calls.
2942 * gdbreplay.c (version, host_name): Add declarations.
2943 (gdbreplay_version, gdbreplay_usage): New.
2944 (main): Accept --version and --help options.
2945
2946 2008-06-04 Daniel Jacobowitz <dan@codesourcery.com>
2947
2948 * linux-arm-low.c (thumb_breakpoint, thumb_breakpoint_len): New.
2949 (arm_breakpoint_at): Handle Thumb.
2950 (the_low_target): Add comment.
2951
2952 2008-05-29 Ulrich Weigand <uweigand@de.ibm.com>
2953
2954 * linux-ppc-low.c (ppc_collect_ptrace_register): Clear buffer.
2955
2956 2008-05-09 Doug Evans <dje@google.com>
2957
2958 * server.h (decode_search_memory_packet): Declare.
2959 * remote-utils.c (decode_search_memory_packet): New fn.
2960 * server.c (handle_search_memory_1): New fn.
2961 (handle_search_memory): New fn.
2962 (handle_query): Process qSearch:memory packets.
2963
2964 2008-05-08 Ulrich Weigand <uweigand@de.ibm.com>
2965
2966 * regcache.c (registers_length): Remove.
2967 (set_register_cache): Verify that PBUFSIZ is large enough to hold a
2968 full register packet.
2969 * regcache.h (registers_length): Remove prototype.
2970 * server.h (PBUFSIZ): Define to 16384.
2971
2972 2008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
2973
2974 * configure.srv (powerpc*-*-linux*): Set srv_regobj to
2975 powerpc-32l.o, powerpc-altivec32l.o, powerpc-e500l.o,
2976 powerpc-64l.o, and powerpc-altivec64l.o.
2977 Remove rs6000/powerpc-32.xml, rs6000/powerpc-64.xml, and
2978 rs6000/powerpc-e500.xml; add rs6000/powerpc-32l.xml,
2979 rs6000/powerpc-altivec32l.xml, rs6000/powerpc-e500l.xml,
2980 rs6000/powerpc-64l.xml, rs6000/powerpc-altivec64l.xml,
2981 rs6000/power-linux.xml, and rs6000/power64-linux.xml
2982 to srv_xmlfiles.
2983
2984 * Makefile.in (reg-ppc.o, reg-ppc.c): Remove, replace by ...
2985 (powerpc-32l.o, powerpc-32l.c): ... these new rules.
2986 (powerpc-32.o, powerpc-32.c): Remove, replace by ...
2987 (powerpc-altivec32l.o, powerpc-altivec32l.c): ... these new rules.
2988 (powerpc-e500.o, powerpc-e500.c): Remove, replace by ...
2989 (powerpc-e500l.o, powerpc-e500l.c): ... these new rules.
2990 (reg-ppc64.o, reg-ppc64.c): Remove, replace by ...
2991 (powerpc-64l.o, powerpc-64l.c): ... these new rules.
2992 (powerpc-64.o, powerpc-64.c): Remove, replace by ...
2993 (powerpc-altivec64l.o, powerpc-altivec64l.c): ... these new rules.
2994 (clean): Update.
2995
2996 * linux-ppc-low.c (init_registers_ppc): Remove, replace by ...
2997 (init_registers_powerpc_32l): ... this new prototype.
2998 (init_registers_powerpc_32): Remove, replace by ...
2999 (init_registers_powerpc_altivec32l): ... this new prototype.
3000 (init_registers_powerpc_e500): Remove, replace by ...
3001 (init_registers_powerpc_e500l): ... this new prototype.
3002 (init_registers_ppc64): Remove, replace by ...
3003 (init_registers_powerpc_64l): ... this new prototype.
3004 (init_registers_powerpc_64): Remove, replace by ...
3005 (init_registers_powerpc_altivec64l): ... this new prototype.
3006 (ppc_num_regs): Set to 73.
3007 (PT_ORIG_R3, PT_TRAP): Define if necessary.
3008 (ppc_regmap, ppc_regmap_e500): Add values for orig_r3 and trap.
3009 (ppc_cannot_store_register): Handle orig_r3 and trap.
3010 (ppc_arch_setup): Update init_registers_... calls.
3011 (ppc_fill_gregset): Handle orig_r3 and trap.
3012
3013 * inferiors.c (clear_inferiors): Reset current_inferior.
3014
3015 2008-04-23 Paolo Bonzini <bonzini@gnu.org>
3016
3017 * acinclude.m4: Add override.m4.
3018 * configure: Regenerate.
3019
3020 2008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
3021
3022 * linux-ppc-low.c (ppc_arch_setup): Reset ppc_hwcap after the
3023 initial call to init_register_ppc64.
3024
3025 2008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
3026
3027 * configure.srv (powerpc64-*-linux*, powerpc-*-linux*): Merge into single
3028 powerpc*-*-linux* case.
3029 (s390-*-linux*, s390x-*-linux*): Merge into single s390*-*-linux* case.
3030
3031 2008-04-17 Ulrich Weigand <uweigand@de.ibm.com>
3032
3033 * configure.srv [powerpc64-*-linux*]: Remove powerpc-e500.o from
3034 srv_regobj. Remove rs6000/powerpc-e500.xml and rs6000/power-spe.xml
3035 from reg_xmlfiles.
3036 * linux-ppc-low.c: Include <elf.h>.
3037 (PPC_FEATURE_HAS_ALTIVEC, PPC_FEATURE_HAS_SPE): Define.
3038 (ppc_hwcap): New global variable.
3039 (ppc_regmap): Remove __SPE__ #ifdef sections.
3040 (ppc_regmap_e500): New global variable.
3041 (ppc_cannot_store_register): Update __SPE__ special case.
3042 (ppc_get_hwcap): New function.
3043 (ppc_arch_setup): Use it to determine whether inferior supports
3044 AltiVec or SPE registers. Set the_low_target.regmap if appropriate.
3045 (ppc_fill_vrregset, ppc_store_vrregset): Define unconditionally.
3046 Do not access registers if target does not support AltiVec.
3047 (ppc_fill_evrregset, ppc_store_evrregset): Define unconditionally.
3048 Do not access registers if target does not support SPE.
3049 (target_regsets): Unconditionally include AltiVec and SPE regsets.
3050
3051 2008-04-17 Daniel Jacobowitz <dan@codesourcery.com>
3052
3053 * linux-low.c (disabled_regsets, num_regsets): New.
3054 (use_regsets_p): Delete.
3055 (linux_wait_for_process): Clear disabled_regsets.
3056 (regsets_fetch_inferior_registers): Check and set it.
3057 (regsets_store_inferior_registers): Likewise.
3058 (linux_fetch_registers, linux_store_registers): Do not use
3059 use_regsets_p.
3060 (initialize_low): Allocate disabled_regsets.
3061
3062 2008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
3063
3064 * Makefile.in (LIBOBJS): New.
3065 (OBS): Use LIBOBJS.
3066 (memmem.o): New rule.
3067 * configure.ac: Use AC_CONFIG_LIBOBJ_DIR and check for memmem.
3068 * configure: Regenerated.
3069
3070 2008-04-04 Ulrich Weigand <uweigand@de.ibm.com>
3071
3072 * server.c (handle_query): Never return "unsupported" for
3073 qXfer:features:read queries.
3074
3075 2008-03-27 Ulrich Weigand <uweigand@de.ibm.com>
3076
3077 * server.c (get_features_xml): Fix inverted condition.
3078 (handle_query): Always support qXfer:feature:read.
3079
3080 2008-03-10 Daniel Jacobowitz <dan@codesourcery.com>
3081
3082 * server.c (wrapper_argv): New.
3083 (start_inferior): Handle wrapper_argv. If set, expect an extra
3084 trap.
3085 (gdbserver_usage): Document --wrapper.
3086 (main): Parse --wrapper.
3087
3088 2008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
3089
3090 * configure.srv [powerpc64-*-linux*]: Add all files mentioned for
3091 powerpc-*-linux* to srv_regobj and reg_xmlfiles.
3092 * linux-ppc-low.c (ppc_get_pc): Support bi-arch operation.
3093 (ppc_set_pc): Likewise.
3094 (ppc_arch_setup): New function.
3095 (ppc_fill_gregset): Call ppc_collect_ptrace_register instead
3096 of collect_register.
3097 (the_low_target): Use ppc_arch_setup as arch_setup initializer.
3098
3099 2008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
3100
3101 * configure.srv [powerpc64-*-linux*]: Use linux-ppc-low.o
3102 instead of linux-ppc64-low.o.
3103 * linux-ppc64-low.c: Remove file.
3104 * Makefile.in (SFILES): Remove linux-ppc64-low.c.
3105 (linux-ppc64-low.o): Remove rule.
3106
3107 * linux-ppc-low.c (init_registers_ppc64): Add prototype.
3108 (init_registers_powerpc_64): Likewise.
3109 (ppc_regmap): Conditionally define depending on __powerpc64__.
3110 (ppc_cannot_store_register): Do not special-case "fpscr" when
3111 compiled on __powerpc64__.
3112 (ppc_collect_ptrace_register): New function.
3113 (ppc_supply_ptrace_register): New function.
3114 (ppc_breakpoint): Change type to "unsigned int".
3115 (ppc_breakpoint_at): Change type of "insn" to "unsigned int".
3116 (the_low_target): Conditionally provide initializers for the
3117 arch_setup member depending on __powerpc64__. Install
3118 collect_ptrace_register and supply_ptrace_register members.
3119
3120 2008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
3121
3122 * regcache.h (gdbserver_xmltarget): Add extern declaration.
3123 * server.c (gdbserver_xmltarget): Define.
3124 (get_features_xml): Use it to replace "target.xml" and arch_string.
3125
3126 * configure.srv: Remove srv_xmltarget. Add XML files that were
3127 mentioned there to srv_xmlfiles instead. Remove conditional tests
3128 on gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe; set
3129 srv_xmlfiles and srv_regobj to include all possible choices.
3130 * configure.ac (srv_xmltarget): Remove.
3131 (srv_xmlfiles): Do not add "target.xml".
3132 (gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe): Remove
3133 checks for supplementary target information.
3134 * configure: Regenerate.
3135 * Makefile.in (XML_TARGET): Remove.
3136 (target.xml): Remove rule.
3137 (clean): Do not clean up target.xml.
3138 (.PRECIOUS): Do not mention target.xml.
3139
3140 * target.h (struct target_ops): Remove arch_string member.
3141 * linux-low.c (linux_arch_string): Remove.
3142 (linux_target_ops): Remove arch_string initializer.
3143 * linux-low.h (struct linux_target_ops): Remove arch_string member.
3144 * linux-i386-low.c (the_low_target): Remove arch_string initializer.
3145 * linux-x86-64-low.c (the_low_target): Remove arch_string initializer.
3146 * spu-low.c (spu_arch_string): Remove.
3147 (spu_target_ops): Remove arch_string initializer.
3148 * win32-low.c (win32_arch_string): Remove.
3149 (win32_target_ops): Remove arch_string initializer.
3150 * win32-low.h (struct win32_target_ops): Remove arch_string member.
3151 * win32-arm-low.c (the_low_target): Remove arch_string initializer.
3152 * win32-i368-low.c (the_low_target): Remove arch_string initializer.
3153
3154 2008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
3155
3156 * linux-low.h (struct linux_target_ops): Replace left_pad_xfer field
3157 by collect_ptrace_register and supply_ptrace_register hooks.
3158 * linux-low.c (fetch_register): Use supply_ptrace_register callback
3159 instead of checking for the_low_target.left_pad_xfer.
3160 (usr_store_inferior_registers): Use collect_ptrace_register callback
3161 instead of checking for the_low_target.left_pad_xfer.
3162
3163 * linux-s390-low.c (s390_collect_ptrace_register): New function.
3164 (s390_supply_ptrace_register): Likewise.
3165 (s390_fill_gregset): Call s390_collect_ptrace_register.
3166 (the_low_target): Update.
3167
3168 * linux-ppc64-low.c (ppc_collect_ptrace_register): New function.
3169 (ppc_supply_ptrace_register): Likewise.
3170 (the_low_target): Update.
3171
3172 * linux-i386-low.c (the_low_target): Update.
3173 * linux-x86-64-low.c (the_low_target): Update.
3174
3175 2008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
3176
3177 * configure.srv [s390x-*-linux*]: Set srv_regobj to include both
3178 reg-s390.o and reg-s390x.o.
3179
3180 * linux-low.c (new_inferior): New global variable.
3181 (linux_create_inferior, linux_attach): Set it.
3182 (linux_wait_for_process): Call the_low_target.arch_setup after the
3183 target has stopped for the first time.
3184 (initialize_low): Do not call the_low_target.arch_setup.
3185
3186 * linux-s390-low.c (s390_get_pc): Support bi-arch operation.
3187 (s390_set_pc): Likewise.
3188 (s390_arch_setup): New function.
3189 (the_low_target): Use s390_arch_setup as arch_setup routine.
3190
3191 * regcache.c (realloc_register_cache): New function.
3192 (set_register_cache): Call it for each existing regcache.
3193
3194 2008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
3195
3196 * server.h (init_registers): Remove prototype.
3197
3198 * linux-low.h (struct linux_target_ops): Add arch_setup field.
3199 * linux-low.c (initialize_low): Call the_low_target.arch_setup ()
3200 instead of init_registers ().
3201 * linux-arm-low.c (init_registers_arm): Add prototype.
3202 (init_registers_arm_with_iwmmxt): Likewise.
3203 (the_low_target): Add initializer for arch_setup field.
3204 * linux-cris-low.c (init_registers_cris): Add prototype.
3205 (the_low_target): Add initializer for arch_setup field.
3206 * linux-crisv32-low.c (init_registers_crisv32): Add prototype.
3207 (the_low_target): Add initializer for arch_setup field.
3208 * linux-i386-low.c (init_registers_i386_linux): Add prototype.
3209 (the_low_target): Add initializer for arch_setup field.
3210 * linux-ia64-low.c (init_registers_ia64): Add prototype.
3211 (the_low_target): Add initializer for arch_setup field.
3212 * linux-m32r-low.c (init_registers_m32r): Add prototype.
3213 (the_low_target): Add initializer for arch_setup field.
3214 * linux-m68k-low.c (init_registers_m68k): Add prototype.
3215 (the_low_target): Add initializer for arch_setup field.
3216 * linux-mips-low.c (init_registers_mips_linux): Add prototype.
3217 (init_registers_mips64_linux): Likewise.
3218 (the_low_target): Add initializer for arch_setup field.
3219 * linux-ppc-low.c (init_registers_ppc): Add prototype.
3220 (init_registers_powerpc_32, init_registers_powerpc_e500): Likewise.
3221 (the_low_target): Add initializer for arch_setup field.
3222 * linux-ppc64-low.c (init_registers_ppc64): Add prototype.
3223 (init_registers_powerpc_64): Likewise.
3224 (the_low_target): Add initializer for arch_setup field.
3225 * linux-s390-low.c (init_registers_s390): Add prototype.
3226 (init_registers_s390x): Likewise.
3227 (the_low_target): Add initializer for arch_setup field.
3228 * linux-sh-low.c (init_registers_sh): Add prototype.
3229 (the_low_target): Add initializer for arch_setup field.
3230 * linux-x86-64-low.c (init_registers_x86_64_linux): Add prototype.
3231 (the_low_target): Add initializer for arch_setup field.
3232 * linux-xtensa-low.c (init_registers_xtensa): Add prototype.
3233 (the_low_target): Add initializer for arch_setup field.
3234
3235 * win32-low.h (struct win32_target_ops): Add arch_setup field.
3236 * win32-low.c (initialize_low): Call the_low_target.arch_setup ()
3237 instead of init_registers ().
3238 * win32-arm-low.c (init_registers_arm): Add prototype.
3239 (the_low_target): Add initializer for arch_setup field.
3240 * win32-i386-low.c (init_registers_i386): Add prototype.
3241 (the_low_target): Add initializer for arch_setup field.
3242
3243 * spu-low.c (init_registers_spu): Add prototype.
3244 (initialize_low): Call initialie_registers_spu () instead of
3245 initialize_registers ().
3246
3247 2008-02-19 Pedro Alves <pedro@codesourcery.com>
3248
3249 * server.c (handle_v_requests): When handling the vRun and vAttach
3250 packets, if already debugging a process, don't kill it. Return an
3251 error instead.
3252
3253 2008-02-17 Daniel Jacobowitz <dan@codesourcery.com>
3254
3255 * server.c (handle_query): Correct length check.
3256
3257 2008-02-14 Pedro Alves <pedro_alves@portugalmail.pt>
3258
3259 * win32-low.c (do_initial_child_stuff): Add process handle
3260 parameter. Set current_process_handle and current_process_id from the
3261 parameters. Clear globals.
3262 (win32_create_inferior): Don't set current_process_handle and
3263 current_process_id here. Instead pass them on the call to
3264 do_initial_child_stuff.
3265 (win32_attach): Likewise.
3266 (win32_clear_inferiors): New.
3267 (win32_kill): Don't close the current process handle or the
3268 current thread handle here. Instead call win32_clear_inferiors.
3269 (win32_detach): Don't open a new handle to the process. Call
3270 win32_clear_inferiors.
3271 (win32_join): Don't rely on current_process_handle; open a new
3272 handle using the process id.
3273 (win32_wait): Call win32_clear_inferiors when the inferior process
3274 has exited.
3275
3276 2008-02-14 Daniel Jacobowitz <dan@codesourcery.com>
3277
3278 * server.c (monitor_show_help): Add "exit".
3279
3280 2008-02-11 Maxim Grigoriev <maxim2405@gmail.com>
3281
3282 * Makefile.in (SFILES): Add linux-xtensa-low.c.
3283 (clean): Add reg-xtensa.c.
3284 (linux-xtensa-low.o, reg-xtensa.o, reg-xtensa.c): New dependencies.
3285 * configure.srv (xtensa*-*-linux*) New target.
3286 * linux-xtensa-low.c: New.
3287 * xtensa-xtregs.c: New.
3288
3289 2008-02-01 Pedro Alves <pedro_alves@portugalmail.pt>
3290
3291 * hostio.c: Don't include errno.h.
3292 (errno_to_fileio_errno): Move to hostio-errno.
3293 * hostio.c: (hostio_error): Remove the error parameter. Defer the
3294 error number outputting to the target->hostio_last_error callback.
3295 (hostio_packet_error): Use FILEIO_EINVAL directly.
3296 (handle_open, handle_pread, hostio_error, handle_unlink): Update
3297 calls to hostio_error.
3298 * hostio-errno.c: New.
3299 * server.h (hostio_last_error_from_errno): Declare.
3300 * target.h (target_ops): Add hostio_last_error member.
3301 * linux-low.c (linux_target_op): Register hostio_last_error_from_errno
3302 as hostio_last_error handler.
3303 * spu-low.c (spu_target_ops): Likewise.
3304 * win32-low.c [_WIN32_WCE] (win32_error_to_fileio_error)
3305 (wince_hostio_last_error): New functions.
3306 (win32_target_ops) [_WIN32_WCE]: Register wince_hostio_last_error
3307 as hostio_last_error handler.
3308 (win32_target_ops) [!_WIN32_WCE]: Register
3309 hostio_last_error_from_errno as hostio_last_error handler.
3310 * Makefile.in (SFILES): Add hostio.c and hostio-errno.c.
3311 (hostio-errno.o): New rule.
3312 * configure.ac (GDBSERVER_DEPFILES): Add $srv_hostio_err_objs.
3313 * configure.srv (srv_hostio_err_objs): New variable. Default to
3314 hostio-errno.o.
3315 (arm*-*-mingw32ce*): Set srv_hostio_err_objs to "".
3316 * configure: Regenerate.
3317
3318 2008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
3319
3320 * linux-low.c (linux_attach_lwp): Do not _exit after errors.
3321 (linux_kill, linux_detach): Clean up the process list.
3322 * remote-utils.c (remote_open): Improve port number parsing.
3323 (putpkt_binary, input_interrupt): Only send interrupts if the target
3324 is running.
3325 * server.c (extended_protocol): Make static.
3326 (attached): Define earlier.
3327 (exit_requested, response_needed, program_argv): New variables.
3328 (target_running): New.
3329 (start_inferior): Clear attached here.
3330 (attach_inferior): Set attached here.
3331 (require_running): Define.
3332 (handle_query): Use require_running and target_running. Implement
3333 "monitor exit".
3334 (handle_v_attach, handle_v_run): New.
3335 (handle_v_requests): Use require_running. Handle vAttach and vRun.
3336 (gdbserver_usage): Update.
3337 (main): Redo argument parsing. Handle --debug and --multi. Handle
3338 --attach along with other options or after the port. Save
3339 program_argv. Support no initial program. Resynchronize
3340 communication with GDB after an error. Handle "monitor exit".
3341 Use require_running and target_running. Always allow the extended
3342 protocol. Do not error out for Hc0 or Hc-1. Do not automatically
3343 restart in extended mode.
3344 * README: Refer to the GDB manual. Update --attach usage.
3345
3346 2007-12-20 Andreas Schwab <schwab@suse.de>
3347
3348 * linux-low.c (STACK_SIZE): Define.
3349 (linux_tracefork_child): Use it. Use __clone2 on ia64.
3350 (linux_test_for_tracefork): Likewise.
3351
3352 2007-12-18 Daniel Jacobowitz <dan@codesourcery.com>
3353
3354 * linux-low.c (linux_wait_for_event): Update messages. Do not
3355 reinsert auto-delete breakpoints.
3356 * mem-break.c (struct breakpoint): Change return type of handler to
3357 int.
3358 (set_breakpoint_at): Update handler type.
3359 (reinsert_breakpoint_handler): Return 1 instead of calling
3360 delete_breakpoint.
3361 (reinsert_breakpoint_by_bp): Check for the original breakpoint before
3362 setting a new one.
3363 (check_breakpoints): Delete auto-delete breakpoints and return 2.
3364 * mem-break.h (set_breakpoint_at): Update handler type.
3365 * thread-db.c (thread_db_create_event, thread_db_create_event): Update.
3366 * win32-low.c (auto_delete_breakpoint): New.
3367 (get_child_debug_event): Use it.
3368
3369 2007-12-16 Daniel Jacobowitz <dan@codesourcery.com>
3370
3371 * configure.ac: Check for pread and pwrite.
3372 * hostio.c (handle_pread): Fall back to lseek and read.
3373 (handle_pwrite): Fall back to lseek and write.
3374 * config.in, configure: Regenerated.
3375
3376 2007-12-07 Daniel Jacobowitz <dan@codesourcery.com>
3377
3378 * server.c (myresume): Add own_buf argument.
3379 (main): Update calls.
3380
3381 2007-12-06 Daniel Jacobowitz <dan@codesourcery.com>
3382
3383 * linux-low.c (linux_wait, linux_resume): Do not handle async I/O.
3384 * remote-utils.c (remote_open): Do not call disable_async_io.
3385 (block_async_io): Delete.
3386 (unblock_async_io): Make static.
3387 (initialize_async_io): New.
3388 * server.c (handle_v_cont): Handle async I/O here.
3389 (myresume): Likewise. Move other common resume tasks here...
3390 (main): ... from here. Call initialize_async_io. Disable async
3391 I/O before the main loop.
3392 * server.h (initialize_async_io): Declare.
3393 (block_async_io, unblock_async_io): Delete prototypes.
3394 * spu-low.c (spu_resume, spu_wait): Do not handle async I/O here.
3395
3396 2007-12-06 Mick Davis <mickd@goanna.iinet.net.au>
3397
3398 * remote-utils.c (readchar): Allow binary data in received messages.
3399
3400 2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
3401
3402 * win32-low.c (attaching): New global.
3403 (win32_create_inferior): Clear the `attaching' global.
3404 (win32_attach): Set the `attaching' global.
3405 (get_child_debug_event) [_WIN32_WCE]: Stop the inferior when
3406 attaching. Only set a breakpoint at the entry point if not
3407 attaching.
3408
3409 2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
3410
3411 * server.c (main): Don't report dll events on the initial
3412 connection on attaches.
3413
3414 2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
3415
3416 * server.c (main): Relax numerical bases supported for the pid of
3417 the --attach command line argument.
3418
3419 2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
3420
3421 * win32-low.c (win32_attach): Call OpenProcess before
3422 DebugActiveProcess, not after. Add last error output to error
3423 call.
3424
3425 2007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
3426
3427 * win32-low.c (win32_get_thread_context)
3428 (win32_set_thread_context): New functions.
3429 (thread_rec): Use win32_get_thread_context.
3430 (continue_one_thread, win32_resume): Use win32_set_thread_context.
3431 * win32-low.h (win32_thread_info) [_WIN32_WCE]: Add `base_context'
3432 field.
3433
3434 2007-12-03 Leo Zayas
3435 Pedro Alves <pedro_alves@portugalmail.pt>
3436
3437 * win32-low.c (soft_interrupt_requested, faked_breakpoint): New
3438 global variables.
3439 (child_add_thread): Minor cleanup.
3440 (child_continue): Resume artificially suspended threads before
3441 calling ContinueDebugEvent.
3442 (suspend_one_thread): New.
3443 (fake_breakpoint_event): New.
3444 (get_child_debug_event): Change return type to int. Check here if
3445 gdb sent an interrupt request. If a soft interrupt was requested,
3446 fake a breakpoint event. Return 0 if there is no event to handle,
3447 and 1 otherwise.
3448 (win32_wait): Don't check here if gdb sent an interrupt request.
3449 Ensure there is a valid event to handle.
3450 (win32_request_interrupt): Add soft interruption method as last
3451 resort.
3452
3453 2007-12-03 Leo Zayas
3454 Pedro Alves <pedro_alves@portugalmail.pt>
3455
3456 * win32-low.h (win32_thread_info): Add descriptions to the
3457 structure members. Replace `suspend_count' counter by a
3458 `suspended' flag.
3459 * win32-low.c (thread_rec): Update condition of when to get the
3460 context from the inferior. Rely on ContextFlags being set if it
3461 has already been retrieved. Only suspend the inferior thread if
3462 we haven't already. Warn if that fails.
3463 (continue_one_thread): s/suspend_count/suspended/. Only call
3464 ResumeThread once. Warn if that fails.
3465
3466 2007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
3467
3468 * win32-low.c (win32_wait): Don't read from the inferior when it
3469 has already exited.
3470
3471 2007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
3472
3473 * Makefile.in (win32_low_h): New variable.
3474 (win32-low.o): Add dependency on $(win32_low_h).
3475 (win32-arm-low.o, win32-i386-low.o): New rules.
3476
3477 2007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
3478
3479 * hostio.c: Correct copyright year.
3480
3481 2007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
3482
3483 * Makefile.in (OBS): Add hostio.o.
3484 (hostio.o): New rule.
3485 * server.h (handle_vFile): Declare.
3486 * hostio.c: New file.
3487 * server.c (handle_v_requests): Take packet_len and new_packet_len
3488 for binary packets. Call handle_vFile.
3489 (main): Update call to handle_v_requests.
3490
3491 2007-11-05 Daniel Jacobowitz <dan@codesourcery.com>
3492
3493 * linux-low.c: Include <sched.h>.
3494
3495 2007-11-01 Daniel Jacobowitz <dan@codesourcery.com>
3496
3497 * linux-low.c (linux_tracefork_grandchild): New.
3498 (linux_tracefork_child): Use clone.
3499 (linux_test_for_tracefork): Use clone; allocate and free a stack.
3500
3501 2007-10-31 Joel Brobecker <brobecker@adacore.com>
3502
3503 * Makefile.in: Use $(SHELL) instead of "sh" to call regdat.sh.
3504
3505 2007-10-24 Daniel Jacobowitz <dan@codesourcery.com>
3506
3507 * linux-low.c (handle_extended_wait): Handle unexpected signals.
3508
3509 2007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
3510
3511 * inferiors.c (change_inferior_id): Delete.
3512 (add_pid_to_list, pull_pid_from_list): New.
3513 * linux-low.c (PTRACE_SETOPTIONS, PTRACE_GETEVENTMSG)
3514 (PTRACE_O_TRACESYSGOOD, PTRACE_O_TRACEFORK, PTRACE_O_TRACEVFORK)
3515 (PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXEC, PTRACE_O_TRACEVFORKDONE)
3516 (PTRACE_O_TRACEEXIT, PTRACE_EVENT_FORK, PTRACE_EVENT_VFORK)
3517 (PTRACE_EVENT_CLONE, PTRACE_EVENT_EXEC, PTRACE_EVENT_VFORK_DONE)
3518 (PTRACE_EVENT_EXIT, __WALL): Provide default definitions.
3519 (stopped_pids, thread_db_active, must_set_ptrace_flags): New variables.
3520 (using_threads): Always set to 1.
3521 (handle_extended_wait): New.
3522 (add_process): Do not set TID.
3523 (linux_create_inferior): Set must_set_ptrace_flags.
3524 (linux_attach_lwp): Remove TID argument. Do not check using_threads.
3525 Use PTRACE_SETOPTIONS. Call new_thread_notify. Update all callers.
3526 (linux_thread_alive): Rename TID argument to LWPID.
3527 (linux_wait_for_process): Handle unknown processes. Do not use TID.
3528 (linux_wait_for_event): Do not use TID or check using_threads. Update
3529 call to dead_thread_notify. Call handle_extended_wait.
3530 (linux_create_inferior): Use PTRACE_SETOPTIONS.
3531 (send_sigstop): Delete sigstop_sent.
3532 (wait_for_sigstop): Avoid TID.
3533 (linux_supports_tracefork_flag, linux_tracefork_child, my_waitpid)
3534 (linux_test_for_tracefork): New.
3535 (linux_lookup_signals): Use thread_db_active and
3536 linux_supports_tracefork_flag.
3537 (initialize_low): Use thread_db_active and linux_test_for_tracefork.
3538 * linux-low.h (get_process_thread): Avoid TID.
3539 (struct process_ifo): Move thread_known and tid to the end. Remove
3540 sigstop_sent.
3541 (linux_attach_lwp, thread_db_init): Update prototypes.
3542 * server.h (change_inferior_id): Delete prototype.
3543 (add_pid_to_list, pull_pid_from_list): New prototypes.
3544 * thread-db.c (thread_db_use_events): New.
3545 (find_first_thread): Rename to...
3546 (find_one_thread): ...this. Update callers and messages. Do not
3547 call fatal. Check thread_db_use_events. Do not call
3548 change_inferior_id or new_thread_notify.
3549 (maybe_attach_thread): Update. Do not call new_thread_notify.
3550 (thread_db_init): Set thread_db_use_events. Check use_events.
3551 * utils.c (fatal, warning): Correct message prefix.
3552
3553 2007-10-15 Daniel Jacobowitz <dan@codesourcery.com>
3554
3555 * Makefile.in (clean): Remove new files.
3556 (powerpc-32.o, powerpc-32.c, powerpc-e500.o, powerpc-e500.c)
3557 (powerpc-64.o, powerpc-64.c): New rules.
3558 * configure.srv: Use alternate register sets for powerpc64-*-linux*
3559 with AltiVec, powerpc-*-linux* with AltiVec, and powerpc-*-linux*
3560 with SPE.
3561 * linux-ppc-low.c (ppc_regmap): Do not fetch the FP registers for
3562 SPE targets.
3563 (ppc_cannot_store_register): Do not check for FPSCR for SPE targets.
3564 (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS, ppc_fill_vrregset)
3565 (ppc_store_vrregset, PTRACE_GETEVRREGS, PTRACE_SETEVRREGS)
3566 (struct gdb_evrregset_t, ppc_fill_evrregset, ppc_store_evrregset): New.
3567 (target_regsets): Add AltiVec and SPE register sets.
3568 * configure.ac: Check for AltiVec and SPE.
3569 * linux-ppc64-low.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS)
3570 (ppc_fill_vrregset, ppc_store_vrregset): New.
3571 (target_regsets): Add AltiVec register set.
3572 * configure: Regenerated.
3573
3574 2007-09-19 Daniel Jacobowitz <dan@codesourcery.com>
3575
3576 * linux-low.c (O_LARGEFILE): Define.
3577 (linux_read_memory): Use /proc/PID/mem.
3578 * configure.ac: Use AC_GNU_SOURCE. Check for pread64.
3579 * configure, config.in: Regenerated.
3580
3581 2007-09-04 Daniel Jacobowitz <dan@codesourcery.com>
3582
3583 * linux-low.c (linux_wait_for_event): Do not pass signals while
3584 single-stepping.
3585
3586 2007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
3587
3588 * win32-low.c (create_process): New.
3589 (win32_create_inferior): Use create_process instead of
3590 CreateProcess. If create_process failed retry appending an ".exe"
3591 suffix. Store the GetLastError result immediatelly after
3592 create_process calls and use it on the call to error.
3593
3594 2007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
3595
3596 * win32-low.c (handle_load_dll): Don't use toolhelp when waiting.
3597
3598 2007-08-23 Joel Brobecker <brobecker@adacore.com>
3599
3600 * configure.ac: Switch license to GPLv3.
3601
3602 2007-08-01 Michael Snyder <msnyder@access-company.com>
3603
3604 * remote-utils.c (putpkt_binary): Memory leak, free buf2.
3605
3606 2007-07-31 Pedro Alves <pedro_alves@portugalmail.pt>
3607
3608 * win32-low.c (winapi_CloseToolhelp32Snapshot) [_WIN32_WCE]: New
3609 typedef.
3610 (win32_CloseToolhelp32Snapshot) [_WIN32_WCE]: New global var.
3611 (load_toolhelp) [_WIN32_WCE]: Load TOOLHELP.DLL. Get
3612 CloseToolhelp32Snapshot.
3613 (toolhelp_get_dll_name) [_WIN32_WCE]: Close the snapshot with
3614 CloseToolhelp32Snapshot.
3615
3616 2007-07-27 Michael Snyder <michael.snyder@access-company.com>
3617
3618 * server.c (main): Check for inferior exit before main loop.
3619
3620 2007-07-18 Pedro Alves <pedro_alves@portugalmail.pt>
3621
3622 * remote-utils.c (remote_open): Set SO_KEEPALIVE on remote_desc
3623 instead of on tmp_desc.
3624
3625 2007-07-17 Pedro Alves <pedro_alves@portugalmail.pt>
3626 Daniel Jacobowitz <dan@codesourcery.com>
3627
3628 * inferiors.c (all_dlls, dlls_changed, get_dll): New.
3629 (add_thread): Minor cleanups.
3630 (clear_inferiors): Move lower in the file. Clear the DLL
3631 list.
3632 (free_one_dll, match_dll, loaded_dll, unloaded_dll, clear_list): New.
3633 * remote-utils.c (prepare_resume_reply): Check dlls_changed.
3634 (xml_escape_text): New.
3635 * server.c (handle_query): Handle qXfer:libraries:read. Report it
3636 for qSupported.
3637 (handle_v_cont): Report errors.
3638 (gdbserver_version): Update.
3639 (main): Correct size of own_buf. Do not report initial DLL events.
3640 * server.h (struct dll_info, all_dlls, dlls_changed, loaded_dll)
3641 (unloaded_dll, xml_escape_text): New.
3642 * win32-low.c (enum target_waitkind): Update comments.
3643 (win32_add_one_solib, get_image_name, winapi_EnumProcessModules)
3644 (winapi_GetModuleInformation, winapi_GetModuleFileNameExA)
3645 (win32_EnumProcessModules, win32_GetModuleInformation)
3646 (win32_GetModuleFileNameExA, load_psapi, psapi_get_dll_name)
3647 (winapi_CreateToolhelp32Snapshot, winapi_Module32First)
3648 (winapi_Module32Next, win32_CreateToolhelp32Snapshot)
3649 (win32_Module32First, win32_Module32Next, load_toolhelp)
3650 (toolhelp_get_dll_name, handle_load_dll, handle_unload_dll): New.
3651 (get_child_debug_event): Handle DLL events.
3652 (win32_wait): Likewise.
3653
3654 2007-07-12 Daniel Jacobowitz <dan@codesourcery.com>
3655
3656 * configure.srv: Set srv_linux_regsets for sh*-*-linux*.
3657 * linux-sh-low.c (sh_fill_gregset, target_regsets): New.
3658
3659 2007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
3660
3661 * win32-low.c (handle_output_debug_string): Ignore event if not
3662 waiting.
3663
3664 2007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
3665
3666 * win32-arm-low.c (arm_wince_breakpoint): Fix typo.
3667
3668 2007-07-03 Daniel Jacobowitz <dan@codesourcery.com>
3669
3670 * remote-utils.c (look_up_one_symbol): Handle 'm' packets.
3671
3672 2007-07-02 Daniel Jacobowitz <dan@codesourcery.com>
3673
3674 * inferiors.c (change_inferior_id): Add comment.
3675 * linux-low.c (check_removed_breakpoint): Add an early
3676 prototype. Improve debug output.
3677 (linux_attach): Doc update.
3678 (linux_detach_one_process, linux_detach): Clean up before releasing
3679 each process.
3680 (send_sigstop, wait_for_sigstop): Improve comments and debug output.
3681 * linux-low.h (struct process_info): Doc improvement.
3682 * mem-break.c (delete_all_breakpoints): New.
3683 * mem-break.h (delete_all_breakpoints): New prototype.
3684 * thread-db.c (find_first_thread): New.
3685 (thread_db_create_event): Call it instead of
3686 thread_db_find_new_threads. Clean up unused variables.
3687 (maybe_attach_thread): Remove first thread handling.
3688 (thread_db_find_new_threads): Use find_first_thread.
3689 (thread_db_get_tls_address): Likewise.
3690
3691 2007-06-27 Daniel Jacobowitz <dan@codesourcery.com>
3692
3693 * thread-db.c (thread_db_find_new_threads): Add prototype.
3694 (thread_db_create_event): Check for the main thread before adding
3695 a new thread.
3696 (maybe_attach_thread): Only enable event reporting if TID == 0.
3697 (thread_db_get_tls_address): Check for new threads.
3698
3699 2007-06-20 Daniel Jacobowitz <dan@codesourcery.com>
3700
3701 * linux-low.c (linux_create_inferior): Try execv before execvp.
3702 * spu-low.c (spu_create_inferior): Likewise.
3703
3704 2007-06-13 Mike Frysinger <vapier@gentoo.org>
3705
3706 * linux-low.c (linux_create_inferior): Change execv to execvp.
3707 * spu-low.c (spu_create_inferior): Likewies.
3708
3709 2007-06-13 Daniel Jacobowitz <dan@codesourcery.com>
3710
3711 * Makefile.in (clean): Clean new files instead of deleted ones.
3712 (reg-mips.o, reg-mips.c, reg-mips64.o, reg-mips64.c): Delete.
3713 (mips-linux.o, mips-linux.c, mips64-linux.o, mips64-linux.c): New
3714 rules.
3715 * configure.srv: Specify XML files and new regformats for MIPS and
3716 MIPS64 GNU/Linux.
3717 * linux-mips-low.c (mips_num_regs): Set to only used registers.
3718 (mips_regmap): Do not fetch $0. Remove unused registers. Add
3719 an entry for the restart register.
3720 (mips_cannot_fetch_register, mips_cannot_store_register)
3721 (mips_reinsert_addr, mips_fill_fpregset, mips_store_fpregset): Update
3722 register names to match the XML descriptions.
3723 (mips_fill_gregset, mips_store_gregset): Likewise. Handle the
3724 restart register instead of $0.
3725
3726 2007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
3727 Markus Deuling <deuling@de.ibm.com>
3728
3729 * remote-utils.c (decode_xfer_write): New function.
3730 * server.h (decode_xfer_write): Add prototype.
3731 * server.c (handle_query): Add PACKET_LEN argument. Support
3732 qXfer:spu:read and qXfer:spu:write packets.
3733 (main): Pass packet_len to handle_query.
3734 * spu-low.c (spu_target_ops): Add spu_proc_xfer_spu.
3735 * target.h (target_ops): Add qxfer_spu.
3736
3737 2007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
3738
3739 * spu-low.c (spu_proc_xfer_spu): Do not return failure when
3740 accessing non-seekable spufs files.
3741
3742 2007-05-16 Markus Deuling <deuling@de.ibm.com>
3743
3744 * server.c (handle_query): Add reply for qC packet.
3745
3746 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
3747 Leo Zayas <lerele@champenstudios@com>
3748
3749 * server.h (check_remote_input_interrupt_request): New function.
3750 * remote_utils.c (INVALID_DESCRIPTOR): New define.
3751 (remote_desc): Initialize with INVALID_DESCRIPTOR.
3752 (input_interrupt): Expose on USE_WIN32API too. Fix whitespace.
3753 (check_remote_input_interrupt_request): New function.
3754 * server.h (check_remote_input_interrupt_request): Declare.
3755 * win32-low.c (winapi_DebugBreakProcess,
3756 winapi_GenerateConsoleCtrlEvent): New typedefs.
3757 (get_child_debug_event): Lower Win32 debug event polling from 1 sec
3758 to 250 ms.
3759 (win32_wait): Check for remote interrupt request
3760 with check_remote_input_interrupt_request.
3761 (win32_request_interrupt): New function.
3762 (win32_target_op): Set request_interrupt to win32_request_interrupt.
3763
3764 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
3765
3766 * win32-low.c (debug_registers_changed,
3767 debug_registers_used, CONTEXT_EXTENDED_REGISTERS,
3768 CONTEXT_FLOATING_POINT, CONTEXT_DEBUG_REGISTERS,
3769 CONTEXT_DEBUGGER, CONTEXT_DEBUGGER_DR): Delete.
3770 (thread_rec): Get context using the low target.
3771 (child_add_thread): Call thread_added on the low target,
3772 which does the same thing.
3773 (regptr): Delete.
3774 (do_initial_child_stuff): Remove debug registers references.
3775 Set context using the low target. Resume threads after
3776 setting the contexts.
3777 (child_continue): Remove dead variable. Remove debug
3778 registers references.
3779 (child_fetch_inferior_registers): Go through the low target.
3780 (do_child_store_inferior_registers): Remove.
3781 (child_store_inferior_registers): Go through the low target.
3782 (win32_resume): Remove debug registers references.
3783 Set context using the low target.
3784 (handle_exception): Change return type to void. Don't record
3785 context here. Set status to TARGET_WAITKIND_SPURIOUS on a
3786 first chance exception.
3787 (get_child_debug_event): Change return type to void. Remove
3788 goto loop. Always return after waiting for debug event.
3789 (win32_wait): Convert to switch statement. Handle spurious
3790 events.
3791
3792 * win32-i386-low.c (debug_registers_changed,
3793 debug_registers_used): New.
3794 (initial_stuff): Rename to ...
3795 (i386_initial_stuff): ... this. Clear debug registers
3796 state variables.
3797 (store_debug_registers): Delete.
3798 (i386_get_thread_context): New.
3799 (load_debug_registers): Delete.
3800 (i386_set_thread_context): New.
3801 (i386_thread_added): New.
3802 (single_step): Rename to ...
3803 (i386_single_step): ... this.
3804 (do_fetch_inferior_registers): Rename to ...
3805 (i386_fetch_inferior_register): ... this.
3806 (i386_store_inferior_register): New.
3807 (the_low_target): Adapt to new interface.
3808
3809 * win32-arm-low.c (CONTEXT_FLOATING_POINT): Define.
3810 (arm_get_thread_context): New.
3811 (arm_set_thread_context): New.
3812 (regptr): New.
3813 (do_fetch_inferior_registers): Rename to ...
3814 (arm_fetch_inferior_register): ... this.
3815 (arm_store_inferior_register): New.
3816 (arm_wince_breakpoint): Reimplement as unsigned long.
3817 (arm_wince_breakpoint_len): Define.
3818 (the_low_target): Adapt to new interface.
3819
3820 * win32-low.h (target_ops): Remove regmap, store_debug_registers and
3821 load_debug_registers. Add get_thread_context, set_thread_context,
3822 thread_added and store_inferior_register. Rename
3823 fetch_inferior_registers to fetch_inferior_register.
3824 (regptr): Remove declaration.
3825
3826 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
3827
3828 * linux-low.c (linux_detach): Change return type to int. Return 0.
3829 * spu-low.c (spu_detach): Likewise.
3830
3831 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
3832
3833 * target.h (target_ops): Change return type of detach to int.
3834 Add join.
3835 (join_inferior): New.
3836 * server.c (main): Don't skip detach support on mingw32.
3837 If the inferior doesn't support detaching return error.
3838 Call join_inferior instead of using waitpid.
3839 * linux-low.c (linux_join): New.
3840 (linux_target_op): Add linux_join.
3841 * spu-low.c (spu_join): New.
3842 (spu_target_ops): Add spu_join.
3843 * win32-low.c (win32_detach): Adapt to new interface.
3844 Reopen current_process_handle before detaching. Issue a child
3845 resume before detaching.
3846 (win32_join): New.
3847 (win32_target_op): Add win32_join.
3848
3849 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
3850
3851 * win32-low.c (win32-attach): Fix return value.
3852 * target.h (target_ops): Describe ATTACH return values.
3853
3854 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
3855
3856 * win32-low.c (GETPROCADDRESS): Define.
3857 (winapi_DebugActiveProcessStop): Add WINAPI. typedef as pointer.
3858 (winapi_DebugSetProcessKillOnExit): Likewise.
3859 (win32_create_inferior): Force usage of ansi CreateProcessA.
3860 (win32_attach): Use GETPROCADDRESS.
3861 (win32_detach): Likewise.
3862
3863 2007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
3864
3865 * win32-low.c (win32_wait): Don't use WSTOPSIG.
3866
3867 2007-03-30 Pedro Alves <pedro_alves@portugalmail.pt>
3868
3869 * win32-low.c: Commit leftover changes from 2007-03-29.
3870
3871 2007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
3872
3873 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Make 16-bit
3874 fields short instead of int. Add explicit padding.
3875 (i387_cache_to_fsave): Remove unnecessary casts.
3876 (i387_fsave_to_cache): Doc fix.
3877 (i387_cache_to_fxsave): Remove unnecessary casts and masking.
3878
3879 2007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
3880
3881 * i387-fp.c (i387_cache_to_fxsave): Reinitialize val2 before use.
3882 (i387_fxsave_to_cache): Check fp->ftag while building ftag value.
3883
3884 2007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
3885
3886 * configure.srv (arm*-*-mingw32ce*): Move near the other
3887 arm targets.
3888
3889 2007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
3890
3891 * configure.ac: Add errno checking.
3892 (AC_CHECK_HEADERS): Add errno.h, fcntl.h, signal.h,
3893 sys/file.h and malloc.h.
3894 (AC_CHECK_DECLS): Add perror.
3895 (srv_mingwce): Handle.
3896 * configure.srv (i[34567]86-*-cygwin*): Add
3897 win32-i386-low.o to srv_tgtobj.
3898 (i[34567]86-*-mingw*): Likewise.
3899 (arm*-*-mingw32ce*): Add case.
3900 * gdbreplay.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
3901 HAVE_FCNTL_H, HAVE_ERRNO_H, HAVE_MALLOC_H]: Check.
3902 [__MINGW32CE__] (strerror): New function.
3903 [__MINGW32CE__] (errno): Define to GetLastError.
3904 [__MINGW32CE__] (COUNTOF): New macro.
3905 (remote_open): Remove extra close call.
3906 * mem-break.c (delete_breakpoint_at): New function.
3907 * mem-break.h (delete_breakpoint_at): Declare.
3908 * remote-utils.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
3909 HAVE_FCNTL_H, HAVE_UNISTD_H, HAVE_ERRNO_H]: Check.
3910 [USE_WIN32API] (read, write): Add char* casts.
3911 * server.c [HAVE_UNISTD_H, HAVE_SIGNAL_H]: Check.
3912 * server.h: Include wincecompat.h on Windows CE.
3913 [HAVE_ERRNO_H]: Check.
3914 (perror): Declare if not declared.
3915 * utils.c: Add stdlib.h, errno.h and malloc.h includes.
3916 (perror_with_name): Remove errno declaration.
3917 * wincecompat.h: New.
3918 * wincecompat.c: New.
3919 * win32-low.h: New.
3920 * win32-arm-low.c: New.
3921 * win32-i386-low.c: New.
3922 (win32-low.c): Include mem-break.h and win32-low.h, and winnt.h.
3923 (OUTMSG2): Make it safe.
3924 (_T): New macro.
3925 (COUNTOF): New macro.
3926 (NUM_REGS): Get it from the low target.
3927 (CONTEXT_EXTENDED_REGISTERS, CONTEXT_FLOATING_POINT,
3928 CONTEXT_DEBUG_REGISTERS): Add fallbacks to 0.
3929 (thread_rec): Let low target handle debug registers.
3930 (child_add_thread): Likewise.
3931 (child_init_thread_list): Likewise.
3932 (continue_one_thread): Likewise.
3933 (regptr): New.
3934 (do_child_fetch_inferior_registers): Move to ...
3935 * win32-i386-low.c: ... here, and rename to ...
3936 (do_fetch_inferior_registers): ... this.
3937 * win32-low.c (child_fetch_inferior_registers):
3938 Go through the low target.
3939 (do_child_store_inferior_registers): Use regptr.
3940 (strwinerror): New function.
3941 (win32_create_inferior): Handle Windows CE.
3942 Use strwinerror instead of strerror on Windows error
3943 codes. Add program to the error output.
3944 Don't close the main thread handle on Windows CE.
3945 (win32_attach): Use coredll.dll on Windows CE.
3946 (win32_kill): Close current process and current
3947 thread handles.
3948 (win32_detach): Use coredll.dll on Windows CE.
3949 (win32_resume): Let low target handle debug registers, and
3950 step request.
3951 (handle_exception): Add/Remove initial breakpoint. Avoid
3952 non-existant WSTOPSIG on Windows CE.
3953 (win32_read_inferior_memory): Cast to remove warning.
3954 (win32_arch_string): Go through the low target.
3955 (initialize_low): Call set_breakpoint_data with the low
3956 target's breakpoint.
3957 * win32-low.c (dr, FLAG_TRACE_BIT, FCS_REGNUM,
3958 FOP_REGNUM, mappings): Move to ...
3959 * win32-i386-low.c: ... here.
3960 * win32-low.c (win32_thread_info): Move to ...
3961 * win32-low.h: ... here.
3962 * Makefile.in (SFILES): Add win32-low.c, win32-i386-low.c,
3963 win32-arm-low.c and wincecompat.c.
3964 (all:): Add $EXEEXT.
3965 (install-only:): Likewise.
3966 (gdbserver:): Likewise.
3967 (gdbreplay:): Likewise.
3968 * config.in: Regenerate.
3969 * configure: Regenerate.
3970
3971 2007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
3972
3973 * win32-low.c: Rename typedef thread_info to
3974 win32_thread_info throughout.
3975
3976 2007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
3977
3978 * win32-i386-low.c: Rename to ...
3979 * win32-low.c: ... this.
3980 * configure.srv: Replace win32-i386-low.o with win32-low.o.
3981 * Makefile.in: Likewise.
3982
3983 2007-03-27 Pedro Alves <pedro_alves@portugalmail.pt>
3984
3985 * remote-utils.c (monitor_output): Constify msg parameter.
3986 * server.h (monitor_output): Likewise.
3987 * win32-i386-low.c (handle_output_debug_string): New.
3988 (win32_kill): Handle OUTPUT_DEBUG_STRING_EVENT events using
3989 handle_output_debug_string.
3990 (get_child_debug_event): Likewise.
3991
3992 2007-03-27 Mat Hostetter <mat@lcs.mit.edu>
3993
3994 * server.c (main): Correct strtoul check.
3995
3996 2007-03-27 Jon Ringle <jon@ringle.org>
3997
3998 * linux-low.c: Check __ARCH_HAS_MMU__ also.
3999
4000 2007-03-27 Brooks Moses <brooks.moses@codesourcery.com>
4001
4002 * Makefile.in: Add dummy "pdf" and "install-pdf" targets.
4003
4004 2007-02-27 Daniel Jacobowitz <dan@codesourcery.com>
4005
4006 * terminal.h: Check HAVE_SGTTY_H.
4007
4008 2007-02-27 Mat Hostetter <mat@lcs.mit.edu>
4009
4010 * remote-utils.c (remote_open): Print out the assigned port number.
4011
4012 2007-02-26 Daniel Jacobowitz <dan@codesourcery.com>
4013
4014 * remote-utils.c (monitor_output): New function.
4015 * server.c (debug_threads): Define here.
4016 (monitor_show_help): New function.
4017 (handle_query): Handle qRcmd.
4018 (main): Do not handle 'd' packet.
4019 * server.h (debug_threads, remote_debug, monitor_output): Declare.
4020 * linux-low.c, spu-low.c, win32-i386-low.c: Remove definitions
4021 of debug_threads.
4022
4023 2007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
4024
4025 * Makefile.in (EXEEXT): New.
4026 (clean): Use $(EXEEXT).
4027
4028 2007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
4029
4030 * target.h (target_ops): Rename send_signal to request_interrupt,
4031 and remove enum target_signal parameter.
4032 * linux-low.c (linux_request_interrupt): Rename from
4033 linux_send_signal, and always send SIGINT.
4034 * spu-low.c (spu_request_interrupt): Rename from spu_send_signal,
4035 and always send SIGINT.
4036 * remote-utils.c (putpkt_binary): Call request_interrupt, instead
4037 of send_signal.
4038 (input_interrupt): Likewise.
4039
4040 2007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
4041
4042 * server.c (get_features_xml): Check if target implemented
4043 arch_string.
4044 * win32-i386-low.c (win32_arch_string): New.
4045 (win32_target_ops): Add win32_arch_string as arch_string member.
4046
4047 2007-02-22 Markus Deuling <deuling@de.ibm.com>
4048
4049 * spu-low.c (spu_arch_string): New.
4050 (spu_target_ops): Add spu_arch_string.
4051
4052 2007-02-16 Daniel Jacobowitz <dan@codesourcery.com>
4053
4054 * remote-utils.c: Remove HAVE_TERMINAL_H check.
4055 * configure.ac: Do not check for terminal.h.
4056 * configure, config.in: Regenerated.
4057
4058 2007-02-08 Daniel Jacobowitz <dan@codesourcery.com>
4059
4060 * Makefile.in (OBS): Add $(XML_BUILTIN).
4061 (XML_DIR, XML_TARGET, XML_FILES, XML_BUILTIN): New.
4062 (clean): Update.
4063 (target.xml, xml-builtin.c, stamp-xml, arm-with-iwmmxt.o)
4064 (arm-with-iwmmxt.c): New.
4065 * config.in, configure: Regenerate.
4066 * configure.ac: Check for iWMMXt. Handle srv_xmltarget,
4067 srv_xmlbuiltin, and srv_xmlfiles. Define USE_XML.
4068 * configure.srv: Mention srv_xmltarget and srv_xmlfiles.
4069 (arm*-*-linux*): Add iWMMXt and regset support.
4070 * linux-arm-low.c (PTRACE_GETWMMXREGS, PTRACE_SETWMMXREGS): Define.
4071 (arm_fill_gregset, arm_store_gregset, arm_fill_wmmxregset)
4072 (arm_store_wmmxregset, target_regsets): New.
4073 * server.c (get_features_xml): Take annex argument. Check builtin
4074 XML documents.
4075 (handle_query): Handle multiple annexes.
4076
4077 2007-01-29 Daniel Jacobowitz <dan@codesourcery.com>
4078
4079 * remote-utils.c [USE_WIN32API] (read, write): Define.
4080 (putpkt_binary, input_interrupt, readchar, getpkt): Use read and
4081 write.
4082
4083 2007-01-09 Daniel Jacobowitz <dan@codesourcery.com>
4084
4085 * linux-i386-low.c (the_low_target): Set arch_string.
4086 * linux-x86-64-low.c (the_low_target): Likewise.
4087 * linux-low.c (linux_arch_string): New.
4088 (linux_target_ops): Add it.
4089 * linux-low.h (struct linux_target_ops): Add arch_string.
4090 * server.c (write_qxfer_response): Use const void * for DATA.
4091 (get_features_xml): New.
4092 (handle_query): Handle qXfer:features:read. Report it for qSupported.
4093 * target.h (struct target_ops): Add arch_string method.
4094
4095 2007-01-03 Denis Pilat <denis.pilat@st.com>
4096 Daniel Jacobowitz <dan@codesourcery.com>
4097
4098 * linux-low.c (linux_kill): Handle being called with no threads.
4099 * win32-i386-low.c (win32_kill): Likewise.
4100 (get_child_debug_event): Clear current_process_handle.
4101
4102 2006-12-30 Denis PILAT <denis.pilat@st.com>
4103 Daniel Jacobowitz <dan@codesourcery.com>
4104
4105 * remote-utils.c (remote_open): Check the type of specified
4106 serial port devices before opening them.
4107 * server.c (main): Kill the inferior if an error occurs during
4108 the first remote_open.
4109
4110 2006-12-05 Markus Deuling <deuling@de.ibm.com>
4111
4112 * README: Update supported targets.
4113
4114 2006-11-28 Daniel Jacobowitz <dan@codesourcery.com>
4115
4116 * Makefile.in (clean): Remove reg-mips64.c.
4117 (reg-mips64.c, reg-mips64.o): New rules.
4118 * configure.srv: Handle mips64. Include regset support for mips.
4119 * linux-mips-low.c (union mips_register): New.
4120 (mips_get_pc, mips_set_pc, mips_reinsert_addr): Use it.
4121 (mips_breakpoint, mips_breakpoint_at): Use int.
4122 (mips_collect_register, mips_supply_register)
4123 (mips_collect_register_32bit, mips_supply_register_32bit)
4124 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
4125 (mips_store_fpregset, target_regsets): New.
4126 * thread-db.c (thread_db_get_tls_address): Use uintptr_t.
4127
4128 2006-11-22 Ulrich Weigand <uweigand@de.ibm.com>
4129
4130 * configure.srv: Add target "spu*-*-*".
4131 * Makefile.in (clean): Remove reg-spu.c.
4132 (reg-spu.c, reg-spu.o, spu-low.o): Add dependencies.
4133 * spu-low.c: New file.
4134
4135 2006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
4136
4137 * configure.ac: Correct td_thr_tls_get_addr test.
4138 * configure: Regenerated.
4139
4140 2006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
4141
4142 * linux-low.c (linux_wait_for_event): Reformat. Use the
4143 pass_signals array.
4144 * remote-utils.c (decode_address_to_semicolon): New.
4145 * server.c (pass_signals, handle_general_set): New.
4146 (handle_query): Mention QPassSignals for qSupported.
4147 (main): Call handle_general_set.
4148 * server.h (pass_signals, decode_address_to_semicolon): New.
4149
4150 2006-11-06 Daniel Jacobowitz <dan@codesourcery.com>
4151
4152 * server.c (handle_query): Correct error handling for read_auxv.
4153
4154 2005-10-19 Ulrich Weigand <uweigand@de.ibm.com>
4155
4156 * configure.srv [s390-*-linux*, s390x-*-linux*]: Set srv_linux_regsets
4157 and srv_linux_thread_db to yes.
4158 * linux-s390-low.c (s390_fill_gregset): New function.
4159 (target_regsets): Define data structure.
4160
4161 2006-10-17 Daniel Jacobowitz <dan@codesourcery.com>
4162
4163 * acinclude.m4 (SRV_CHECK_TLS_GET_ADDR): New.
4164 * configure.ac: Use it. Define HAVE_TD_THR_TLS_GET_ADDR.
4165 * config.in, configure: Regenerated.
4166 * inferiors.c (gdb_id_to_thread): New function.
4167 (gdb_id_to_thread_id): Use it.
4168 * linux-low.c (linux_target_ops): Use thread_db_get_tls_address.
4169 * linux-low.h (struct process_info): Add th member.
4170 (thread_db_get_tls_address): New prototype.
4171 * remote-utils.c (decode_address): Make non-static.
4172 * server.c (handle_query): Handle qGetTLSAddr.
4173 * server.h (gdb_id_to_thread, decode_address): New prototypes.
4174 * target.h (struct target_ops): Add get_tls_address.
4175 * thread-db.c (maybe_attach_thread): Save the thread handle.
4176 (thread_db_get_tls_address): New.
4177
4178 2006-09-28 Daniel Jacobowitz <dan@codesourcery.com>
4179
4180 * linux-low.c (PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
4181 (linux_resume_one_process): Take a siginfo_t *. Update all
4182 callers. Queue it if necessary. Use PTRACE_SETSIGINFO.
4183 (struct pending_signals): Add a siginfo_t.
4184 (linux_wait_for_process): Always set last_status.
4185 (linux_wait_for_event): Use PTRACE_GETSIGINFO.
4186 (linux_queue_one_thread): Use PTRACE_GETSIGINFO.
4187 * linux-low.h (struct process_info): Add last_status.
4188
4189 2006-09-21 Daniel Jacobowitz <dan@codesourcery.com>
4190
4191 * remote-utils.c (try_rle): New function.
4192 (putpkt_binary): Use it.
4193
4194 2006-08-19 Daniel Jacobowitz <dan@codesourcery.com>
4195
4196 * Makefile.in (clean): Clean reg-x86-64-linux.c.
4197 (reg-x86-64-linux.o, reg-x86-64-linux.c): New.
4198 * configure.srv (x86_64-*-linux*): Use reg-x86-64-linux.o.
4199 * linux-x86-64-low.c (x86_64_regmap): Include ORIG_RAX.
4200 (x86_64_fill_gregset, x86_64_store_gregset): Skip floating
4201 point registers.
4202
4203 2006-08-08 Richard Sandiford <richard@codesourcery.com>
4204
4205 * server.c (terminal_fd): New variable.
4206 (old_foreground_pgrp): Likewise.
4207 (restore_old_foreground_pgrp): New function.
4208 (start_inferior): Record the terminal file descriptor in terminal_fd
4209 and its original foreground group in old_foreground_pgrp. Register
4210 restore_old_foreground_pgrp with atexit().
4211
4212 2006-07-26 Daniel Jacobowitz <dan@codesourcery.com>
4213
4214 * server.c (handle_query): Correct qPart to qXfer.
4215
4216 2006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
4217
4218 * configure.ac: Check for more headers which are missing on
4219 Windows. Automatically supply -lwsock32 and USE_WIN32API.
4220 * configure.srv: Add Cygwin and mingw32.
4221 * remote-utils.c: Don't include headers unconditionally which
4222 are missing on mingw32. Include <winsock.h> for mingw32.
4223 (remote_open): Adjust for mingw32 support. Flush
4224 standard error after writing to it.
4225 (remote_close, putpkt_binary, input_interrupt, block_async_io)
4226 (unblock_async_io, enable_async_io, disable_async_io)
4227 (readchar, getpkt): Update for Winsock support.
4228 (prepare_resume_reply): Expect a protocol signal number.
4229 * server.c: Disable <sys/wait.h> on mingw32.
4230 (start_inferior): Adjust for mingw32 support. Flush
4231 standard error after writing to it.
4232 (attach_inferior): Likewise. Use protocol signal
4233 numbers.
4234 (main): Skip 'D' packet on mingw32. Use protocol signal numbers
4235 and names.
4236 * win32-i386-low.c: New file.
4237 * Makefile.in (XM_CLIBS): Set.
4238 (gdbserver, gdbreplay): Use $(INTERNAL_CFLAGS).
4239 (win32-i386-low.o): New dependency rule.
4240 * linux-low.c (linux_wait): Use target signal numbers.
4241 * target.h (struct target_ops): Doc fix.
4242 * server.h (target_signal_to_name): New prototype.
4243 * gdbreplay.c: Don't include headers unconditionally which
4244 are missing on mingw32. Include <winsock.h> for mingw32.
4245 (remote_close, remote_open): Adjust for Winsock support.
4246 * configure, config.in: Regenerated.
4247
4248 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
4249
4250 * server.c (decode_xfer_read, write_qxfer_response): New.
4251 (handle_query): Take a packet length argument. Handle
4252 qXfer:auxv:read instead of qPart:auxv:read. Mention it in
4253 the qSupported response.
4254 (main): Update call to handle_query.
4255
4256 2006-06-22 Daniel Jacobowitz <dan@codesourcery.com>
4257
4258 * remote-utils.c (remote_escape_output, remote_unescape_input): New.
4259 (putpkt_binary): Renamed from putpkt and adjusted for binary
4260 data.
4261 (putpkt): New wrapper for putpkt_binary.
4262 (readchar): Don't mask off the high bit.
4263 (decode_X_packet): New function.
4264 * server.c (main): Call putpkt_binary if a handler sets the packet
4265 length. Save the length of the incoming packet. Handle 'X'.
4266 * server.h (gdb_byte, remote_escape_output, decode_X_packet): New.
4267
4268 2006-06-21 Daniel Jacobowitz <dan@codesourcery.com>
4269
4270 * server.c (handle_query): Handle qSupported.
4271
4272 2006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
4273
4274 * remote-utils.c (all_symbols_looked_up): New variable.
4275 (look_up_one_symbol): Check it.
4276 * server.h (look_up_one_symbol): New declaration.
4277 * thread-db.c (thread_db_init): Set all_symbols_looked_up.
4278
4279 2006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
4280
4281 * Makefile.in (linux-arm-low.o): Update dependencies.
4282 * linux-arm-low.c: Include "gdb_proc_service.h".
4283 (PTRACE_GET_THREAD_AREA): Define.
4284 (ps_get_thread_area): New function.
4285
4286 2006-05-09 Nathan Sidwell <nathan@codesourcery.com>
4287
4288 * configure.srv (m68k*-*-uclinux*): New target.
4289 * linux-low.c (linux_create_inferior): Use vfork on mmuless systems.
4290 (linux_resume_one_process): Remove extraneous cast.
4291 (linux_read_offsets): New.
4292 (linux_target_op): Add linux_read_offsets on mmuless systems.
4293 * server.c (handle_query): Add qOffsets logic.
4294 * target.h (struct target_ops): Add read_offsets.
4295
4296 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
4297
4298 * linux-mips-low.c: Include <sys/ptrace.h> and "gdb_proc_service.h".
4299 (PTRACE_GET_THREAD_AREA): Define.
4300 (ps_get_thread_area): New function.
4301 * Makefile.in (linux-i386-low.o, linux-mips-low.o)
4302 (linux-x86-64-low.o): Update.
4303
4304 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
4305
4306 * configure.ac: Remove checks for prfpregset_t.
4307 * gdb_proc_service.h: New file.
4308 * linux-i386-low.c, linux-x86-64-low.c, thread-db.c: Use the
4309 new "gdb_proc_service.h".
4310 * proc-service.c: Likewise.
4311 (ps_pglobal_lookup, ps_pdread, ps_pdwrite): Use psaddr_t.
4312 (ps_lgetfpregs, ps_lsetfpregs): Use a void* argument.
4313 * Makefile.in (gdb_proc_service_h): Updated.
4314 * configure, config.in: Regenerated.
4315
4316 2006-03-03 Daniel Jacobowitz <dan@codesourcery.com>
4317
4318 * remote-utils.c (prepare_resume_reply): Move declaration
4319 of gdb_id_from_wait to the top of the block.
4320
4321 2006-02-15 Daniel Jacobowitz <dan@codesourcery.com>
4322
4323 * linux-low.c (regsets_store_inferior_registers): Read the regset
4324 from the target before filling it.
4325
4326 2006-02-08 Daniel Jacobowitz <dan@codesourcery.com>
4327
4328 * server.c (attach_inferior): Return SIGTRAP for a successful
4329 attach.
4330
4331 2006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
4332
4333 * Makefile.in (OBS): Add version.o.
4334 (STAGESTUFF): Delete.
4335 (version.o): Add dependencies.
4336 (version.c): Replace rule.
4337 (clean): Remove version.c.
4338 * server.c (gdbserver_version): New.
4339 (gdbserver_usage): Use printf.
4340 (main): Handle --version and --help.
4341 * server.h (version, host_name): Add declarations.
4342
4343 2005-12-23 Eli Zaretskii <eliz@gnu.org>
4344
4345 * linux-arm-low.c:
4346 * linux-arm-low.c:
4347 * inferiors.c:
4348 * i387-fp.h:
4349 * i387-fp.c:
4350 * gdbreplay.c:
4351 * regcache.c:
4352 * proc-service.c:
4353 * mem-break.h:
4354 * mem-break.c:
4355 * linux-x86-64-low.c:
4356 * linux-sh-low.c:
4357 * linux-s390-low.c:
4358 * linux-ppc64-low.c:
4359 * linux-ppc-low.c:
4360 * linux-mips-low.c:
4361 * linux-m68k-low.c:
4362 * linux-m32r-low.c:
4363 * linux-low.h:
4364 * linux-low.c:
4365 * linux-ia64-low.c:
4366 * linux-i386-low.c:
4367 * linux-crisv32-low.c:
4368 * thread-db.c:
4369 * terminal.h:
4370 * target.h:
4371 * target.c:
4372 * server.h:
4373 * server.c:
4374 * remote-utils.c:
4375 * regcache.h:
4376 * utils.c:
4377 * Makefile.in:
4378 * configure.ac:
4379 * gdbserver.1: Add (C) after Copyright. Update the FSF
4380 address.
4381
4382 2005-11-13 Daniel Jacobowitz <dan@codesourcery.com>
4383
4384 * linux-arm-low.c (arm_eabi_breakpoint): New variable.
4385 (arm_breakpoint_at): Recognize both breakpoints.
4386 (the_low_target): Use the correct breakpoint instruction.
4387
4388 2005-11-02 Daniel Jacobowitz <dan@codesourcery.com>
4389
4390 * configure.srv (x86_64-*-linux*): Turn on thread_db support.
4391 * linux-x86-64-low.c (x86_64_breakpoint, x86_64_breakpoint_len)
4392 (x86_64_get_pc, x86_64_set_pc, x86_64_breakpoint_at): New.
4393 (the_low_target): Update.
4394
4395 2005-10-25 Andreas Schwab <schwab@suse.de>
4396
4397 * server.c (main): Allocate mem_buf with PBUFSIZ bytes.
4398
4399 * linux-ia64-low.c (ia64_regmap): Remove NAT registers.
4400 (ia64_num_regs): Reduce to 462.
4401
4402 2005-09-17 Daniel Jacobowitz <dan@codesourcery.com>
4403
4404 * acinclude.m4: Correct quoting.
4405 * aclocal.m4: Regenerated.
4406
4407 Suggested by SZOKOVACS Robert <szo@ies.hu>:
4408 * thread-db.c (thread_db_err_str): Handle TD_VERSION.
4409 (thread_db_init): Call thread_db_err_str.
4410 * configure.ac: Check for TD_VERSION.
4411 * config.in, configure: Regenerated.
4412
4413 2005-07-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4414
4415 * server.h (error, fatal, warning): Add ATTR_FORMAT.
4416
4417 2005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
4418
4419 * configure.ac: Define HAVE_LINUX_REGSETS even if PTRACE_GETREGS
4420 is not available. Define HAVE_PTRACE_GETREGS if it is.
4421 * config.in, configure: Regenerated.
4422 * configure.srv: Set srv_linux_regsets for PowerPC and PowerPC64.
4423 * linux-i386-low.c, linux-m68k-low.c: Update to use
4424 HAVE_PTRACE_GETREGS.
4425 * linux-low.c (regsets_fetch_inferior_registers)
4426 (regsets_store_inferior_registers): Only return 0 if we processed
4427 GENERAL_REGS.
4428 * linux-ppc-low.c (ppc_fill_gregset, target_regsets): New.
4429 * linux-ppc64-low.c (ppc_fill_gregset, target_regsets): New.
4430
4431 2005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
4432
4433 * inferiors.c (struct thread_info): Add gdb_id.
4434 (add_thread): Add gdb_id argument.
4435 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New.
4436 * linux-low.c (linux_create_inferior, linux_attach_lwp): Update
4437 calls to add_thread.
4438 * remote-utils.c (prepare_resume_reply: Use thread_to_gdb_id.
4439 * server.c (handle_query): Use thread_to_gdb_id.
4440 (handle_v_cont, main): Use gdb_id_to_thread_id.
4441 * server.h (add_thread): Update prototype.
4442 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New
4443 prototypes.
4444
4445 2005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
4446
4447 * linux-low.c (fetch_register, usr_store_inferior_registers): Handle
4448 left-padded registers.
4449 * linux-low.h (struct linux_target_ops): Add left_pad_xfer.
4450 * linux-ppc64-low.c (the_low_target): Set left_pad_xfer.
4451
4452 2005-07-01 Steve Ellcey <sje@cup.hp.com>
4453
4454 * configure.ac (BFD_NEED_DECLARATION): Replace with AC_CHECK_DECLS.
4455 * configure: Regenerate.
4456 * config.in: Regenerate.
4457 * server.h (NEED_DECLARATION_STRERROR):
4458 Replace with !HAVE_DECL_STRERROR.
4459
4460 2005-06-16 Daniel Jacobowitz <dan@codesourcery.com>
4461
4462 * linux-low.c (linux_wait, linux_send_signal): Don't test
4463 an unsigned long variable for > 0 if it could be MAX_ULONG.
4464 * server.c (myresume): Likewise.
4465 * target.c (set_desired_inferior): Likewise.
4466
4467 2005-06-13 Mark Kettenis <kettenis@gnu.org>
4468
4469 * configure.ac: Simplify and improve check for socklen_t.
4470 * configure, config.in: Regenerate.
4471
4472 2005-06-12 Daniel Jacobowitz <dan@codesourcery.com>
4473
4474 * acconfig.h: Remove.
4475 * configure.ac: Add a test for socklen_t. Use three-argument
4476 AC_DEFINE throughout.
4477 * config.in: Regenerated using autoheader 2.59.
4478 * configure: Regenerated.
4479
4480 * gdbreplay.c (socklen_t): Provide a default.
4481 (remote_open): Use socklen_t.
4482 * remote-utils.c (socklen_t): Provide a default.
4483 (remote_open): Use socklen_t.
4484 (convert_int_to_ascii, convert_ascii_to_int, decode_M_packet): Use
4485 unsigned char.
4486
4487 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Use unsigned
4488 char for buffers.
4489 * linux-low.c (linux_read_memory, linux_write_memory)
4490 (linux_read_auxv): Likewise.
4491 * mem-break.c (breakpoint_data, set_breakpoint_data, check_mem_read)
4492 (check_mem_write): Likewise.
4493 * mem-break.h (set_breakpoint_data, check_mem_read, check_mem_write):
4494 Likewise.
4495 * regcache.c (struct inferior_rgcache_data, registers_to_string)
4496 (registers_from_string, register_data): Likewise.
4497 * server.c (handle_query, main): Likewise.
4498 * server.h (convert_ascii_to_int, convert_int_to_ascii)
4499 (decode_M_packet): Likewise.
4500 * target.c (read_inferior_memory, write_inferior_memory): Likewise.
4501 * target.h (struct target_ops): Update read_memory, write_memory,
4502 and read_auxv.
4503 (read_inferior_memory, write_inferior_memory): Update.
4504 * linux-low.h (struct linux_target_ops): Change type of breakpoint
4505 to unsigned char *.
4506 * linux-arm-low.c, linux-cris-low.c, linux-crisv32-low.c,
4507 linux-i386-low.c, linux-m32r-low.c, linux-m68k-low.c,
4508 linux-mips-low.c, linux-ppc-low.c, linux-ppc64-low.c,
4509 linux-s390-low.c, linux-sh-low.c: Update for changes in
4510 read_inferior_memory and the_low_target->breakpoint.
4511
4512 2005-05-28 Daniel Jacobowitz <dan@codesourcery.com>
4513
4514 * Makefile.in (SFILES): Add linux-ppc64-low.c.
4515 (linux-ppc64-low.o, reg-ppc64.c, reg-ppc64.o): New targets.
4516 * configure.srv: Add powerpc64-*-linux*.
4517 * linux-ppc64-low.c: New file.
4518
4519 2005-05-23 Orjan Friberg <orjanf@axis.com>
4520
4521 * linux-cris-low.c: New file with support for CRIS.
4522 * linux-crisv32-low.c: Ditto for CRISv32.
4523 * Makefile.in (SFILES): Add linux-cris-low.c, linux-crisv32-low.c.
4524 (clean): Add reg-cris.c and reg-crisv32.c.
4525 Add linux-cris-low.o, linux-crisv32-low.o, reg-cris.o, reg-cris.c,
4526 reg-crisv32.o, and reg-crisv32.c to make rules.
4527 * configure.srv: Add cris-*-linux* and crisv32-*-linux* to list of
4528 recognized targets.
4529
4530 2005-05-16 Ulrich Weigand <uweigand@de.ibm.com>
4531
4532 * linux-low.c (fetch_register): Ensure buffer size is a multiple
4533 of sizeof (PTRACE_XFER_TYPE).
4534 (usr_store_inferior_registers): Likewise. Zero out excess bytes.
4535
4536 2005-05-12 Orjan Friberg <orjanf@axis.com>
4537
4538 * target.h (struct target_ops): Add insert_watchpoint,
4539 remove_watchpoint, stopped_by_watchpoint, stopped_data_address function
4540 pointers for hardware watchpoint support.
4541 * linux-low.h (struct linux_target_ops): Ditto.
4542 * linux-low.c (linux_insert_watchpoint, linux_remove_watchpoint)
4543 (linux_stopped_by_watchpoint, linux_stopped_data_address): New. Add
4544 to linux_target_ops.
4545 * remote-utils.c (prepare_resume_reply): Add watchpoint information to
4546 reply packet.
4547 * server.c (main): Recognize 'Z' and 'z' packets.
4548
4549 2005-05-10 Ulrich Weigand <uweigand@de.ibm.com>
4550
4551 * linux-s390-low.c (s390_breakpoint, s390_breakpoint_len): Define.
4552 (s390_get_pc, s390_set_pc, s390_breakpoint_at): New functions.
4553 (the_low_target): Add new members.
4554
4555 2005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
4556
4557 * proc-service.c (ps_lgetregs): Search all_processes instead of
4558 all_threads.
4559
4560 2005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
4561
4562 * server.c (start_inferior): Change return type to int.
4563 (attach_inferior): Change sigptr to int *.
4564 (handle_v_cont, handle_v_requests): Change signal to int *.
4565 (main): Change signal to int.
4566
4567 2005-04-15 Kei Sakamoto <sakamoto.kei@renesas.com>
4568
4569 * Makefile.in: Add linux-m32r-low.o, reg-m32r.c and reg-m32r.o.
4570 * configure.srv: Add m32r*-*-linux*.
4571 * linux-m32r-low.c: New file.
4572
4573 2005-03-04 Daniel Jacobowitz <dan@codesourcery.com>
4574
4575 * Makefile.in (stamp-h): Set CONFIG_HEADERS explicitly.
4576
4577 2005-03-03 Daniel Jacobowitz <dan@codesourcery.com>
4578
4579 * inferiors.c (change_inferior_id, add_thread, find_inferior_id):
4580 Take unsigned long arguments for PIDs.
4581 * linux-low.c (add_process, linux_attach_lwp, linux_attach)
4582 (linux_thread_alive, linux_wait_for_event, kill_lwp, send_sigstop)
4583 (wait_for_sigstop, linux_resume_one_process)
4584 (regsets_fetch_inferior_registers, linux_send_signal)
4585 (linux_read_auxv): Likewise. Update the types of variables holding
4586 PIDs. Update format string specifiers.
4587 * linux-low.h (struct process_info, linux_attach_lwp): Likewise.
4588 * remote-utils.c (prepare_resume_reply): Likewise.
4589 * server.c (cont_thread, general_thread, step_thread)
4590 (thread_from_wait, old_thread_from_wait, signal_pid): Change type to
4591 unsigned long.
4592 (handle_query): Update format specifiers.
4593 (handle_v_cont, main): Use strtoul for thread IDs.
4594 * server.h (struct inferior_list_entry): Use unsigned long for ID.
4595 (add_thread, find_inferior_id, change_inferior_id, cont_thread)
4596 (general_thread, step_thread, thread_from_wait)
4597 (old_thread_from_wait): Update.
4598 * target.h (struct thread_resume): Use unsigned long for THREAD.
4599 (struct target_ops): Use unsigned long for arguments to attach and
4600 thread_alive.
4601
4602 2005-02-24 Daniel Jacobowitz <dan@codesourcery.com>
4603
4604 * acinclude.m4: Include bfd/bfd.m4 directly.
4605 * configure.ac: Use AC_ARG_PROGRAM. Suggested by Aron Griffis
4606 <agriffis@toolchain.org>.
4607 * aclocal.m4, configure: Regenerated.
4608
4609 2005-01-07 Andrew Cagney <cagney@gnu.org>
4610
4611 * configure.ac: Rename configure.in, require autoconf 2.59.
4612 * configure: Re-generate.
4613
4614 2004-12-08 Daniel Jacobowitz <dan@debian.org>
4615
4616 * acinclude.m4 (SRV_CHECK_THREAD_DB): Add ps_get_thread_area. Reset
4617 LIBS when finished.
4618 * aclocal.m4: Regenerated.
4619 * configure: Regenerated.
4620
4621 2004-11-21 Andreas Schwab <schwab@suse.de>
4622
4623 * linux-m68k-low.c (m68k_num_gregs): Define.
4624 (m68k_fill_gregset, m68k_store_gregset, m68k_fill_fpregset)
4625 (m68k_store_fpregset, target_regsets) [HAVE_LINUX_REGSETS]: New.
4626 (m68k_breakpoint, m68k_breakpoint_len, m68k_get_pc, m68k_set_pc)
4627 (m68k_breakpoint_at): New. Add to the_low_target.
4628
4629 * configure.srv (m68*-*-linux*): Set srv_linux_regsets and
4630 srv_linux_thread_db to yes.
4631
4632 2004-10-20 Joel Brobecker <brobecker@gnat.com>
4633
4634 * linux-x86-64-low.c (ARCH_SET_GS): Add definition if missing.
4635 (ARCH_SET_FS): Likewise.
4636 (ARCH_GET_FS): Likewise.
4637 (ARCH_GET_GS): Likewise.
4638
4639 2004-10-16 Daniel Jacobowitz <dan@debian.org>
4640
4641 * linux-i386-low.c (ps_get_thread_area): New.
4642 * linux-x86-64-low.c (ps_get_thread_area): New.
4643 * linux-low.c: Include <sys/syscall.h>.
4644 (linux_kill_one_process): Don't kill the first thread here.
4645 (linux_kill): Kill the first thread here.
4646 (kill_lwp): New function.
4647 (send_sigstop, linux_send_signal): Use it.
4648 * proc-service.c: Clean up #ifdefs.
4649 (fpregset_info): Delete.
4650 (ps_lgetregs): Update and enable implementation.
4651 (ps_lsetregs, ps_lgetfpregs, ps_lsetfpregs): Remove disabled
4652 implementations.
4653 * remote-utils.c (struct sym_cache, symbol_cache): New.
4654 (input_interrupt): Print a clearer message.
4655 (async_io_enabled): New variable.
4656 (enable_async_io, disable_async_io): Use it. Update comments.
4657 (look_up_one_symbol): Use the symbol cache.
4658 * thread-db.c (thread_db_look_up_symbols): New function.
4659 (thread_db_init): Update comments. Call thread_db_look_up_symbols.
4660
4661 2004-10-16 Daniel Jacobowitz <dan@debian.org>
4662
4663 * configure.in: Test for -rdynamic.
4664 * configure: Regenerated.
4665 * Makefile (INTERNAL_LDFLAGS): New.
4666 (gdbserver, gdbreplay): Use it.
4667
4668 2004-09-02 Andrew Cagney <cagney@gnu.org>
4669
4670 * Makefile.in (TAGS): Replace TM_FILE with DEPRECATED_TM_FILE.
4671
4672 2004-03-23 Daniel Jacobowitz <drow@mvista.com>
4673
4674 * linux-low.c (linux_wait): Clear all_processes list also.
4675
4676 2004-03-12 Daniel Jacobowitz <drow@mvista.com>
4677
4678 * linux-low.c: Include <errno.h>. Remove extern declaration of
4679 errno.
4680
4681 2004-03-12 Daniel Jacobowitz <drow@mvista.com>
4682
4683 * gdbreplay.c, server.h, utils.c: Update copyright years.
4684
4685 2004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
4686
4687 * server.c (main): Print child status or termination signal from
4688 variable 'signal', not 'sig'.
4689
4690 2004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
4691
4692 * linux-low.c (linux_read_memory): Change return type to
4693 int. Check for and return error from ptrace().
4694 * target.c (read_inferior_memory): Change return type to int. Pass
4695 back return status from the_target->read_memory().
4696 * target.h (struct target_ops): Adapt *read_memory() prototype.
4697 Update comment.
4698 (read_inferior_memory): Adapt prototype.
4699 * server.c (main): Return an error packet if
4700 read_inferior_memory() returns an error.
4701
4702 2004-03-04 Daniel Jacobowitz <drow@mvista.com>
4703
4704 * Makefile.in (distclean): Remove config.h, stamp-h, and config.log.
4705 Unify with other clean targets.
4706
4707 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
4708
4709 * server.c (handle_v_cont): Call set_desired_inferior.
4710
4711 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
4712
4713 * remote-utils.c (prepare_resume_reply): Always supply "thread:".
4714
4715 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
4716
4717 * linux-low.c (linux_wait): Unblock async I/O.
4718 (linux_resume): Block and enable async I/O.
4719 * remote-utils.c (block_async_io, unblock_async_io): New functions.
4720 * server.h (block_async_io, unblock_async_io): Add prototypes.
4721
4722 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
4723
4724 * remote-utils.c (remote_open): Print a status notice after
4725 opening a TCP port.
4726 * server.c (attach_inferior): Print a status notice after
4727 attaching.
4728
4729 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
4730
4731 * linux-arm-low.c (arm_get_pc): Print out stop PC in debug mode.
4732
4733 2004-02-26 Daniel Jacobowitz <drow@mvista.com>
4734
4735 * remote-utils.c (write_enn): Use "E01" instead of "ENN" for the
4736 error packet.
4737 * server.c, target.h: Update copyright years.
4738
4739 2004-02-25 Roland McGrath <roland@redhat.com>
4740
4741 * target.h (struct target_ops): New member `read_auxv'.
4742 * server.c (handle_query): Handle qPart:auxv:read: query using that.
4743 * linux-low.c (linux_read_auxv): New function.
4744 (linux_target_ops): Initialize `read_auxv' member to that.
4745
4746 2004-02-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
4747
4748 Committed by Jim Blandy <jimb@redhat.com>.
4749
4750 * linux-s390-low.c (s390_num_regs): Update.
4751 (s390_regmap): Remove control registers. Use __s390x__ predefine
4752 instead of GPR_SIZE to distiguish s390 and s390x targets.
4753
4754 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
4755
4756 * linux-low.c: Update copyright year.
4757 (check_removed_breakpoint): Clear pending_is_breakpoint.
4758 (linux_set_resume_request, linux_queue_one_thread)
4759 (resume_status_pending_p): New functions.
4760 (linux_continue_one_thread): Use process->resume.
4761 (linux_resume): Only resume threads if there are no pending events.
4762 * linux-low.h (struct process_info): Add resume request
4763 pointer.
4764
4765 2004-01-30 Daniel Jacobowitz <drow@mvista.com>
4766
4767 * regcache.c (new_register_cache): Clear the allocated register
4768 buffer. Suggested by Atsushi Nemoto <anemo@mba.ocn.ne.jp>.
4769
4770 2003-10-13 Daniel Jacobowitz <drow@mvista.com>
4771
4772 * linux-low.c (linux_resume): Take a struct thread_resume *
4773 argument.
4774 (linux_wait): Update call.
4775 (resume_ptr): New static variable.
4776 (linux_continue_one_thread): Renamed from
4777 linux_continue_one_process. Use resume_ptr.
4778 (linux_resume): Use linux_continue_one_thread.
4779 * server.c (handle_v_cont, handle_v_requests): New functions.
4780 (myresume): New function.
4781 (main): Handle 'v' case.
4782 * target.h (struct thread_resume): New type.
4783 (struct target_ops): Change argument of "resume" to struct
4784 thread_resume *.
4785 (myresume): Delete macro.
4786
4787 2003-08-08 H.J. Lu <hongjiu.lu@intel.com>
4788
4789 * Makefile.in (install-only): Create dest dir. Support DESTDIR.
4790 (uninstall): Support DESTDIR.
4791
4792 Mon Jul 21 20:09:34 UTC 2003 Brendan Conoboy <blc@redhat.com>
4793
4794 * configure.srv: Add xscale*linux copy of arm*linux entry.
4795
4796 2003-07-24 Daniel Jacobowitz <drow@mvista.com>
4797
4798 * linux-arm-low.c (arm_reinsert_addr): New function.
4799 (the_low_target): Add arm_reinsert_addr.
4800
4801 2003-07-08 Mark Kettenis <kettenis@gnu.org>
4802
4803 * mem-break.c: Remove whitespace at end of file.
4804
4805 2003-06-28 Daniel Jacobowitz <drow@mvista.com>
4806
4807 * configure.in: Check whether we need to prototype strerror.
4808 * server.h: Optionally prototype strerror.
4809 * gdbreplay.c (perror_with_name): Use strerror.
4810 * linux-low.c (linux_attach_lwp): Use strerror.
4811 * utils.c (perror_with_name): Use strerror.
4812 * config.in, configure: Regenerated.
4813
4814 2003-06-28 Daniel Jacobowitz <drow@mvista.com>
4815
4816 * linux-sh-low.c (sh_regmap): Fix FP register offsets, reported by
4817 SUGIOKA Toshinobu <sugioka@itonet.co.jp>.
4818
4819 2003-06-20 Daniel Jacobowitz <drow@mvista.com>
4820
4821 * Makefile.in (SFILES): Update.
4822 * low-hppabsd.c, low-lynx.c, low-nbsd.c, low-sim.c, low-sparc.c,
4823 low-sun3.c: Remove files.
4824
4825 2003-06-17 Daniel Jacobowitz <drow@mvista.com>
4826
4827 * linux-low.c: Move comment to linux_thread_alive where it belonged.
4828 (linux_detach_one_process, linux_detach): New functions.
4829 (linux_target_ops): Add linux_detach.
4830 * server.c (main): Handle 'D' packet.
4831 * target.h (struct target_ops): Add "detach" member.
4832 (detach_inferior): Define.
4833
4834 2003-06-13 Mark Kettenis <kettenis@gnu.org>
4835
4836 From Kelley Cook <kelleycook@wideopenwest.com>:
4837 * configure.srv: Accept i[34567]86 variants.
4838
4839 2003-06-05 Daniel Jacobowitz <drow@mvista.com>
4840
4841 * linux-low.c (linux_wait_for_event): Correct comment typos.
4842 (linux_resume_one_process): Call check_removed_breakpoint.
4843 (linux_send_signal): New function.
4844 (linux_target_ops): Add linux_send_signal.
4845 * remote-utils.c (putpkt, input_interrupt): Use send_signal instead
4846 of kill.
4847 * target.h (struct target_ops): Add send_signal.
4848
4849 2003-05-29 Jim Blandy <jimb@redhat.com>
4850
4851 * linux-low.c (usr_store_inferior_registers): Transfer buf in
4852 PTRACE_XFER_TYPE-sized chunks, not int-sized chunks. Otherwise,
4853 if 'int' is smaller than PTRACE_XFER_TYPE, you end up throwing
4854 away part of the register's value.
4855
4856 2003-03-26 Daniel Jacobowitz <drow@mvista.com>
4857
4858 * linux-low.c (linux_create_inferior): Use __SIGRTMIN.
4859 (linux_wait_for_event, linux_init_signals): Likewise.
4860
4861 2003-03-17 Daniel Jacobowitz <drow@mvista.com>
4862
4863 * configure.in: Check for stdlib.h.
4864 * configure: Regenerated.
4865 * config.in: Regenerated.
4866
4867 2003-01-04 Andreas Schwab <schwab@suse.de>
4868
4869 * linux-m68k-low.c (m68k_num_regs): Define to 29 instead of 31.
4870
4871 2003-01-02 Andrew Cagney <ac131313@redhat.com>
4872
4873 * Makefile.in: Remove obsolete code.
4874
4875 2002-11-20 Daniel Jacobowitz <drow@mvista.com>
4876
4877 * linux-s390-low.c (s390_regmap): Check GPR_SIZE instead of
4878 defined(PT_FPR0_HI).
4879
4880 2002-11-17 Stuart Hughes <seh@zee2.com>
4881
4882 * linux-arm-low.c (arm_num_regs): Increase.
4883 (arm_regmap): Include status register.
4884
4885 2002-11-17 Daniel Jacobowitz <drow@mvista.com>
4886
4887 * linux-low.c (register_addr): Remove incorrect -1 check.
4888
4889 2002-08-29 Daniel Jacobowitz <drow@mvista.com>
4890
4891 * linux-low.c (linux_create_inferior): Call setpgid. Return
4892 the new PID.
4893 (unstopped_p, linux_signal_pid): Remove.
4894 (linux_target_ops): Remove linux_signal_pid.
4895 * remote-utils.c (putpkt, input_interrupt): Use signal_pid
4896 global instead of target method.
4897 * target.h (struct target_ops): Remove signal_pid. Update comment
4898 for create_inferior.
4899 * server.c (signal_pid): New variable.
4900 (create_inferior): Set signal_pid. Block SIGTTOU and SIGTTIN in
4901 gdbserver. Set the child to be the foreground process group.
4902 (attach_inferior): Set signal_pid.
4903
4904 2002-08-23 Daniel Jacobowitz <drow@mvista.com>
4905
4906 * ChangeLog: New file, with entries from gdb/ChangeLog after GDB 5.2.
4907
4908 2002-08-20 Jim Blandy <jimb@redhat.com>
4909
4910 * Makefile.in (LDFLAGS): Allow the configure script to establish a
4911 default for this.
4912
4913 2002-08-01 Andrew Cagney <cagney@redhat.com>
4914
4915 * Makefile.in: Make chill references obsolete.
4916
4917 2002-07-24 Kevin Buettner <kevinb@redhat.com>
4918
4919 * configure.in (unistd.h): Add to AC_CHECK_HEADERS list.
4920 * configure: Regenerate.
4921 * config.in: Regenerate.
4922
4923 2002-07-09 David O'Brien <obrien@FreeBSD.org>
4924
4925 * gdbreplay.c (stdlib.h, unistd.h): Conditionaly include.
4926 (perror_with_name, remote_close, remote_open, expect, play): Static.
4927
4928 2002-07-04 Michal Ludvig <mludvig@suse.cz>
4929
4930 * linux-x86-64-low.c (x86_64_regmap): Make it an array of
4931 byte offsets instead of an array of indexes.
4932 (x86_64_store_gregset, x86_64_store_fpregset): Parameter made const.
4933
4934 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
4935
4936 * regcache.c: Add comment.
4937
4938 2002-06-11 Daniel Jacobowitz <drow@mvista.com>
4939
4940 * thread-db.c: New file.
4941 * proc-service.c: New file.
4942 * acinclude.m4: New file.
4943 * Makefile.in: Add GDBSERVER_LIBS, gdb_proc_service_h,
4944 proc-service.o, and thread-db.o.
4945 (linux-low.o): Add USE_THREAD_DB.
4946 * acconfig.h: Add HAVE_PRGREGSET_T, HAVE_PRFPREGSET_T,
4947 HAVE_LWPID_T, HAVE_PSADDR_T, and PRFPREGSET_T_BROKEN.
4948 * aclocal.m4: Regenerated.
4949 * config.in: Regenerated.
4950 * configure: Regenerated.
4951 * configure.in: Check for proc_service.h, sys/procfs.h,
4952 thread_db.h, and linux/elf.h headrs.
4953 Check for lwpid_t, psaddr_t, prgregset_t, prfpregset_t, and
4954 PRFPREGSET_T_BROKEN. Introduce srv_thread_depfiles and USE_THREAD_DB.
4955 Check for -lthread_db and thread support.
4956 * configure.srv: Enable thread_db support for ARM, i386, MIPS,
4957 PowerPC, and SuperH.
4958 * i387-fp.c: Constify arguments.
4959 * i387-fp.h: Likewise.
4960 * inferiors.c: (struct thread_info): Renamed from
4961 `struct inferior_info'. Remove PID member. Use generic inferior
4962 list header. All uses updated.
4963 (inferiors, signal_pid): Removed.
4964 (all_threads): New variable.
4965 (get_thread): Define.
4966 (add_inferior_to_list): New function.
4967 (for_each_inferior): New function.
4968 (change_inferior_id): New function.
4969 (add_inferior): Removed.
4970 (remove_inferior): New function.
4971 (add_thread): New function.
4972 (free_one_thread): New function.
4973 (remove_thread): New function.
4974 (clear_inferiors): Use for_each_inferior and free_one_thread.
4975 (find_inferior): New function.
4976 (find_inferior_id): New function.
4977 (inferior_target_data): Update argument type.
4978 (set_inferior_target_data): Likewise.
4979 (inferior_regcache_data): Likewise.
4980 (set_inferior_regcache_data): Likewise.
4981 * linux-low.c (linux_bp_reinsert): Remove.
4982 (all_processes, stopping_threads, using_thrads)
4983 (struct pending_signals, debug_threads, pid_of): New.
4984 (inferior_pid): Replace with macro.
4985 (struct inferior_linux_data): Remove.
4986 (get_stop_pc, add_process): New functions.
4987 (linux_create_inferior): Restore SIGRTMIN+1 before calling exec.
4988 Use add_process and add_thread.
4989 (linux_attach_lwp): New function, based on old linux_attach. Use
4990 add_process and add_thread. Set stop_expected for new threads.
4991 (linux_attach): New function.
4992 (linux_kill_one_process): New function.
4993 (linux_kill): Kill all LWPs.
4994 (linux_thread_alive): Use find_inferior_id.
4995 (check_removed_breakpoints, status_pending_p): New functions.
4996 (linux_wait_for_process): Renamed from linux_wait_for_one_inferior.
4997 Update. Use WNOHANG. Wait for cloned processes also. Update process
4998 struct for the found process.
4999 (linux_wait_for_event): New function.
5000 (linux_wait): Use it. Support LWPs.
5001 (send_sigstop, wait_for_sigstop, stop_all_processes)
5002 (linux_resume_one_process, linux_continue_one_process): New functions.
5003 (linux_resume): Support LWPs.
5004 (REGISTER_RAW_SIZE): Remove.
5005 (fetch_register): Use register_size instead. Call supply_register.
5006 (usr_store_inferior_registers): Likewise. Call collect_register.
5007 Fix recursive case.
5008 (regsets_fetch_inferior_registers): Improve error message.
5009 (regsets_store_inferior_registers): Add debugging.
5010 (linux_look_up_symbols): Call thread_db_init if USE_THREAD_DB.
5011 (unstopped_p, linux_signal_pid): New functions.
5012 (linux_target_ops): Add linux_signal_pid.
5013 (linux_init_signals): New function.
5014 (initialize_low): Call it. Initialize using_threads.
5015 * regcache.c (inferior_regcache_data): Add valid
5016 flag.
5017 (get_regcache): Fetch registers lazily. Add fetch argument
5018 and update all callers.
5019 (regcache_invalidate_one, regcache_invalidate): New
5020 functions.
5021 (new_register_cache): Renamed from create_register_cache.
5022 Return the new regcache.
5023 (free_register_cache): Change argument to a void *.
5024 (registers_to_string, registers_from_string): Call get_regcache
5025 with fetch flag set.
5026 (register_data): Make static. Pass fetch flag to get_regcache.
5027 (supply_register): Call get_regcache with fetch flag clear.
5028 (collect_register): Call get_regcache with fetch flag set.
5029 (collect_register_as_string): New function.
5030 * regcache.h: Update.
5031 * remote-utils.c (putpkt): Flush after debug output and use
5032 stderr.
5033 Handle input interrupts while waiting for an ACK.
5034 (input_interrupt): Use signal_pid method.
5035 (getpkt): Flush after debug output and use stderr.
5036 (outreg): Use collect_register_as_string.
5037 (new_thread_notify, dead_thread_notify): New functions.
5038 (prepare_resume_reply): Check using_threads. Set thread_from_wait
5039 and general_thread.
5040 (look_up_one_symbol): Flush after debug output.
5041 * server.c (step_thread, server_waiting): New variables.
5042 (start_inferior): Don't use signal_pid. Update call to mywait.
5043 (attach_inferior): Update call to mywait.
5044 (handle_query): Handle qfThreadInfo and qsThreadInfo.
5045 (main): Don't fetch/store registers explicitly. Use
5046 set_desired_inferior. Support proposed ``Hs'' packet. Update
5047 calls to mywait.
5048 * server.h: Update.
5049 (struct inferior_list, struct_inferior_list_entry): New.
5050 * target.c (set_desired_inferior): New.
5051 (write_inferior_memory): Constify.
5052 (mywait): New function.
5053 * target.h: Update.
5054 (struct target_ops): New signal_pid method.
5055 (mywait): Removed macro, added prototype.
5056
5057 * linux-low.h (regset_func): Removed.
5058 (regset_fill_func, regset_store_func): New.
5059 (enum regset_type): New.
5060 (struct regset_info): Add type field. Use new operation types.
5061 (struct linux_target_ops): stop_pc renamed to get_pc.
5062 Add decr_pc_after_break and breakpoint_at.
5063 (get_process, get_thread_proess, get_process_thread)
5064 (strut process_info, all_processes, linux_attach_lwp)
5065 (thread_db_init): New.
5066
5067 * linux-arm-low.c (arm_get_pc, arm_set_pc,
5068 arm_breakpoint, arm_breakpoint_len, arm_breakpoint_at): New.
5069 (the_low_target): Add new members.
5070 * linux-i386-low.c (i386_store_gregset, i386_store_fpregset)
5071 (i386_store_fpxregset): Constify.
5072 (target_regsets): Add new kind identifier.
5073 (i386_get_pc): Renamed from i386_stop_pc. Simplify.
5074 (i386_set_pc): Add debugging.
5075 (i386_breakpoint_at): New function.
5076 (the_low_target): Add new members.
5077 * linux-mips-low.c (mips_get_pc, mips_set_pc)
5078 (mips_breakpoint, mips_breakpoint_len, mips_reinsert_addr)
5079 (mips_breakpoint_at): New.
5080 (the_low_target): Add new members.
5081 * linux-ppc-low.c (ppc_get_pc, ppc_set_pc)
5082 (ppc_breakpoint, ppc_breakpoint_len, ppc_breakpoint_at): New.
5083 (the_low_target): Add new members.
5084 * linux-sh-low.c (sh_get_pc, sh_set_pc)
5085 (sh_breakpoint, sh_breakpoint_len, sh_breakpoint_at): New.
5086 (the_low_target): Add new members.
5087 * linux-x86-64-low.c (target_regsets): Add new kind
5088 identifier.
5089
5090 2002-05-15 Daniel Jacobowitz <drow@mvista.com>
5091
5092 From Martin Pool <mbp@samba.org>:
5093 * server.c (gdbserver_usage): New function.
5094 (main): Call it.
5095
5096 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
5097
5098 * mem-break.c (reinsert_breakpoint_by_bp): Correct typo
5099 stop_at -> stop_pc.
5100
5101 2002-05-04 Andrew Cagney <ac131313@redhat.com>
5102
5103 * Makefile.in: Remove obsolete code.
5104
5105 2002-04-24 Michal Ludvig <mludvig@suse.cz>
5106
5107 * linux-low.c (regsets_fetch_inferior_registers),
5108 (regsets_store_inferior_registers): Removed cast to int from
5109 ptrace() calls.
5110 * regcache.h: Added declaration of struct inferior_info.
5111
5112 2002-04-20 Daniel Jacobowitz <drow@mvista.com>
5113
5114 * inferiors.c (struct inferior_info): Add regcache_data.
5115 (add_inferior): Call create_register_cache.
5116 (clear_inferiors): Call free_register_cache.
5117 (inferior_regcache_data, set_inferior_regcache_data): New functions.
5118 * regcache.c (struct inferior_regcache_data): New.
5119 (registers): Remove.
5120 (get_regcache): New function.
5121 (create_register_cache, free_register_cache): New functions.
5122 (set_register_cache): Don't initialize the register cache here.
5123 (registers_to_string, registers_from_string, register_data): Call
5124 get_regcache.
5125 * regcache.h: Add prototypes.
5126 * server.h: Likewise.
5127
5128 2002-04-20 Daniel Jacobowitz <drow@mvista.com>
5129
5130 * mem-break.c: New file.
5131 * mem-break.h: New file.
5132 * Makefile.in: Add mem-break.o rule; update server.h
5133 dependencies.
5134 * inferiors.c (struct inferior_info): Add target_data
5135 member.
5136 (clear_inferiors): Free target_data member if set.
5137 (inferior_target_data, set_inferior_target_data): New functions.
5138 * linux-i386-low.c (i386_breakpoint, i386_breakpoint_len)
5139 (i386_stop_pc, i386_set_pc): New. Add to the_low_target.
5140 * linux-low.c (linux_bp_reinsert): New variable.
5141 (struct inferior_linux_data): New.
5142 (linux_create_inferior): Use set_inferior_target_data.
5143 (linux_attach): Likewise. Call add_inferior.
5144 (linux_wait_for_one_inferior): New function.
5145 (linux_wait): Call it.
5146 (linux_write_memory): Add const.
5147 (initialize_low): Call set_breakpoint_data.
5148 * linux-low.h (struct linux_target_ops): Add breakpoint
5149 handling members.
5150 * server.c (attach_inferior): Remove extra add_inferior
5151 call.
5152 * server.h: Include mem-break.h. Update inferior.c
5153 prototypes.
5154 * target.c (read_inferior_memory)
5155 (write_inferior_memory): New functions.
5156 * target.h (read_inferior_memory)
5157 (write_inferior_memory): Change macros to prototypes.
5158 (struct target_ops): Update comments. Add const to write_memory
5159 definition.
5160
5161 2002-04-11 Daniel Jacobowitz <drow@mvista.com>
5162
5163 * linux-low.c (usr_store_inferior_registers): Support
5164 registers which are allowed to fail to store.
5165 * linux-low.h (linux_target_ops): Likewise.
5166 * linux-ppc-low.c (ppc_regmap): Support FPSCR.
5167 (ppc_cannot_store_register): FPSCR may not be storable.
5168
5169 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
5170
5171 * server.h: Include <string.h> if HAVE_STRING_H.
5172 * ChangeLog: Correct paths in last ChangeLog entry.
5173
5174 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
5175
5176 * linux-low.h: Remove obsolete prototypes.
5177 (struct linux_target_ops): New.
5178 (extern the_low_target): New.
5179 * linux-low.c (num_regs, regmap): Remove declarations.
5180 (register_addr): Use the_low_target explicitly.
5181 (fetch_register): Likewise.
5182 (usr_fetch_inferior_registers): Likewise.
5183 (usr_store_inferior_registers): Likewise.
5184 * linux-arm-low.c (num_regs): Remove.
5185 (arm_num_regs): Define.
5186 (arm_regmap): Renamed from regmap, made static.
5187 (arm_cannot_fetch_register): Renamed from cannot_fetch_register,
5188 made static.
5189 (arm_cannot_store_register): Renamed from cannot_store_register,
5190 made static.
5191 (the_low_target): New.
5192 * linux-i386-low.c (num_regs): Remove.
5193 (i386_num_regs): Define.
5194 (i386_regmap): Renamed from regmap, made static.
5195 (i386_cannot_fetch_register): Renamed from cannot_fetch_register,
5196 made static.
5197 (i386_cannot_store_register): Renamed from cannot_store_register,
5198 made static.
5199 (the_low_target): New.
5200 * linux-ia64-low.c (num_regs): Remove.
5201 (ia64_num_regs): Define.
5202 (ia64_regmap): Renamed from regmap, made static.
5203 (ia64_cannot_fetch_register): Renamed from cannot_fetch_register,
5204 made static.
5205 (ia64_cannot_store_register): Renamed from cannot_store_register,
5206 made static.
5207 (the_low_target): New.
5208 * linux-m68k-low.c (num_regs): Remove.
5209 (m68k_num_regs): Define.
5210 (m68k_regmap): Renamed from regmap, made static.
5211 (m68k_cannot_fetch_register): Renamed from cannot_fetch_register,
5212 made static.
5213 (m68k_cannot_store_register): Renamed from cannot_store_register,
5214 made static.
5215 (the_low_target): New.
5216 * linux-mips-low.c (num_regs): Remove.
5217 (mips_num_regs): Define.
5218 (mips_regmap): Renamed from regmap, made static.
5219 (mips_cannot_fetch_register): Renamed from cannot_fetch_register,
5220 made static.
5221 (mips_cannot_store_register): Renamed from cannot_store_register,
5222 made static.
5223 (the_low_target): New.
5224 * linux-ppc-low.c (num_regs): Remove.
5225 (ppc_num_regs): Define.
5226 (ppc_regmap): Renamed from regmap, made static.
5227 (ppc_cannot_fetch_register): Renamed from cannot_fetch_register,
5228 made static.
5229 (ppc_cannot_store_register): Renamed from cannot_store_register,
5230 made static.
5231 (the_low_target): New.
5232 * linux-s390-low.c (num_regs): Remove.
5233 (s390_num_regs): Define.
5234 (s390_regmap): Renamed from regmap, made static.
5235 (s390_cannot_fetch_register): Renamed from cannot_fetch_register,
5236 made static.
5237 (s390_cannot_store_register): Renamed from cannot_store_register,
5238 made static.
5239 (the_low_target): New.
5240 * linux-sh-low.c (num_regs): Remove.
5241 (sh_num_regs): Define.
5242 (sh_regmap): Renamed from regmap, made static.
5243 (sh_cannot_fetch_register): Renamed from cannot_fetch_register,
5244 made static.
5245 (sh_cannot_store_register): Renamed from cannot_store_register,
5246 made static.
5247 (the_low_target): New.
5248 * linux-x86-64-low.c (x86_64_regmap): Renamed from regmap.
5249 (the_low_target): New.
5250
5251 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
5252
5253 * Makefile.in: Add stamp-h target.
5254 * configure.in: Create stamp-h.
5255 * configure: Regenerated.
5256
5257 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
5258
5259 * inferiors.c: New file.
5260 * target.c: New file.
5261 * target.h: New file.
5262 * Makefile.in: Add target.o and inferiors.o. Update
5263 dependencies.
5264 * linux-low.c (inferior_pid): New static variable,
5265 moved from server.c.
5266 (linux_create_inferior): Renamed from create_inferior.
5267 Call add_inferior. Return 0 on success instead of a PID.
5268 (linux_attach): Renamed from myattach.
5269 (linux_kill): Renamed from kill_inferior. Call clear_inferiors ().
5270 (linux_thread_alive): Renamed from mythread_alive.
5271 (linux_wait): Renamed from mywait. Call clear_inferiors () if the
5272 child dies.
5273 (linux_resume): Renamed from myresume. Add missing ``return 0''.
5274 (regsets_store_inferior_registers): Correct error message.
5275 Add missing ``return 0''.
5276 (linux_fetch_registers): Renamed from fetch_inferior_registers.
5277 (linux_store_registers): Renamed from store_inferior_registers.
5278 (linux_read_memory): Renamed from read_inferior_memory.
5279 (linux_write_memory): Renamed from write_inferior_memory.
5280 (linux_target_ops): New structure.
5281 (initialize_low): Call set_target_ops ().
5282 * remote-utils.c (unhexify): New function.
5283 (hexify): New function.
5284 (input_interrupt): Send signals to ``signal_pid''.
5285 * server.c (inferior_pid): Remove.
5286 (start_inferior): Update create_inferior call.
5287 (attach_inferior): Call add_inferior.
5288 (handle_query): New function.
5289 (main): Call handle_query for `q' packets.
5290 * server.h: Include "target.h". Remove obsolete prototypes.
5291 Add prototypes for "inferiors.c", "target.c", hexify, and unhexify.
5292
5293 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
5294
5295 * Makefile.in: Add WARN_CFLAGS. Update configury
5296 dependencies.
5297 * configure.in: Check for <string.h>
5298 * configure: Regenerate.
5299 * config.in: Regenerate.
5300 * gdbreplay.c: Include needed system headers.
5301 (remote_open): Remove strchr prototype.
5302 * linux-low.h: Correct #ifdef to HAVE_LINUX_USRREGS.
5303 * regcache.c (supply_register): Change buf argument to const void *.
5304 (supply_register_by_name): Likewise.
5305 (collect_register): Change buf argument to void *.
5306 (collect_register_by_name): Likewise.
5307 * regcache.h: Add missing prototypes.
5308 * remote-utils.c: Include <arpa/inet.h> for inet_ntoa.
5309 * server.c (handle_query): New function.
5310 (attached): New static variable, moved out of main.
5311 (main): Quiet longjmp clobber warnings.
5312 * server.h: Add ATTR_NORETURN and ATTR_FORMAT. Update prototypes.
5313 * utils.c (error): Remove NORETURN.
5314 (fatal): Likewise.
This page took 0.226938 seconds and 4 git commands to generate.