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