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