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