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