Enable ELF ld_list_options for --enable-targets=all
[deliverable/binutils-gdb.git] / gdb / gdbserver / ChangeLog
... / ...
CommitLineData
12015-04-01 Pedro Alves <palves@redhat.com>
2 Cleber Rosa <crosa@redhat.com>
3
4 * server.c (gdbserver_usage): Reorganize and extend the usage
5 message.
6
72015-03-24 Pedro Alves <palves@redhat.com>
8
9 * linux-low.c (check_stopped_by_breakpoint): Tweak debug log
10 output. Also dump TRAP_TRACE.
11 (linux_low_filter_event): In debug output, distinguish a
12 resume_stop SIGSTOP from a delayed SIGSTOP.
13
142015-03-24 Gary Benson <gbenson@redhat.com>
15
16 * linux-x86-low.c (x86_linux_new_thread): Moved to
17 nat/x86-linux.c.
18 (x86_linux_prepare_to_resume): Likewise.
19
202015-03-24 Gary Benson <gbenson@redhat.com>
21
22 * Makefile.in (x86-linux-dregs.o): New rule.
23 * configure.srv: Add x86-linux-dregs.o to relevant targets.
24 * linux-x86-low.c: Include nat/x86-linux-dregs.h.
25 (u_debugreg_offset): Moved to nat/x86-linux-dregs.c.
26 (x86_linux_dr_get): Likewise.
27 (x86_linux_dr_set): Likewise.
28 (update_debug_registers_callback): Likewise.
29 (x86_linux_dr_set_addr): Likewise.
30 (x86_linux_dr_get_addr): Likewise.
31 (x86_linux_dr_set_control): Likewise.
32 (x86_linux_dr_get_control): Likewise.
33 (x86_linux_dr_get_status): Likewise.
34 (x86_linux_update_debug_registers): Likewise.
35
362015-03-24 Gary Benson <gbenson@redhat.com>
37
38 * linux-x86-low.c (x86_linux_update_debug_registers):
39 New function, factored out from...
40 (x86_linux_prepare_to_resume): ...this.
41
422015-03-24 Gary Benson <gbenson@redhat.com>
43
44 * linux-x86-low.c (x86_linux_dr_get): Update comments.
45 (x86_linux_dr_set): Likewise.
46 (update_debug_registers_callback): Likewise.
47 (x86_linux_dr_set_addr): Likewise.
48 (x86_linux_dr_get_addr): Likewise.
49 (x86_linux_dr_set_control): Likewise.
50 (x86_linux_dr_get_control): Likewise.
51 (x86_linux_dr_get_status): Likewise.
52 (x86_linux_prepare_to_resume): Likewise.
53
542015-03-24 Gary Benson <gbenson@redhat.com>
55
56 * linux-x86-low.c (x86_linux_dr_get): Add assertion.
57 Use perror_with_name. Pass string through gettext.
58 (x86_linux_dr_set): Likewise.
59
602015-03-24 Gary Benson <gbenson@redhat.com>
61
62 * linux-x86-low.c (x86_dr_low_set_addr): Rename to...
63 (x86_linux_dr_set_addr): ...this.
64 (x86_dr_low_get_addr): Rename to...
65 (x86_linux_dr_get_addr): ...this.
66 (x86_dr_low_set_control): Rename to...
67 (x86_linux_dr_set_control): ...this.
68 (x86_dr_low_get_control): Rename to...
69 (x86_linux_dr_get_control): ...this.
70 (x86_dr_low_get_status): Rename to...
71 (x86_linux_dr_get_status): ...this.
72 (x86_dr_low): Update with new function names.
73
742015-03-24 Gary Benson <gbenson@redhat.com>
75
76 * Makefile.in (x86-linux.o): New rule.
77 * configure.srv: Add x86-linux.o to relevant targets.
78 * linux-low.c (lwp_set_arch_private_info): New function.
79 (lwp_arch_private_info): Likewise.
80 * linux-x86-low.c: Include nat/x86-linux.h.
81 (arch_lwp_info): Removed structure.
82 (update_debug_registers_callback):
83 Use lwp_set_debug_registers_changed.
84 (x86_linux_prepare_to_resume): Use lwp_debug_registers_changed
85 and lwp_set_debug_registers_changed.
86 (x86_linux_new_thread): Use lwp_set_debug_registers_changed.
87
882015-03-24 Gary Benson <gbenson@redhat.com>
89
90 * linux-low.h (linux_target_ops) <new_thread>: Changed signature.
91 * linux-arm-low.c (arm_new_thread): Likewise.
92 * linux-aarch64-low.c (aarch64_linux_new_thread): Likewise.
93 * linux-mips-low.c (mips_linux_new_thread): Likewise.
94 * linux-x86-low.c (x86_linux_new_thread): Likewise.
95 * linux-low.c (add_lwp): Update the_low_target.new_thread call.
96
972015-03-24 Gary Benson <gbenson@redhat.com>
98
99 * linux-low.c (ptid_of_lwp): New function.
100 (lwp_is_stopped): Likewise.
101 (lwp_stop_reason): Likewise.
102 * linux-x86-low.c (update_debug_registers_callback):
103 Use lwp_is_stopped.
104 (x86_linux_prepare_to_resume): Use ptid_of_lwp and
105 lwp_stop_reason.
106
1072015-03-24 Gary Benson <gbenson@redhat.com>
108
109 * linux-low.h (linux_stop_lwp): Remove declaration.
110
1112015-03-24 Gary Benson <gbenson@redhat.com>
112
113 * linux-low.h: Include nat/linux-nat.h.
114 * linux-low.c (iterate_over_lwps_args): New structure.
115 (iterate_over_lwps_filter): New function.
116 (iterate_over_lwps): Likewise.
117 * linux-x86-low.c (update_debug_registers_callback):
118 Update signature to what iterate_over_lwps expects.
119 Remove PID check that iterate_over_lwps now performs.
120 (x86_dr_low_set_addr): Use iterate_over_lwps.
121 (x86_dr_low_set_control): Likewise.
122
1232015-03-24 Gary Benson <gbenson@redhat.com>
124
125 * linux-x86-low.c (x86_debug_reg_state): New function.
126 (x86_linux_prepare_to_resume): Use the above.
127
1282015-03-24 Gary Benson <gbenson@redhat.com>
129
130 * linux-low.c (current_lwp_ptid): New function.
131 * linux-x86-low.c: Include nat/linux-nat.h.
132 (x86_dr_low_get_addr): Use current_lwp_ptid.
133 (x86_dr_low_get_control): Likewise.
134 (x86_dr_low_get_status): Likewise.
135
1362015-03-20 Pedro Alves <palves@redhat.com>
137
138 * tracepoint.c (cmd_qtstatus): Make "str" const.
139
1402015-03-20 Pedro Alves <palves@redhat.com>
141
142 * server.c (handle_general_set): Make "req_str" const.
143
1442015-03-19 Pedro Alves <palves@redhat.com>
145
146 * linux-low.c (linux_resume_one_lwp): Rename to ...
147 (linux_resume_one_lwp_throw): ... this. Don't handle ESRCH here,
148 instead call perror_with_name.
149 (check_ptrace_stopped_lwp_gone): New function.
150 (linux_resume_one_lwp): Reimplement as wrapper around
151 linux_resume_one_lwp_throw that swallows errors if the LWP is
152 gone.
153
1542015-03-19 Pedro Alves <palves@redhat.com>
155
156 * linux-low.c (count_events_callback, select_event_lwp_callback):
157 No longer check whether the thread has resume_stop as last resume
158 kind.
159
1602015-03-19 Pedro Alves <palves@redhat.com>
161
162 * linux-low.c (count_events_callback, select_event_lwp_callback):
163 Use the lwp's status_pending_p field, not the thread's.
164
1652015-03-19 Pedro Alves <palves@redhat.com>
166
167 * linux-low.c (select_event_lwp_callback): Update comments to
168 no longer mention SIGTRAP.
169
1702015-03-18 Gary Benson <gbenson@redhat.com>
171
172 * server.c (handle_query): Do not report vFile:fstat as supported.
173
1742015-03-11 Gary Benson <gbenson@redhat.com>
175
176 * hostio.c (sys/types.h): New include.
177 (sys/stat.h): Likewise.
178 (common-remote-fileio.h): Likewise.
179 (handle_fstat): New function.
180 (handle_vFile): Handle vFile:fstat packets.
181
1822015-03-11 Gary Benson <gbenson@redhat.com>
183
184 * configure.ac (AC_CHECK_MEMBERS): Add checks for
185 struct stat.st_blocks and struct stat.st_blksize.
186 * configure: Regenerate.
187 * config.in: Likewise.
188 * Makefile.in (SFILES): Add common/common-remote-fileio.c.
189 (OBS): Add common-remote-fileio.o.
190 (common-remote-fileio.o): New rule.
191
1922015-03-09 Pedro Alves <palves@redhat.com>
193
194 * tracepoint.c (gdb_agent_helper_thread): Cast '&sockaddr' to
195 'struct sockaddr' pointer in 'accept' call.
196
1972015-03-09 Pedro Alves <palves@redhat.com>
198
199 Revert:
200 2015-03-07 Pedro Alves <palves@redhat.com>
201 * gdbreplay.c: No longer include <netinet/in.h>, <sys/socket.h>,
202 or <winsock2.h> here. Instead include "gdb_socket.h".
203 (remote_open): Use union gdb_sockaddr_u.
204 * remote-utils.c: No longer include <netinet/in.h>, <sys/socket.h>
205 or <winsock2.h> here. Instead include "gdb_socket.h".
206 (handle_accept_event, remote_prepare): Use union gdb_sockaddr_u.
207 * tracepoint.c: Include "gdb_socket.h" instead of <sys/socket.h>
208 or <sys/un.h>.
209 (init_named_socket, gdb_agent_helper_thread): Use union
210 gdb_sockaddr_u.
211
2122015-03-07 Pedro Alves <palves@redhat.com>
213
214 * configure.ac (build_warnings): Move
215 -Wdeclaration-after-statement to the C-specific set.
216 * configure: Regenerate.
217
2182015-03-07 Pedro Alves <palves@redhat.com>
219
220 * gdbreplay.c: No longer include <netinet/in.h>, <sys/socket.h>,
221 or <winsock2.h> here. Instead include "gdb_socket.h".
222 (remote_open): Use union gdb_sockaddr_u.
223 * remote-utils.c: No longer include <netinet/in.h>, <sys/socket.h>
224 or <winsock2.h> here. Instead include "gdb_socket.h".
225 (handle_accept_event, remote_prepare): Use union gdb_sockaddr_u.
226 * tracepoint.c: Include "gdb_socket.h" instead of <sys/socket.h>
227 or <sys/un.h>.
228 (init_named_socket, gdb_agent_helper_thread): Use union
229 gdb_sockaddr_u.
230
2312015-03-07 Pedro Alves <palves@redhat.com>
232
233 Adjust all callers of TRY_CATCH to use TRY/CATCH/END_CATCH
234 instead.
235
2362015-03-06 Yao Qi <yao.qi@linaro.org>
237
238 * linux-aarch64-low.c (aarch64_insert_point): Use
239 show_debug_regs as a boolean.
240 (aarch64_remove_point): Likewise.
241
2422015-03-05 Pedro Alves <palves@redhat.com>
243
244 * lynx-low.c (lynx_target_ops): Install NULL hooks for
245 stopped_by_sw_breakpoint, supports_stopped_by_sw_breakpoint,
246 stopped_by_hw_breakpoint, supports_stopped_by_hw_breakpoint.
247 * nto-low.c (nto_target_ops): Likewise.
248 * spu-low.c (spu_target_ops): Likewise.
249 * win32-low.c (win32_target_ops): Likewise.
250
2512015-03-04 Pedro Alves <palves@redhat.com>
252
253 * linux-low.c (check_stopped_by_breakpoint) [USE_SIGTRAP_SIGINFO]:
254 Decide whether a breakpoint triggered based on the SIGTRAP's
255 siginfo.si_code.
256 (thread_still_has_status_pending_p) [USE_SIGTRAP_SIGINFO]: Don't check whether a
257 breakpoint is inserted if relying on SIGTRAP's siginfo.si_code.
258 (linux_low_filter_event): Check for breakpoints before checking
259 watchpoints.
260 (linux_wait_1): Don't re-increment the PC if relying on SIGTRAP's
261 siginfo.si_code.
262 (linux_stopped_by_sw_breakpoint)
263 (linux_supports_stopped_by_sw_breakpoint)
264 (linux_stopped_by_hw_breakpoint)
265 (linux_supports_stopped_by_hw_breakpoint): New functions.
266 (linux_target_ops): Install new target methods.
267
2682015-03-04 Pedro Alves <palves@redhat.com>
269
270 * remote-utils.c (prepare_resume_reply): Report swbreak/hbreak.
271 * server.c (swbreak_feature, hwbreak_feature): New globals.
272 (handle_query) <qSupported>: Handle "swbreak+" and "hwbreak+".
273 (captured_main): Clear swbreak_feature and hwbreak_feature.
274 * server.h (swbreak_feature, hwbreak_feature): Declare.
275 * target.h (struct target_ops) <stopped_by_sw_breakpoint,
276 supports_stopped_by_sw_breakpoint, stopped_by_hw_breakpoint,
277 supports_stopped_by_hw_breakpoint>: New fields.
278 (target_supports_stopped_by_sw_breakpoint)
279 (target_stopped_by_sw_breakpoint)
280 (target_supports_stopped_by_hw_breakpoint)
281 (target_stopped_by_hw_breakpoint): Declare.
282
2832015-03-04 Pedro Alves <palves@redhat.com>
284
285 enum lwp_stop_reason -> enum target_stop_reason
286 * linux-low.c (check_stopped_by_breakpoint): Adjust.
287 (thread_still_has_status_pending_p, check_stopped_by_watchpoint)
288 (linux_wait_1, stuck_in_jump_pad_callback)
289 (move_out_of_jump_pad_callback, linux_resume_one_lwp)
290 (linux_stopped_by_watchpoint):
291 * linux-low.h (enum lwp_stop_reason): Delete.
292 (struct lwp_info) <stop_reason>: Now an enum target_stop_reason.
293 * linux-x86-low.c (x86_linux_prepare_to_resume): Adjust.
294
2952015-03-04 Yao Qi <yao.qi@linaro.org>
296
297 * Makefile.in (SFILES): Add linux-aarch64-low.c.
298
2992015-03-03 Gary Benson <gbenson@redhat.com>
300
301 * hostio.c (handle_vFile): Fix prefix lengths.
302
3032015-03-03 Markus Metzger <markus.t.metzger@intel.com>
304
305 * linux-low.c (linux_low_enable_btrace): Do not overwrite non-zero
306 ptr_bits.
307
3082015-03-02 Andreas Arnez <arnez@linux.vnet.ibm.com>
309
310 * Makefile.in (s390-vx-linux64.c, s390-tevx-linux64.c)
311 (s390x-vx-linux64.c, s390x-tevx-linux64.c): New rules.
312 (clean): Add "rm -f" for above C files.
313 * configure.srv (srv_regobj): Add s390-vx-linux64.o,
314 s390-tevx-linux64.o, s390x-vx-linux64.o, and s390x-tevx-linux64.o.
315 (srv_xmlfiles): Add s390-vx-linux64.xml, s390-tevx-linux64.xml,
316 s390x-vx-linux64.xml, s390x-tevx-linux64.xml, and s390-vx.xml.
317 * linux-s390-low.c (HWCAP_S390_VX): New macro.
318 (init_registers_s390_vx_linux64, init_registers_s390_tevx_linux64)
319 (init_registers_s390x_vx_linux64)
320 (init_registers_s390x_tevx_linux64)
321 (tdesc_s390_vx_linux64, tdesc_s390_tevx_linux64)
322 (tdesc_s390x_vx_linux64, tdesc_s390x_tevx_linux64): New extern
323 declarations.
324 (s390_fill_vxrs_low, s390_store_vxrs_low, s390_fill_vxrs_high)
325 (s390_store_vxrs_high): New functions.
326 (s390_regsets): Add entries for NT_S390_VXRS_LOW and
327 NT_S390_VXRS_HIGH.
328 (s390_arch_setup): Add logic for selecting one of the new target
329 descriptions. Activate the new vector regsets if applicable.
330 (initialize_low_arch): Also invoke init_registers_s390_vx_linux64,
331 init_registers_s390_tevx_linux64, init_registers_s390x_vx_linux64,
332 and init_registers_s390x_tevx_linux64.
333
3342015-03-01 Pedro Alves <palves@redhat.com>
335
336 * linux-i386-ipa.c (gdb_agent_get_raw_reg): Constify 'raw_regs'
337 parameter.
338
3392015-02-27 Pedro Alves <palves@redhat.com>
340
341 * linux-x86-low.c (u_debugreg_offset): New function.
342 (x86_linux_dr_get, x86_linux_dr_set): Use it.
343
3442015-02-27 Pedro Alves <palves@redhat.com>
345
346 * gdb_proc_service.h: Wrap with EXTERN_C_PUSH/EXTERN_C_POP.
347 [!HAVE_PROC_SERVICE_H] (struct ps_prochandle): Forward declare.
348 [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
349 ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
350 (ps_lsetfpregs, ps_getpid)
351 (ps_get_thread_area, ps_pglobal_lookup, ps_pstop, ps_pcontinue)
352 (ps_lstop, ps_lcontinue, ps_lgetxregsize, ps_lgetxregs)
353 (ps_lsetxregs, ps_plog): Declare.
354
3552015-02-27 Pedro Alves <palves@redhat.com>
356
357 * linux-amd64-ipa.c (gdb_agent_get_raw_reg): Use
358 IP_AGENT_EXPORT_FUNC.
359 * linux-i386-ipa.c (gdb_agent_get_raw_reg): Use
360 IP_AGENT_EXPORT_FUNC.
361 * tracepoint.c (ATTR_USED, ATTR_NOINLINE, ATTR_CONSTRUCTOR)
362 (IP_AGENT_EXPORT): Delete.
363 (gdb_tp_heap_buffer, gdb_jump_pad_buffer, gdb_jump_pad_buffer_end)
364 (gdb_trampoline_buffer, gdb_trampoline_buffer_end)
365 (gdb_trampoline_buffer_error, collecting, gdb_collect)
366 (stop_tracing, flush_trace_buffer, about_to_request_buffer_space)
367 (trace_buffer_is_full, stopping_tracepoint, expr_eval_result)
368 (error_tracepoint, tracepoints, tracing, trace_buffer_ctrl)
369 (trace_buffer_ctrl_curr, trace_buffer_lo, trace_buffer_hi)
370 (traceframe_read_count, traceframe_write_count)
371 (traceframes_created, trace_state_variables, get_raw_reg)
372 (get_trace_state_variable_value, set_trace_state_variable_value)
373 (ust_loaded, helper_thread_id, cmd_buf): Use
374 IPA_SYM_EXPORTED_NAME.
375 (stop_tracing, flush_trace_buffer): Use IP_AGENT_EXPORT_FUNC.
376 (tracepoints) Use IP_AGENT_EXPORT_VAR.
377 (stopping_tracepoint, trace_buffer_is_full, expr_eval_result): Use
378 IP_AGENT_EXPORT_VAR and wrap in EXTERN_C_PUSH/EXTERN_C_POP.
379 (last_tracepoint): Move into !IN_PROCESS_AGENT block.
380 (error_tracepoint): Use IP_AGENT_EXPORT_VAR and wrap in
381 EXTERN_C_PUSH/EXTERN_C_POP.
382 (trace_state_variables): Use IP_AGENT_EXPORT_VAR.
383 (trace_buffer_lo, trace_buffer_hi): Use IP_AGENT_EXPORT_VAR and
384 wrap in EXTERN_C_PUSH/EXTERN_C_POP.
385 (trace_buffer_ctrl, trace_buffer_ctrl_curr)
386 (traceframe_write_count, traceframe_read_count)
387 (traceframes_created, tracing): Use IP_AGENT_EXPORT_VAR.
388 (about_to_request_buffer_space, get_trace_state_variable_value)
389 (set_trace_state_variable_value): Use IP_AGENT_EXPORT_FUNC.
390 (collecting): Use IP_AGENT_EXPORT_VAR and wrap in
391 EXTERN_C_PUSH/EXTERN_C_POP.
392 (gdb_collect): Use IP_AGENT_EXPORT_FUNC.
393 (ust_loaded, cmd_buf): Use IP_AGENT_EXPORT_VAR.
394 (helper_thread_id, gdb_agent_capability): Use IP_AGENT_EXPORT_VAR
395 and wrap in EXTERN_C_PUSH/EXTERN_C_POP.
396 (gdb_tp_heap_buffer, gdb_jump_pad_buffer, gdb_jump_pad_buffer_end)
397 (gdb_trampoline_buffer, gdb_trampoline_buffer_end)
398 (gdb_trampoline_buffer_error): Use IP_AGENT_EXPORT_VAR.
399 * tracepoint.h (ATTR_USED, ATTR_NOINLINE, EXPORTED_SYMBOL):
400 Define.
401 (IP_AGENT_EXPORT_FUNC, IP_AGENT_EXPORT_VAR)
402 (IP_AGENT_EXPORT_VAR_DECL): Define.
403 (tracing): Declare.
404 (gdb_agent_get_raw_reg): Declare.
405
4062015-02-27 Tom Tromey <tromey@redhat.com>
407 Pedro Alves <palves@redhat.com>
408
409 Rename symbols whose names are reserved C++ keywords throughout.
410
4112015-02-27 Pedro Alves <palves@redhat.com>
412
413 * Makefile.in (COMPILER): New, get it from autoconf.
414 (CXX): Get from autoconf instead.
415 (COMPILE.pre): Use COMPILER.
416 (CC-LD): Rename to ...
417 (CC_LD): ... this. Use COMPILER.
418 (gdbserver$(EXEEXT), gdbreplay$(EXEEXT), $(IPA_LIB)): Adjust.
419 (CXX_FOR_TARGET): Default to g++ instead of gcc.
420 * acinclude.m4: Include build-with-cxx.m4.
421 * configure.ac: Call AC_PROG_CXX and GDB_AC_BUILD_WITH_CXX.
422 Disable -Werror by default if building in C++ mode.
423 (build_warnings): Add -Wno-sign-compare, -Wno-write-strings and
424 -Wno-narrowing in C++ mode. Run supported-warning-flags tests with
425 the C++ compiler. Save/restore CXXFLAGS too.
426 * configure: Regenerate.
427
4282015-02-27 Pedro Alves <palves@redhat.com>
429
430 * acinclude.m4: Include libiberty.m4.
431 * configure.ac: Call libiberty_INIT.
432 * config.in, configure: Regenerate.
433
4342015-02-26 Pedro Alves <palves@redhat.com>
435
436 * linux-low.c (linux_wait_1): When incrementing the PC past a
437 program breakpoint always use the_low_target.breakpoint_len as
438 increment, rather than the maximum between that and
439 the_low_target.decr_pc_after_break.
440
4412015-02-23 Pedro Alves <palves@redhat.com>
442
443 * linux-low.c (check_stopped_by_breakpoint): Don't check if the
444 thread was doing a step-over; always adjust the PC if
445 we stepped over a permanent breakpoint.
446 (linux_wait_1): If we stepped over breakpoint that was on top of a
447 permanent breakpoint, manually advance the PC past it.
448
4492015-02-23 Pedro Alves <palves@redhat.com>
450
451 * linux-x86-low.c (REGSIZE): Define in both 32-bit and 64-bit
452 modes.
453 (x86_fill_gregset, x86_store_gregset): Use it when handling
454 $orig_eax.
455
4562015-02-20 Pedro Alves <palves@redhat.com>
457
458 * thread-db.c: Include "nat/linux-procfs.h".
459 (thread_db_init): Skip listing new threads if the kernel supports
460 PTRACE_EVENT_CLONE and /proc/PID/task/ is accessible.
461
4622015-02-20 Pedro Alves <palves@redhat.com>
463
464 * linux-low.c (status_pending_p_callback): Use ptid_match.
465
4662015-02-19 Antoine Tremblay <antoine.tremblay@ericsson.com>
467
468 PR breakpoints/16812
469 * linux-low.c (wstatus_maybe_breakpoint): Remove.
470 (linux_low_filter_event): Update wstatus_maybe_breakpoint name.
471 (linux_wait_1): Report SIGTRAP,SIGILL,SIGSEGV.
472
4732015-02-10 Antoine Tremblay <antoine.tremblay@ericsson.com>
474
475 PR breakpoints/15956
476 * tracepoint.c (cmd_qtinit): Add check for current_thread.
477
4782015-02-09 Markus Metzger <markus.t.metzger@intel.com>
479
480 * linux-low.c (linux_low_btrace_conf): Print size.
481 * server.c (handle_btrace_conf_general_set): New.
482 (hanle_general_set): Call handle_btrace_conf_general_set.
483 (handle_query): Report Qbtrace-conf:bts:size as supported.
484
4852015-02-09 Markus Metzger <markus.t.metzger@intel.com>
486
487 * linux-low.c (linux_low_enable_btrace): Update parameters.
488 (linux_low_btrace_conf): New.
489 (linux_target_ops)<to_btrace_conf>: Initialize.
490 * server.c (current_btrace_conf): New.
491 (handle_btrace_enable): Rename to ...
492 (handle_btrace_enable_bts): ... this. Pass &current_btrace_conf
493 to target_enable_btrace. Update comment. Update users.
494 (handle_qxfer_btrace_conf): New.
495 (qxfer_packets): Add btrace-conf entry.
496 (handle_query): Report qXfer:btrace-conf:read as supported packet.
497 * target.h (target_ops)<enable_btrace>: Update parameters and comment.
498 (target_ops)<read_btrace_conf>: New.
499 (target_enable_btrace): Update parameters.
500 (target_read_btrace_conf): New.
501
5022015-02-09 Markus Metzger <markus.t.metzger@intel.com>
503
504 * server.c (handle_btrace_general_set): Remove call to
505 target_supports_btrace.
506 (supported_btrace_packets): New.
507 (handle_query): Call supported_btrace_packets.
508 * target.h: include btrace-common.h.
509 (btrace_target_info): Removed.
510 (supports_btrace, target_supports_btrace): Update parameters.
511
5122015-02-09 Markus Metzger <markus.t.metzger@intel.com>
513
514 * Makefile.in (SFILES): Add common/btrace-common.c.
515 (OBS): Add common/btrace-common.o.
516 (btrace-common.o): Add build rules.
517 * linux-low: Include btrace-common.h.
518 (linux_low_read_btrace): Use struct btrace_data. Call
519 btrace_data_init and btrace_data_fini.
520
5212015-02-06 Pedro Alves <palves@redhat.com>
522
523 * thread-db.c (find_new_threads_callback): Add debug output.
524
5252015-02-04 Pedro Alves <palves@redhat.com>
526
527 * linux-low.c (handle_extended_wait): Don't resume LWPs here.
528 (resume_stopped_resumed_lwps): New function.
529 (linux_wait_for_event_filtered): Use it.
530
5312015-01-15 Sergio Durigan Junior <sergiodj@redhat.com>
532
533 * Makefile.in (SFILES): Add linux-personality.c.
534 (linux-personality.o): New rule.
535 * configure.srv (srv_linux_obj): Add linux-personality.o to the
536 list of objects to be built.
537 * linux-low.c: Include nat/linux-personality.h.
538 (linux_create_inferior): Remove code to disable address space
539 randomization (moved to ../nat/linux-personality.c). Create
540 cleanup to disable address space randomization.
541
5422015-01-15 Sergio Durigan Junior <sergiodj@redhat.com>
543
544 * Makefile.in (posix-strerror.o): New rule.
545 (mingw-strerror.o): Likewise.
546 * configure: Regenerated.
547 * configure.ac: Source file ../common/common.host. Initialize new
548 variable srv_host_obs. Add srv_host_obs to GDBSERVER_DEPFILES.
549
5502015-01-14 Yao Qi <yao@codesourcery.com>
551
552 * Makefile.in (SFILES): Add nat/ppc-linux.c.
553 (ppc-linux.o): New rule.
554 * configure.srv (powerpc*-*-linux*): Add ppc-linux.o.
555 * configure.ac: AC_CHECK_FUNCS(getauxval).
556 * config.in: Re-generated.
557 * configure: Re-generated.
558 * linux-ppc-low.c (ppc_arch_setup) [__powerpc64__]: Call
559 ppc64_64bit_inferior_p
560
5612015-01-14 Yao Qi <yao@codesourcery.com>
562
563 * linux-ppc-low.c: Include "nat/ppc-linux.h".
564 (PPC_FEATURE_HAS_VSX): Move to nat/ppc-linux.h.
565 (PPC_FEATURE_HAS_ALTIVEC, PPC_FEATURE_HAS_SPE): Likewise.
566 (PT_ORIG_R3, PT_TRAP): Likewise.
567 (PTRACE_GETVSXREGS, PTRACE_SETVSXREGS): Likewise.
568 (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Likewise.
569 (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): Likewise.
570
5712015-01-10 Joel Brobecker <brobecker@adacore.com>
572
573 * i387-fp.c (i387_cache_to_xsave): In look over
574 num_avx512_zmmh_high_registers, replace use of struct i387_xsave
575 zmmh_low_space field by use of zmmh_high_space.
576
5772015-01-09 Pedro Alves <palves@redhat.com>
578
579 * linux-low.c (step_over_bkpt): Move higher up in the file.
580 (handle_extended_wait): Don't store the stop_pc here.
581 (get_stop_pc): Adjust comments and rename to ...
582 (check_stopped_by_breakpoint): ... this. Record whether the LWP
583 stopped for a software breakpoint or hardware breakpoint.
584 (thread_still_has_status_pending_p): New function.
585 (status_pending_p_callback): Use
586 thread_still_has_status_pending_p. If the event is no longer
587 interesting, resume the LWP.
588 (handle_tracepoints): Add assert.
589 (maybe_move_out_of_jump_pad): Remove cancel_breakpoints call.
590 (wstatus_maybe_breakpoint): New function.
591 (cancel_breakpoint): Delete function.
592 (check_stopped_by_watchpoint): New function, factored out from
593 linux_low_filter_event.
594 (lp_status_maybe_breakpoint): Delete function.
595 (linux_low_filter_event): Remove filter_ptid argument.
596 Leave thread group exits pending here. Store the LWP's stop PC.
597 Always leave events pending.
598 (linux_wait_for_event_filtered): Pull all events out of the
599 kernel, and leave them all pending.
600 (count_events_callback, select_event_lwp_callback): Consider all
601 events.
602 (cancel_breakpoints_callback, linux_cancel_breakpoints): Delete.
603 (select_event_lwp): Only give preference to the stepping LWP in
604 all-stop mode. Adjust comments.
605 (ignore_event): New function.
606 (linux_wait_1): Delete 'retry' label. Use ignore_event. Remove
607 references to cancel_breakpoints. Adjust to renames. Also give
608 equal priority to all LWPs that have had events in non-stop mode.
609 If reporting a software breakpoint event, unadjust the LWP's PC.
610 (linux_wait): If linux_wait_1 returned an ignored event, retry.
611 (stuck_in_jump_pad_callback, move_out_of_jump_pad_callback):
612 Adjust.
613 (linux_resume_one_lwp): Store the LWP's PC. Adjust.
614 (resume_status_pending_p): Use thread_still_has_status_pending_p.
615 (linux_stopped_by_watchpoint): Adjust.
616 (linux_target_ops): Remove reference to linux_cancel_breakpoints.
617 * linux-low.h (enum lwp_stop_reason): New.
618 (struct lwp_info) <stop_pc>: Adjust comment.
619 <stopped_by_watchpoint>: Delete field.
620 <stop_reason>: New field.
621 * linux-x86-low.c (x86_linux_prepare_to_resume): Adjust.
622 * mem-break.c (software_breakpoint_inserted_here)
623 (hardware_breakpoint_inserted_here): New function.
624 * mem-break.h (software_breakpoint_inserted_here)
625 (hardware_breakpoint_inserted_here): Declare.
626 * target.h (struct target_ops) <cancel_breakpoints>: Remove field.
627 (cancel_breakpoints): Delete.
628 * tracepoint.c (clear_installed_tracepoints, stop_tracing)
629 (upload_fast_traceframes): Remove references to
630 cancel_breakpoints.
631
6322015-01-09 Pedro Alves <palves@redhat.com>
633
634 * thread-db.c (find_new_threads_callback): Ignore thread if the
635 kernel thread ID is -1.
636
6372015-01-09 Pedro Alves <palves@redhat.com>
638
639 * linux-low.c (linux_attach_fail_reason_string): Move to
640 nat/linux-ptrace.c, and rename.
641 (linux_attach_lwp): Update comment.
642 (attach_proc_task_lwp_callback): New function.
643 (linux_attach): Adjust to rename and use
644 linux_proc_attach_tgid_threads.
645 (linux_attach_fail_reason_string): Delete declaration.
646
6472015-01-01 Joel Brobecker <brobecker@adacore.com>
648
649 * gdbreplay.c (gdbreplay_version): Update copyright year to 2015.
650 * server.c (gdbserver_version): Likewise.
651
6522014-12-29 Sergio Durigan Junior <sergiodj@redhat.com>
653
654 * remote-utils.c: Include ctype.h.
655 (input_interrupt): Explicitly handle the case when the char
656 received is the NUL byte. Improve the printing of non-ASCII
657 characters.
658
6592014-12-16 Joel Brobecker <brobecker@adacore.com>
660
661 * linux-low.c (linux_low_filter_event): Update call to
662 linux_enable_event_reporting following the addition of
663 a new parameter to that function.
664
6652014-12-16 Catalin Udma <catalin.udma@freescale.com>
666
667 PR server/17457
668 * linux-aarch64-low.c (AARCH64_FPSR_REGNO): New define.
669 (AARCH64_FPCR_REGNO): Likewise.
670 (AARCH64_NUM_REGS): Update to include fpsr/fpcr registers.
671 (aarch64_fill_fpregset): Add missing fpsr/fpcr registers.
672 (aarch64_store_fpregset): Likewise.
673
6742014-12-15 Joel Brobecker <brobecker@adacore.com>
675
676 * lynx-low.c (lynx_resume): Use PTRACE_SINGLESTEP_ONE if N == 1.
677 Remove FIXME comment about assumption about N.
678
6792014-12-13 Joel Brobecker <brobecker@adacore.com>
680
681 * configure.ac: If large-file support is disabled in GDBserver,
682 pass --disable-largefile to ACX_CONFIGURE_DIR call for "gnulib".
683 * configure: Regenerate.
684
6852014-12-12 Andreas Arnez <arnez@linux.vnet.ibm.com>
686
687 * linux-low.c (regsets_fetch_inferior_registers): Suppress the
688 warning upon ENODATA from ptrace.
689 * linux-s390-low.c (s390_store_tdb): New.
690 (s390_regsets): Add regset for NT_S390_TDB.
691
6922014-12-12 Andreas Arnez <arnez@linux.vnet.ibm.com>
693
694 * linux-low.c (regsets_store_inferior_registers): Skip regsets
695 without a fill_function.
696 * linux-s390-low.c (s390_fill_last_break): Remove.
697 (s390_regsets): Set fill_function to NULL for NT_S390_LAST_BREAK.
698 (s390_arch_setup): Use regset's size instead of fill_function for
699 loop end condition.
700
7012014-12-12 Andreas Arnez <arnez@linux.vnet.ibm.com>
702
703 * linux-low.c (regsets_fetch_inferior_registers): Do not invoke
704 the regset's store function when ptrace returned an error.
705 * regcache.c (get_thread_regcache): Invalidate register cache
706 before fetching inferior's registers.
707
7082014-12-12 Andreas Arnez <arnez@linux.vnet.ibm.com>
709
710 * linux-low.c (regsets_fetch_inferior_registers): Rephrase
711 while-loop as for-loop.
712 (regsets_store_inferior_registers): Likewise.
713
7142014-11-28 Yao Qi <yao@codesourcery.com>
715
716 * configure.ac(AC_CHECK_FUNCS): Remove readlink.
717 * config.in, configure: Re-generate.
718 * hostio.c (handle_unlink): Remove code checking HAVE_READLINK
719 is defined.
720
7212014-11-21 Yao Qi <yao@codesourcery.com>
722
723 * configure.ac: Don't invoke AC_FUNC_ALLOCA.
724 (AC_CHECK_HEADERS): Remove malloc.h.
725 * configure: Re-generated.
726 * config.in: Re-generated.
727 * server.h: Don't include alloca.h and malloc.h.
728 * gdbreplay.c: Don't check HAVE_ALLOCA_H is defined.
729 Don't include malloc.h.
730
7312014-11-17 Joel Brobecker <brobecker@adacore.com>
732
733 * lynx-low.c (lynx_write_memory): Put lynx_read_memory and
734 corresponding ERRNO check in same block.
735
7362014-11-12 Pedro Alves <palves@redhat.com>
737
738 * server.c (cont_thread): Update comment.
739 (start_inferior, attach_inferior): No longer clear cont_thread.
740 (handle_v_cont): No longer set cont_thread.
741 (captured_main): Clear cont_thread each time a GDB connects.
742
7432014-11-12 Pedro Alves <palves@redhat.com>
744
745 * linux-low.c (linux_wait_1): Don't force a wait for the Hc
746 thread, and don't resume all threads if the Hc thread has exited.
747
7482014-11-12 Pedro Alves <palves@redhat.com>
749
750 * linux-low.c (linux_request_interrupt): Always send a SIGINT to
751 the process group instead of to a specific LWP.
752
7532014-10-15 Pedro Alves <palves@redhat.com>
754
755 PR server/17487
756 * win32-arm-low.c (arm_set_thread_context): Remove current_event
757 parameter.
758 (arm_set_thread_context): Delete.
759 (the_low_target): Adjust.
760 * win32-i386-low.c (debug_registers_changed)
761 (debug_registers_used): Delete.
762 (update_debug_registers_callback): New function.
763 (x86_dr_low_set_addr, x86_dr_low_set_control): Mark all threads as
764 needing to update their debug registers.
765 (win32_get_current_dr): New function.
766 (x86_dr_low_get_addr, x86_dr_low_get_control)
767 (x86_dr_low_get_status): Fetch the debug register from the thread
768 record's context.
769 (i386_initial_stuff): Adjust.
770 (i386_get_thread_context): Remove current_event parameter. Don't
771 clear debug_registers_changed nor copy DR values to
772 debug_reg_state.
773 (i386_set_thread_context): Delete.
774 (i386_prepare_to_resume): New function.
775 (i386_thread_added): Mark the thread as needing to update irs
776 debug registers.
777 (the_low_target): Remove i386_set_thread_context and install
778 i386_prepare_to_resume.
779 * win32-low.c (win32_get_thread_context): Adjust.
780 (win32_set_thread_context): Use SetThreadContext
781 directly.
782 (win32_prepare_to_resume): New function.
783 (win32_require_context): New function, factored out from ...
784 (thread_rec): ... this.
785 (continue_one_thread): Call win32_prepare_to_resume on each thread
786 we're about to continue.
787 (win32_resume): Call win32_prepare_to_resume on the event thread.
788 * win32-low.h (struct win32_thread_info)
789 <debug_registers_changed>: New field.
790 (struct win32_target_ops): Change prototype of set_thread_context,
791 delete set_thread_context and add prepare_to_resume.
792 (win32_require_context): New declaration.
793
7942014-10-08 Gary Benson <gbenson@redhat.com>
795
796 * server.h: Do not include common-exceptions.h.
797
7982014-10-08 Gary Benson <gbenson@redhat.com>
799
800 * server.h: Do not include cleanups.h.
801
8022014-09-30 James Hogan <james.hogan@imgtec.com>
803
804 * Makefile.in (clean): Add rm -f commands for mips-dsp-linux.c and
805 mips64-dsp-linux.c.
806
8072014-09-23 Yao Qi <yao@codesourcery.com>
808
809 * linux-low.c (lp_status_maybe_breakpoint): New function.
810 (linux_low_filter_event): Call lp_status_maybe_breakpoint.
811 (count_events_callback): Likewise.
812 (select_event_lwp_callback): Likewise.
813 (cancel_breakpoints_callback): Likewise.
814
8152014-09-19 Don Breazeal <donb@codesourcery.com>
816
817 * linux-low.c (handle_extended_wait): Call
818 linux_ptrace_get_extended_event.
819 (get_stop_pc, get_detach_signal, linux_low_filter_event): Call
820 linux_is_extended_waitstatus.
821
8222014-09-16 Joel Brobecker <brobecker@adacore.com>
823
824 * Makefile.in (CPPFLAGS): Define.
825 (INTERNAL_CFLAGS_BASE): Add ${CPPFLAGS}.
826 (IPAGENT_CFLAGS): Remove ${CPPFLAGS}.
827
8282014-09-16 Gary Benson <gbenson@redhat.com>
829
830 * inferiors.h (current_inferior): Renamed as...
831 (current_thread): New variable. All uses updated.
832 * linux-low.c (get_pc): Renamed saved_inferior as saved_thread.
833 (maybe_move_out_of_jump_pad): Likewise.
834 (cancel_breakpoint): Likewise.
835 (linux_low_filter_event): Likewise.
836 (wait_for_sigstop): Likewise.
837 (linux_resume_one_lwp): Likewise.
838 (need_step_over_p): Likewise.
839 (start_step_over): Likewise.
840 (linux_stabilize_threads): Renamed save_inferior as saved_thread.
841 * linux-x86-low.c (x86_linux_update_xmltarget): Likewise.
842 * proc-service.c (ps_lgetregs): Renamed reg_inferior as reg_thread
843 and save_inferior as saved_thread.
844 * regcache.c (get_thread_regcache): Renamed saved_inferior as
845 saved_thread.
846 (regcache_invalidate_thread): Likewise.
847 * remote-utils.c (prepare_resume_reply): Likewise.
848 * thread-db.c (thread_db_get_tls_address): Likewise.
849 (disable_thread_event_reporting): Likewise.
850 (remove_thread_event_breakpoints): Likewise.
851 * tracepoint.c (gdb_agent_about_to_close): Renamed save_inferior
852 as saved_thread.
853 * target.h (set_desired_inferior): Renamed as...
854 (set_desired_thread): New declaration. All uses updated.
855 * server.c (myresume): Updated comment to reference thread instead
856 of inferior.
857 (handle_serial_event): Likewise.
858 (handle_target_event): Likewise.
859
8602014-09-12 Tom Tromey <tromey@redhat.com>
861 Gary Benson <gbenson@redhat.com>
862
863 * regcache.h: Include common-regcache.h.
864 (regcache_read_pc): Don't declare.
865 * regcache.c (get_thread_regcache_for_ptid): New function.
866
8672014-09-11 Tom Tromey <tromey@redhat.com>
868 Gary Benson <gbenson@redhat.com>
869
870 * symbol.c: New file.
871 * Makefile.in (SFILES): Add symbol.c.
872 (OBS): Add symbol.o.
873
8742014-09-11 Gary Benson <gbenson@redhat.com>
875
876 * target.c (target_stop_ptid, target_continue_ptid): New
877 functions.
878
8792014-09-11 Tom Tromey <tromey@redhat.com>
880 Gary Benson <gbenson@redhat.com>
881
882 * target.h: Include target/target.h.
883 * target.c (target_read_memory, target_read_uint32)
884 (target_write_memory): New functions.
885
8862014-09-11 Gary Benson <gbenson@redhat.com>
887
888 * server.h (debug_hw_points): Don't declare.
889 * server.c (debug_hw_points): Don't define. Replace all uses
890 with show_debug_regs.
891 * linux-aarch64-low.c (debug_hw_points): Don't define. Replace
892 all uses with show_debug_regs.
893
8942014-09-08 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
895
896 * linux-ppc-low.c (ppc_collect_ptrace_register): Adjust routine to take
897 endianness into account.
898 (ppc_supply_ptrace_register): Likewise.
899
9002014-09-03 James Hogan <james.hogan@imgtec.com>
901
902 * linux-mips-low.c (mips_read_description): Reset errno to 0 prior
903 to reading DSP_CONTROL with PTRACE_PEEKUSER ptrace call.
904
9052014-09-03 Gary Benson <gbenson@redhat.com>
906
907 * linux-x86-low.c (x86_linux_prepare_to_resume): Use
908 ALL_DEBUG_ADDRESS_REGISTERS.
909
9102014-09-02 Gary Benson <gbenson@redhat.com>
911
912 * i386-low.h: Renamed as...
913 * x86-low.h: New file. All type, function and variable name
914 prefixes changed from "i386_" to "x86_". All references updated.
915 * i386-low.c: Renamed as...
916 * x86-low.c: New file. All type, function and variable name
917 prefixes changed from "i386_" to "x86_". All references updated.
918
9192014-09-02 Gary Benson <gbenson@redhat.com>
920
921 * linux-x86-low.c (x86_linux_new_process): Use XCNEW.
922 (x86_linux_new_thread): Likewise.
923
9242014-08-29 Gary Benson <gbenson@redhat.com>
925
926 * server.h (setjmp.h): Do not include.
927 (toplevel): Do not declare.
928 (common-exceptions.h): Include.
929 (cleanups.h): Likewise.
930 * server.c (toplevel): Do not define.
931 (exit_code): New static global.
932 (detach_or_kill_for_exit_cleanup): New function.
933 (main): New function. Original main renamed to...
934 (captured_main): New function.
935 * utils.c (verror) [!IN_PROCESS_AGENT]: Use throw_verror.
936
9372014-08-29 Gary Benson <gbenson@redhat.com>
938
939 * Makefile.in (SFILES): Add common/common-exceptions.c.
940 (OBS): Add common-exceptions.o.
941 (common-exceptions.o): New rule.
942 * utils.c (prepare_to_throw_exception): New function.
943
9442014-08-29 Gary Benson <gbenson@redhat.com>
945
946 * config.in: Regenerate.
947 * configure: Likewise.
948
9492014-08-29 Gary Benson <gbenson@redhat.com>
950
951 * Makefile.in (SFILES): Add common/cleanups.c.
952 (OBS): cleanups.o.
953 (cleanups.o): New rule.
954
9552014-08-29 Gary Benson <gbenson@redhat.com>
956
957 * utils.c (internal_vwarning): New function.
958
9592014-08-28 Gary Benson <gbenson@redhat.com>
960
961 * utils.h (fatal): Remove declaration.
962 * utils.c (fatal): Remove function.
963
9642014-08-28 Gary Benson <gbenson@redhat.com>
965
966 * tracepoint.c (gdb_agent_init): Replace fatal with
967 perror_with_name.
968 (initialize_tracepoint): Likewise.
969
9702014-08-28 Gary Benson <gbenson@redhat.com>
971
972 * remote-utils.c (remote_prepare): Replace fatal with error.
973
9742014-08-28 Gary Benson <gbenson@redhat.com>
975
976 * linux-low.c (linux_async): Replace fatal with warning.
977 Tidy up and return.
978 (linux_start_non_stop): Return -1 if linux_async failed.
979
9802014-08-28 Gary Benson <gbenson@redhat.com>
981
982 * linux-x86-low.c (i386_dr_low_set_addr): Replace check with
983 gdb_assert.
984 (i386_dr_low_get_addr): Remove vague comment.
985 * win32-i386-low.c (i386_dr_low_set_addr): Replace check with
986 gdb_assert.
987
9882014-08-28 Gary Benson <gbenson@redhat.com>
989
990 * inferiors.c (get_thread_process): Replace check with gdb_assert.
991 * linux-low.c (linux_wait_for_event_filtered): Replace fatal with
992 internal_error.
993 (linux_resume_one_lwp): Likewise.
994 * linux-x86-low.c (x86_siginfo_fixup): Replace checks with
995 gdb_assert.
996 * mem-break.c (raw_bkpt_type_to_target_hw_bp_type): Replace fatal
997 with internal_error.
998 * regcache.c (get_thread_regcache): Replace check with gdb_assert.
999 (init_register_cache): Replace fatal with gdb_assert_not_reached.
1000 (find_register_by_name): Replace fatal with internal_error.
1001 (find_regno): Likewise.
1002 * tdesc.c (init_target_desc): Replace check with gdb_assert.
1003 * thread-db.c (thread_db_create_event): Likewise.
1004 (thread_db_load_search): Likewise.
1005 (try_thread_db_load_1): Likewise.
1006 * tracepoint.c (get_jump_space_head): Replace fatal with
1007 internal_error.
1008 (claim_trampoline_space): Likewise.
1009 (have_fast_tracepoint_trampoline_buffer): Likewise.
1010 (cmd_qtstart): Likewise.
1011 (stop_tracing): Likewise.
1012 (fast_tracepoint_collecting): Likewise.
1013 (target_malloc): Likewise.
1014 (download_tracepoint): Likewise.
1015 (download_trace_state_variables): Replace check with gdb_assert.
1016 (upload_fast_traceframes): Replace fatal with internal_error.
1017
10182014-08-19 Tom Tromey <tromey@redhat.com>
1019 Gary Benson <gbenson@redhat.com>
1020
1021 * Makefile.in (SFILES): Add common/common-debug.c.
1022 (OBS): Add common-debug.o.
1023 (common-debug.o): New rule.
1024 * debug.h (debug_printf): Don't declare.
1025 * debug.c (debug_printf): Renamed and rewritten as...
1026 (debug_vprintf): New function.
1027
10282014-08-19 Gary Benson <gbenson@redhat.com>
1029
1030 * utils.h: Do not include print-utils.h.
1031
10322014-08-19 Tom Tromey <tromey@redhat.com>
1033 Gary Benson <gbenson@redhat.com>
1034
1035 * server.h: Add static assertion.
1036 (gdb_byte, CORE_ADDR, LONGEST, ULONGEST): Remove.
1037
10382014-08-19 Tom Tromey <tromey@redhat.com>
1039 Gary Benson <gbenson@redhat.com>
1040
1041 * Makefile.in (SFILES): Add common/errors.c.
1042 (OBS): Add errors.o.
1043 (IPA_OBS): Add errors-ipa.o.
1044 (errors.o): New rule.
1045 (errors-ipa.o): Likewise.
1046 * utils.h (perror_with_name, error, warning): Don't declare.
1047 * utils.c (warning): Renamed and rewritten as...
1048 (vwarning): New function.
1049 (error): Renamed and rewritten as...
1050 (verror): New function.
1051 (internal_error): Renamed and rewritten as...
1052 (internal_verror): New function.
1053
10542014-08-07 Gary Benson <gbenson@redhat.com>
1055
1056 * configure.ac (AC_CHECK_HEADERS): Remove errno.h.
1057 * configure: Regenerate.
1058 * config.in: Likewise.
1059 * server.h: Do not include errno.h.
1060 * event-loop.c: Likewise.
1061 * hostio-errno.c: Likewise.
1062 * linux-low.c: Likewise.
1063 * remote-utils.c: Likewise.
1064 * spu-low.c: Likewise.
1065 * utils.c: Likewise.
1066 * gdbreplay.c: Unconditionally include errno.h.
1067
10682014-08-07 Gary Benson <gbenson@redhat.com>
1069
1070 * server.h: Do not include string.h.
1071 * event-loop.c: Likewise.
1072 * linux-low.c: Likewise.
1073 * regcache.c: Likewise.
1074 * remote-utils.c: Likewise.
1075 * spu-low.c: Likewise.
1076 * utils.c: Likewise.
1077
10782014-08-07 Gary Benson <gbenson@redhat.com>
1079
1080 * server.h: Do not include gdb_assert.h.
1081
10822014-08-07 Gary Benson <gbenson@redhat.com>
1083
1084 * server.h: Do not include common-utils.h.
1085
10862014-08-07 Gary Benson <gbenson@redhat.com>
1087
1088 * server.h: Do not include ptid.h.
1089 * notif.h: Likewise.
1090
10912014-08-07 Gary Benson <gbenson@redhat.com>
1092
1093 * server.h: Do not include gdb_locale.h.
1094
10952014-08-07 Gary Benson <gbenson@redhat.com>
1096
1097 * server.h: Do not include gdb/signals.h.
1098 * win32-low.c: Likewise.
1099
11002014-08-07 Gary Benson <gbenson@redhat.com>
1101
1102 * server.h: Do not include pathmax.h.
1103
11042014-08-07 Gary Benson <gbenson@redhat.com>
1105
1106 * server.h: Do not include libiberty.h.
1107 * linux-bfin-low.c: Likewise.
1108
11092014-08-07 Gary Benson <gbenson@redhat.com>
1110
1111 * server.h: Do not include ansidecl.h.
1112
11132014-08-07 Gary Benson <gbenson@redhat.com>
1114
1115 * linux-x86-low.c: Do not include stddef.h.
1116 * lynx-ppc-low.c: Likewise.
1117 * tracepoint.c: Likewise.
1118
11192014-08-07 Gary Benson <gbenson@redhat.com>
1120
1121 * server.h: Do not include stdarg.h.
1122 * nto-low.c: Likewise.
1123
11242014-08-07 Gary Benson <gbenson@redhat.com>
1125
1126 * server.h: Do not include stdlib.h.
1127 * inferiors.c: Likewise.
1128 * linux-low.c: Likewise.
1129 * regcache.c: Likewise.
1130 * spu-low.c: Likewise.
1131 * tracepoint.c: Likewise.
1132 * utils.c: Likewise.
1133
11342014-08-07 Gary Benson <gbenson@redhat.com>
1135
1136 * server.h: Do not include stdio.h.
1137 * linux-low.c: Likewise.
1138 * remote-utils.c: Likewise.
1139 * spu-low.c: Likewise.
1140 * utils.c: Likewise.
1141 * wincecompat.c: Likewise.
1142
11432014-08-06 Gary Benson <gbenson@redhat.com>
1144
1145 * regcache.c (init_register_cache): Move conditionals inside if.
1146
11472014-08-06 Gary Benson <gbenson@redhat.com>
1148
1149 * linux-low.c (linux_supports_non_stop): Use target_is_async_p.
1150
11512014-07-31 Gary Benson <gbenson@redhat.com>
1152
1153 * ax.h: Do not include server.h.
1154 * gdbthread.h: Likewise.
1155 * lynx-low.h: Likewise.
1156 * notif.h: Likewise.
1157
11582014-07-30 Gary Benson <gbenson@redhat.com>
1159
1160 * server.h: Include common-defs.h.
1161 Do not include config.h or build-gnulib-gdbserver/config.h.
1162
11632014-07-30 Gary Benson <gbenson@redhat.com>
1164
1165 * hostio-errno.c: Move server.h to top of includes list.
1166 * inferiors.c: Likewise.
1167 * linux-x86-low.c: Likewise.
1168 * notif.c: Include server.h.
1169
11702014-07-24 Tom Tromey <tromey@redhat.com>
1171 Gary Benson <gbenson@redhat.com>
1172
1173 * server.h (CORE_ADDR): Now unsigned.
1174
11752014-07-16 Pedro Alves <palves@redhat.com>
1176
1177 * linux-low.c (linux_kill_one_lwp): Use kill_lwp, not kill.
1178
11792014-07-15 Pedro Alves <palves@redhat.com>
1180
1181 * linux-low.c (linux_kill_one_lwp): Save errno and work with saved
1182 copy.
1183
11842014-07-11 Pedro Alves <palves@redhat.com>
1185
1186 * linux-low.c (kill_wait_lwp): New function, based on
1187 kill_one_lwp_callback, but use my_waitpid directly.
1188 (kill_one_lwp_callback, linux_kill): Use it.
1189
11902014-06-23 Pedro Alves <palves@redhat.com>
1191
1192 * linux-x86-low.c (x86_linux_prepare_to_resume): Clear DR_CONTROL
1193 before setting DR0..DR3.
1194
11952014-06-20 Gary Benson <gbenson@redhat.com>
1196
1197 * configure.ac (AC_REPLACE_FUNCS) <vasprintf, vsnprintf>: Removed.
1198 * configure: Regenerated.
1199 * config.in: Likewise.
1200
12012014-06-20 Gary Benson <gbenson@redhat.com>
1202
1203 * Makefile.in (SFILES): Update locations for files moved
1204 from common to nat.
1205 (object file files): Reordered.
1206
12072014-06-20 Gary Benson <gbenson@redhat.com>
1208
1209 * i386-low.h (i386_dr_low_can_set_addr): Removed.
1210 (i386_dr_low_set_addr): Likewise.
1211 (i386_dr_low_get_addr): Likewise.
1212 (i386_dr_low_can_set_control): Likewise.
1213 (i386_dr_low_set_control): Likewise.
1214 (i386_dr_low_get_control): Likewise.
1215 (i386_dr_low_get_status): Likewise.
1216 (i386_get_debug_register_length): Likewise.
1217 * linux-x86-low.c (i386_dr_low_set_addr):
1218 Changed signature. Made static.
1219 (i386_dr_low_get_addr): Likewise.
1220 (i386_dr_low_set_control): Likewise.
1221 (i386_dr_low_get_control): Likewise.
1222 (i386_dr_low_get_status): Likewise.
1223 (i386_dr_low): New global variable.
1224 * win32-i386-low.c (i386_dr_low_set_addr):
1225 Changed signature. Made static.
1226 (i386_dr_low_get_addr): Likewise.
1227 (i386_dr_low_set_control): Likewise.
1228 (i386_dr_low_get_control): Likewise.
1229 (i386_dr_low_get_status): Likewise.
1230 (i386_dr_low): New global variable.
1231
12322014-06-20 Marcus Shawcroft <marcus.shawcroft@arm.com>
1233
1234 * configure.ac: Invoke. AC_CHECK_TOOL(AR, ar).
1235 * Makefile.in (AR, AR_FLAGS): Define.
1236 * configure: Regenerate.
1237
12382014-06-19 Gary Benson <gbenson@redhat.com>
1239
1240 * Makefile.in (i386-dregs.o): New rule.
1241 * configure.srv: Add i386-dregs.o to all targets using i386-low.o.
1242 * i386-low.c (target.h): Remove include.
1243 (TARGET_HAS_DR_LEN_8): Now in i386-dregs.c.
1244 (DR_CONTROL_SHIFT): Likewise.
1245 (DR_CONTROL_SIZE): Likewise.
1246 (DR_RW_EXECUTE): Likewise.
1247 (DR_RW_WRITE): Likewise.
1248 (DR_RW_READ): Likewise.
1249 (DR_RW_IORW): Likewise.
1250 (DR_LEN_1): Likewise.
1251 (DR_LEN_2): Likewise.
1252 (DR_LEN_4): Likewise.
1253 (DR_LEN_8): Likewise.
1254 (DR_LOCAL_ENABLE_SHIFT): Likewise.
1255 (DR_GLOBAL_ENABLE_SHIFT): Likewise.
1256 (DR_ENABLE_SIZE): Likewise.
1257 (DR_LOCAL_SLOWDOWN): Likewise.
1258 (DR_GLOBAL_SLOWDOWN): Likewise.
1259 (DR_CONTROL_RESERVED): Likewise.
1260 (I386_DR_CONTROL_MASK): Likewise.
1261 (I386_DR_VACANT): Likewise.
1262 (I386_DR_LOCAL_ENABLE): Likewise.
1263 (I386_DR_GLOBAL_ENABLE): Likewise.
1264 (I386_DR_DISABLE): Likewise.
1265 (I386_DR_SET_RW_LEN): Likewise.
1266 (I386_DR_GET_RW_LEN): Likewise.
1267 (I386_DR_WATCH_HIT): Likewise.
1268 (i386_wp_op_t): Likewise.
1269 (i386_show_dr): Likewise.
1270 (i386_length_and_rw_bits): Likewise.
1271 (i386_insert_aligned_watchpoint): Likewise.
1272 (i386_remove_aligned_watchpoint): Likewise.
1273 (i386_handle_nonaligned_watchpoint): Likewise.
1274 i386_update_inferior_debug_regs(): Likewise.
1275 (i386_dr_insert_watchpoint): Likewise.
1276 (i386_dr_remove_watchpoint): Likewise.
1277 (i386_dr_region_ok_for_watchpoint): Likewise.
1278 (i386_dr_stopped_data_address): Likewise.
1279 (i386_dr_stopped_by_watchpoint): Likewise.
1280
12812014-06-19 Gary Benson <gbenson@redhat.com>
1282
1283 * i386-low.c (i386_dr_show): Renamed to
1284 i386_show_dr and made static. All uses updated.
1285 (i386_dr_length_and_rw_bits): Renamed to
1286 i386_length_and_rw_bits and made static.
1287 All uses updated.
1288 (i386_dr_insert_aligned_watchpoint): Renamed to
1289 i386_insert_aligned_watchpoint and made static.
1290 All uses updated.
1291 (i386_dr_remove_aligned_watchpoint): Renamed to
1292 i386_remove_aligned_watchpoint and made static.
1293 All uses updated.
1294 (i386_dr_update_inferior_debug_regs): Renamed to
1295 i386_update_inferior_debug_regs and made static.
1296 All uses updated.
1297
12982014-06-18 Gary Benson <gbenson@redhat.com>
1299
1300 * i386-low.h (i386_dr_low_can_set_addr): New macro.
1301 (i386_dr_low_can_set_control): Likewise.
1302 (i386_get_debug_register_length): Likewise.
1303 * i386-low.c (i386_dr_low_can_set_addr): Now in i386-low.h.
1304 (i386_dr_low_can_set_control): Likewise.
1305 (i386_get_debug_register_length): Likewise.
1306
13072014-06-17 Gary Benson <gbenson@redhat.com>
1308
1309 * i386-low.h (i386-dregs.h): New include.
1310 (DR_FIRSTADDR): Now in i386-dregs.h.
1311 (DR_LASTADDR): Likewise.
1312 (DR_NADDR): Likewise.
1313 (DR_STATUS): Likewise.
1314 (DR_CONTROL): Likewise.
1315 (i386_debug_reg_state): Likewise.
1316 (i386_dr_insert_watchpoint): Likewise.
1317 (i386_dr_remove_watchpoint): Likewise.
1318 (i386_dr_region_ok_for_watchpoint): Likewise.
1319 (i386_dr_stopped_data_address): Likewise.
1320 (i386_dr_stopped_by_watchpoint): Likewise.
1321 * i386-low.c (ALL_DEBUG_REGISTERS): Likewise.
1322
13232014-06-18 Gary Benson <gbenson@redhat.com>
1324
1325 * i386-low.h (i386_low_insert_watchpoint): Renamed to
1326 i386_dr_insert_watchpoint.
1327 (i386_low_remove_watchpoint): Renamed to
1328 i386_dr_remove_watchpoint.
1329 (i386_low_region_ok_for_watchpoint): Renamed to
1330 i386_dr_region_ok_for_watchpoint.
1331 (i386_low_stopped_data_address): Renamed to
1332 i386_dr_stopped_data_address.
1333 (i386_low_stopped_by_watchpoint): Renamed to
1334 i386_dr_stopped_by_watchpoint.
1335 * i386-low.c (i386_show_dr): Renamed to
1336 i386_dr_show and made nonstatic. All uses updated.
1337 (i386_length_and_rw_bits): Renamed to
1338 i386_dr_length_and_rw_bits and made nonstatic.
1339 All uses updated.
1340 (i386_insert_aligned_watchpoint): Renamed to
1341 i386_dr_insert_aligned_watchpoint and made nonstatic.
1342 All uses updated.
1343 (i386_remove_aligned_watchpoint): Renamed to
1344 i386_dr_remove_aligned_watchpoint and made nonstatic.
1345 All uses updated.
1346 (i386_update_inferior_debug_regs): Renamed to
1347 i386_dr_update_inferior_debug_regs and made nonstatic.
1348 All uses updated.
1349 (i386_low_insert_watchpoint): Renamed to
1350 i386_dr_insert_watchpoint. All uses updated.
1351 (i386_low_remove_watchpoint): Renamed to
1352 i386_dr_remove_watchpoint. All uses updated.
1353 (i386_low_region_ok_for_watchpoint): Renamed to
1354 i386_dr_region_ok_for_watchpoint. All uses updated.
1355 (i386_low_stopped_data_address): Renamed to
1356 i386_dr_stopped_data_address. All uses updated.
1357 (i386_low_stopped_by_watchpoint): Renamed to
1358 i386_dr_stopped_by_watchpoint. All uses updated.
1359
13602014-06-18 Gary Benson <gbenson@redhat.com>
1361
1362 * i386-low.c (i386_dr_low_can_set_addr): New macro.
1363 (i386_dr_low_can_set_control): Likewise.
1364 (i386_insert_aligned_watchpoint): New check.
1365
13662014-06-18 Gary Benson <gbenson@redhat.com>
1367
1368 * i386-low.c (i386_update_inferior_debug_regs) <inf_state>:
1369 Renamed to state.
1370
13712014-06-18 Gary Benson <gbenson@redhat.com>
1372
1373 * i386-low.c (i386_length_and_rw_bits): Use internal_error
1374 instead of fatal and error.
1375 (i386_handle_nonaligned_watchpoint): Likewise.
1376
13772014-06-18 Gary Benson <gbenson@redhat.com>
1378
1379 * i386-low.c (i386_get_debug_register_length): New macro.
1380 (TARGET_HAS_DR_LEN_8): Remove conditional. Use above macro.
1381 (i386_show_dr): Use debug_printf instead of fprintf. Use
1382 phex to format values.
1383
13842014-06-18 Gary Benson <gbenson@redhat.com>
1385
1386 * i386-low.h: Comment changes.
1387 * i386-low.c: Likewise.
1388
13892014-06-18 Gary Benson <gbenson@redhat.com>
1390
1391 * i386-low.c: Whitespace changes.
1392
13932014-06-12 Tom Tromey <tromey@redhat.com>
1394
1395 * utils.c (freeargv): Remove.
1396
13972014-06-12 Tom Tromey <tromey@redhat.com>
1398
1399 * debug.c (debug_printf): Remove HAVE_GETTIMEOFDAY checks.
1400 * server.c (monitor_show_help): Remove HAVE_GETTIMEOFDAY check.
1401 (parse_debug_format_options): Likewise.
1402 (gdbserver_usage): Likewise.
1403 * Makefile.in (LIBIBERTY_BUILDDIR, LIBIBERTY): New variables.
1404 (SUBDIRS, REQUIRED_SUBDIRS): Add libiberty.
1405 (gdbserver$(EXEEXT), gdbreplay$(EXEEXT)): Depend on and link
1406 against libiberty.
1407 ($(LIBGNU)): Depend on libiberty.
1408 (all-lib): Recurse into all subdirs.
1409 (install-only): Invoke "install" target in subdirs.
1410 (vasprintf.o, vsnprintf.o, safe-ctype.o, lbasename.o): Remove
1411 targets.
1412 * configure: Rebuild.
1413 * configure.ac: Add ACX_CONFIGURE_DIR for libiberty. Don't check
1414 for vasprintf, vsnprintf, or gettimeofday.
1415 * configure.srv: Don't add safe-ctype.o or lbasename.o to
1416 srv_tgtobj.
1417
14182014-06-05 Joel Brobecker <brobecker@adacore.com>
1419
1420 * development.sh: Delete.
1421 * Makefile.in (config.status): Adjust dependency on development.sh.
1422 * configure.ac: Adjust development.sh source call.
1423 * configure: Regenerate.
1424
14252014-06-02 Pedro Alves <palves@redhat.com>
1426
1427 * ax.c (gdb_free_agent_expr): New function.
1428 * ax.h (gdb_free_agent_expr): New declaration.
1429 * mem-break.c (delete_gdb_breakpoint_1): Also clear the commands
1430 list.
1431 (clear_breakpoint_conditions, clear_breakpoint_commands): Make
1432 static.
1433 (clear_breakpoint_conditions_and_commands): New function.
1434 * mem-break.h (clear_breakpoint_conditions): Delete declaration.
1435 (clear_breakpoint_conditions_and_commands): New declaration.
1436
14372014-05-23 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
1438
1439 * linux-aarch64-low.c (asm/ptrace.h): Include.
1440
14412014-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
1442
1443 Fix TLS access for -static -pthread.
1444 * gdbserver/thread-db.c (struct thread_db): Add td_thr_tlsbase_p.
1445 (thread_db_get_tls_address): Call it if LOAD_MODULE is zero.
1446 (thread_db_load_search, try_thread_db_load_1): Initialize it.
1447
14482014-05-20 Pedro Alves <palves@redhat.com>
1449
1450 * linux-aarch64-low.c (aarch64_insert_point)
1451 (aarch64_remove_point): No longer check whether the type is
1452 supported here. Adjust to new interface.
1453 (the_low_target): Install aarch64_supports_z_point_type as
1454 supports_z_point_type method.
1455 * linux-arm-low.c (raw_bkpt_type_to_arm_hwbp_type): New function.
1456 (arm_linux_hw_point_initialize): Take an enum raw_bkpt_type
1457 instead of a Z packet char. Adjust.
1458 (arm_supports_z_point_type): New function.
1459 (arm_insert_point, arm_remove_point): Adjust to new interface.
1460 (the_low_target): Install arm_supports_z_point_type.
1461 * linux-crisv32-low.c (cris_supports_z_point_type): New function.
1462 (cris_insert_point, cris_remove_point): Adjust to new interface.
1463 Don't check whether the type is supported here.
1464 (the_low_target): Install cris_supports_z_point_type.
1465 * linux-low.c (linux_supports_z_point_type): New function.
1466 (linux_insert_point, linux_remove_point): Adjust to new interface.
1467 * linux-low.h (struct linux_target_ops) <insert_point,
1468 remove_point>: Take an enum raw_bkpt_type instead of a char. Add
1469 raw_breakpoint pointer parameter.
1470 <supports_z_point_type>: New method.
1471 * linux-mips-low.c (mips_supports_z_point_type): New function.
1472 (mips_insert_point, mips_remove_point): Adjust to new interface.
1473 Use mips_supports_z_point_type.
1474 (the_low_target): Install mips_supports_z_point_type.
1475 * linux-ppc-low.c (the_low_target): Install NULL as
1476 supports_z_point_type method.
1477 * linux-s390-low.c (the_low_target): Install NULL as
1478 supports_z_point_type method.
1479 * linux-sparc-low.c (the_low_target): Install NULL as
1480 supports_z_point_type method.
1481 * linux-x86-low.c (x86_supports_z_point_type): New function.
1482 (x86_insert_point): Adjust to new insert_point interface. Use
1483 insert_memory_breakpoint. Adjust to new
1484 i386_low_insert_watchpoint interface.
1485 (x86_remove_point): Adjust to remove_point interface. Use
1486 remove_memory_breakpoint. Adjust to new
1487 i386_low_remove_watchpoint interface.
1488 (the_low_target): Install x86_supports_z_point_type.
1489 * lynx-low.c (lynx_target_ops): Install NULL as
1490 supports_z_point_type callback.
1491 * nto-low.c (nto_supports_z_point_type): New.
1492 (nto_insert_point, nto_remove_point): Adjust to new interface.
1493 (nto_target_ops): Install nto_supports_z_point_type.
1494 * mem-break.c: Adjust intro comment.
1495 (struct raw_breakpoint) <raw_type, size>: New fields.
1496 <inserted>: Update comment.
1497 <shlib_disabled>: Delete field.
1498 (enum bkpt_type) <gdb_breakpoint>: Delete value.
1499 <gdb_breakpoint_Z0, gdb_breakpoint_Z1, gdb_breakpoint_Z2,
1500 gdb_breakpoint_Z3, gdb_breakpoint_Z4>: New values.
1501 (raw_bkpt_type_to_target_hw_bp_type): New function.
1502 (find_enabled_raw_code_breakpoint_at): New function.
1503 (find_raw_breakpoint_at): New type and size parameters. Use them.
1504 (insert_memory_breakpoint): New function, based off
1505 set_raw_breakpoint_at.
1506 (remove_memory_breakpoint): New function.
1507 (set_raw_breakpoint_at): Reimplement.
1508 (set_breakpoint): New, based on set_breakpoint_at.
1509 (set_breakpoint_at): Reimplement.
1510 (delete_raw_breakpoint): Go through the_target->remove_point
1511 instead of assuming memory breakpoints.
1512 (find_gdb_breakpoint_at): Delete.
1513 (Z_packet_to_bkpt_type, Z_packet_to_raw_bkpt_type): New functions.
1514 (find_gdb_breakpoint): New function.
1515 (set_gdb_breakpoint_at): Delete.
1516 (z_type_supported): New function.
1517 (set_gdb_breakpoint_1): New function, loosely based off
1518 set_gdb_breakpoint_at.
1519 (check_gdb_bp_preconditions, set_gdb_breakpoint): New functions.
1520 (delete_gdb_breakpoint_at): Delete.
1521 (delete_gdb_breakpoint_1): New function, loosely based off
1522 delete_gdb_breakpoint_at.
1523 (delete_gdb_breakpoint): New function.
1524 (clear_gdb_breakpoint_conditions): Rename to ...
1525 (clear_breakpoint_conditions): ... this. Don't handle a NULL
1526 breakpoint.
1527 (add_condition_to_breakpoint): Make static.
1528 (add_breakpoint_condition): Take a struct breakpoint pointer
1529 instead of an address. Adjust.
1530 (gdb_condition_true_at_breakpoint): Rename to ...
1531 (gdb_condition_true_at_breakpoint_z_type): ... this, and add
1532 z_type parameter.
1533 (gdb_condition_true_at_breakpoint): Reimplement.
1534 (add_breakpoint_commands): Take a struct breakpoint pointer
1535 instead of an address. Adjust.
1536 (gdb_no_commands_at_breakpoint): Rename to ...
1537 (gdb_no_commands_at_breakpoint_z_type): ... this. Add z_type
1538 parameter. Return true if no breakpoint was found. Change debug
1539 output.
1540 (gdb_no_commands_at_breakpoint): Reimplement.
1541 (run_breakpoint_commands): Rename to ...
1542 (run_breakpoint_commands_z_type): ... this. Add z_type parameter,
1543 and change return type to boolean.
1544 (run_breakpoint_commands): New function.
1545 (gdb_breakpoint_here): Also check for Z1 breakpoints.
1546 (uninsert_raw_breakpoint): Don't try to reinsert a disabled
1547 breakpoint. Go through the_target->remove_point instead of
1548 assuming memory breakpoint.
1549 (uninsert_breakpoints_at, uninsert_all_breakpoints): Uninsert
1550 software and hardware breakpoints.
1551 (reinsert_raw_breakpoint): Go through the_target->insert_point
1552 instead of assuming memory breakpoint.
1553 (reinsert_breakpoints_at, reinsert_all_breakpoints): Reinsert
1554 software and hardware breakpoints.
1555 (check_breakpoints, breakpoint_here, breakpoint_inserted_here):
1556 Check both software and hardware breakpoints.
1557 (validate_inserted_breakpoint): Assert the breakpoint is a
1558 software breakpoint. Set the inserted flag to -1 instead of
1559 setting shlib_disabled.
1560 (delete_disabled_breakpoints): Adjust.
1561 (validate_breakpoints): Only validate software breakpoints.
1562 Adjust to inserted flag change.
1563 (check_mem_read, check_mem_write): Skip breakpoint types other
1564 than software breakpoints. Adjust to inserted flag change.
1565 * mem-break.h (enum raw_bkpt_type): New enum.
1566 (raw_breakpoint, struct process_info): Forward declare.
1567 (Z_packet_to_target_hw_bp_type): Delete declaration.
1568 (raw_bkpt_type_to_target_hw_bp_type, Z_packet_to_raw_bkpt_type)
1569 (set_gdb_breakpoint, delete_gdb_breakpoint)
1570 (clear_breakpoint_conditions): New declarations.
1571 (set_gdb_breakpoint_at, clear_gdb_breakpoint_conditions): Delete.
1572 (breakpoint_inserted_here): Update comment.
1573 (add_breakpoint_condition, add_breakpoint_commands): Replace
1574 address parameter with a breakpoint pointer parameter.
1575 (gdb_breakpoint_here): Update comment.
1576 (delete_gdb_breakpoint_at): Delete.
1577 (insert_memory_breakpoint, remove_memory_breakpoint): Declare.
1578 * server.c (process_point_options): Take a struct breakpoint
1579 pointer instead of an address. Adjust.
1580 (process_serial_event) <Z/z packets>: Use set_gdb_breakpoint and
1581 delete_gdb_breakpoint.
1582 * spu-low.c (spu_target_ops): Install NULL as
1583 supports_z_point_type method.
1584 * target.h: Include mem-break.h.
1585 (struct target_ops) <prepare_to_access_memory>: Update comment.
1586 <supports_z_point_type>: New field.
1587 <insert_point, remove_point>: Take an enum raw_bkpt_type argument
1588 instead of a char. Also take a raw breakpoint pointer.
1589 * win32-arm-low.c (the_low_target): Install NULL as
1590 supports_z_point_type.
1591 * win32-i386-low.c (i386_supports_z_point_type): New function.
1592 (i386_insert_point, i386_remove_point): Adjust to new interface.
1593 (the_low_target): Install i386_supports_z_point_type.
1594 * win32-low.c (win32_supports_z_point_type): New function.
1595 (win32_insert_point, win32_remove_point): Adjust to new interface.
1596 (win32_target_ops): Install win32_supports_z_point_type.
1597 * win32-low.h (struct win32_target_ops):
1598 <supports_z_point_type>: New method.
1599 <insert_point, remove_point>: Take an enum raw_bkpt_type argument
1600 instead of a char. Also take a raw breakpoint pointer.
1601
16022014-05-20 Pedro Alves <palves@redhat.com>
1603
1604 * mem-break.h: Include break-common.h.
1605 (Z_PACKET_SW_BP, Z_PACKET_HW_BP, Z_PACKET_WRITE_WP)
1606 (Z_PACKET_READ_WP, Z_PACKET_ACCESS_WP): New defines.
1607 (Z_packet_to_target_hw_bp_type): New declaration.
1608 * mem-break.c (Z_packet_to_target_hw_bp_type): New function.
1609 * i386-low.c (Z_PACKET_HW_BP, Z_PACKET_WRITE_WP, Z_PACKET_READ_WP)
1610 (Z_PACKET_ACCESS_WP): Delete macros.
1611 (Z_packet_to_hw_type): Delete function.
1612 * i386-low.h: Don't include break-common.h here.
1613 (Z_packet_to_hw_type): Delete declaration.
1614 * linux-x86-low.c (x86_insert_point, x86_insert_point): Call
1615 Z_packet_to_target_hw_bp_type instead of Z_packet_to_hw_type.
1616 * win32-i386-low.c (i386_insert_point, i386_remove_point): Call
1617 Z_packet_to_target_hw_bp_type instead of Z_packet_to_hw_type.
1618 * linux-aarch64-low.c: Don't include break-common.h here.
1619 (Z_PACKET_SW_BP, Z_PACKET_HW_BP, Z_PACKET_WRITE_WP)
1620 (Z_PACKET_READ_WP, Z_PACKET_ACCESS_WP): Delete macros.
1621 (Z_packet_to_target_hw_bp_type): Delete function.
1622 * linux-mips-low.c (rsp_bp_type_to_target_hw_bp_type): Delete
1623 function.
1624 (mips_insert_point, mips_remove_point): Use
1625 Z_packet_to_target_hw_bp_type.
1626
16272014-05-20 Pedro Alves <palves@redhat.com>
1628
1629 * linux-aarch64-low.c: Include break-common.h.
1630 (enum target_point_type): Delete.
1631 (Z_packet_to_point_type): Rename to ...
1632 (Z_packet_to_target_hw_bp_type): ... this, and return a
1633 target_hw_bp_type instead.
1634 (aarch64_show_debug_reg_state): Take an enum target_hw_bp_type
1635 instead of an enum target_point_type.
1636 (aarch64_point_encode_ctrl_reg): Likewise. Compute type mask from
1637 breakpoint type.
1638 (aarch64_dr_state_insert_one_point)
1639 (aarch64_dr_state_remove_one_point, aarch64_handle_breakpoint)
1640 (aarch64_handle_aligned_watchpoint)
1641 (aarch64_handle_unaligned_watchpoint, aarch64_handle_watchpoint):
1642 Take an enum target_hw_bp_type instead of an enum
1643 target_point_type.
1644 (aarch64_supports_z_point_type): New function.
1645 (aarch64_insert_point, aarch64_remove_point): Use it. Adjust to
1646 use Z_packet_to_target_hw_bp_type.
1647
16482014-05-20 Joel Brobecker <brobecker@adacore.com>
1649
1650 * configure.ac: Only use -Werror by default when DEVELOPMENT
1651 is true.
1652 * configure: Regenerate.
1653
16542014-05-19 Jan Kratochvil <jan.kratochvil@redhat.com>
1655
1656 Fix gdbserver qGetTLSAddr for x86_64 -m32.
1657 * linux-x86-low.c (X86_64_USER_REGS): New.
1658 (x86_fill_gregset): Call memset for BUF first in x86_64 -m32 case.
1659
16602014-04-28 Yao Qi <yao@codesourcery.com>
1661
1662 * Makefile.in (i386-avx512.c): Fix the typo of generated file
1663 name.
1664
16652014-04-25 Pedro Alves <palves@redhat.com>
1666
1667 PR server/16255
1668 * linux-low.c (linux_attach_fail_reason_string): New function.
1669 (linux_attach_lwp): Delete.
1670 (linux_attach_lwp_1): Rename to ...
1671 (linux_attach_lwp): ... this. Take a ptid instead of a pid as
1672 argument. Remove "initial" parameter. Return int instead of
1673 void. Don't error or warn here.
1674 (linux_attach): Adjust to call linux_attach_lwp. Call error on
1675 failure to attach to the tgid. Call warning when failing to
1676 attach to an lwp.
1677 * linux-low.h (linux_attach_lwp): Take a ptid instead of a pid as
1678 argument. Remove "initial" parameter. Return int instead of
1679 void. Don't error or warn here.
1680 (linux_attach_fail_reason_string): New declaration.
1681 * thread-db.c (attach_thread): Adjust to linux_attach_lwp's
1682 interface change. Use linux_attach_fail_reason_string.
1683
16842014-04-24 Michael Sturm <michael.sturm@mintel.com>
1685 Walfred Tedeschi <walfred.tedeschi@intel.com>
1686
1687 * Makefile.in: Added rules to handle new files
1688 i386-avx512.c i386-avx512-linux.c amd64-avx512.c
1689 amd64-avx512-linux.c x32-avx512.c x32-avx512-linux.c.
1690 * configure.srv (srv_i386_regobj): Add i386-avx512.o.
1691 (srv_i386_linux_regobj): Add i386-avx512-linux.o.
1692 (srv_amd64_regobj): Add amd64-avx512.o and x32-avx512.o.
1693 (srv_amd64_linux_regobj): Add amd64-avx512-linux.o and
1694 x32-avx512-linux.o.
1695 (srv_i386_32bit_xmlfiles): Add i386/32bit-avx512.xml.
1696 (srv_i386_64bit_xmlfiles): Add i386/64bit-avx512.xml.
1697 (srv_amd64_xmlfiles): Add i386/amd64-avx512.xml and
1698 i386/x32-avx512.xml.
1699 (srv_i386_linux_xmlfiles): Add i386/i386-avx512-linux.xml.
1700 (srv_amd64_linux_xmlfiles): Add i386/amd64-avx512-linux.xml and
1701 i386/x32-avx512-linux.xml.
1702 * i387-fp.c (num_avx512_k_registers): New constant for number
1703 of K registers.
1704 (num_avx512_zmmh_low_registers): New constant for number of
1705 lower ZMM registers (0-15).
1706 (num_avx512_zmmh_high_registers): New constant for number of
1707 higher ZMM registers (16-31).
1708 (num_avx512_ymmh_registers): New contant for number of higher
1709 YMM registers (ymm16-31 added by avx521 on x86_64).
1710 (num_avx512_xmm_registers): New constant for number of higher
1711 XMM registers (xmm16-31 added by AVX512 on x86_64).
1712 (struct i387_xsave): Add space for AVX512 registers.
1713 (i387_cache_to_xsave): Change raw buffer size to 64 characters.
1714 Add code to handle AVX512 registers.
1715 (i387_xsave_to_cache): Add code to handle AVX512 registers.
1716 * linux-x86-low.c (init_registers_amd64_avx512_linux): New
1717 prototypei from generated file.
1718 (tdesc_amd64_avx512_linux): Likewise.
1719 (init_registers_x32_avx512_linux): Likewise.
1720 (tdesc_x32_avx512_linux): Likewise.
1721 (init_registers_i386_avx512_linux): Likewise.
1722 (tdesc_i386_avx512_linux): Likewise.
1723 (x86_64_regmap): Add AVX512 registers.
1724 (x86_linux_read_description): Add code to handle AVX512 XSTATE
1725 mask.
1726 (initialize_low_arch): Add code to initialize AVX512 registers.
1727
17282014-04-23 Pedro Alves <palves@redhat.com>
1729
1730 * mem-break.c (find_gdb_breakpoint_at): Make static.
1731 * mem-break.h (find_gdb_breakpoint_at): Delete declaration.
1732
17332014-04-23 Pedro Alves <palves@redhat.com>
1734
1735 * i386-low.c: Don't include break-common.h here.
1736 (i386_low_insert_watchpoint, i386_low_remove_watchpoint): Change
1737 prototype to take target_hw_bp_type as argument instead of a Z
1738 packet char.
1739 * i386-low.h: Include break-common.h here.
1740 (Z_packet_to_hw_type): Declare.
1741 (i386_low_insert_watchpoint, i386_low_remove_watchpoint): Change
1742 prototypes.
1743 * linux-x86-low.c (x86_insert_point): Convert the packet number to
1744 a target_hw_bp_type before calling i386_low_insert_watchpoint.
1745 (x86_remove_point): Convert the packet number to a
1746 target_hw_bp_type before calling i386_low_remove_watchpoint.
1747 * win32-i386-low.c (i386_insert_point): Convert the packet number
1748 to a target_hw_bp_type before calling i386_low_insert_watchpoint.
1749 (i386_remove_point): Convert the packet number to a
1750 target_hw_bp_type before calling i386_low_remove_watchpoint.
1751
17522014-04-23 Pedro Alves <palves@redhat.com>
1753
1754 * utils.h (perror_with_name): Add ATTRIBUTE_NORETURN.
1755
17562014-04-10 Pedro Alves <palves@redhat.com>
1757
1758 * mem-break.c (add_breakpoint_condition, add_breakpoint_commands):
1759 Check if the condition or command is NULL before checking if the
1760 breakpoint is known. On success, return true.
1761 * mem-break.h (add_breakpoint_condition): Document return.
1762 (add_breakpoint_commands): Add describing comment.
1763 * server.c (skip_to_semicolon): New function.
1764 (process_point_options): Use it.
1765
17662014-04-09 Pedro Alves <palves@redhat.com>
1767
1768 * linux-low.c (linux_read_loadmap): Pass current_inferior directly
1769 to lwpid_of.
1770
17712014-02-27 Pedro Alves <palves@redhat.com>
1772
1773 PR 12702
1774 * inferiors.h (A_I_NEXT, ALL_INFERIORS_TYPE, ALL_PROCESSES): New
1775 macros.
1776 * linux-low.c (delete_lwp, handle_extended_wait): Add debug
1777 output.
1778 (last_thread_of_process_p): Take a PID argument instead of a
1779 thread pointer.
1780 (linux_wait_for_lwp): Delete.
1781 (num_lwps, check_zombie_leaders, not_stopped_callback): New
1782 functions.
1783 (linux_low_filter_event): New function, party factored out from
1784 linux_wait_for_event.
1785 (linux_wait_for_event): Rename to ...
1786 (linux_wait_for_event_filtered): ... this. Add new filter ptid
1787 argument. Partly rewrite. Always use waitpid(-1, WNOHANG) and
1788 sigsuspend. Check for zombie leaders.
1789 (linux_wait_for_event): Reimplement as wrapper around
1790 linux_wait_for_event_filtered.
1791 (linux_wait_1): Handle TARGET_WAITKIND_NO_RESUMED. Assume that if
1792 a normal or signal exit is seen, it's the whole process exiting.
1793 (wait_for_sigstop): No longer a for_each_inferior callback.
1794 Rewrite on top of linux_wait_for_event_filtered.
1795 (stop_all_lwps): Call wait_for_sigstop directly.
1796 * server.c (resume, handle_target_event): Handle
1797 TARGET_WAITKIND_NO_RESUMED.
1798
17992014-02-26 Joel Brobecker <brobecker@adacore.com>
1800
1801 * win32-low.c (psapi_get_dll_name,
1802 * win32_CreateToolhelp32Snapshot): Delete.
1803 (win32_CreateToolhelp32Snapshot, win32_Module32First)
1804 (win32_Module32Next, load_toolhelp, toolhelp_get_dll_name):
1805 Delete.
1806 (handle_load_dll): Add function description.
1807 Remove code using psapi_get_dll_name and toolhelp_get_dll_name.
1808
18092014-02-26 Joel Brobecker <brobecker@adacore.com>
1810
1811 * win32-low.c (win32_add_one_solib): Add 0x1000 to load_addr.
1812 Add comment.
1813 (win32_add_all_dlls): Remove 0x1000 offset applied to DLL
1814 base address when calling win32_add_one_solib.
1815 (handle_load_dll): Delete local variable load_addr.
1816 Remove 0x1000 offset applied to DLL base address when calling
1817 win32_add_one_solib.
1818 (handle_unload_dll): Add comment.
1819
18202014-02-26 Joel Brobecker <brobecker@adacore.com>
1821
1822 * win32-low.c (win32_add_all_dlls): Renames
1823 win32_ensure_ntdll_loaded. Rewrite function documentation.
1824 Adjust implementation to always load all DLLs.
1825 Add 0x1000 offset to DLL base address when calling
1826 win32_add_one_solib.
1827 (child_initialization_done): New static global.
1828 (do_initial_child_stuff): Set child_initialization_done to
1829 zero during child initialization, and 1 after. Replace call
1830 to win32_ensure_ntdll_loaded by call to win32_add_all_dlls.
1831 Add comment.
1832 (match_dll_by_basename, dll_is_loaded_by_basename): Delete.
1833 (handle_unload_dll): Add function documentation.
1834 (get_child_debug_event): Ignore load and unload DLL events
1835 during child initialization.
1836
18372014-02-20 Doug Evans <dje@google.com>
1838
1839 Remove global all_lwps.
1840 * inferiors.h (ptid_of): Move here from linux-low.h.
1841 (pid_of, lwpid_of): Ditto.
1842 * linux-aarch64-low.c (debug_reg_change_callback): Update, "entry"
1843 parameter is a struct thread_info * now.
1844 (aarch64_notify_debug_reg_change): Fetch pid from current_inferior
1845 directly. Pass &all_threads to find_inferior instead of &all_lwps.
1846 (aarch64_stopped_data_address): Fetch lwpid from current_inferior
1847 directly.
1848 (aarch64_linux_prepare_to_resume): Fetch ptid from thread.
1849 (aarch64_arch_setup): Fetch lwpid from current_inferior directly.
1850 * linux-arm-low.c (update_registers_callback): Update, "entry"
1851 parameter is a struct thread_info * now.
1852 Fetch lwpid from current_inferior directly.
1853 (arm_insert_point): Pass &all_threads to find_inferior instead of
1854 &all_lwps.
1855 (arm_remove_point): Ditto.
1856 (arm_stopped_by_watchpoint): Fetch lwp from current_inferior.
1857 (arm_prepare_to_resume): Fetch pid from thread.
1858 (arm_read_description): Fetch lwpid from current_inferior directly.
1859 * linux-low.c (all_lwps): Delete.
1860 (delete_lwp): Delete call to remove_inferior.
1861 (handle_extended_wait): Fetch lwpid from thread.
1862 (add_lwp): Don't set lwp->entry.id. Remove call to
1863 add_inferior_to_list.
1864 (linux_attach_lwp_1): Fetch pid from current_inferior directly.
1865 (linux_kill_one_lwp): Fetch ptid,lwpid from thread.
1866 (kill_one_lwp_callback): Ditto.
1867 (linux_kill): Don't dereference NULL pointer.
1868 Fetch ptid,lwpid from thread.
1869 (get_detach_signal): Fetch ptid from thread.
1870 (linux_detach_one_lwp): Fetch ptid,lwpid from thread.
1871 Simplify call to regcache_invalidate_thread.
1872 (delete_lwp_callback): Update, "entry" parameter is a
1873 struct thread_info * now. Fetch pid from thread.
1874 (linux_mourn): Pass &all_threads to find_inferior instead of &all_lwps.
1875 (status_pending_p_callback): Update, "entry" parameter is a
1876 struct thread_info * now. Fetch ptid from thread.
1877 (find_lwp_pid): Update, "entry" parameter is a
1878 struct thread_info * now.
1879 (linux_wait_for_lwp): Fetch pid from thread.
1880 (linux_fast_tracepoint_collecting): Fetch lwpid from thread.
1881 (maybe_move_out_of_jump_pad): Fetch lwpid from current_inferior.
1882 (enqueue_one_deferred_signal): Fetch lwpid from thread.
1883 (dequeue_one_deferred_signal): Ditto.
1884 (cancel_breakpoint): Fetch ptid from current_inferior.
1885 (linux_wait_for_event): Pass &all_threads to find_inferior,
1886 not &all_lwps. Fetch ptid, lwpid from thread.
1887 (count_events_callback): Update, "entry" parameter is a
1888 struct thread_info * now.
1889 (select_singlestep_lwp_callback): Ditto.
1890 (select_event_lwp_callback): Ditto.
1891 (cancel_breakpoints_callback): Ditto.
1892 (linux_cancel_breakpoints): Pass &all_threads to find_inferior,
1893 not &all_lwps.
1894 (select_event_lwp): Ditto. Fetch ptid from event_thread.
1895 (unsuspend_one_lwp): Update, "entry" parameter is a
1896 struct thread_info * now.
1897 (unsuspend_all_lwps): Pass &all_threads to find_inferior,
1898 not &all_lwps.
1899 (linux_stabilize_threads): Ditto. And for for_each_inferior.
1900 Fetch lwpid from thread, not lwp.
1901 (linux_wait_1): Fetch ptid, lwpid from current_inferior.
1902 Pass &all_threads to find_inferior, not &all_lwps.
1903 (send_sigstop): Fetch lwpid from thread, not lwp.
1904 (send_sigstop_callback): Update, "entry" parameter is a
1905 struct thread_info * now.
1906 (suspend_and_send_sigstop_callback): Ditto.
1907 (wait_for_sigstop): Ditto. Fetch ptid, lwpid from thread, lwp.
1908 (stuck_in_jump_pad_callback): Update, "entry" parameter is a
1909 struct thread_info * now.
1910 (move_out_of_jump_pad_callback): Ditto. Fetch ptid, lwpid
1911 from thread, lwp.
1912 (lwp_running): Update, "entry" parameter is a
1913 struct thread_info * now.
1914 (stop_all_lwps): Fetch ptid from thread.
1915 Pass &all_threads to find_inferior, for_each_inferior, not &all_lwps.
1916 (linux_resume_one_lwp): Fetch lwpid from thread.
1917 (linux_set_resume_request): Update, "entry" parameter is a
1918 struct thread_info * now. Fetch pid, lwpid from thread.
1919 (resume_status_pending_p): Update, "entry" parameter is a
1920 struct thread_info * now.
1921 (need_step_over_p): Ditto. Fetch lwpid from thread.
1922 (start_step_over): Fetch lwpid from thread.
1923 (linux_resume_one_thread): Update, "entry" parameter is a
1924 struct thread_info * now. Fetch lwpid from thread.
1925 (linux_resume): Pass &all_threads to find_inferior, not &all_lwps.
1926 (proceed_one_lwp): Update, "entry" parameter is a
1927 struct thread_info * now. Fetch lwpid from thread.
1928 (unsuspend_and_proceed_one_lwp): Update, "entry" parameter is a
1929 struct thread_info * now.
1930 (proceed_all_lwps): Pass &all_threads to find_inferior, not &all_lwps.
1931 (unstop_all_lwps): Ditto. Fetch lwpid from thread.
1932 (regsets_fetch_inferior_registers): Fetch lwpid from current_inferior
1933 directly.
1934 (regsets_store_inferior_registers): Ditto.
1935 (fetch_register, store_register): Ditto.
1936 (linux_read_memory, linux_write_memory): Ditto.
1937 (linux_request_interrupt): Ditto.
1938 (linux_read_auxv): Ditto.
1939 (linux_xfer_siginfo): Ditto.
1940 (linux_qxfer_spu): Ditto.
1941 (linux_qxfer_libraries_svr4): Ditto.
1942 * linux-low.h (ptid_of, pid_of, lwpid_of): Delete,
1943 moved to inferiors.h.
1944 (get_lwp): Delete.
1945 (get_thread_lwp): Update.
1946 (struct lwp_info): Delete member "entry". Simplify comment for
1947 member "thread".
1948 (all_lwps): Delete.
1949 * linux-mips-low.c (mips_read_description): Fetch lwpid from
1950 current_inferior directly.
1951 (update_watch_registers_callback): Update, "entry" parameter is a
1952 struct thread_info * now. Fetch pid from thread.
1953 (mips_linux_prepare_to_resume): Fetch ptid from thread.
1954 (mips_insert_point): Fetch lwpid from current_inferior.
1955 Pass &all_threads to find_inferior, not &all_lwps.
1956 (mips_remove_point): Pass &all_threads to find_inferior, not &all_lwps.
1957 (mips_stopped_by_watchpoint): Fetch lwpid from current_inferior
1958 directly.
1959 (mips_stopped_data_address): Ditto.
1960 * linux-s390-low.c (s390_arch_setup): Fetch pid from current_inferior
1961 directly.
1962 * linux-tile-low.c (tile_arch_setup): Ditto.
1963 * linux-x86-low.c (x86_get_thread_area): Fetch lwpid from thread.
1964 (update_debug_registers_callback): Update, "entry" parameter is a
1965 struct thread_info * now. Fetch pid from thread.
1966 (i386_dr_low_set_addr): Fetch pid from current_inferior directly.
1967 Pass &all_threads to find_inferior, not &all_lwps.
1968 (i386_dr_low_get_addr): Fetch ptid from current_inferior directly.
1969 (i386_dr_low_set_control): Fetch pid from current_inferior directly.
1970 Pass &all_threads to find_inferior, not &all_lwps.
1971 (i386_dr_low_get_control): Fetch ptid from current_inferior directly.
1972 (i386_dr_low_get_status): Ditto.
1973 (x86_linux_prepare_to_resume): Fetch ptid from thread.
1974 (x86_siginfo_fixup): Fetch lwpid from current_inferior directly.
1975 (x86_linux_read_description): Ditto.
1976 * proc-service.c (ps_getpid): Fetch pid from current_inferior directly.
1977
19782014-02-20 Doug Evans <dje@google.com>
1979
1980 * inferiors.c (get_first_inferior): Fix buglet.
1981
19822014-02-19 Doug Evans <dje@google.com>
1983
1984 * gdbthread.h (add_thread): Change result type to struct thread_info *.
1985 * inferiors.c (add_thread): Change result type to struct thread_info *.
1986 All callers updated.
1987 (add_lwp): Call add_thread here instead of in callers.
1988 All callers updated.
1989 * linux-low.h (get_lwp_thread): Rewrite.
1990 (struct lwp_info): New member "thread".
1991
19922014-02-19 Doug Evans <dje@google.com>
1993
1994 * linux-low.c (add_lwp): Change result to struct lwp_info *.
1995 All callers updated.
1996
19972014-02-19 Doug Evans <dje@google.com>
1998
1999 * inferiors.c (add_thread): Fix whitespace.
2000
20012014-02-19 Doug Evans <dje@google.com>
2002
2003 * dll.c (clear_dlls): Replace accessing list implemention details
2004 with API function.
2005 * gdbthread.h (get_first_thread): Declare.
2006 * inferiors.c (for_each_inferior_with_data): New function.
2007 (get_first_thread): New function.
2008 (find_thread_ptid): Simplify.
2009 (get_first_inferior): New function.
2010 (clear_list): Delete.
2011 (one_inferior_p): New function.
2012 (clear_inferior_list): New function.
2013 (clear_inferiors): Update.
2014 * inferiors.h (for_each_inferior_with_data): Declare.
2015 (clear_inferior_list): Declare.
2016 (one_inferior_p): Declare.
2017 (get_first_inferior): Declare.
2018 * linux-low.c (linux_wait_for_event): Replace accessing list
2019 implemention details with API function.
2020 * server.c (target_running): Ditto.
2021 (accumulate_file_name_length): New function.
2022 (emit_dll_description): New function.
2023 (handle_qxfer_libraries): Replace accessing list implemention
2024 details with API function.
2025 (handle_qxfer_threads_worker): New function.
2026 (handle_qxfer_threads_proper): Replace accessing list implemention
2027 details with API function.
2028 (handle_query): Ditto.
2029 (visit_actioned_threads_callback_ftype): New typedef.
2030 (visit_actioned_threads_data): New struct.
2031 (visit_actioned_threads): Rewrite to be find_inferior callback.
2032 (resume): Call find_inferior.
2033 (handle_status): Replace accessing list implemention
2034 details with API function.
2035 (process_serial_event): Replace accessing list implemention details
2036 with API function.
2037 * target.c (set_desired_inferior): Replace accessing list implemention
2038 details with API function.
2039 * tracepoint.c (same_process_p): New function.
2040 (gdb_agent_about_to_close): Replace accessing list implemention
2041 details with API function.
2042 * win32-low.c (child_delete_thread): Replace accessing list
2043 implemention details with API function.
2044 (match_dll_by_basename): New function.
2045 (dll_is_loaded_by_basename): New function.
2046 (win32_ensure_ntdll_loaded): Replace accessing list implemention
2047 details call to dll_is_loaded_by_basename.
2048
20492014-02-19 Doug Evans <dje@google.com>
2050
2051 * dll.h (struct dll_info): Add comment.
2052 * gdbthread.h (struct thread_info): Add comment.
2053 (current_ptid): Simplify.
2054 * inferiors.c (add_process): Update.
2055 (remove_process): Update.
2056 * inferiors.h (struct process_info): Rename member "head" to "entry".
2057 * linux-low.c (delete_lwp): Update.
2058 (add_lwp): Update.
2059 (last_thread_of_process_p): Update.
2060 (kill_one_lwp_callback, linux_kill): Update.
2061 (status_pending_p_callback): Update.
2062 (wait_for_sigstop): Update. Simplify read of ptid.
2063 (start_step_over): Update.
2064 * linux-low.h (ptid_of, pid_of, lwpid_of): Update.
2065 (get_lwp_thread): Update.
2066 (struct lwp_info): Rename member "head" to "entry".
2067 * regcache.h (inferior_list_entry): Delete.
2068 * server.c (kill_inferior_callback): Update.
2069 (detach_or_kill_inferior_callback): Update.
2070 (print_started_pid): Update.
2071 (print_attached_pid): Update.
2072 (process_serial_event): Simplify read of ptid.
2073 * thread-db.c (thread_db_create_event): Update.
2074 (thread_db_get_tls_address): Update.
2075 * win32-low.c (current_inferior_ptid): Simplify.
2076
20772014-02-19 Tom Tromey <tromey@redhat.com>
2078
2079 * target.h (struct target_ops) <supports_btrace>: Add target_ops
2080 argument.
2081 (target_supports_btrace): Update.
2082
20832014-02-14 Yao Qi <yao@codesourcery.com>
2084
2085 * Makefile.in (IPA_OBJS): Append rsp-low-ipa.o.
2086 (rsp-low-ipa.o): New target.
2087
20882014-02-12 Tom Tromey <tromey@redhat.com>
2089
2090 * ax.c (gdb_parse_agent_expr): Use hex2bin, not
2091 convert_ascii_to_int.
2092 * regcache.c (registers_to_string): Likewise.
2093 * remote-utils.c (decode_M_packet): Likewise.
2094 * server.c (process_serial_event): Likewise.
2095
20962014-02-12 Tom Tromey <tromey@redhat.com>
2097
2098 * server.c (handle_query, handle_v_run): Use hex2bin, not
2099 unhexify.
2100 * tracepoint.c (cmd_qtdpsrc, cmd_qtdv, cmd_qtnotes): Likewise.
2101
21022014-02-12 Tom Tromey <tromey@redhat.com>
2103
2104 * ax.c (gdb_unparse_agent_expr): Use bin2hex, not
2105 convert_int_to_ascii.
2106 * regcache.c (registers_to_string, collect_register_as_string):
2107 Likewise.
2108 * remote-utils.c (look_up_one_symbol, relocate_instruction):
2109 Likewise.
2110 * server.c (process_serial_event): Likewise.
2111 * tracepoint.c (cmd_qtstatus, response_source, response_tsv)
2112 (cmd_qtbuffer, cstr_to_hexstr): Likewise.
2113
21142014-02-12 Tom Tromey <tromey@redhat.com>
2115
2116 * remote-utils.c (look_up_one_symbol, monitor_output): Use
2117 bin2hex, not hexify.
2118 * tracepoint.c (cmd_qtstatus): Likewise.
2119
21202014-02-12 Tom Tromey <tromey@redhat.com>
2121
2122 * remote-utils.c (monitor_output): Pass explicit length to
2123 hexify.
2124
21252014-02-12 Tom Tromey <tromey@redhat.com>
2126
2127 * tracepoint.c: Include rsp-low.h.
2128 * server.c: Include rsp-low.h.
2129 * remote-utils.h (convert_ascii_to_int, convert_int_to_ascii)
2130 (unhexify, hexify, remote_escape_output, unpack_varlen_hex): Don't
2131 declare.
2132 * remote-utils.c: Include rsp-low.h.
2133 (fromhex, hexchars, ishex, unhexify, tohex, hexify)
2134 (remote_escape_output, remote_unescape_input, unpack_varlen_hex)
2135 (convert_int_to_ascii, convert_ascii_to_int): Move to
2136 common/rsp-low.c.
2137 * regcache.c: Include rsp-low.h.
2138 * ax.c: Include rsp-low.h.
2139 * Makefile.in (SFILES): Add common/rsp-low.c.
2140 (OBS): Add rsp-low.o.
2141 (rsp-low.o): New target.
2142
21432014-02-12 Tom Tromey <tromey@redhat.com>
2144
2145 * utils.h (pulongest, plongest, phex_nz): Don't declare.
2146 Include print-utils.h.
2147 * utils.c (NUMCELLS, CELLSIZE, get_cell, decimal2str, pulongest)
2148 (plongest, thirty_two, phex_nz): Remove.
2149 * Makefile.in (SFILES): Add common/print-utils.c.
2150 (OBS): Add print-utils.o.
2151 (print-utils-ipa.o): New target.
2152 (print-utils.o): New target.
2153 (IPA_OBJS): Add print-utils-ipa.o.
2154
21552014-02-06 Tom Tromey <tromey@redhat.com>
2156
2157 * Makefile.in (SFILES): Fix indentation.
2158
21592014-02-05 Doug Evans <dje@google.com>
2160
2161 * linux-low.c (linux_wait_for_event): Improve comment.
2162 (linux_wait_1): Keep current_inferior in sync with event_child.
2163
21642014-01-22 Doug Evans <dje@google.com>
2165
2166 * gdbthread.h (gdb_id_to_thread): Delete, unused.
2167
21682014-01-22 Doug Evans <dje@google.com>
2169
2170 * configure.ac (AC_CHECK_FUNCS): Add test for gettimeofday.
2171 * configure: Regenerate.
2172 * config.in: Regenerate.
2173 * Makefile.in (SFILES): Add debug.c.
2174 (OBS): Add debug.o.
2175 * debug.c: New file.
2176 * debug.h: New file.
2177 * linux-aarch64-low.c (*): Update all debugging printfs to use
2178 debug_printf instead of fprintf.
2179 * linux-arm-low.c (*): Ditto.
2180 * linux-cris-low.c (*): Ditto.
2181 * linux-crisv32-low.c (*): Ditto.
2182 * linux-m32r-low.c (*): Ditto.
2183 * linux-sparc-low.c (*): Ditto.
2184 * linux-x86.c (*): Ditto.
2185 * linux-low.c (*): Ditto.
2186 (linux_wait_1): Add calls to debug_enter, debug_exit.
2187 (linux_wait): Remove redundant debugging printf.
2188 (stop_all_lwps): Add calls to debug_enter, debug_exit.
2189 (linux_resume, unstop_all_lwps): Ditto.
2190 * mem-break.c (*): Update all debugging printfs to use
2191 debug_printf instead of fprintf.
2192 * remote-utils.c (*): Ditto.
2193 * thread-db.c (*): Ditto.
2194 * server.c #include <ctype.h>, "gdb_vecs.h".
2195 (debug_threads): Moved to debug.c.
2196 (*): Update all debugging printfs to use debug_printf instead of
2197 fprintf.
2198 (start_inferior): Replace call to fflush with call to debug_flush.
2199 (monitor_show_help): Mention set debug-format.
2200 (parse_debug_format_options): New function.
2201 (handle_monitor_command): Handle "monitor set debug-format".
2202 (gdbserver_usage): Mention --debug-format.
2203 (main): Parse --debug-format.
2204 * server.h (debug_threads): Declaration moved to debug.h.
2205 #include "debug.h".
2206 * tracepoint.c (trace_debug_1) [!IN_PROCESS_AGENT]: Add version of
2207 trace_debug_1 that uses debug_printf.
2208 (tracepoint_look_up_symbols): Update all debugging printfs to use
2209 debug_printf instead of fprintf.
2210
22112014-01-20 Baruch Siach <baruch@tkos.co.il>
2212
2213 * linux-xtensa-low.c: Include asm/ptrace.h instead of
2214 sys/ptrace.h.
2215
22162014-01-17 Pedro Alves <palves@redhat.com>
2217
2218 PR build/16445
2219 * linux-x86-low.c: Don't include elf/common.h if ELFMAG0 is
2220 defined after including gdb_proc_service.h.
2221
22222014-01-16 Doug Evans <dje@google.com>
2223
2224 * dll.c (UNSPECIFIED_CORE_ADDR): New macro.
2225 (match_dll): Use it.
2226
22272014-01-16 Markus Metzger <markus.t.metzger@intel.com>
2228
2229 * target.h (target_ops) <read_btrace>: Change parameters and
2230 return type to allow error reporting.
2231 * server.c (handle_qxfer_btrace): Support delta reads. Pass
2232 trace reading errors on.
2233 * linux-low.c (linux_low_read_btrace): Pass trace reading
2234 errors on.
2235 (linux_low_disable_btrace): New.
2236
22372014-01-15 Doug Evans <dje@google.com>
2238
2239 * inferiors.c (thread_id_to_gdb_id): Delete.
2240 * inferiors.h (thread_id_to_gdb_id): Delete.
2241
22422014-01-13 Eli Zaretskii <eliz@gnu.org>
2243
2244 * Makefile.in (INCLUDE_CFLAGS): Remove trailing slash from
2245 "-I$(srcdir)/../". Fixes MinGW compilation errors with old GCC
2246 versions.
2247
22482014-01-08 Pedro Alves <palves@redhat.com>
2249
2250 * server.c (handle_status): Don't discard previous queued stop
2251 replies or thread's pending status here.
2252 (main) <disconnection>: Do it here instead.
2253
22542014-01-08 Pedro Alves <palves@redhat.com>
2255
2256 * gdbthread.h (struct thread_info) <status_pending_p>: New field.
2257 * server.c (visit_actioned_threads, handle_pending_status): New
2258 function.
2259 (handle_v_cont): Factor out parts to ...
2260 (resume): ... this new function. If in all-stop, and a thread
2261 being resumed has a pending status, report it without actually
2262 resuming.
2263 (myresume): Adjust to use the new 'resume' function.
2264 (clear_pending_status_callback, set_pending_status_callback)
2265 (find_status_pending_thread_callback): New functions.
2266 (handle_status): Handle the case of multiple threads having
2267 interesting statuses to report. Report threads' real last signal
2268 instead of always reporting GDB_SIGNAL_TRAP. Look for a thread
2269 with an interesting thread to report the status for, instead of
2270 always reporting the status of the first thread.
2271
22722014-01-01 Joel Brobecker <brobecker@adacore.com>
2273
2274 * gdbserver.c (gdbserver_version): Set copyright year to 2014.
2275 * gdbreplay.c (gdbreplay_version): Likewise.
2276
22772013-12-18 Yufeng Zhang <yufeng.zhang@arm.com>
2278
2279 * linux-aarch64-low.c (aarch64_linux_set_debug_regs): Set
2280 iov.iov_len with the real length in use.
2281
22822013-12-13 Joel Brobecker <brobecker@adacore.com>
2283
2284 * Makefile.in (safe-ctype.o, lbasename.o): New rules.
2285 * configure.srv: Add safe-ctype.o and lbasename.o to srv_tgtobj
2286 for all targets that use win32-low.c.
2287 * win32-low.c (win32_ensure_ntdll_loaded): New function.
2288 (do_initial_child_stuff): Add call to win32_ensure_ntdll_loaded.
2289
22902013-12-13 Pedro Alves <palves@redhat.com>
2291
2292 * target.c (mywait): Set OURSTATUS->KIND to TARGET_WAITKIND_STOPPED
2293 if equal to TARGET_WAITKIND_LOADED.
2294 * win32-low.c (cached_status): New static global.
2295 (win32_wait): Add declaration.
2296 (do_initial_child_stuff): Flush all initial pending debug events
2297 up to the initial breakpoint.
2298 (win32_wait): If CACHED_STATUS was set, return that instead
2299 of doing a real wait. Remove the code resuming the execution
2300 of the inferior after receiving a TARGET_WAITKIND_LOADED event
2301 during the initial phase. Also remove the code changing
2302 OURSTATUS->KIND from TARGET_WAITKIND_LOADED to
2303 TARGET_WAITKIND_STOPPED.
2304
23052013-12-11 Yao Qi <yao@codesourcery.com>
2306
2307 * notif.c (handle_notif_ack): Return 0 if no notification
2308 matches.
2309
23102013-11-20 Doug Evans <dje@google.com>
2311
2312 * linux-low.c (linux_set_resume_request): Fix comment.
2313
23142013-11-20 Doug Evans <dje@google.com>
2315
2316 * linux-low.c (resume_status_pending_p): Tweak comment.
2317
23182013-11-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
2319
2320 * Makefile.in: Add i386-mpx.c, i386-mpx-linux.c, amd64-mpx.c,
2321 amd64-mpx-linux.c, x32-mpx.c and x32-mpx-linux.c generation.
2322 * configure.srv (srv_i386_regobj): Add i386-mpx.o.
2323 (srv_i386_linux_regobj): Add i386-mpx-linux.o.
2324 (srv_amd64_regobj): Add amd64-mpx.o.
2325 (srv_amd64_linux_regobj): Add amd64-mpx-linux.o.
2326 (srv_i386_32bit_xmlfiles): Add i386/32bit-mpx.xml.
2327 (srv_i386_64bit_xmlfiles): Add i386/64bit-mpx.xml.
2328 * i387-fp.c (num_pl_bnd_register) Added constant.
2329 (num_pl_bnd_cfg_registers) Added constant.
2330 (struct i387_xsave) Added reserved area and MPX fields.
2331 (i387_cache_to_xsave, i387_xsave_to_cache) Add MPX.
2332 * linux-x86-low.c (init_registers_i386_mpx_linux): Declare new
2333 function.
2334 (tdesc_i386_mpx_linux): Add MPX amd64 target.
2335 (init_registers_amd64_mpx_linux): Declare new function.
2336 (tdesc_amd64_mpx_linux): Add MPX amd64 target.
2337 (x86_64_regmap): Add MPX registers.
2338 (x86_linux_read_description): Add MPX case.
2339 (initialize_low_arch): Initialize MPX targets.
2340
23412013-11-18 Tom Tromey <tromey@redhat.com>
2342
2343 * configure: Rebuild.
2344 * configure.ac: Don't check for stdlib.h.
2345 * gdbreplay.c: Unconditionally include stdlib.h.
2346
23472013-11-18 Tom Tromey <tromey@redhat.com>
2348
2349 * config.in: Rebuild.
2350 * configure: Rebuild.
2351 * configure.ac: Don't use AC_HEADER_DIRENT.
2352
23532013-11-18 Tom Tromey <tromey@redhat.com>
2354
2355 * server.h: Don't check HAVE_STRING_H.
2356 * gdbreplay.c: Don't check HAVE_STRING_H.
2357 * configure: Rebuild.
2358
23592013-11-18 Tom Tromey <tromey@redhat.com>
2360
2361 * Makefile.in (gdbreplay$(EXEEXT)): Depend on and link against
2362 LIBGNU.
2363
23642013-11-08 Tom Tromey <tromey@redhat.com>
2365
2366 * configure, config.in: Rebuild.
2367 * configure.ac: Remove unused configury.
2368
23692013-11-08 Tom Tromey <tromey@redhat.com>
2370
2371 * acinclude.m4: Include common.m4, codeset.m4.
2372 * configure, config.in: Rebuild.
2373 * configure.ac: Use GDB_AC_COMMON.
2374
23752013-11-06 Andreas Arnez <arnez@linux.vnet.ibm.com>
2376
2377 * linux-s390-low.c (HWCAP_S390_TE): New define.
2378 (s390_arch_setup): Consider the TE field in the HWCAP for
2379 determining 'have_regset_tdb'.
2380
23812013-10-16 Sergio Durigan Junior <sergiodj@redhat.com>
2382
2383 PR gdb/16014
2384 * tracepoint.c (download_tracepoint_1): Remove unnecessary double
2385 call to sizeof.
2386
23872013-10-02 Pedro Alves <palves@redhat.com>
2388
2389 * server.c (process_serial_event): Don't output "GDBserver
2390 exiting" if GDB is connected through stdio.
2391 * target.c (mywait): Likewise, be silent if GDB is connected
2392 through stdio.
2393
23942013-10-01 Joel Brobecker <brobecker@adacore.com>
2395
2396 * lynx-low.c (lynx_add_threads_after_attach): New function.
2397 (lynx_attach): Remove call to add_thread. Add call to
2398 lynx_add_threads_after_attach instead.
2399
24002013-09-28 Mike Frysinger <vapier@gentoo.org>
2401
2402 * configure.ac (AC_CHECK_HEADERS): Add sys/syscall.h
2403 * config.in, configure: Regenerated.
2404
24052013-09-18 Yao Qi <yao@codesourcery.com>
2406
2407 PR server/15959
2408 * server.c (start_inferior): Clear 'resume_info'.
2409
24102013-09-16 Jiong Wang <jiwang@tilera.com>
2411
2412 * linux-tile-low.c (tile_regsets): Modify the size field to 64-bit
2413 for each register.
2414
24152013-09-16 Jiong Wang <jiwang@tilera.com>
2416
2417 * configure.srv <tilegx*-*-linux*>: Remove linux-osdata.o from and add
2418 linux-tile-low.o to srv_tgtobj.
2419
24202013-09-16 Will Newton <will.newton@linaro.org>
2421
2422 * linux-aarch64-low.c (aarch64_linux_set_debug_regs): Zero
2423 out regs.
2424
24252013-09-06 Pedro Alves <palves@redhat.com>
2426
2427 * Makefile.in (gdb_proc_service_h, regdef_h, regcache_h)
2428 (signals_def, signals_h, ptid_h, ax_h, agent_h, linux_btrace_h)
2429 (linux_osdata_h, vec_h, gdb_vecs_h, host_defs_h, libiberty_h)
2430 (server_h, gdbthread_h, linux_low_h, linux_ptrace_h)
2431 (gdb_thread_db_h, linux_procfs_h, lynx_low_h, nto_low_h)
2432 (mips_linux_watch_h, i386_low_h, win32_low_h): Delete.
2433
24342013-09-06 Pedro Alves <palves@redhat.com>
2435
2436 * Makefile.in (linux-btrace.o, mips-linux-watch.o): Remove
2437 explicit header dependencies and use $COMPILE/$POSTCOMPILE.
2438
24392013-09-06 Pedro Alves <palves@redhat.com>
2440
2441 * linux-amd64-ipa.c: Include tracepoint.h.
2442 * linux-i386-ipa.c: Include tracepoint.h.
2443
24442013-09-06 Ricard Wanderlof <ricardw@axis.com>
2445
2446 * linux-crisv32-low.c (PTRACE_GET_THREAD_AREA): New macro.
2447 (ps_get_thread_area): New function.
2448
24492013-09-06 Ricard Wanderlof <ricardw@axis.com>
2450
2451 * linux-crisv32-low.c (elf_gregset_t): Delete typedef.
2452 (initialize_low_arch): Call init_registers_crisv32 rather than
2453 init_register_crisv32.
2454
24552013-09-05 Pedro Alves <palves@redhat.com>
2456
2457 * server.h (handle_vFile, hostio_last_error_from_errno): Move
2458 to ...
2459 * hostio.h: ... this new file.
2460 * hostio.c, server.c, linux-low.c, nto-low.c, spu-low,
2461 win32-low.c: Include hostio.h.
2462
24632013-09-05 Pedro Alves <palves@redhat.com>
2464
2465 * server.h (gdb_client_data, handler_func, callback_handler_func)
2466 (delete_file_handler, add_file_handler, append_callback_event)
2467 (delete_callback_event, start_event_loop, initialize_event_loop):
2468 Move to event-loop.h and include it.
2469 * event-loop.h: New file.
2470
24712013-09-05 Pedro Alves <palves@redhat.com>
2472
2473 * dll.c, inferiors.c, remote-utils.c, server.c: Include "dll.h".
2474 * server.h (struct dll_info, all_dlls, dlls_changed, clear_dlls)
2475 (loaded_dll, unloaded_dll): Move to ...
2476 * dll.h: ... this new file.
2477 * inferiors.c, remote-utils.c, win32-low.c: Include "dll.h".
2478
24792013-09-05 Pedro Alves <palves@redhat.com>
2480
2481 * server.h (current_process, get_thread_process, all_processes)
2482 (add_inferior_to_list, for_each_inferior, current_inferior)
2483 (remove_inferior, add_process, remove_process, find_process_pid)
2484 (have_started_inferiors_p, have_attached_inferiors_p)
2485 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id)
2486 (clear_inferiors, find_inferior, find_inferior_id)
2487 (inferior_target_data, set_inferior_target_data)
2488 (inferior_regcache_data, set_inferior_regcache_data): Move to
2489 inferiors.h, and include it.
2490 * inferiors.h: New file.
2491
24922013-09-05 Pedro Alves <palves@redhat.com>
2493
2494 * server.h (struct emit_ops, current_insn_ptr, emit_error):
2495 Move ...
2496 * ax.h: ... here.
2497
24982013-09-05 Pedro Alves <palves@redhat.com>
2499
2500 * ax.c, linux-low.c, linux-x86-low.c, server.c: Include
2501 tracepoint.h.
2502 * server.h (IPA_BUFSIZ, initialize_tracepoint, tracing)
2503 (disconnected_tracing, tracepoint_look_up_symbols, stop_tracing
2504 (handle_tracepoint_general_set, handle_tracepoint_query)
2505 (tracepoint_finished_step, tracepoint_was_hit)
2506 (release_while_stepping_state_list, current_traceframe)
2507 (in_readonly_region, traceframe_read_mem)
2508 (fetch_traceframe_registers, traceframe_read_sdata)
2509 (traceframe_read_info, struct fast_tpoint_collect_status)
2510 (fast_tracepoint_collecting, force_unlock_trace_buffer)
2511 (handle_tracepoit_bkpts, initialize_low_tracepoint)
2512 (supply_fast_tracepoint_registers)
2513 (supply_static_tracepoint_registers, set_trampoline_buffer_space)
2514 (ipa_tdesc, claim_trampoline_space)
2515 (have_fast_tracepoint_trampoline_buffer, gdb_agent_about_to_close)
2516 (agent_mem_read, agent_get_trace_state_variable_value)
2517 (agent_set_trace_state_variable_value, agent_tsv_read)
2518 (agent_mem_read_string, get_raw_reg_func_addr)
2519 (get_get_tsv_func_addr, get_set_tsv_func_addr): Move to ...
2520 * tracepoint.h: ... this new file.
2521
25222013-09-05 Pedro Alves <palves@redhat.com>
2523
2524 * server.h (perror_with_name, error, fatal, warning, paddress)
2525 (pulongest, plongest, phex_nz, pfildes): Move to utils.h, and
2526 include it.
2527 * utils.h: New file.
2528
25292013-09-05 Pedro Alves <palves@redhat.com>
2530
2531 * server.h (remote_debug, noack_mode, transport_is_reliable)
2532 (gdb_connected, STDIO_CONNECTION_NAME, remote_connection_is_stdio)
2533 (read_ptid, write_ptid, putpkt, putpkt_binary, putpkt_notif)
2534 (getpkt, remote_prepare, remote_open, remote_close, write_ok)
2535 (write_enn, initialize_async_io, enable_async_io)
2536 (disable_async_io, check_remote_input_interrupt_request)
2537 (convert_ascii_to_int, convert_int_to_ascii, new_thread_notify)
2538 (dead_thread_notify, prepare_resume_reply)
2539 (decode_address_to_semicolon, decode_address, decode_m_packet)
2540 (decode_M_packet, decode_X_packet, decode_xfer_write)
2541 (decode_search_memory_packet, unhexify, hexify)
2542 (remote_escape_output, unpack_varlen_hex, clear_symbol_cache)
2543 (look_up_one_symbol, relocate_instruction)
2544 (monitor_output): Move to remote-utils.h, and include it.
2545 * remote-utils.h: New file.
2546
25472013-09-05 Pedro Alves <palves@redhat.com>
2548
2549 * server.h (_): Delete.
2550
25512013-09-02 Pedro Alves <palves@redhat.com>
2552
2553 * tracepoint.c (TRACEFRAME_EOB_MARKER_SIZE): New macro.
2554 (init_trace_buffer): Ensure at least TRACEFRAME_EOB_MARKER_SIZE is
2555 allocated.
2556 (trace_buffer_alloc): Use TRACEFRAME_EOB_MARKER_SIZE.
2557
25582013-09-02 Pierre Muller <muller@sourceware.org>
2559
2560 * win32-low.c (child_xfer_memory): Check if ReadProcessMemory
2561 or WriteProcessMemory complete successfully and handle
2562 ERROR_PARTIAL_COPY error.
2563
25642013-09-02 Pedro Alves <palves@redhat.com>
2565
2566 * server.c (gdb_read_memory): Return -1 on traceframe memory read
2567 error instead of EIO.
2568
25692013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2570
2571 PR server/15604
2572 * linux-low.c: Include filestuff.h.
2573 (linux_create_inferior) <pid == 0>: Call close_most_fds.
2574 * lynx-low.c: Include filestuff.h.
2575 (lynx_create_inferior) <pid == 0>: Call close_most_fds.
2576 * server.c: Include filestuff.h.
2577 (main): Call notice_open_fds.
2578 * spu-low.c: Include filestuff.h.
2579 (spu_create_inferior) <pid == 0>: Call close_most_fds.
2580
25812013-08-22 Luis Machado <lgustavo@codesourcery.com>
2582
2583 * Makefile.in: Explain why ../target and ../nat are not
2584 listed as include file search paths.
2585 (linux-waitpid.o): New object file rule.
2586 * configure.srv (srv_native_linux_obj): New variable.
2587 Replace all occurrences of linux native object files with
2588 $srv_native_linux_obj.
2589 * linux-low.c: Include nat/linux-nat.h and nat/linux-waitpid.h.
2590 (HAS_NOMMU): Move defining logic to common/linux-ptrace.c.
2591 (linux_enable_event_reporting): Remove declaration.
2592 (my_waitpid): Moved to common/linux-waitpid.c.
2593 (linux_wait_for_event): Pass ptid when calling
2594 linux_enable_event_reporting.
2595 (linux_supports_tracefork_flag): Remove.
2596 (linux_enable_event_reporting): Likewise.
2597 (linux_tracefork_grandchild): Remove.
2598 (STACK_SIZE): Moved to common/linux-ptrace.c.
2599 (linux_tracefork_child): Remove.
2600 (linux_test_for_tracefork): Remove.
2601 (linux_look_up_symbols): Call linux_supports_traceclone.
2602 (initialize_low): Remove call to linux_test_for_tracefork.
2603 * linux-low.h (PTRACE_TYPE_ARG3): Move to
2604 common/linux-ptrace.h.
2605 (PTRACE_TYPE_ARG4): Likewise.
2606 Include linux-ptrace.h.
2607
26082013-08-21 Pedro Alves <palves@redhat.com>
2609
2610 * config.in: Renegerate.
2611
26122013-08-19 Luis Machado <lgustavo@codesourcery.com>
2613
2614 * Makefile.in (INCLUDE_CFLAGS): Include -I$(srcdir)/../.
2615 (SFILES): Remove $(srcdir)/common/target-common.c and
2616 add $(srcdir)/target/waitstatus.c.
2617 (OBS): Remove target-common.o and add waitstatus.o.
2618 (server_h): Remove $(srcdir)/../common/target-common.h and
2619 add $(srcdir)/../target/resume.h, $(srcdir)/../target/wait.h
2620 and $(srcdir)/../target/waitstatus.h.
2621 (target-common.o): Remove.
2622 (waitstatus.o): New target object file.
2623 * target.h: Do not include target-common.h and
2624 include target/resume.h, target/wait.h and
2625 target/waitstatus.h.
2626
26272013-08-13 Luis Machado <lgustavo@codesourcery.com>
2628
2629 * linux-arm-low.c: Rename all occurrences of PTRACE_ARG3_TYPE
2630 to PTRACE_TYPE_ARG3.
2631 * linux-low.c: Rename all occurrences of PTRACE_ARG3_TYPE
2632 to PTRACE_TYPE_ARG3 and PTRACE_ARG4_TYPE to
2633 PTRACE_TYPE_ARG4.
2634 * linux-low.h (PTRACE_ARG3_TYPE): Rename to PTRACE_TYPE_ARG3.
2635 (PTRACE_ARG4_TYPE): Rename to PTRACE_TYPE_ARG4.
2636
26372013-07-27 Jie Zhang <jie@codesourcery.com>
2638 Daniel Jacobowitz <dan@codesourcery.com>
2639 Yao Qi <yao@codesourcery.com>
2640
2641 * Makefile.in (SFILES): Add common/mips-linux-watch.c.
2642 (mips-linux-watch.o): New rule.
2643 (mips_linux_watch_h): New variable.
2644 * configure.srv <mips*-*-linux*>: Add mips-linux-watch.o to
2645 srv_tgtobj.
2646 * linux-mips-low.c: Include mips-linux-watch.h.
2647 (struct arch_process_info, struct arch_lwp_info): New.
2648 (update_watch_registers_callback): New function.
2649 (mips_linux_new_process, mips_linux_new_thread) New functions.
2650 (mips_linux_prepare_to_resume, mips_insert_point): New
2651 functions.
2652 (mips_remove_point, mips_stopped_by_watchpoint): New
2653 functions.
2654 (rsp_bp_type_to_target_hw_bp_type): New function.
2655 (mips_stopped_data_address): New function.
2656 (the_low_target): Add watchpoint support functions.
2657
26582013-07-27 Yao Qi <yao@codesourcery.com>
2659
2660 * i386-low.c: Include break-common.h.
2661 (enum target_hw_bp_type): Remove.
2662
26632013-07-24 Luis Machado <lgustavo@codesourcery.com>
2664
2665 * Makefile.in (SFILES): /common/target-common.c.
2666 (OBS): Add target-common.o.
2667 (server_h): Add $(srcdir)/../common/target-common.h.
2668 (target-common.o): New target.
2669 * server.c (queue_stop_reply_callback): Free
2670 status string after use.
2671 * target.c (target_waitstatus_to_string): Remove.
2672 * target.h: Include target-common.h.
2673 (resume_kind): Likewise.
2674 (target_waitkind): Likewise.
2675 (target_waitstatus): Likewise.
2676 (TARGET_WNOHANG): Likewise.
2677
26782013-07-04 Yao Qi <yao@codesourcery.com>
2679
2680 * Makefile.in (host_alias): Use @host_noncanonical@.
2681 (target_alias): Use @target_noncanonical@.
2682 * configure.ac: Use ACX_NONCANONICAL_TARGET and
2683 ACX_NONCANONICAL_HOST.
2684 * configure: Regenerated.
2685
2686 Revert:
2687 2013-06-28 Mircea Gherzan <mircea.gherzan@intel.com>
2688
2689 * configure.ac (version_host, version_target): Set and AC_SUBST them.
2690 * configure: Rebuild.
2691 * Makefile.in (version_host, version_target): Get from configure.
2692 (version.c): Use $(version_host) and $(version_target).
2693
26942013-07-03 Pedro Alves <palves@redhat.com>
2695
2696 * Makefile.in (config.status): Depend on development.sh.
2697 * acinclude.m4: Include libmcheck.m4.
2698 * configure: Regenerate.
2699
27002013-07-02 Mircea Gherzan <mircea.gherzan@intel.com>
2701
2702 * win32-low.c (winapi_DebugActiveProcessStop): Move the WINAPI
2703 attribute inside the parentheses.
2704 (winapi_DebugSetProcessKillOnExit): Ditto.
2705 (winapi_DebugBreakProcess): Ditto.
2706 (winapi_GenerateConsoleCtrlEvent): Ditto.
2707
27082013-07-02 Mircea Gherzan <mircea.gherzan@intel.com>
2709
2710 * notif.h (notif_event): Add a dummy member to avoid compiler
2711 errors.
2712
27132013-07-01 Pedro Alves <palves@redhat.com>
2714
2715 * hostio.c (HOSTIO_PATH_MAX): Define.
2716 (require_filename, handle_open, handle_unlink, handle_readlink):
2717 Use it.
2718
27192013-07-01 Pedro Alves <palves@redhat.com>
2720
2721 * server.h: Include "pathmax.h".
2722 * linux-low.c: Don't include sys/param.h.
2723 (linux_pid_exe_is_elf_64_file): Use PATH_MAX instead of
2724 MAXPATHLEN.
2725 * win32-low.c: Don't include sys/param.h.
2726 (win32_create_inferior): Use PATH_MAX instead of MAXPATHLEN.
2727
27282013-07-01 Pedro Alves <palves@redhat.com>
2729
2730 * event-loop.c: Don't check HAVE_UNISTD_H before including
2731 <unistd.h>.
2732 * gdbreplay.c: Likewise.
2733 * remote-utils.c: Likewise.
2734 * server.c: Likewise.
2735 * configure.ac: Don't check for unistd.h.
2736 * configure: Regenerate.
2737
27382013-06-28 Tom Tromey <tromey@redhat.com>
2739
2740 * Makefile.in (version.c): Use version.in, not
2741 common/version.in.
2742
27432013-06-28 Mircea Gherzan <mircea.gherzan@intel.com>
2744
2745 * configure.ac (version_host, version_target): Set and AC_SUBST them.
2746 * configure: Rebuild.
2747 * Makefile.in (version_host, version_target): Get from configure.
2748 (version.c): Use $(version_host) and $(version_target).
2749
27502013-06-10 Dmitry Kozlov <ddk@codesourcery.com>
2751
2752 Fix trace-status to output user name without trailing colon.
2753 * tracepoint.c (cmd_qtstatus): Remove unnecessary colon from user name.
2754
27552013-06-10 Dmitry Kozlov <ddk@codesourcery.com>
2756
2757 Fix trace-status to output proper start-time and stop-time.
2758 * tracepoint.c (cmd_qtstatus): Modify trace-status output to
2759 output start time and stop time in hex as gdb expects.
2760
27612013-06-26 Pedro Alves <pedro@codesourcery.com>
2762
2763 * tracepoint.c (build_traceframe_info_xml): Output trace state
2764 variables present in the trace buffer.
2765
27662013-06-24 Tom Tromey <tromey@redhat.com>
2767
2768 * Makefile.in (version.c): Use bfd/version.h, common/version.in,
2769 create-version.sh.
2770 (version.o): Remove.
2771 * gdbreplay.c: Include version.h.
2772 (version, host_name): Don't declare.
2773 * server.h: Include version.h.
2774 (version, host_name): Don't declare.
2775
27762013-06-12 Pedro Alves <palves@redhat.com>
2777
2778 * linux-x86-low.c (linux_is_elf64): Delete global.
2779 (x86_siginfo_fixup): Replace reference to `linux_is_elf64' global
2780 with local linux_pid_exe_is_elf_64_file use.
2781
27822013-06-11 Pedro Alves <palves@redhat.com>
2783
2784 * linux-low.c (regset_disabled, disable_regset): New functions.
2785 (regsets_fetch_inferior_registers)
2786 (regsets_store_inferior_registers): Use them.
2787 (initialize_regsets_info); Don't allocate the disabled_regsets
2788 array here.
2789 * linux-low.h (struct regsets_info) <disabled_regsets>: Extend
2790 comment.
2791
27922013-06-11 Pedro Alves <palves@redhat.com>
2793
2794 * linux-low.c (initialize_regsets_info): Use xcalloc instead of
2795 xmalloc.
2796
27972013-06-11 Pedro Alves <palves@redhat.com>
2798
2799 * linux-x86-low.c (initialize_low_arch): Call
2800 init_registers_x32_avx_linux.
2801
28022013-06-09 Jan Kratochvil <jan.kratochvil@redhat.com>
2803
2804 Fix compatibility with Android Bionic.
2805 * linux-low.c (linux_qxfer_libraries_svr4): Ignore first entry even if
2806 it is not empty.
2807
28082013-06-07 Pedro Alves <palves@redhat.com>
2809
2810 PR server/14823
2811 * Makefile.in (OBS): Add tdesc.o.
2812 (IPA_OBJS): Add tdesc-ipa.o.
2813 (tdesc-ipa.o): New rule.
2814 * ax.c (gdb_eval_agent_expr): Adjust register_size call to new
2815 interface.
2816 * linux-low.c (new_inferior): Delete.
2817 (disabled_regsets, num_regsets): Delete.
2818 (linux_add_process): Adjust to set the new per-process
2819 new_inferior flag.
2820 (linux_detach_one_lwp): Adjust to call regcache_invalidate_thread.
2821 (linux_wait_for_lwp): Adjust. Only call arch_setup if the event
2822 was a stop. When calling arch_setup, switch the current inferior
2823 to the thread that got an event.
2824 (linux_resume_one_lwp): Adjust to call regcache_invalidate_thread.
2825 (regsets_fetch_inferior_registers)
2826 (regsets_store_inferior_registers): New regsets_info parameter.
2827 Adjust to use it.
2828 (linux_register_in_regsets): New regs_info parameter. Adjust to
2829 use it.
2830 (register_addr, fetch_register, store_register): New usrregs_info
2831 parameter. Adjust to use it.
2832 (usr_fetch_inferior_registers, usr_store_inferior_registers): New
2833 parameter regs_info. Adjust to use it.
2834 (linux_fetch_registers): Get the current inferior's regs_info, and
2835 adjust to use it.
2836 (linux_store_registers): Ditto.
2837 [HAVE_LINUX_REGSETS] (initialize_regsets_info): New.
2838 (initialize_low): Don't initialize the target_regsets here. Call
2839 initialize_low_arch.
2840 * linux-low.h (target_regsets): Delete declaration.
2841 (struct regsets_info): New.
2842 (struct usrregs_info): New.
2843 (struct regs_info): New.
2844 (struct process_info_private) <new_inferior>: New field.
2845 (struct linux_target_ops): Delete the num_regs, regmap, and
2846 regset_bitmap fields. New field regs_info.
2847 [HAVE_LINUX_REGSETS] (initialize_regsets_info): Declare.
2848 * i387-fp.c (num_xmm_registers): Delete.
2849 (i387_cache_to_fsave, i387_fsave_to_cache): Adjust find_regno
2850 calls to new interface.
2851 (i387_cache_to_fxsave, i387_cache_to_xsave, i387_fxsave_to_cache)
2852 (i387_xsave_to_cache): Adjust find_regno calls to new interface.
2853 Infer the number of xmm registers from the regcache's target
2854 description.
2855 * i387-fp.h (num_xmm_registers): Delete.
2856 * inferiors.c (add_thread): Don't install the thread's regcache
2857 here.
2858 * proc-service.c (gregset_info): Fetch the current inferior's
2859 regs_info. Adjust to use it.
2860 * regcache.c: Include tdesc.h.
2861 (register_bytes, reg_defs, num_registers)
2862 (gdbserver_expedite_regs): Delete.
2863 (get_thread_regcache): If the thread doesn't have a regcache yet,
2864 create one, instead of aborting gdbserver.
2865 (regcache_invalidate_one): Rename to ...
2866 (regcache_invalidate_thread): ... this.
2867 (regcache_invalidate_one): New.
2868 (regcache_invalidate): Only invalidate registers of the current
2869 process.
2870 (init_register_cache): Add target_desc parameter, and use it.
2871 (new_register_cache): Ditto. Assert the target description has a
2872 non zero registers_size.
2873 (regcache_cpy): Add assertions. Adjust.
2874 (realloc_register_cache, set_register_cache): Delete.
2875 (registers_to_string, registers_from_string): Adjust.
2876 (find_register_by_name, find_regno, find_register_by_number)
2877 (register_cache_size): Add target_desc parameter, and use it.
2878 (free_register_cache_thread, free_register_cache_thread_one)
2879 (regcache_release, register_cache_size): New.
2880 (register_size): Add target_desc parameter, and use it.
2881 (register_data, supply_register, supply_register_zeroed)
2882 (supply_regblock, supply_register_by_name, collect_register)
2883 (collect_register_as_string, collect_register_by_name): Adjust.
2884 * regcache.h (struct target_desc): Forward declare.
2885 (struct regcache) <tdesc>: New field.
2886 (init_register_cache, new_register_cache): Add target_desc
2887 parameter.
2888 (regcache_invalidate_thread): Declare.
2889 (regcache_invalidate_one): Delete declaration.
2890 (regcache_release): Declare.
2891 (find_register_by_number, register_cache_size, register_size)
2892 (find_regno): Add target_desc parameter.
2893 (gdbserver_expedite_regs, gdbserver_xmltarget): Delete
2894 declarations.
2895 * remote-utils.c: Include tdesc.h.
2896 (outreg, prepare_resume_reply): Adjust.
2897 * server.c: Include tdesc.h.
2898 (gdbserver_xmltarget): Delete declaration.
2899 (get_features_xml, process_serial_event): Adjust.
2900 * server.h [IN_PROCESS_AGENT] (struct target_desc): Forward
2901 declare.
2902 (struct process_info) <tdesc>: New field.
2903 (ipa_tdesc): Declare.
2904 * tdesc.c: New file.
2905 * tdesc.h: New file.
2906 * tracepoint.c: Include tdesc.h.
2907 [IN_PROCESS_AGENT] (ipa_tdesc): Define.
2908 (get_context_regcache): Adjust to pass ipa_tdesc down.
2909 (do_action_at_tracepoint): Adjust to get the register cache size
2910 from the context regcache's description.
2911 (traceframe_walk_blocks): Adjust to get the register cache size
2912 from the current trace frame's description.
2913 (traceframe_get_pc): Adjust to get current trace frame's
2914 description and pass it down.
2915 (gdb_collect): Adjust to get the register cache size from the
2916 IPA's description.
2917 * linux-amd64-ipa.c (tdesc_amd64_linux): Declare.
2918 (gdbserver_xmltarget): Delete.
2919 (initialize_low_tracepoint): Set the ipa's target description.
2920 * linux-i386-ipa.c (tdesc_i386_linux): Declare.
2921 (initialize_low_tracepoint): Set the ipa's target description.
2922 * linux-x86-low.c: Include tdesc.h.
2923 [__x86_64__] (is_64bit_tdesc): New.
2924 (ps_get_thread_area, x86_get_thread_area): Use it.
2925 (i386_cannot_store_register): Rename to ...
2926 (x86_cannot_store_register): ... this. Use is_64bit_tdesc.
2927 (i386_cannot_fetch_register): Rename to ...
2928 (x86_cannot_fetch_register): ... this. Use is_64bit_tdesc.
2929 (x86_fill_gregset, x86_store_gregset): Adjust register_size calls
2930 to new interface.
2931 (target_regsets): Rename to ...
2932 (x86_regsets): ... this.
2933 (x86_get_pc, x86_set_pc): Adjust register_size calls to new
2934 interface.
2935 (x86_siginfo_fixup): Use is_64bit_tdesc.
2936 [__x86_64__] (tdesc_amd64_linux, tdesc_amd64_avx_linux)
2937 (tdesc_x32_avx_linux, tdesc_x32_linux)
2938 (tdesc_i386_linux, tdesc_i386_mmx_linux, tdesc_i386_avx_linux):
2939 Declare.
2940 (x86_linux_update_xmltarget): Delete.
2941 (I386_LINUX_XSAVE_XCR0_OFFSET): Define.
2942 (have_ptrace_getfpxregs, have_ptrace_getregset): New.
2943 (AMD64_LINUX_USER64_CS): New.
2944 (x86_linux_read_description): New, based on
2945 x86_linux_update_xmltarget.
2946 (same_process_callback): New.
2947 (x86_arch_setup_process_callback): New.
2948 (x86_linux_update_xmltarget): New.
2949 (x86_regsets_info): New.
2950 (amd64_linux_regs_info): New.
2951 (i386_linux_usrregs_info): New.
2952 (i386_linux_regs_info): New.
2953 (x86_linux_regs_info): New.
2954 (x86_arch_setup): Reimplement.
2955 (x86_install_fast_tracepoint_jump_pad): Use is_64bit_tdesc.
2956 (x86_emit_ops): Ditto.
2957 (the_low_target): Adjust. Install x86_linux_regs_info,
2958 x86_cannot_fetch_register, and x86_cannot_store_register.
2959 (initialize_low_arch): New.
2960 * linux-ia64-low.c (tdesc_ia64): Declare.
2961 (ia64_fetch_register): Adjust.
2962 (ia64_usrregs_info, regs_info): New globals.
2963 (ia64_regs_info): New function.
2964 (the_low_target): Adjust.
2965 (initialize_low_arch): New function.
2966 * linux-sparc-low.c (tdesc_sparc64): Declare.
2967 (sparc_fill_gregset_to_stack, sparc_store_gregset_from_stack):
2968 Adjust.
2969 (sparc_arch_setup): New function.
2970 (sparc_regsets_info, sparc_usrregs_info, regs_info): New globals.
2971 (the_low_target): Adjust.
2972 (initialize_low_arch): New function.
2973 * linux-ppc-low.c (tdesc_powerpc_32l, tdesc_powerpc_altivec32l)
2974 (tdesc_powerpc_cell32l, tdesc_powerpc_vsx32l)
2975 (tdesc_powerpc_isa205_32l, tdesc_powerpc_isa205_altivec32l)
2976 (tdesc_powerpc_isa205_vsx32l, tdesc_powerpc_e500l)
2977 (tdesc_powerpc_64l, tdesc_powerpc_altivec64l)
2978 (tdesc_powerpc_cell64l, tdesc_powerpc_vsx64l)
2979 (tdesc_powerpc_isa205_64l, tdesc_powerpc_isa205_altivec64l)
2980 (tdesc_powerpc_isa205_vsx64l): Declare.
2981 (ppc_cannot_store_register, ppc_collect_ptrace_register)
2982 (ppc_supply_ptrace_register, parse_spufs_run, ppc_get_pc)
2983 (ppc_set_pc, ppc_get_hwcap): Adjust.
2984 (ppc_usrregs_info): Forward declare.
2985 (!__powerpc64__) ppc_regmap_adjusted: New global.
2986 (ppc_arch_setup): Adjust to the current process'es target
2987 description.
2988 (ppc_fill_vsxregset, ppc_store_vsxregset, ppc_fill_vrregset)
2989 (ppc_store_vrregset, ppc_fill_evrregset, ppc_store_evrregse)
2990 (ppc_store_evrregset): Adjust.
2991 (target_regsets): Rename to ...
2992 (ppc_regsets): ... this, and make static.
2993 (ppc_usrregs_info, ppc_regsets_info, regs_info): New globals.
2994 (ppc_regs_info): New function.
2995 (the_low_target): Adjust.
2996 (initialize_low_arch): New function.
2997 * linux-s390-low.c (tdesc_s390_linux32, tdesc_s390_linux32v1)
2998 (tdesc_s390_linux32v2, tdesc_s390_linux64, tdesc_s390_linux64v1)
2999 (tdesc_s390_linux64v2, tdesc_s390x_linux64, tdesc_s390x_linux64v1)
3000 (tdesc_s390x_linux64v2): Declare.
3001 (s390_collect_ptrace_register, s390_supply_ptrace_register)
3002 (s390_fill_gregset, s390_store_last_break): Adjust.
3003 (target_regsets): Rename to ...
3004 (s390_regsets): ... this, and make static.
3005 (s390_get_pc, s390_set_pc): Adjust.
3006 (s390_get_hwcap): New target_desc parameter, and use it.
3007 [__s390x__] (have_hwcap_s390_high_gprs): New global.
3008 (s390_arch_setup): Adjust to set the current process'es target
3009 description. Don't adjust the regmap.
3010 (s390_usrregs_info, s390_regsets_info, regs_info): New globals.
3011 [__s390x__] (s390_usrregs_info_3264, s390_regsets_info_3264)
3012 (regs_info_3264): New globals.
3013 (s390_regs_info): New function.
3014 (the_low_target): Adjust.
3015 (initialize_low_arch): New function.
3016 * linux-mips-low.c (tdesc_mips_linux, tdesc_mips_dsp_linux)
3017 (tdesc_mips64_linux, tdesc_mips64_dsp_linux): Declare.
3018 [__mips64] (init_registers_mips_linux)
3019 (init_registers_mips_dsp_linux): Delete defines.
3020 [__mips64] (tdesc_mips_linux, tdesc_mips_dsp_linux): New defines.
3021 (have_dsp): New global.
3022 (mips_read_description): New, based on mips_arch_setup.
3023 (mips_arch_setup): Reimplement.
3024 (get_usrregs_info): New function.
3025 (mips_cannot_fetch_register, mips_cannot_store_register)
3026 (mips_get_pc, mips_set_pc, mips_fill_gregset, mips_store_gregset)
3027 (mips_fill_fpregset, mips_store_fpregset): Adjust.
3028 (target_regsets): Rename to ...
3029 (mips_regsets): ... this, and make static.
3030 (mips_regsets_info, mips_dsp_usrregs_info, mips_usrregs_info)
3031 (dsp_regs_info, regs_info): New globals.
3032 (mips_regs_info): New function.
3033 (the_low_target): Adjust.
3034 (initialize_low_arch): New function.
3035 * linux-arm-low.c (tdesc_arm, tdesc_arm_with_iwmmxt)
3036 (tdesc_arm_with_vfpv2, tdesc_arm_with_vfpv3, tdesc_arm_with_neon):
3037 Declare.
3038 (arm_fill_vfpregset, arm_store_vfpregset): Adjust.
3039 (arm_read_description): New, with bits factored from
3040 arm_arch_setup.
3041 (arm_arch_setup): Reimplement.
3042 (target_regsets): Rename to ...
3043 (arm_regsets): ... this, and make static.
3044 (arm_regsets_info, arm_usrregs_info, regs_info): New globals.
3045 (arm_regs_info): New function.
3046 (the_low_target): Adjust.
3047 (initialize_low_arch): New function.
3048 * linux-m68k-low.c (tdesc_m68k): Declare.
3049 (target_regsets): Rename to ...
3050 (m68k_regsets): ... this, and make static.
3051 (m68k_regsets_info, m68k_usrregs_info, regs_info): New globals.
3052 (m68k_regs_info): New function.
3053 (m68k_arch_setup): New function.
3054 (the_low_target): Adjust.
3055 (initialize_low_arch): New function.
3056 * linux-sh-low.c (tdesc_sharch): Declare.
3057 (target_regsets): Rename to ...
3058 (sh_regsets): ... this, and make static.
3059 (sh_regsets_info, sh_usrregs_info, regs_info): New globals.
3060 (sh_regs_info, sh_arch_setup): New functions.
3061 (the_low_target): Adjust.
3062 (initialize_low_arch): New function.
3063 * linux-bfin-low.c (tdesc_bfin): Declare.
3064 (bfin_arch_setup): New function.
3065 (bfin_usrregs_info, regs_info): New globals.
3066 (bfin_regs_info): New function.
3067 (the_low_target): Adjust.
3068 (initialize_low_arch): New function.
3069 * linux-cris-low.c (tdesc_cris): Declare.
3070 (cris_arch_setup): New function.
3071 (cris_usrregs_info, regs_info): New globals.
3072 (cris_regs_info): New function.
3073 (the_low_target): Adjust.
3074 (initialize_low_arch): New function.
3075 * linux-cris-low.c (tdesc_crisv32): Declare.
3076 (cris_arch_setup): New function.
3077 (cris_regsets_info, cris_usrregs_info, regs_info): New globals.
3078 (cris_regs_info): New function.
3079 (the_low_target): Adjust.
3080 (initialize_low_arch): New function.
3081 * linux-m32r-low.c (tdesc_m32r): Declare.
3082 (m32r_arch_setup): New function.
3083 (m32r_usrregs_info, regs_info): New globals.
3084 (m32r_regs_info): Adjust.
3085 (initialize_low_arch): New function.
3086 * linux-tic6x-low.c (tdesc_tic6x_c64xp_linux)
3087 (tdesc_tic6x_c64x_linux, tdesc_tic6x_c62x_linux): Declare.
3088 (tic6x_usrregs_info): Forward declare.
3089 (tic6x_read_description): New function, based on ...
3090 (tic6x_arch_setup): ... this. Reimplement.
3091 (target_regsets): Rename to ...
3092 (tic6x_regsets): ... this, and make static.
3093 (tic6x_regsets_info, tic6x_usrregs_info, regs_info): New globals.
3094 (tic6x_regs_info): New function.
3095 (the_low_target): Adjust.
3096 (initialize_low_arch): New function.
3097 * linux-xtensa-low.c (tdesc_xtensa): Declare.
3098 (xtensa_fill_gregset, xtensa_store_gregset): Adjust.
3099 (target_regsets): Rename to ...
3100 (xtensa_regsets): ... this, and make static.
3101 (xtensa_regsets_info, xtensa_usrregs_info, regs_info): New
3102 globals.
3103 (xtensa_arch_setup, xtensa_regs_info): New functions.
3104 (the_low_target): Adjust.
3105 (initialize_low_arch): New function.
3106 * linux-nios2-low.c (tdesc_nios2_linux): Declare.
3107 (nios2_arch_setup): Set the current process'es tdesc.
3108 (target_regsets): Rename to ...
3109 (nios2_regsets): ... this.
3110 (nios2_regsets_info, nios2_usrregs_info, regs_info): New globals.
3111 (nios2_regs_info): New function.
3112 (the_low_target): Adjust.
3113 (initialize_low_arch): New function.
3114 * linux-aarch64-low.c (tdesc_aarch64): Declare.
3115 (aarch64_arch_setup): Set the current process'es tdesc.
3116 (target_regsets): Rename to ...
3117 (aarch64_regsets): ... this.
3118 (aarch64_regsets_info, aarch64_usrregs_info, regs_info): New globals.
3119 (aarch64_regs_info): New function.
3120 (the_low_target): Adjust.
3121 (initialize_low_arch): New function.
3122 * linux-tile-low.c (tdesc_tilegx, tdesc_tilegx32): Declare
3123 globals.
3124 (target_regsets): Rename to ...
3125 (tile_regsets): ... this.
3126 (tile_regsets_info, tile_usrregs_info, regs_info): New globals.
3127 (tile_regs_info): New function.
3128 (tile_arch_setup): Set the current process'es tdesc.
3129 (the_low_target): Adjust.
3130 (initialize_low_arch): New function.
3131 * spu-low.c (tdesc_spu): Declare.
3132 (spu_create_inferior, spu_attach): Set the new process'es tdesc.
3133 * win32-arm-low.c (tdesc_arm): Declare.
3134 (arm_arch_setup): New function.
3135 (the_low_target): Install arm_arch_setup instead of
3136 init_registers_arm.
3137 * win32-i386-low.c (tdesc_i386, tdesc_amd64): Declare.
3138 (init_windows_x86): Rename to ...
3139 (i386_arch_setup): ... this. Set `win32_tdesc'.
3140 (the_low_target): Adjust.
3141 * win32-low.c (win32_tdesc): New global.
3142 (child_add_thread): Don't create the thread cache here.
3143 (do_initial_child_stuff): Set the new process'es tdesc.
3144 * win32-low.h (struct target_desc): Forward declare.
3145 (win32_tdesc): Declare.
3146 * lynx-i386-low.c (tdesc_i386): Declare global.
3147 (lynx_i386_arch_setup): Set `lynx_tdesc'.
3148 * lynx-low.c (lynx_tdesc): New global.
3149 (lynx_add_process): Set the new process'es tdesc.
3150 * lynx-low.h (struct target_desc): Forward declare.
3151 (lynx_tdesc): Declare global.
3152 * lynx-ppc-low.c (tdesc_powerpc_32): Declare global.
3153 (lynx_ppc_arch_setup): Set `lynx_tdesc'.
3154 * nto-low.c (nto_tdesc): New global.
3155 (do_attach): Set the new process'es tdesc.
3156 * nto-low.h (struct target_desc): Forward declare.
3157 (nto_tdesc): Declare.
3158 * nto-x86-low.c (tdesc_i386): Declare.
3159 (nto_x86_arch_setup): Set `nto_tdesc'.
3160
31612013-06-04 Gary Benson <gbenson@redhat.com>
3162
3163 * server.c (handle_query): Add "augmented-libraries-svr4-read+"
3164 to qSupported response when appropriate.
3165 (handle_qxfer_libraries_svr4): Allow qXfer:libraries-svr4:read
3166 with nonzero-length annex.
3167 * linux-low.c (linux_qxfer_libraries_svr4): Parse and handle
3168 arguments supplied in annex.
3169
31702013-05-31 Doug Evans <dje@google.com>
3171
3172 PR server/15594
3173 * linux-x86-low.c (ps_get_thread_area): Properly extend address to
3174 64 bits in 64-cross-32 environment.
3175
31762013-05-28 Pedro Alves <palves@redhat.com>
3177
3178 * Makefile.in (clean): Remove reference to aarch64-without-fpu.c.
3179 (aarch64-without-fpu.c): Delete rule.
3180 * configure.srv (aarch64*-*-linux*): Remove references to
3181 aarch64-without-fpu.o and aarch64-without-fpu.xml.
3182 * linux-aarch64-low.c (init_registers_aarch64_without_fpu): Remove
3183 declaration.
3184
31852013-05-24 Pedro Alves <palves@redhat.com>
3186
3187 * server.c (handle_v_cont) <vCont;r>: Use unpack_varlen_hex
3188 instead of strchr/decode_address. Error if the range isn't split
3189 with a ','. Don't assume there's be a ':' in the action.
3190
31912013-05-23 Yao Qi <yao@codesourcery.com>
3192 Pedro Alves <palves@redhat.com>
3193
3194 * linux-low.c (lwp_in_step_range): New function.
3195 (linux_wait_1): If the thread was range stepping and stopped
3196 outside the stepping range, report the stop to GDB. Otherwise,
3197 continue stepping. Add range stepping debug output.
3198 (linux_set_resume_request): Copy the step range from the resume
3199 request to the lwp.
3200 (linux_supports_range_stepping): New.
3201 (linux_target_ops) <supports_range_stepping>: Set to
3202 linux_supports_range_stepping.
3203 * linux-low.h (struct linux_target_ops)
3204 <supports_range_stepping>: New field.
3205 (struct lwp_info) <step_range_start, step_range_end>: New fields.
3206 * linux-x86-low.c (x86_supports_range_stepping): New.
3207 (the_low_target) <supports_range_stepping>: Set to
3208 x86_supports_range_stepping.
3209 * server.c (handle_v_cont): Handle 'r' action.
3210 (handle_v_requests): Append ";r" if the target supports range
3211 stepping.
3212 * target.h (struct thread_resume) <step_range_start,
3213 step_range_end>: New fields.
3214 (struct target_ops) <supports_range_stepping>:
3215 New field.
3216 (target_supports_range_stepping): New macro.
3217
32182013-05-17 Joel Brobecker <brobecker@adacore.com>
3219
3220 * lynx-low.c (lynx_resume): Fix null_ptid/minus_one_ptid
3221 confusion in comment.
3222
32232013-05-17 Joel Brobecker <brobecker@adacore.com>
3224
3225 * lynx-low.c (struct process_info_private): New type.
3226 (lynx_add_process): New function.
3227 (lynx_create_inferior, lynx_attach): Replace calls to
3228 add_process by calls to lynx_add_process.
3229 (lynx_resume): If PTID is null, then try using
3230 current_process()->private->last_wait_event_ptid.
3231 Add comments.
3232 (lynx_clear_inferiors): Delete. The contents of that function
3233 has been inlined in lynx_mourn;
3234 (lynx_wait_1): Save the ptid in the process's private data.
3235 (lynx_mourn): Free the process' private data. Replace call
3236 to lynx_clear_inferiors by call to clear_inferiors.
3237
32382013-05-17 Yao Qi <yao@codesourcery.com>
3239
3240 * i386-low.c (i386_length_and_rw_bits): Move the comment to
3241 the right place.
3242
32432013-05-16 Luis Machado <lgustavo@codesourcery.com>
3244
3245 * linux-low.c: Move definition checks upwards for PT_TEXT_ADDR,
3246 PT_DATA_ADDR and PT_TEXT_END_ADDR. Update comments.
3247 (linux_read_offsets): Remove PT_TEXT_ADDR, PT_DATA_ADDR and
3248 PT_TEXT_END_ADDR guards. Update comments.
3249 (linux_target_op) <read_offsets>: Conditionally define to
3250 linux_read_offsets if the target is UCLIBC and if it defines
3251 PT_TEXT_ADDR, PT_DATA_ADDR and PT_TEXT_END_ADDR.
3252
32532013-05-06 Sandra Loosemore <sandra@codesourcery.com>
3254 Andrew Jenner <andrew@codesourcery.com>
3255
3256 * Makefile.in (SFILES): Add linux-nios2-low.c.
3257 (clean): Add action to delete nios2-linux.c.
3258 (nios2-linux.c): New rule.
3259 * configure.srv: Add nios2*-*-linux*.
3260 * linux-nios2-low.c: New.
3261
32622013-05-03 Hafiz Abid Qadeer <abidh@codesourcery.com>
3263
3264 * tracepoint.c (cmd_qtinit): Call 'stop_tracing'.
3265
32662013-04-25 Hui Zhu <hui@codesourcery.com>
3267
3268 PR gdb/15186
3269 * ax.c (ax_printf): Add fflush.
3270
32712013-04-22 Tom Tromey <tromey@redhat.com>
3272
3273 * Makefile.in (SFILES): Add filestuff.c.
3274 (OBS): Add filestuff.o.
3275 (filestuff.o): New target.
3276 * config.in, configure: Rebuild.
3277 * configure.ac: Check for fdwalk, pipe2.
3278
32792013-04-17 Pedro Alves <palves@redhat.com>
3280
3281 * configure.ac (USE_THREAD_DB): Delete variable.
3282 (if test "$srv_linux_thread_db" = "yes"): AC_DEFINE USE_THREAD_DB.
3283 Don't AC_SUBST USE_THREAD_DB.
3284 * Makefile.in (INTERNAL_CFLAGS): Remove @USE_THREAD_DB@.
3285 * config.in, configure: Regenerate.
3286
32872013-04-16 Pedro Alves <palves@redhat.com>
3288
3289 * linux-low.h (struct lwp_info) <thread_known>: Move under
3290 the USE_THREAD_DB #ifdef.
3291
32922013-04-16 Pedro Alves <palves@redhat.com>
3293
3294 * Makefile.in (INTERNAL_CFLAGS): Add @USE_THREAD_DB@.
3295 (linux-low.o): Delete rule.
3296 * linux-low.h: Always include "gdb_thread_db.h" instead of
3297 conditionally including thread_db.h.
3298 (struct lwp_info) <th>: Guard with #ifdef USE_THREAD_DB instead of
3299 HAVE_THREAD_DB_H.
3300
33012013-04-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3302
3303 * Makefile.in (install-only): Fix make install regression.
3304
33052013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3306
3307 Convert man pages to texinfo, new gdbinit.5 texinfo page.
3308 * Makefile.in (install-only): Remove $(man1dir) and gdbserver.1
3309 installation.
3310 * gdbserver.1: Remove.
3311
33122013-03-22 Pedro Alves <palves@redhat.com>
3313
3314 * linux-low.c (handle_extended_wait): Don't call
3315 linux_enable_event_reporting.
3316
33172013-03-15 Tony Theodore <tonyt@logyst.com>
3318
3319 PR build/9098:
3320 * Makefile.in (SHELL): Use @SHELL@.
3321
33222013-03-14 Sergio Durigan Junior <sergiodj@redhat.com>
3323
3324 * tracepoint.c (cmd_qtv): Initialize `val' with zero, silencing
3325 compiler warning.
3326
33272013-03-13 Joel Brobecker <brobecker@adacore.com>
3328
3329 * linux-low.c (linux_target_ops) [!HAVE_LINUX_BTRACE]:
3330 Remove extraneous NULL element.
3331
33322013-03-13 Yao Qi <yao@codesourcery.com>
3333
3334 * tracepoint.c (traceframe_read_tsv): Look for the last matched
3335 'V' block in trace frame.
3336
33372013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3338
3339 * target.h (struct target_ops): Add btrace ops.
3340 (target_supports_btrace): New macro.
3341 (target_enable_btrace): New macro.
3342 (target_disable_btrace): New macro.
3343 (target_read_btrace): New macro.
3344 * gdbthread.h (struct thread_info): Add btrace field.
3345 * server.c: Include btrace-common.h.
3346 (handle_btrace_general_set): New function.
3347 (handle_btrace_enable): New function.
3348 (handle_btrace_disable): New function.
3349 (handle_general_set): Call handle_btrace_general_set.
3350 (handle_qxfer_btrace): New function.
3351 (struct qxfer qxfer_packets[]): Add btrace entry.
3352 * inferiors.c (remove_thread): Disable btrace.
3353 * linux-low: Include linux-btrace.h.
3354 (linux_low_enable_btrace): New function.
3355 (linux_low_read_btrace): New function.
3356 (linux_target_ops): Add btrace ops.
3357 * configure.srv (i[34567]86-*-linux*): Add linux-btrace.o.
3358 Add srv_linux_btrace=yes.
3359 (x86_64-*-linux*): Add linux-btrace.o.
3360 Add srv_linux_btrace=yes.
3361 * configure.ac: Define HAVE_LINUX_BTRACE.
3362 * config.in: Regenerated.
3363 * configure: Regenerated.
3364
33652013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3366
3367 * server.c (handle_qxfer): Preserve error message if -3 is
3368 returned.
3369 (qxfer): Document the -3 return value.
3370
33712013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3372
3373 * Makefile.in (SFILES): Add $(srcdir)/common/linux-btrace.c.
3374 (linux_btrace_h): New variable.
3375 (linux-btrace.o): New rule.
3376
33772013-03-08 Stan Shebs <stan@codesourcery.com>
3378 Hafiz Abid Qadeer <abidh@codesourcery.com>
3379
3380 * tracepoint.c (trace_buffer_size): New global.
3381 (DEFAULT_TRACE_BUFFER_SIZE): New define.
3382 (init_trace_buffer): Change to one-argument function. Allocate
3383 trace buffer memory.
3384 (handle_tracepoint_general_set): Call cmd_bigqtbuffer_size to
3385 handle QTBuffer:size packet.
3386 (cmd_bigqtbuffer_size): New function.
3387 (initialize_tracepoint): Call init_trace_buffer with
3388 DEFAULT_TRACE_BUFFER_SIZE.
3389 * server.c (handle_query): Add QTBuffer:size in the
3390 supported packets.
3391
33922013-03-07 Yao Qi <yao@codesourcery.com>
3393
3394 * tracepoint.c (cur_action, cur_step_action): Make them unsigned.
3395 (cmd_qtfp): Initialize cur_action and cur_step_action 0 instead
3396 of -1.
3397 (cmd_qtsp): Adjust condition. Do post increment.
3398 Set cur_action and cur_step_action back to 0.
3399
34002013-03-07 Jeremy Bennett <jeremy.bennett@embecosm.com>
3401
3402 PR server/15236
3403 * linux-low.c (linux_write_memory): Return early success if LEN is
3404 zero.
3405
34062013-03-05 Corinna Vinschen <vinschen@redhat.de>
3407
3408 * configure.srv: Add x86_64-*-cygwin* as target.
3409
34102013-02-28 Tom Tromey <tromey@redhat.com>
3411
3412 * configure.ac: Invoke AC_SYS_LARGEFILE.
3413 * configure, config.in: Rebuild.
3414
34152013-02-28 Corinna Vinschen <vinschen@redhat.com>
3416
3417 * win32-low.c: Throughout, fix format strings and casts of
3418 printf-like functions to avoid type related warnings on all
3419 platforms.
3420 (get_child_debug_event): Print dwDebugEventCode as hex since
3421 that's how it's usually documented.
3422
34232013-02-28 Yao Qi <yao@codesourcery.com>
3424
3425 * tracepoint.c (cmd_qtbuffer): Call phex_nz instead of
3426 pulongest.
3427
34282013-02-27 Jiong Wang <jiwang@tilera.com>
3429
3430 * Makefile.in (clean): Remove reg-tilegx.c, reg-tilegx32.c.
3431 (reg-tilegx32.c): New rule.
3432 * configure.srv (tilegx-*-linux*): Add reg-tilegx32.o to srv_regobj.
3433 * linux-tile-low.c (tile_arch_setup): New function. Invoke
3434 different register info initializer according to elf class.
3435 (init_registers_tilgx32): New function. The tilegx32 register info
3436 initializer.
3437 (tile_fill_gregset): Use "uint_reg_t" to represent register size.
3438 (tile_store_gregset): Likewise.
3439
34402013-02-27 Yao Qi <yao@codesourcery.com>
3441
3442 * server.c (process_point_options): Print debug message when
3443 debug_threads is true.
3444
34452013-02-26 Yao Qi <yao@codesourcery.com>
3446
3447 * tracepoint.c (cmd_qtbuffer): Don't set '\0' in OWN_BUF.
3448
34492013-02-19 Pedro Alves <palves@redhat.com>
3450 Kai Tietz <ktietz@redhat.com>
3451
3452 PR gdb/15161
3453
3454 * server.c (handle_query) <CRC check>: Use unpack_varlen_hex
3455 instead of strtoul to extract address from packet.
3456 (process_serial_event) <'z'>: Likewise.
3457
34582013-02-18 Yao Qi <yao@codesourcery.com>
3459
3460 * linux-bfin-low.c (the_low_target): Use NULL instead of 0.
3461
34622013-02-14 Pedro Alves <palves@redhat.com>
3463
3464 Plug memory leak.
3465
3466 * tracepoint.c (cmd_qtnotes): Free TRACING_USER_NAME,
3467 TRACING_NOTES and TRACING_STOP_NOTE before clobbering.
3468
34692013-02-14 Pedro Alves <palves@redhat.com>
3470
3471 * tracepoint.c (cmd_qtdpsrc): Use savestring.
3472
34732013-02-14 Pedro Alves <palves@redhat.com>
3474
3475 * tracepoint.c (save_string): Delete.
3476 (add_tracepoint_action): Use savestring instead of save_string.
3477
34782013-02-12 Pedro Alves <palves@redhat.com>
3479
3480 * linux-xtensa-low.c: Ditto.
3481 * xtensa-xtregs.c: Ditto.
3482
34832013-02-12 Sanimir Agovic <sanimir.agovic@intel.com>
3484
3485 * thread-db.c (thread_db_get_tls_address): NULL pointer check
3486 thread_db.
3487
34882013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
3489
3490 * linux-aarch64-low.c (aarch64_arch_setup): Clamp
3491 aarch64_num_wp_regs and aarch64_num_bp_regs to
3492 AARCH64_HWP_MAX_NUM and AARCH64_HBP_MAX_NUM respectively.
3493
34942013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
3495
3496 * linux-aarch64-low.c (ps_get_thread_area): Replace
3497 PTRACE_GET_THREAD_AREA with PTRACE_GETREGSET.
3498
34992013-02-04 Jim MacArthur <jim.macarthur@arm.com>
3500 Marcus Shawcroft <marcus.shawcroft@arm.com>
3501 Nigel Stephens <nigel.stephens@arm.com>
3502 Yufeng Zhang <yufeng.zhang@arm.com>
3503
3504 * Makefile.in (clean): Remove aarch64.c and aarch64-without-fpu.c.
3505 (aarch64.c, aarch64-without-fpu.c): New targets.
3506 * configure.srv (aarch64*-*-linux*): New.
3507 * linux-aarch64-low.c: New file.
3508
35092013-02-04 Marcus Shawcroft <marcus.shawcroft@arm.com>
3510
3511 * linux-low.c (handle_extended_wait, linux_create_inferior)
3512 (linux_attach_lwp_1, linux_kill_one_lwp, linux_attach_one_lwp)
3513 (dequeue_one_deferred_signal, linux_resume_one_thread)
3514 (fetch_register, linux_write_memory, linux_enable_event_reporting)
3515 (linux_tracefork_grandchild, linux_test_for_tracefork)
3516 (linux_read_offsets, linux_xfer_siginfo, linux_xfer_siginfo): Add
3517 PTRACE_ARG3_TYPE and PTRACE_ARG4_TYPE cast to ptrace arguments
3518 where the argument is 0.
3519
35202013-01-25 Yao Qi <yao@codesourcery.com>
3521
3522 * event-loop.c: Include "queue.h".
3523 (gdb_event_p): New typedef.
3524 (struct gdb_event) <next_event>: Remove.
3525 (event_queue): Change to QUEUE(gdb_event_p).
3526 (async_queue_event): Remove.
3527 (gdb_event_xfree): New.
3528 (initialize_event_loop): New.
3529 (process_event): Use API from QUEUE.
3530 (wait_for_event): Likewise.
3531 * server.c (main): Call initialize_event_loop.
3532 * server.h (initialize_event_loop): Declare.
3533
35342013-01-18 Yao Qi <yao@codesourcery.com>
3535
3536 * ax.h (struct eval_agent_expr_context): New.
3537 (gdb_eval_agent_expr): Update declaration.
3538 * ax.c (gdb_eval_agent_expr): Remove argument REGCACHE and
3539 TFRAME. Add new argument CTX.
3540 * server.h (struct eval_agent_expr_context): Declare.
3541 (agent_mem_read, agent_tsv_read): Update declaration.
3542 (agent_mem_read_string): Likewise.
3543 * tracepoint.c (eval_tracepoint_agent_expr): Remove.
3544 (add_traceframe_block): Add new argument TPOINT.
3545 Increase TPOINT->traceframe_usage.
3546 (do_action_at_tracepoint): Call gdb_eval_agent_expr instead of
3547 eval_tracepoint_agent_expr.
3548 (condition_true_at_tracepoint): Likewise.
3549 (agent_mem_read): Remove argument TFRAME. Add argument CTX.
3550 (agent_mem_read_string, agent_tsv_read): Likewise.
3551
35522013-01-16 Yao Qi <yao@codesourcery.com>
3553
3554 * linux-low.c (linux_resume_one_lwp): Don't check
3555 'lwp->bp_reinsert != 0'.
3556
35572013-01-07 Joel Brobecker <brobecker@adacore.com>
3558 Pedro Alves <palves@redhat.com>
3559
3560 * lynx-low.c (ptrace_request_to_str): Define a temporary
3561 macro and use it to simplify this function's implementation.
3562
35632013-01-07 Joel Brobecker <brobecker@adacore.com>
3564
3565 * lynx-low.c (lynx_resume): Call perror_with_name if lynx_ptrace
3566 sets errno.
3567
35682013-01-07 Joel Brobecker <brobecker@adacore.com>
3569
3570 * configure.srv (i[34567]86-*-lynxos*): Set srv_xmlfiles.
3571
35722013-01-07 Joel Brobecker <brobecker@adacore.com>
3573
3574 * configure.srv (powerpc-*-lynxos*): Set srv_xmlfiles.
3575
35762013-01-07 Joel Brobecker <brobecker@adacore.com>
3577
3578 * lynx-low.c (lynx_resume): Use the resume_info parameter
3579 to determine the ptid for the lynx_ptrace call, unless
3580 it is equal to minus_one_ptid, in which case we use the
3581 ptid of the current_inferior.
3582 (lynx_wait_1): After having received a thread create/exit
3583 event, resume the inferior's execution using the signaling
3584 thread's ptid, rather than the old ptid.
3585
35862013-01-07 Joel Brobecker <brobecker@adacore.com>
3587
3588 * lynx-low.c (lynx_resume): Delete variable ret.
3589
35902013-01-01 Joel Brobecker <brobecker@adacore.com>
3591
3592 * gdbreplay.c (gdbreplay_version): Update copyright year.
3593 * server.c (gdbserver_version): Likewise.
3594
35952012-12-17 Joel Brobecker <brobecker@adacore.com>
3596
3597 * lynx-low.c (lynx_wait_1): Add debug trace before adding
3598 new thread.
3599
36002012-12-17 Joel Brobecker <brobecker@adacore.com>
3601
3602 * lynx-low.c (ptrace_request_to_str): Add handling for
3603 PTRACE_GETTRACESIG.
3604
36052012-12-17 Joel Brobecker <brobecker@adacore.com>
3606
3607 * lynx-low.c (lynx_attach): Delete variable new_process.
3608
36092012-12-17 Joel Brobecker <brobecker@adacore.com>
3610
3611 * lynx-low.c (lynx_create_inferior): Delete variable
3612 new_process.
3613
36142012-12-17 Joel Brobecker <brobecker@adacore.com>
3615
3616 * lynx-low.c (ptrace_request_to_str): Do not handle
3617 PTRACE_GETTHREADLIST if this macro does not exist.
3618
36192012-12-15 Yao Qi <yao@codesourcery.com>
3620
3621 * Makefile.in (OBS): Add notif.o.
3622 * notif.c, notif.h: New.
3623 * server.c: Include "notif.h".
3624 (struct vstop_notif) <next>: Remove.
3625 <base>: New field.
3626 (queue_stop_reply): Update.
3627 (push_event, send_next_stop_reply): Remove.
3628 (discard_queued_stop_replies): Update.
3629 (notif_stop): New variable.
3630 (handle_v_stopped): Remove.
3631 (handle_v_requests): Don't call handle_v_stopped. Call
3632 handle_ack_notif instead.
3633 (queue_stop_reply_callback): Call notif_event_enque instead
3634 of queue_stop_reply.
3635 (handle_status): Don't call send_next_stop_reply, call
3636 notif_write_event instead.
3637 (kill_inferior_callback): Likewise.
3638 (detach_or_kill_inferior_callback): Likewise.
3639 (main): Call initialize_notif.
3640 (process_serial_event): Call QUEUE_is_empty.
3641 (handle_target_event): Call notif_push instead of push event.
3642 * server.h (push_event): Remove declaration.
3643
36442012-12-10 Tom Tromey <tromey@redhat.com>
3645
3646 * Makefile.in (DEPMODE, DEPDIR, depcomp, COMPILE.pre)
3647 (COMPILE.post, COMPILE, POSTCOMPILE, IPAGENT_COMPILE): New
3648 macros.
3649 (.c.o): Rewrite.
3650 (ax-ipa.o, tracepoint-ipa.o, utils-ipa.o, format-ipa.o)
3651 (common-utils-ipa.o, remote-utils-ipa.o, regcache-ipa.o)
3652 (i386-linux-ipa.o, linux-i386-ipa.o, linux-amd64-ipa.o)
3653 (amd64-linux-ipa.o, ax.o): Rewrite.
3654 (event-loop.o, hostio.o, hostio-errno.o, inferiors.o, mem-break.o)
3655 (proc-service.o, regcache.o, remote-utils.o, server.o, target.o)
3656 (thread-db.o, tracepoint.o, utils.o, gdbreplay.o, dll.o): Remove.
3657 (signals.o, linux-procfs.o, linux-ptrace.o, common-utils.o, vec.o)
3658 (gdb_vecs.o, xml-utils.o, linux-osdata.o, ptid.o, buffer.o)
3659 (format.o, agent.o, vasprintf.o, vsnprintf.o): Rewrite.
3660 (i386-low.o, i387-fp.o, linux-low.o, linux-arm-low.o)
3661 (linux-bfin-low.o, linux-cris-low.o, linux-crisv32-low.o)
3662 (linux-ia64-low.o, linux-m32r-low.o, linux-mips-low.o)
3663 (linux-ppc-low.o, linux-s390-low.o, linux-sh-low.o)
3664 (linux-tic6x-low.o, linux-x86-low.o, linux-xtensa-low.o)
3665 (linux-tile-low.o, lynx-low.o, lynx-ppc-low.o, nto-low.o)
3666 (nto-x86-low.o, linux-low.o, win32-low.o, win32-arm-low.o)
3667 (win32-i386-low.o, spu-low.o, reg-arm.o, arm-with-iwmmxt.o)
3668 (arm-with-vfpv2.o, arm-with-vfpv3.o, arm-with-neon.o, reg-bfin.o)
3669 (reg-cris.o, reg-crisv32.o, i386.o, i386-linux.o, i386-avx.o)
3670 (i386-avx-linux.o, i386-mmx.o, i386-mmx-linux.o, reg-ia64.o)
3671 (reg-m32r.o, reg-m68k.o, reg-cf.o, mips-linux.o, mips-dsp-linux.o)
3672 (mips64-linux.o, mips64-dsp-linux.o, powerpc-32.o, powerpc-32l.o)
3673 (powerpc-altivec32l.o, powerpc-cell32l.o, powerpc-vsx32l.o)
3674 (powerpc-isa205-32l.o, powerpc-isa205-altivec32l.o)
3675 (powerpc-isa205-vsx32l.o, powerpc-e500l.o, powerpc-64l.o)
3676 (powerpc-altivec64l.o, powerpc-cell64l.o, powerpc-vsx64l.o)
3677 (powerpc-isa205-64l.o, powerpc-isa205-altivec64l.o)
3678 (powerpc-isa205-vsx64l.o, s390-linux32.o, s390-linux32v1.o)
3679 (s390-linux32v2.o, s390-linux64.o, s390-linux64v1.o)
3680 (s390-linux64v2.o, s390x-linux64.o, s390x-linux64v1.o)
3681 (s390x-linux64v2.o, tic6x-c64xp-linux.o, tic6x-c64x-linux.o)
3682 (tic6x-c62x-linux.o, reg-sh.o, reg-sparc64.o, reg-spu.o, amd64.o)
3683 (amd64-linux.o, amd64-avx.o, amd64-avx-linux.o, x32.o)
3684 (x32-linux.o, x32-avx.o, x32-avx-linux.o, reg-xtensa.o)
3685 (reg-tilegx.o): Remove.
3686 (all_object_files): New macro.
3687 Include .deps files.
3688 * aclocal.m4, configure: Rebuild.
3689 * acinclude.m4: Include depstand.m4, lead-dot.m4.
3690 * configure.ac: Invoke ZW_CREATE_DEPDIR,
3691 ZW_PROG_COMPILER_DEPENDENCIES. Compute GMAKE condition.
3692
36932012-12-05 Tom Tromey <tromey@redhat.com>
3694
3695 PR gdb/14917:
3696 * server.h (current_insn_ptr, emit_error): Declare 'extern'.
3697
36982012-11-28 Markus Metzger <markus.t.metzger@intel.com>
3699
3700 * configure.ac: Check for linux/perf_event.h.
3701 * config.in: Regenerated.
3702 * configure: Regenerated.
3703
37042012-11-26 Maxime Villard <rustyBSD@gmx.fr>
3705
3706 * hostio.c (handle_readlink): Decrease buffer size
3707 parameter passed to readlink by one byte.
3708
37092012-11-26 Yao Qi <yao@codesourcery.com>
3710
3711 * configure.ac (build_warnings): Append '-Wempty-body'.
3712 * configure: Regenerated.
3713 * linux-low.c (linux_create_inferior): Use braces for empty 'if'
3714 body.
3715
37162012-11-15 Pierre Muller <muller@sourceware.org>
3717
3718 * configure.ac (AC_CHECK_HEADERS): Add wait.h header.
3719 * config.in: Regenerate.
3720 * configure: Regenerate.
3721 * linux-low.c: Use "gdb_stat.h" header instead of <sys/stat.h> header.
3722 Use "gdb_wait.h" header instead of <sys/wait.h> header.
3723 * lynx-low.c: Use "gdb_wait.h" header instead of <sys/wait.h> header.
3724 * remote-utils.c: Use "gdb_stat.h" header instead of <sys/stat.h>
3725 header.
3726 * server.c: Remove HAVE_WAIT_H conditional. Use "gdb_wait.h" header
3727 instead of <sys/wait.h> header.
3728 * spu-low.c: Use "gdb_wait.h" header instead of <sys/wait.h> header.
3729
37302012-11-13 Markus Metzger <markus.t.metzger@intel.com>
3731
3732 * Makefile.in: (INTERNAL_CFLAGS): Add -DGDBSERVER
3733 (various make rules): Remove -DGDBSERVER
3734
37352012-11-09 Yao Qi <yao@codesourcery.com>
3736
3737 * spu-low.c (current_ptid): Move it to ..
3738 * gdbthread.h: ... here. New.
3739 * remote-utils.c (read_ptid): Use macro 'current_ptid'.
3740 * server.c (myresume, process_serial_event): Likewise.
3741 * thread-db.c (thread_db_find_new_threads): Likewise.
3742 * tracepoint.c (run_inferior_command): Likewise.
3743
37442012-10-01 Andrew Burgess <aburgess@broadcom.com>
3745
3746 * server.c (handle_search_memory_1): Include access length in
3747 warning message.
3748
37492012-09-05 Michael Brandt <michael.brandt@axis.com>
3750
3751 * linux-crisv32-low.c: Fix compile errors.
3752
37532012-09-04 Yao Qi <yao@codesourcery.com>
3754
3755 * tracepoint.c (cmd_qtsv): Adjust debug message.
3756 Don't check CUR_TPOINT.
3757
37582012-08-28 Yao Qi <yao@codesourcery.com>
3759
3760 * ax.c, tracepoint.c: Replace ATTR_FORMAT with ATTRIBUTE_PRINTF.
3761 * server.h: Include 'libiberty.h' and 'ansidecl.h'.
3762 (ATTR_NORETURN, ATTR_FORMAT, ATTR_MALLOC): Remove.
3763 Remove declarations of xmalloc, xreallloc, xstrdup and
3764 freeargv.
3765 * Makefile.in (libiberty_h): New.
3766 (server_h): Append dependencies 'libiberty.h' and 'ansidecl.h'.
3767 (linux-bfin-low.o): Append dependency 'libiberty.h'.
3768
37692012-08-23 Yao Qi <yao@codesourcery.com>
3770
3771 * server.h: Remove declaration of 'xsnprintf'.
3772
37732012-08-22 Keith Seitz <keiths@redhat.com>
3774
3775 * server.h: Include build-gnulib-gbserver/config.h.
3776 * gdbreplay.c: Likewise.
3777
37782012-08-08 Doug Evans <dje@google.com>
3779
3780 * Makefile.in (SFILES): Add gdb_vecs.c.
3781 (OBS): Add gdb_vecs.o.
3782 (gdb_vecs_h, host_defs_h): New variables.
3783 (thread-db.o): Add $(gdb_vecs_h) dependency.
3784 (gdb_vecs.o): New rule.
3785 * thread-db.c: #include "gdb_vecs.h".
3786 (thread_db_load_search): Use a vector to iterate over path elements.
3787 Handle text appearing after "$pdir".
3788
3789 * configure.ac: Add check for strstr.
3790 * config.in: Regenerate.
3791 * configure: Regenerate.
3792
37932012-08-02 Ulrich Weigand <ulrich.weigand@linaro.org>
3794
3795 * hostio.c (handle_pread): If pread fails, fall back to attempting
3796 lseek/read.
3797 (handle_pwrite): Likewise for pwrite.
3798
37992012-08-01 Ulrich Weigand <ulrich.weigand@linaro.org>
3800
3801 * linux-arm-low.c (arm_linux_hw_point_initialize): Distinguish
3802 between unsupported TYPE and unimplementable ADDR/LEN combination.
3803 (arm_insert_point): Act on new return value.
3804
38052012-07-31 Pedro Alves <palves@redhat.com>
3806
3807 * server.c (process_point_options): Only skip tokens if we find
3808 one that is unrecognized. Don't treat 'X' specially while
3809 skipping unrecognized tokens.
3810
38112012-07-30 Ulrich Weigand <ulrich.weigand@linaro.org>
3812
3813 * linux-arm-low.c (arm_linux_hw_point_initialize): Do not attempt
3814 to 4-byte-align HW breakpoint addresses for Thumb.
3815
38162012-07-27 Yao Qi <yao@codesourcery.com>
3817
3818 PR remote/14161.
3819
3820 * server.h: Declare gdb_agent_about_to_close.
3821 * target.c (kill_inferior): Include "agent.h".
3822 New. Send command 'kill'.
3823 * target.h (kill_inferior): Removed macro.
3824 * tracepoint.c (gdb_agent_about_to_close): New.
3825 (gdb_agent_helper_thread): Handle command 'close'.
3826 Wait endlessly until the inferior stops.
3827 Install gdb_agent_remove_socket to atexit hook.
3828 (agent_socket_name): New static variable.
3829 (gdb_agent_socket_init): Replace local variable 'name' with
3830 'agent_socket_name'.
3831 (gdb_agent_remove_socket): New.
3832
38332012-07-27 Yao Qi <yao@codesourcery.com>
3834
3835 * server.c (process_point_options): Stop at 'X' when parsing.
3836
38372012-07-19 Michael Eager <eager@eagercon.com>
3838
3839 * i386-low.c (Z_packet_to_hw_type): Add Z_PACKET_HW_BP, translate
3840 to hw_execute.
3841 * linux-x86-low.c (x86_insert_point, x86_remove_point):
3842 Call i386_low_insert_watchpoint, i386_low_remove_watchpoint to add/del
3843 hardware breakpoint.
3844
38452012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3846
3847 * gdbserver/linux-low.c (initialize_low): Call
3848 linux_ptrace_init_warnings.
3849
38502012-07-02 Doug Evans <dje@google.com>
3851
3852 * mem-break.c (gdb_no_commands_at_breakpoint): Fix cast from
3853 pointer to int.
3854
38552012-07-02 Stan Shebs <stan@codesourcery.com>
3856
3857 * Makefile.in (WARN_CFLAGS_NO_FORMAT): Define.
3858 (ax.o): Add it to build rule.
3859 (ax-ipa.o): Ditto.
3860 (OBS): Add format.o.
3861 (IPA_OBS): Add format.o.
3862 * server.c (handle_query): Claim support for breakpoint commands.
3863 (process_point_options): Add command case.
3864 (process_serial_event): Leave running if there are printfs in
3865 effect.
3866 * mem-break.h (any_persistent_commands): Declare.
3867 (add_breakpoint_commands): Declare.
3868 (gdb_no_commands_at_breakpoint): Declare.
3869 (run_breakpoint_commands): Declare.
3870 * mem-break.c (struct point_command_list): New struct.
3871 (struct breakpoint): New field command_list.
3872 (any_persistent_commands): New function.
3873 (add_commands_to_breakpoint): New function.
3874 (add_breakpoint_commands): New function.
3875 (gdb_no_commands_at_breakpoint): New function.
3876 (run_breakpoint_commands): New function.
3877 * linux-low.c (linux_wait_1): Test for and run breakpoint commands
3878 locally.
3879 * ax.c: Include format.h.
3880 (ax_printf): New function.
3881 (gdb_eval_agent_expr): Add printf opcode.
3882
38832012-06-13 Yao Qi <yao@codesourcery.com>
3884
3885 * server.c (start_inferior): Remove duplicated writes to fields
3886 'last_resume_kind' and 'last_status' of 'current_inferior'.
3887
38882012-06-12 Yao Qi <yao@codesourcery.com>
3889 Pedro Alves <palves@redhat.com>
3890
3891 * linux-low.c (linux_set_resume_request): Simplify predicate. Add
3892 comment.
3893 * server.c (handle_v_cont): Extend comment.
3894
38952012-06-11 Yao Qi <yao@codesourcery.com>
3896
3897 * linux-low.c (linux_attach): Add 'static'.
3898
38992012-06-06 Yao Qi <yao@codesourcery.com>
3900
3901 * ax.c (gdb_eval_agent_expr): Print `top' in hex.
3902
39032012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
3904
3905 Fix gcc -flto compilation warning.
3906 * server.c (main): Make variable multi_mode and attach volatile.
3907
39082012-05-30 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
3909
3910 * linux-low.c (get_r_debug): Disable code using DT_MIPS_RLD_MAP
3911 if the platform doesn't know about it.
3912
39132012-05-30 Jeff Kenton <jkenton@tilera.com>
3914
3915 * Makefile.in (SFILES): Add linux-tile-low.c.
3916 (linux-tile-low.o, reg-tilegx.o, reg-tilegx.c): New rules.
3917 * configure.srv: Handle tilegx-*-linux*.
3918 * linux-tile-low.c: New file.
3919
39202012-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3921
3922 * linux-low.c (linux_qxfer_libraries_svr4): Return -1 if R_DEBUG is -1.
3923
39242012-05-24 Pedro Alves <palves@redhat.com>
3925
3926 PR gdb/7205
3927
3928 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
3929
39302012-05-24 Pedro Alves <palves@redhat.com>
3931
3932 PR gdb/7205
3933
3934 Replace target_signal with gdb_signal throughout.
3935
39362012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
3937
3938 * linux-low.c (linux_store_registers): Avoid the copying sequence
3939 when no data has been retrieved by ptrace.
3940
39412012-05-22 Will Deacon <will.deacon@arm.com>
3942
3943 * linux-low (__UCLIBC__ && !(__UCLIBC_HAS_MMU__ || __ARCH_HAS_MMU__)):
3944 Include asm/ptrace.h.
3945 (PT_TEXT_ADDR, PT_DATA_ADDR, PT_TEXT_END_ADDR): Define only if not
3946 already defined.
3947
39482012-05-21 Maciej W. Rozycki <macro@codesourcery.com>
3949
3950 * linux-low.c (linux_store_registers): Don't re-retrieve data
3951 with ptrace that has already been obtained from /proc. Always
3952 copy any data retrieved with ptrace to the buffer supplied.
3953
39542012-05-11 Yao Qi <yao@codesourcery.com>
3955 Pedro Alves <palves@redhat.com>
3956
3957 * linux-low.c (enum stopping_threads_kind): New.
3958 (stopping_threads): Change type to `enum stopping_threads_kind'.
3959 (handle_extended_wait): If stopping and suspending threads, leave
3960 the new_lwp suspended too.
3961 (linux_wait_for_event): Adjust.
3962 (stop_all_lwps): Set `stopping_threads' to
3963 STOPPING_AND_SUSPENDING_THREADS or STOPPING_THREADS depending on
3964 whether we're suspending threads or just stopping them. Assert no
3965 recursion happens.
3966
39672012-04-29 Yao Qi <yao@codesourcery.com>
3968
3969 * server.h: Move some code to ...
3970 * gdbthread.h: ... here. New.
3971 * Makefile.in (inferiors.o, regcache.o): Depends on gdbthread.h
3972 (remote-utils.o, server.o, target.o tracepoint.o): Likewise.
3973 (nto-low.o, win32-low.o): Likewise.
3974 * inferiors.c, linux-low.h, nto-low.c: Include gdbthread.h.
3975 * regcache.c, remote-utils.c, server.c: Likewise.
3976 * target.c, tracepoint.c, win32-low.c: Likewise.
3977
39782012-04-24 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
3979
3980 * linux-low.h (PTRACE_ARG3_TYPE): Move macro from linux-low.c.
3981 (PTRACE_ARG4_TYPE): Likewise.
3982 (PTRACE_XFER_TYPE): Likewise.
3983 * linux-arm-low.c (arm_prepare_to_resume): Cast third argument of
3984 ptrace to PTRACE_ARG3_TYPE.
3985 * linux-low.c (PTRACE_ARG3_TYPE): Move macro to linux-low.h.
3986 (PTRACE_ARG4_TYPE): Likewise.
3987 (PTRACE_XFER_TYPE): Likewise.
3988 (linux_detach_one_lwp): Cast fourth argument of
3989 ptrace to long then PTRACE_ARG4_TYPE.
3990 (regsets_fetch_inferior_registers): Cast third argument of
3991 ptrace to long then PTRACE_ARG3_TYPE.
3992 (regsets_store_inferior_registers): Likewise.
3993
39942012-04-20 Pedro Alves <palves@redhat.com>
3995
3996 * configure: Regenerate.
3997
39982012-04-19 Pedro Alves <palves@redhat.com>
3999
4000 * Makefile.in (GNULIB_BUILDDIR): New.
4001 (LIBGNU, INCGNU, GNULIB_H): Adjust.
4002 (SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
4003 (all, install-only, uninstall, clean-info, all-lib, clean): No
4004 longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
4005 (maintainer-clean realclean distclean): Use subdir_do.
4006 (subdir_do): New.
4007 (gnulib/import/Makefile): Adjust. Replace gnulib/import with
4008 $(GNULIB_BUILDDIR). Don't pass argument to config.status.
4009 * acinclude.m4: Include acx_configure_dir.m4.
4010 * configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
4011 calls. Call AC_PROG_RANLIB. Configure gnulib using
4012 ACX_CONFIGURE_DIR.
4013 (GNULIB): New.
4014 (GNULIB_STDINT_H): Adjust.
4015 (AC_OUTPUT): Don't output gnulib/Makefile anymore.
4016 * gdbreplay.c: Include build-gnulib/config.h.
4017 * server.h: Likewise.
4018 * aclocal.m4: Regenerate.
4019 * config.in: Regenerate.
4020 * configure: Regenerate.
4021
40222012-04-19 Pedro Alves <palves@redhat.com>
4023
4024 * Makefile.in (LIBGNU, INCGNU): Adjust.
4025 (GNULIB_FLAGS_TO_PASS, GNULIB_H): Adjust.
4026 (all, install-only, uninstall, clean-info, all-lib, clean)
4027 (maintainer-clean, Makefile, gnulib/Makefile): Adjust.
4028 * configure.ac: Adjust AC_OUTPUT output.
4029 * aclocal.m4: Regenerate.
4030 * configure: Regenerate.
4031
40322012-04-19 Pedro Alves <palves@redhat.com>
4033
4034 * Makefile.in (generated_files): New.
4035 (server_h): Remove the explicit dependency on config.h, and depend
4036 on $generated_files.
4037
40382012-04-19 Pedro Alves <palves@redhat.com>
4039
4040 * Makefile.in (INCGNU): Add -Ignulib.
4041
40422012-04-19 Pedro Alves <palves@redhat.com>
4043
4044 * Makefile.in (GNULIB_INCLUDE_DIR): Rename to ...
4045 (INCGNU): ... this, and spell out -I here.
4046 (GNULIB_LIB): Rename to ...
4047 (LIBGNU): ... this.
4048 (INCLUDE_CFLAGS, gdbserver$(EXEEXT), $(GNULIB_LIB) rule): Adjust.
4049
40502012-04-19 Pedro Alves <palves@redhat.com>
4051
4052 * config.in: Regenerate.
4053
40542012-04-19 Pedro Alves <palves@redhat.com>
4055
4056 * configure.ac: Remove AC_CHECK_DECLS check for memmem.
4057 * server.h (memmem): Remove declaration.
4058 * config.in: Regenerate.
4059 * configure: Regenerate.
4060
40612012-04-19 Yao Qi <yao@codesourcery.com>
4062
4063 * Makefile.in (SFILES): Add common/vec.c.
4064 (OBS): Add vec.o.
4065 (vec.o): New rule.
4066
40672012-04-19 Yao Qi <yao@codesourcery.com>
4068
4069 * remote-utils.c (prepare_resume_reply): Replace with macro
4070 target_core_of_thread.
4071 * server.c (handle_qxfer_threads_proper): Likewise.
4072 * target.h (traget_core_of_thread): New macro.
4073
40742012-04-18 Pedro Alves <palves@redhat.com>
4075
4076 * aclocal.m4: Regenerate.
4077 * configure: Regenerate.
4078
40792012-04-16 Yao Qi <yao@codesourcery.com>
4080
4081 * tracepoint.c (cmd_qtstart): Download tracepoints even when they are
4082 duplicated on address.
4083
40842012-04-16 Yao Qi <yao@codesourcery.com>
4085
4086 * tracepoint.c (COPY_FIELD_TO_BUF): New macro.
4087 (struct tracepoint_action_ops) <send>: New field.
4088 (m_tracepoint_action_send, r_tracepoint_action_send): New.
4089 (agent_expr_send, x_tracepoint_action_send): New.
4090 (l_tracepoint_action_send): New.
4091 (cmd_qtdp): Download and install tracepoint
4092 according to `use_agent'.
4093 (run_inferior_command): Add one more parameter `len'.
4094 Update callers.
4095 (tracepoint_send_agent): New.
4096 (cmd_qtdp, cmd_qtstart): Call tracepoint_send_agent.
4097
40982012-04-16 Yao Qi <yao@codesourcery.com>
4099
4100 * tracepoint.c (download_tracepoints): Moved to ...
4101 (cmd_qtstart): ... here.
4102
41032012-04-14 Yao Qi <yao@codesourcery.com>
4104
4105 * tracepoint.c: Include inttypes.h.
4106 (struct collect_memory_action): Use sized types.
4107 (struct tracepoint): Likewise.
4108 (cmd_qtdp, stop_tracing): Update print specifiers.
4109 (cmd_qtp, response_tracepoint): Likewise.
4110 (collect_data_at_tracepoint): Likewise.
4111 (collect_data_at_step): Likewise.
4112
41132012-04-14 Yao Qi <yao@codesourcery.com>
4114
4115 Import gnulib module inttypes.
4116 * aclocal.m4, config.in, configure: Regenerated.
4117
41182012-04-14 Yao Qi <yao@codesourcery.com>
4119
4120 * Makefile.in (maintainer-clean, realclean, distclean): Remove
4121 Makefile and config.status at last.
4122
41232012-04-13 Yao Qi <yao@codesourcery.com>
4124
4125 * tracepoint.c: Include stdint.h unconditionally.
4126
41272012-04-13 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
4128
4129 * acinclude.m4 (GDBSERVER_HAVE_THREAD_DB_TYPE): New macro based
4130 on BFD_HAVE_SYS_PROCFS_TYPE.
4131 * configure.ac: Look for lwpid_t and psaddr_t in libthread_db.h.
4132 * configure: Regenerate.
4133 * config.in: Likewise.
4134
41352012-04-13 H.J. Lu <hongjiu.lu@intel.com>
4136
4137 * Makefile.in (clean): Also remove x32.c x32-linux.c
4138 x32-avx.c x32-avx-linux.c.
4139 (x32.o): New target.
4140 (x32.c): Likewise.
4141 (x32-linux.o): Likewise.
4142 (x32-linux.c): Likewise.
4143 (x32-avx.o): Likewise.
4144 (x32-avx.c): Likewise.
4145 (x32-avx-linux.o): Likewise.
4146 (x32-avx-linux.c): Likewise.
4147
4148 * configure.srv (srv_amd64_regobj): Add x32.o x32-avx.o.
4149 (srv_amd64_linux_regobj): Add x32-linux.o x32-avx-linux.o.
4150 (srv_i386_64bit_xmlfiles): Add i386/x32-core.xml.
4151 (srv_amd64_xmlfiles): Add i386/x32.xml i386/x32-avx.xml.
4152 (srv_amd64_linux_xmlfiles): Add i386/x32-linux.xml
4153 i386/x32-avx-linux.xml.
4154
4155 * linux-x86-low.c (init_registers_x32_linux): New prototype.
4156 (init_registers_x32_avx_linux): Likwise.
4157 (x86_linux_update_xmltarget): Call init_registers_x32_linux
4158 or init_registers_x32_avx_linux if linux_is_elf64 is false.
4159
41602012-04-13 Pedro Alves <palves@redhat.com>
4161
4162 * Makefile.in (GNULIB_FLAGS_TO_PASS): New.
4163 (FLAGS_TO_PASS): Don't change or set $top_srcdir, $srcdir and VPATH.
4164 (all, uninstall, clean-info, all-lib, clean, maintainer-clean)
4165 (realclean, distclean): Explicitly pass $GNULIB_FLAGS_TO_PASS to
4166 the sub-make.
4167
41682012-04-12 H.J. Lu <hongjiu.lu@intel.com>
4169
4170 * linux-x86-low.c (compat_x32_clock_t): New.
4171 (compat_x32_siginfo_t): Likewise.
4172 (compat_x32_siginfo_from_siginfo): Likewise.
4173 (siginfo_from_compat_x32_siginfo): Likewise.
4174 (linux_is_elf64): Likewise.
4175 (x86_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
4176 and siginfo_from_compat_x32_siginfo for x32.
4177 (x86_arch_setup): Set linux_is_elf64.
4178
41792012-04-12 H.J. Lu <hongjiu.lu@intel.com>
4180
4181 PR gdb/13969
4182 * linux-low.c (linux_pid_exe_is_elf_64_file): Also return the
4183 e_machine field.
4184 (linux_qxfer_libraries_svr4): Update call to elf_64_file_p.
4185 * linux-low.h (linux_pid_exe_is_elf_64_file): Updated.
4186 * linux-x86-low.c (x86_arch_setup): Check if GDBserver is
4187 compatible with process.
4188
41892012-04-12 Yao Qi <yao@codesourcery.com>
4190
4191 * Makefile.in: Define abs_top_srcdir and abs_srcdir.
4192 (INCLUDE_CFLAGS): Append GNULIB_INCLUDE_DIR.
4193 (install-only, install-info, clean): Handle sub dir gnulib.
4194 (all-lib, am--refresh): New targets.
4195 (memmem.o): Remove target.
4196 * configure.ac: Remove AC_CONFIG_LIBOBJ_DIR.
4197 Invoke gl_EARLY. Invoke AC_CHECK_PROGS for make.
4198 (AC_REPLACE_FUNCS): Remove memmem.
4199 Invoke gl_INIT and AM_INIT_AUTOMAKE.
4200 (AC_OUTPUT): Generate Makefile in gnulib/.
4201 * aclocal.m4, config.in, configure: Regenerated.
4202
42032012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
4204
4205 * linux-low.c (get_r_debug): Handle DT_MIPS_RLD_MAP.
4206
42072012-04-05 Pedro Alves <palves@redhat.com>
4208
4209 -Werror=strict-aliasing
4210
4211 * spu-low.c (parse_spufs_run): Avoid dereferencing type-punned
4212 pointer.
4213
42142012-04-04 Pedro Alves <palves@redhat.com>
4215
4216 * linux-sparc-low.c (sparc_fill_gregset_to_stack)
4217 (sparc_store_gregset_from_stack, sparc_store_gregset)
4218 (sparc_breakpoint_at): Fix formatting.
4219
42202012-03-30 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
4221
4222 * configure.ac: Check whether Elf32_auxv_t and Elf64_auxv_t
4223 are available.
4224 * linux-low.c [HAVE_ELF32_AUXV_T] (Elf32_auxv_t): Add typedef.
4225 [HAVE_ELF64_AUXV_T] (Elf64_auxv_t): Likewise.
4226 * config.in: Regenerate.
4227 * configure: Likewise.
4228
42292012-03-29 Pedro Alves <palves@redhat.com>
4230
4231 * linux-low.c (regsets_store_inferior_registers) [__sparc__]:
4232 Correct ptrace arguments.
4233
42342012-03-28 Pedro Alves <palves@redhat.com>
4235
4236 * linux-ia64-low.c (ia64_regmap): Map IA64_EC_REGNUM to PT_AR_EC.
4237 (IA64_GR0_REGNUM, IA64_FR0_REGNUM)
4238 (IA64_FR1_REGNUM): New defines.
4239 (ia64_fetch_register): New.
4240 (the_low_target): Install it.
4241 * linux-low.h (struct linux_target_ops) <fetch_register>: New
4242 field.
4243 * linux-low.c (linux_fetch_registers): Try the
4244 the_low_target.fetch_register hook first.
4245
4246 * linux-arm-low.c (the_low_target): Adjust.
4247 * linux-bfin-low.c (the_low_target): Adjust.
4248 * linux-cris-low.c (the_low_target): Adjust.
4249 * linux-crisv32-low.c (the_low_target): Adjust.
4250 * linux-m32r-low.c (the_low_target): Adjust.
4251 * linux-m68k-low.c (the_low_target): Adjust.
4252 * linux-mips-low.c (the_low_target): Adjust.
4253 * linux-ppc-low.c (the_low_target): Adjust.
4254 * linux-s390-low.c (the_low_target): Adjust.
4255 * linux-sh-low.c (the_low_target): Adjust.
4256 * linux-sparc-low.c (the_low_target): Adjust.
4257 * linux-tic6x-low.c (the_low_target): Adjust.
4258 * linux-x86-low.c (the_low_target): Adjust.
4259 * linux-xtensa-low.c (the_low_target): Adjust.
4260
42612012-03-26 Pedro Alves <palves@redhat.com>
4262
4263 * server.c (handle_qxfer_libraries): Don't bail early if
4264 the_target->qxfer_libraries_svr4 is not NULL.
4265
42662012-03-26 Pedro Alves <palves@redhat.com>
4267
4268 * linux-low.c (linux_qxfer_libraries_svr4): Fix pasto in comment.
4269
42702012-03-23 Pedro Alves <palves@redhat.com>
4271
4272 * linux-low.c (linux_qxfer_libraries_svr4): Terminate the
4273 "library-list-svr4" element's start tag when the the DSO list is
4274 empty.
4275
42762012-03-23 Pedro Alves <palves@redhat.com>
4277
4278 * linux-low.c (read_one_ptr): Read the inferior's pointer through
4279 a variable whose type size is the same as the inferior's pointer
4280 size.
4281
42822012-03-21 Thomas Schwinge <thomas@codesourcery.com>
4283
4284 * linux-arm-low.c (arm_stopped_by_watchpoint): Use siginfo_t instead of
4285 struct siginfo.
4286 * linux-low.c (siginfo_fixup, linux_xfer_siginfo): Likewise.
4287 * linux-x86-low.c (x86_siginfo_fixup): Likewise.
4288 * linux-low.h: Include <signal.h>.
4289 (struct siginfo): Remove forward declaration.
4290 (struct linux_target_ops) <siginfo_fixup>: Use siginfo_t instead of
4291 struct siginfo.
4292
42932012-03-21 Mike Frysinger <vapier@gentoo.org>
4294
4295 * .gitignore: Ignore more files.
4296
42972012-03-19 Pedro Alves <palves@redhat.com>
4298 Jan Kratochvil <jan.kratochvil@redhat.com>
4299
4300 * server.c (cont_thread, general_thread): Add describing comments.
4301 (start_inferior): Clear `cont_thread'.
4302 (handle_v_cont): Don't set `cont_thread' if resuming all threads
4303 of a process.
4304
43052012-03-15 Yao Qi <yao@codesourcery.com>
4306
4307 * tracepoint.c (install_tracepoint): Move duplicated tracepoint
4308 handling to ...
4309 (cmd_qtdp): ... here.
4310
43112012-03-15 Yao Qi <yao@codesourcery.com>
4312
4313 * tracepoint.c (struct tracepoint_action_ops): New.
4314 (struct tracepoint_action) [!IN_PROCESS_AGENT] <ops>: New field.
4315 (m_tracepoint_action_download): New.
4316 (r_tracepoint_action_download): New.
4317 (x_tracepoint_action_download): New.
4318 (l_tracepoint_action_download): New.
4319 (add_tracepoint_action): Install `action->ops' according type.
4320 (download_tracepoint_1): Move code `download' function pointer
4321 of various tracepoint_action_ops.
4322
43232012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4324
4325 * linux-low.c (linux_attach_lwp_1): New variable buffer. Call
4326 linux_ptrace_attach_warnings.
4327
43282012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4329
4330 * Makefile.in (linux-ptrace.o): New.
4331 * configure.srv (arm*-*-linux*, bfin-*-*linux*, crisv32-*-linux*)
4332 (cris-*-linux*, i[34567]86-*-linux*, ia64-*-linux*, m32r*-*-linux*)
4333 (m68*-*-linux*, m68*-*-uclinux*, mips*-*-linux*, powerpc*-*-linux*)
4334 (s390*-*-linux*, sh*-*-linux*, sparc*-*-linux*, tic6x-*-uclinux)
4335 (x86_64-*-linux*, xtensa*-*-linux*): Add linux-ptrace.o to SRV_TGTOBJ
4336 of these targets.
4337 * linux-low.c (linux_attach_lwp_1): Remove redundent else clause.
4338
43392012-03-08 Yao Qi <yao@codesourcery.com>
4340 Pedro Alves <palves@redhat.com>
4341
4342 Fix PR server/13392.
4343 * linux-x86-low.c (amd64_install_fast_tracepoint_jump_pad): Check
4344 offset of JMP insn.
4345 * tracepoint.c (remove_tracepoint): New.
4346 (cmd_qtdp): Call remove_tracepoint when failed to install.
4347
43482012-03-07 Pedro Alves <palves@redhat.com>
4349
4350 * linux-low.c (get_detach_signal): New.
4351 (linux_detach_one_lwp): Get rid of a pending SIGSTOP with SIGCONT.
4352 Pass on pending signals to PTRACE_DETACH. Check the result of the
4353 ptrace call.
4354 * server.c (program_signals, program_signals_p): New.
4355 (handle_general_set): Handle QProgramSignals.
4356 * server.h (program_signals, program_signals_p): Declare.
4357
43582012-03-05 Pedro Alves <palves@redhat.com>
4359 Jan Kratochvil <jan.kratochvil@redhat.com>
4360
4361 * linux-low.c (get_dynamic): Don't warn when PT_PHDR isn't found.
4362 New comment why.
4363
43642012-03-03 Yao Qi <yao@codesourcery.com>
4365
4366 * tracepoint.c (tracepoint_look_up_symbols): Update call to
4367 agent_look_up_symbols.
4368
43692012-03-03 Yao Qi <yao@codesourcery.com>
4370
4371 * Makefile.in (linux-low.o): Keep dependence on agent.h.
4372 (linux-x86-low.o): Likewise.
4373 * server.h: Remove in_process_agent_loaded.
4374 * tracepoint.c (in_process_agent_loaded): Removed. Moved it
4375 common/agent.c.
4376 Update callers.
4377
43782012-03-03 Yao Qi <yao@codesourcery.com>
4379
4380 * tracepoint.c (gdb_agent_capability): New global.
4381 (in_process_agent_loaded_ust): Renamed to
4382 `in_process_agent_supports_ust'.
4383 Update callers.
4384 (in_process_agent_supports_ust): Call agent_capability_check.
4385 (clear_installed_tracepoints): Assert that agent supports
4386 agent.
4387
43882012-03-03 Yao Qi <yao@codesourcery.com>
4389
4390 * linux-low.c (linux_supports_agent): New.
4391 (linux_target_ops): Initialize field `supports_agent' with
4392 linux_supports_agent.
4393 * target.h (struct target_ops) <supports_agent>: New.
4394 (target_supports_agent): New macro.
4395 * server.c (handle_general_set): Handle packet 'QAgent'.
4396 (handle_query): Send `QAgent+'.
4397 * Makefile.in (server.o): Depends on agent.h.
4398
43992012-03-03 Yao Qi <yao@codesourcery.com>
4400
4401 * Makefile.in (OBS): Add agent.o.
4402 Add new rule for agent.o.
4403 Track dependence of tracepoint.c on agent.h.
4404 * tracepoint.c (run_inferior_command_1):
4405 (run_inferior_command): Call agent_run_command.
4406 (gdb_ust_connect_sync_socket): Deleted. Move it to
4407 common/agent.c.
4408 (resume_thread, stop_thread): Likewise.
4409 (gdb_ust_socket_init): Renamed to ...
4410 (gdb_agent_socket_init): ... New.
4411 (gdb_ust_thread): Renamed to ...
4412 (gdb_agent_helper_thread): ... New.
4413 (gdb_ust_init): Move some code to ...
4414 (gdb_agent_init): ... here. New.
4415 [HAVE_UST]: Call gdb_ust_init.
4416 (initialize_tracepoint_ftlib): Call gdb_agent_init.
4417 * configure.ac: Add `sys/un.h' to AC_CHECK_HEADERS.
4418 * config.in, configure: Regenerated.
4419
44202012-03-02 Pedro Alves <palves@redhat.com>
4421
4422 * inferiors.c (add_pid_to_list, pull_pid_from_list): Delete.
4423 * linux-low.c (struct simple_pid_list): New.
4424 (stopped_pids): New a struct simple_pid_list pointer.
4425 (add_to_pid_list, pull_pid_from_list): New.
4426 (handle_extended_wait): Don't assume the first signal new children
4427 report is SIGSTOP. Adjust call to pull_pid_from_list.
4428 (linux_wait_for_lwp): Adjust.
4429
44302012-03-02 Yao Qi <yao@codesourcery.com>
4431
4432 * tracepoint.c (do_action_at_tracepoint): Write `stop_pc' in
4433 debug log.
4434
44352012-03-02 Yao Qi <yao@codesourcery.com>
4436
4437 * tracepoint.c (collect_ust_data_at_tracepoint): Remove parameters
4438 `stop_pc' and `tpoint'. Update caller.
4439
44402012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
4441
4442 * linux-low.h (linux_target_ops): Add regset_bitmap member.
4443 * linux-low.c (use_linux_regsets): New macro.
4444 [!HAVE_LINUX_REGSETS] (regsets_fetch_inferior_registers): Likewise.
4445 [!HAVE_LINUX_REGSETS] (regsets_store_inferior_registers): Likewise.
4446 (linux_register_in_regsets): New function.
4447 (usr_fetch_inferior_registers): Skip registers covered by
4448 regsets.
4449 (usr_store_inferior_registers): Likewise.
4450 (usr_fetch_inferior_registers): New macro.
4451 (usr_store_inferior_registers): Likewise.
4452 (linux_fetch_registers): Handle mixed regset/non-regset targets.
4453 (linux_store_registers): Likewise.
4454 * linux-mips-low.c (init_registers_mips_dsp_linux): New
4455 prototype.
4456 (init_registers_mips64_dsp_linux): Likewise.
4457 (init_registers_mips_linux): New macro.
4458 (init_registers_mips_dsp_linux): Likewise.
4459 (mips_dsp_num_regs): Likewise.
4460 (DSP_BASE, DSP_CONTROL): New fallback macros.
4461 (mips_base_regs): New macro.
4462 (mips_regmap): Use it. Fix the size.
4463 (mips_dsp_regmap): New variable.
4464 (mips_dsp_regset_bitmap): Likewise.
4465 (mips_arch_setup): New function.
4466 (mips_cannot_fetch_register): Use the_low_target.regmap rather
4467 than mips_regmap.
4468 (mips_cannot_store_register): Likewise.
4469 (the_low_target): Update .arch_setup, .num_regs and .regmap
4470 initializers. Add .regset_bitmap initializer.
4471 * linux-arm-low.c (the_low_target): Add .regset_bitmap
4472 initializer.
4473 * linux-bfin-low.c (the_low_target): Likewise.
4474 * linux-cris-low.c (the_low_target): Likewise.
4475 * linux-crisv32-low.c (the_low_target): Likewise.
4476 * linux-ia64-low.c (the_low_target): Likewise.
4477 * linux-m32r-low.c (the_low_target): Likewise.
4478 * linux-m68k-low.c (the_low_target): Likewise.
4479 * linux-ppc-low.c (the_low_target): Likewise.
4480 * linux-s390-low.c (the_low_target): Likewise.
4481 * linux-sh-low.c (the_low_target): Likewise.
4482 * linux-sparc-low.c (the_low_target): Likewise.
4483 * linux-tic6x-low.c (the_low_target): Likewise.
4484 * linux-x86-low.c (the_low_target): Likewise.
4485 * linux-xtensa-low.c (the_low_target): Likewise.
4486 * configure.srv <mips*-*-linux*>: Add mips-dsp-linux.o and
4487 mips64-dsp-linux.o to srv_regobj. Add mips-dsp-linux.xml,
4488 mips64-dsp-linux.xml, mips-dsp.xml and mips64-dsp.xml to
4489 srv_xmlfiles.
4490 * Makefile.in (mips-dsp-linux.o, mips-dsp-linux.c): New targets.
4491 (mips64-dsp-linux.o, mips64-dsp-linux.c): Likewise.
4492
44932012-02-29 Yao Qi <yao@codesourcery.com>
4494 Pedro Alves <palves@redhat.com>
4495
4496 * linux-low.c: (linux_wait_1): Call unsuspend_all_lwps when
4497 `step_over_finished' is true.
4498
44992012-02-27 Pedro Alves <palves@redhat.com>
4500
4501 * linux-low.c (pid_is_stopped): Delete, moved to common/.
4502 (linux_attach_lwp_1): Adjust to use linux_proc_pid_is_stopped.
4503
45042012-02-27 Pedro Alves <palves@redhat.com>
4505
4506 PR server/9684
4507 * linux-low.c (pid_is_stopped): New.
4508 (linux_attach_lwp_1): Handle attaching to 'T (stopped)' processes.
4509
45102012-02-25 Luis Machado <lgustavo@codesourcery.com>
4511
4512 * mem-break.c (clear_gdb_breakpoint_conditions): Fix de-allocation
4513 of conditions.
4514
45152012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
4516
4517 * linux-mips-low.c (mips_regmap): Correct the index of $f9.
4518
45192012-02-24 Luis Machado <lgustavo@codesourcery>
4520
4521 * server.c (handle_query): Advertise support for target-side
4522 breakpoint condition evaluation.
4523 (process_point_options): New function.
4524 (process_serial_event): When inserting a breakpoint, check for
4525 a target-side condition that should be evaluated.
4526
4527 * mem-break.c: Include regcache.h and ax.h.
4528 (point_cond_list_t): New data structure.
4529 (breakpoint) <cond_list>: New field.
4530 (find_gdb_breakpoint_at): Make non-static.
4531 (delete_gdb_breakpoint_at): Clear any target-side
4532 conditions.
4533 (clear_gdb_breakpoint_conditions): New function.
4534 (add_condition_to_breakpoint): Likewise.
4535 (add_breakpoint_condition): Likewise.
4536 (gdb_condition_true_at_breakpoint): Likewise.
4537 (gdb_breakpoint_here): Return result directly instead
4538 of going through a local variable.
4539
4540 * mem-break.h (find_gdb_breakpoint_at): New prototype.
4541 (clear_gdb_breakpoint_conditions): Likewise.
4542 (add_breakpoint_condition): Likewise.
4543 (gdb_condition_true_at_breakpoint): Likewise.
4544
4545 * linux-low.c (linux_wait_1): Evaluate target-side breakpoint condition.
4546 (need_step_over_p): Take target-side breakpoint condition into
4547 consideration.
4548
45492012-02-24 Luis Machado <lgustavo@codesourcery>
4550
4551 * server.h: Include tracepoint.h.
4552 (agent_mem_read, agent_get_trace_state_variable_value,
4553 agent_set_trace_state_variable_value,
4554 agent_tsv_read, agent_mem_read_string, get_get_tsv_func_addr,
4555 get_set_tsv_func_addr): New prototypes.
4556
4557 * ax.h: New include file.
4558 * ax.c: New source file.
4559
4560 * tracepoint.c: Include ax.h.
4561 (gdb_agent_op, gdb_agent_op_names, gdb_agent_op_sizes,
4562 agent_expr, eval_result_type): Move to ax.h.
4563 (parse_agent_expr): Rename to ...
4564 (gdb_parse_agent_expr): ... this, make it non-static and move
4565 to ax.h.
4566 (unparse_agent_expr) Rename to ...
4567 (gdb_unparse_agent_expr): ... this, make it non-static and move
4568 to ax.h.
4569 (eval_agent_expr): Rename to ...
4570 (eval_tracepoint_agent_expr): ... this.
4571 (agent_mem_read, agent_mem_read_string, agent_tsv_read): Remove
4572 forward declarations.
4573 (add_tracepoint_action): Call gdb_parse_agent_expr (...).
4574 (agent_get_trace_state_variable_value): New function.
4575 (agent_set_trace_state_variable_value): New function.
4576 (cmd_qtdp): Call gdb_parse_agent_expr (...).
4577 (response_tracepoint): Call gdb_unparse_agent_expr (...).
4578 (do_action_at_tracepoint): Call eval_tracepoint_agent_expr (...).
4579 (condition_true_at_tracepoint): Likewise.
4580 (parse_agent_expr): Rename to ...
4581 (gdb_parse_agent_expr): ... this and move to ax.c.
4582 (unparse_agent_expr): Rename to ...
4583 (gdb_unparse_agent_expr): ... this and move to ax.c.
4584 (gdb_agent_op_name): Move to ax.c.
4585 (eval_agent_expr): Rename to ...
4586 (gdb_eval_agent_expr): ... this, use regcache passed as parameter
4587 and move to ax.c.
4588 (eval_tracepoint_agent_expr): New function.
4589 (agent_mem_read, agent_mem_read_string, agent_tsv_read): Make
4590 non-static.
4591 (current_insn_ptr, emit_error, struct bytecode_address): Move to
4592 ax.c.
4593 (emit_prologue, emit_epilogue, emit_add, emit_sub, emit_mul, emit_lsh,
4594 emit_rsh_signed, emit_rsh_unsigned, emit_ext, emit_log_not,
4595 emit_bit_and, emit_bit_or, emit_bit_xor, emit_bit_not, emit_equal,
4596 emit_less_signed, emit_less_unsigned, emit_ref, emit_if_goto,
4597 emit_goto, write_goto_address, emit_const, emit_reg, emit_pop,
4598 emit_stack, emit_zero_ext, emit_swap, emit_stack_adjust,
4599 emit_int_call_1, emit_void_call_2, emit_eq_goto, emit_ne_goto,
4600 emit_lt_goto, emit_ge_goto, emit_gt_goto, emit_le_goto): Move to ax.c.
4601 (get_get_tsv_func_addr, get_set_tsv_func_addr): New functions.
4602 (compile_bytecodes): Remove forward declaration.
4603 (is_goto_target): Move to ax.c.
4604 (compile_bytecodes): Move to ax.c and call
4605 agent_get_trace_state_variable_value (...) and
4606 agent_set_trace_state_variable_value (...).
4607
4608 * Makefile.in: Update ax.c and IPA dependencies.
4609
46102012-02-24 Pedro Alves <palves@redhat.com>
4611
4612 * tracepoint.c (cmd_bigqtbuffer): Rename as ...
4613 (cmd_bigqtbuffer_circular): ... this. Only handle
4614 'QTBuffer:circular:'.
4615 (handle_tracepoint_general_set): Adjust.
4616
46172012-02-16 Yao Qi <yao@codesourcery.com>
4618
4619 * inferiors.c: Move code to ...
4620 * dll.c: .... here. New.
4621 * server.h: Declare clear_dlls.
4622 * Makefile.in (SFILES): Add dll.c.
4623 (OBS): Add dll.o
4624 (dll.o): New rule.
4625
46262012-02-11 Yao Qi <yao@codesourcery.com>
4627
4628 * server.c: (handle_monitor_command): Add a new parameter
4629 `own_buf'.
4630 (handle_query): Update caller.
4631
46322012-02-09 Joel Brobecker <brobecker@adacore.com>
4633
4634 * configure.ac: Add readlink to AC_CHECK_FUNCS list.
4635 * configure, config.in: Regenerate.
4636 * hostio.c: Provide an alternate implementation if HAVE_READLINK
4637 is not defined.
4638
46392012-02-02 Pedro Alves <palves@redhat.com>
4640
4641 Try SIGKILL first, then PTRACE_KILL.
4642 * linux-low.c (linux_kill_one_lwp): New.
4643 (linux_kill_one_lwp): Rename to ...
4644 (kill_one_lwp_callback): ... this. Use the new
4645 linux_kill_one_lwp.
4646
46472012-02-02 Pedro Alves <palves@redhat.com>
4648
4649 * tracepoint.c (cmd_qtminftpilen): Return 0 if there's no current
4650 inferior.
4651
46522012-01-27 Pedro Alves <palves@redhat.com>
4653
4654 * linux-low.c (linux_child_pid_to_exec_file): Delete.
4655 (elf_64_file_p): Make static.
4656 (linux_pid_exe_is_elf_64_file): New.
4657 * linux-low.h (linux_child_pid_to_exec_file, elf_64_file_p):
4658 Delete declarations.
4659 (linux_pid_exe_is_elf_64_file): Declare.
4660 * linux-x86-low.c (x86_arch_setup): Use
4661 linux_pid_exe_is_elf_64_file.
4662
46632012-01-25 Jan Kratochvil <jan.kratochvil@redhat.com>
4664
4665 * linux-low.c (linux_wait_for_event_1): Rename to ...
4666 (linux_wait_for_event): ... here and merge it with former
4667 linux_wait_for_event - new variable wait_ptid, use it.
4668 (linux_wait_for_event): Remove - merge it to linux_wait_for_event_1.
4669
46702012-01-23 Pedro Alves <palves@redhat.com>
4671
4672 * server.c (main): Avoid yet another case of infinite loop while
4673 detaching/killing after a longjmp.
4674
46752012-01-20 Jan Kratochvil <jan.kratochvil@redhat.com>
4676
4677 Code cleanup.
4678 * linux-low.c (linux_wait_for_event_1): Use ptid_is_pid.
4679
46802012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
4681
4682 * hostio.c (handle_readlink): New function.
4683 (handle_vFile): Call it to handle "vFile:readlink" packets.
4684
46852012-01-20 Pedro Alves <palves@redhat.com>
4686 Ulrich Weigand <ulrich.weigand@linaro.org>
4687
4688 * server.c (handle_v_requests): Only support vAttach and vRun to
4689 start multiple processes when in extended protocol mode.
4690
46912012-01-17 Pedro Alves <palves@redhat.com>
4692
4693 * tracepoint.c (initialize_tracepoint): Use mmap instead of
4694 memalign plus mprotect to allocate the scratch buffer.
4695
46962012-01-13 Pedro Alves <palves@redhat.com>
4697
4698 * server.c (attach_inferior): Clear `cont_thread'.
4699
47002012-01-13 Pedro Alves <palves@redhat.com>
4701
4702 * server.c (main): Avoid infinite loop while detaching/killing
4703 after a longjmp.
4704
47052012-01-09 Doug Evans <dje@google.com>
4706
4707 * server.c (start_inferior): Set last_ptid in --wrapper case.
4708
47092012-01-06 Yao Qi <yao@codesourcery.com>
4710
4711 * tracepoint.c [IN_PROCESS_AGENT] (debug_threads): Macro
4712 defined.
4713 [IN_PROCESS_AGENT] (debug_agent): New global variable.
4714
47152012-01-04 Yao Qi <yao@codesourcery.com>
4716
4717 * tracepoint.c (cmd_qtdp): Print debug message
4718 for static tracepoint.
4719
47202012-01-04 Yao Qi <yao@codesourcery.com>
4721
4722 * tracepoint.c (trace_vdebug): Differentiate debug message
4723 between gdbserver and IPA.
4724
47252012-01-03 Yao Qi <yao@codesourcery.com>
4726
4727 * tracepoint.c (tracepoint_was_hit): Don't collect for
4728 static tracepoint.
4729
47302012-01-02 Joel Brobecker <brobecker@adacore.com>
4731
4732 * terminal.h: Reformat copyright header.
4733
47342012-01-02 Joel Brobecker <brobecker@adacore.com>
4735
4736 * server.c (gdbserver_version): Update copyright year.
4737 * gdbreplay.c (gdbreplay_version): Likewise.
4738
47392011-12-18 Jan Kratochvil <jan.kratochvil@redhat.com>
4740
4741 * linux-low.c (linux_create_inferior): Put empty if clause for write.
4742
4743 Revert:
4744 2011-12-18 Hui Zhu <teawater@gmail.com>
4745 * linux-low.c (linux_create_inferior): Save return value to ret.
4746
47472011-12-18 Hui Zhu <teawater@gmail.com>
4748
4749 * linux-low.c (linux_create_inferior): Save return value to ret.
4750
47512011-12-16 Doug Evans <dje@google.com>
4752
4753 * linux-low.c (linux_create_inferior): If stdio connection,
4754 redirect stdin from /dev/null, stdout to stderr.
4755 * remote-utils.c (remote_is_stdio): New static global.
4756 (remote_connection_is_stdio): New function.
4757 (remote_prepare): Handle stdio connection.
4758 (remote_open): Ditto.
4759 (remote_close): Don't close stdin for stdio connections.
4760 (read_prim,write_prim): New functions. Replace all calls to
4761 read/write to these.
4762 * server.c (main): Watch for "-" argument. Move call to
4763 remote_prepare before start_inferior.
4764 * server.h (STDIO_CONNECTION_NAME): New macro.
4765 (remote_connection_is_stdio): Declare.
4766
4767 * remote-utils.c (prepare_resume_reply): Remove extraneous \n
4768 in debugging output.
4769
47702011-12-15 Yao Qi <yao@codesourcery.com>
4771
4772 * tracepoint.c: Include sys/syscall.h.
4773 (gdb_ust_thread): Remove preprocessor conditional.
4774
47752011-12-14 Pedro Alves <pedro@codesourcery.com>
4776
4777 * linux-low.c (linux_detach_one_lwp): Call
4778 the_low_target.prepare_to_resume before detaching.
4779
47802011-12-14 Yao Qi <yao@codesourcery.com>
4781
4782 * tracepoint.c (gdb_ust_thread): Don't ignore return value
4783 of write.
4784
47852011-12-14 Yao Qi <yao@codesourcery.com>
4786
4787 * i386-low.c (i386_low_stopped_data_address): Initialize local
4788 variable `control'.
4789
47902011-12-13 Pedro Alves <pedro@codesourcery.com>
4791
4792 PR remote/13492
4793
4794 * i386-low.c (i386_low_stopped_data_address): Avoid fetching
4795 DR_CONTROL unless necessary. Extend comments.
4796 * linux-x86-low.c (x86_linux_prepare_to_resume): Don't write to
4797 DR0-3 if not used. If any watchpoint was set, clear DR_STATUS.
4798
47992011-12-13 Yao Qi <yao@codesourcery.com>
4800
4801 * tracepoint.c (trace_buffer_alloc): Replace magic numbers with
4802 macros.
4803 (upload_fast_traceframes, upload_fast_traceframes): Likewise.
4804
48052011-12-08 Jan Kratochvil <jan.kratochvil@redhat.com>
4806
4807 * linux-low.c (linux_kill): Skip PTRACE_KILL if LWP does not exist.
4808 Print new debug message for such case.
4809
48102011-12-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4811
4812 Fix overlapping memcpy.
4813 * mem-break.c (set_raw_breakpoint_at): New variable buf. Use it for
4814 the read_inferior_memory transfer.
4815 (delete_fast_tracepoint_jump): New variable buf. Use it for the
4816 write_inferior_memory transfer.
4817 (set_fast_tracepoint_jump): New variable buf. Use it for the
4818 read_inferior_memory and write_inferior_memory transfers.
4819 (uninsert_fast_tracepoint_jumps_at, reinsert_fast_tracepoint_jumps_at)
4820 (delete_raw_breakpoint, uninsert_raw_breakpoint): New variable buf.
4821 Use it for the write_inferior_memory transfer.
4822 (check_mem_read, check_mem_write): New gdb_asserts for overlapping
4823 buffers.
4824
48252011-12-06 Maciej W. Rozycki <macro@codesourcery.com>
4826
4827 * linux-low.c (fetch_register, store_register): Make code
4828 consistent, fix formatting.
4829
48302011-12-06 Maciej W. Rozycki <macro@codesourcery.com>
4831
4832 * linux-low.c (usr_store_inferior_registers): Factor out code
4833 to handle individual registers into...
4834 (store_register): ... this new function.
4835
48362011-12-06 Ulrich Weigand <uweigand@de.ibm.com>
4837
4838 * Makefile.in (s390-linux32v1.o, s390-linux32v1.c): New rules.
4839 (s390-linux32v2.o, s390-linux32v2.c): Likewise.
4840 (s390-linux64v1.o, s390-linux64v1.c): Likewise.
4841 (s390-linux64v2.o, s390-linux64v2.c): Likewise.
4842 (s390x-linux64v1.o, s390x-linux64v1.c): Likewise.
4843 (s390x-linux64v2.o, s390x-linux64v2.c): Likewise.
4844 * configure.srv [s390*-*-linux*] (srv_regobj): Add new objects.
4845 (srv_xmlfiles): Add new XML files.
4846
4847 * linux-s390-low.c: Include "elf/common.h", <sys/ptrace.h>,
4848 and <sys/uio.h>.
4849 (PTRACE_GETREGSET, PTRACE_SETREGSET): Define if undefined.
4850 (init_registers_s390_linux32v1): Add prototype.
4851 (init_registers_s390_linux32v2): Likewise.
4852 (init_registers_s390_linux64v1): Likewise.
4853 (init_registers_s390_linux64v2): Likewise.
4854 (init_registers_s390x_linux64v1): Likewise.
4855 (init_registers_s390x_linux64v2): Likewise.
4856 (s390_num_regs): Increment to 52.
4857 (s390_regmap): Add orig_r2 register.
4858 (s390_num_regs_3264): Increment to 68.
4859 (s390_regmap_3264): Add orig_r2 register.
4860 (s390_collect_ptrace_register): Handle orig_r2 register.
4861 (s390_supply_ptrace_register): Likewise.
4862 (s390_fill_last_break): New function.
4863 (s390_store_last_break): Likewise.
4864 (s390_fill_system_call): New function.
4865 (s390_store_system_call): Likewise.
4866 (target_regsets): Handle NT_S390_LAST_BREAK and NT_S390_SYSTEM_CALL
4867 register sets.
4868 (s390_check_regset): New function.
4869 (s390_arch_setup): Check for presence of NT_S390_LAST_BREAK and
4870 NT_S390_SYSTEM_CALL regsets and use appropriate description.
4871 Update target_regsets for available register sets.
4872
48732011-12-02 Paul Pluzhnikov <ppluzhnikov@google.com>
4874 Jan Kratochvil <jan.kratochvil@redhat.com>
4875
4876 * linux-low.c (get_phdr_phnum_from_proc_auxv, get_dynamic, get_r_debug)
4877 (read_one_ptr, struct link_map_offsets, linux_qxfer_libraries_svr4):
4878 New.
4879 (struct linux_target_ops): Install linux_qxfer_libraries_svr4.
4880 * linux-low.h (struct process_info_private): New member r_debug.
4881 * server.c (handle_qxfer_libraries): Call
4882 the_target->qxfer_libraries_svr4.
4883 (handle_qxfer_libraries_svr4): New function.
4884 (qxfer_packets): New entry "libraries-svr4".
4885 (handle_query): Check QXFER_LIBRARIES_SVR4 and report libraries-svr4.
4886 * target.h (struct target_ops): New member qxfer_libraries_svr4.
4887 * remote.c (remote_xfer_partial): Call add_packet_config_cmd for
4888 PACKET_qXfer_libraries_svr4.
4889
48902011-11-30 Ulrich Weigand <uweigand@de.ibm.com>
4891
4892 * linux-s390-low.c (s390_collect_ptrace_register): Fully convert
4893 PSW address/mask between 8-byte and 16-byte formats.
4894 (s390_supply_ptrace_register): Likewise.
4895 (s390_get_pc, s390_set_pc): 4-byte PSW address always includes
4896 basic addressing mode bit.
4897
48982011-11-24 Stan Shebs <stan@codesourcery.com>
4899
4900 * tracepoint.c (cmd_qtstatus): Use plongest instead of %llx.
4901
49022011-11-17 Stan Shebs <stan@codesourcery.com>
4903
4904 * tracepoint.c (struct tracepoint): New field traceframe_usage.
4905 (tracing_start_time): New global.
4906 (tracing_stop_time): New global.
4907 (tracing_user_name): New global.
4908 (tracing_notes): New global.
4909 (tracing_stop_note): New global.
4910 (cmd_qtstart): Set traceframe_usage, start_time.
4911 (stop_tracing): Set stop_time.
4912 (cmd_qtstatus): Report additional status.
4913 (cmd_qtp): New function.
4914 (handle_tracepoint_query): Call it.
4915 (cmd_qtnotes): New function.
4916 (handle_tracepoint_general_set): Call it.
4917 (get_timestamp): Rename from tsv_get_timestamp.
4918
49192011-11-14 Stan Shebs <stan@codesourcery.com>
4920 Kwok Cheung Yeung <kcy@codesourcery.com>
4921
4922 * linux-x86-low.c (small_jump_insn): New.
4923 (i386_install_fast_tracepoint_jump_pad): Add arguments for
4924 trampoline and error message, build a trampoline and issue a small
4925 jump instruction to it.
4926 (x86_install_fast_tracepoint_jump_pad): Add arguments for
4927 trampoline and error message.
4928 (x86_get_min_fast_tracepoint_insn_len): New.
4929 (the_low_target): Add call to x86_get_min_fast_tracepoint_insn_len.
4930 * linux-low.h (struct linux_target_ops): Add arguments to
4931 install_fast_tracepoint_jump_pad operation, add new operation.
4932 * linux-low.c (linux_install_fast_tracepoint_jump_pad): Add
4933 arguments.
4934 (linux_get_min_fast_tracepoint_insn_len): New function.
4935 (linux_target_op): Add new operation.
4936 * tracepoint.c (gdb_trampoline_buffer): New IPA variable.
4937 (gdb_trampoline_buffer_end): Ditto.
4938 (gdb_trampoline_buffer_error): Ditto.
4939 (struct ipa_sym_addresses): Add fields for new IPA variables.
4940 (symbol_list): Add entries for new IPA variables.
4941 (struct tracepoint): Add fields to hold the address range of the
4942 trampoline used by the tracepoint.
4943 (trampoline_buffer_head): New static variable.
4944 (trampoline_buffer_tail): Ditto.
4945 (claim_trampoline_space): New function.
4946 (have_fast_tracepoint_trampoline_buffer): New function.
4947 (clone_fast_tracepoint): Fill in trampoline fields of tracepoint
4948 structure.
4949 (install_fast_tracepoint): Ditto, also add error buffer argument.
4950 (cmd_qtminftpilen): New function.
4951 (handle_tracepoint_query): Add response to qTMinFTPILen packet.
4952 (fast_tracepoint_from_trampoline_address): New function.
4953 (fast_tracepoint_collecting): Handle trampoline as part of jump
4954 pad space.
4955 (set_trampoline_buffer_space): New function.
4956 (initialize_tracepoint): Initialize new IPA variables.
4957 * target.h (struct target_ops): Add arguments to
4958 install_fast_tracepoint_jump_pad operation, add new
4959 get_min_fast_tracepoint_insn_len operation.
4960 (target_get_min_fast_tracepoint_insn_len): New.
4961 (install_fast_tracepoint_jump_pad): Add arguments.
4962 * server.h (IPA_BUFSIZ): Define.
4963 * linux-i386-ipa.c: Include extra header files.
4964 (initialize_fast_tracepoint_trampoline_buffer): New function.
4965 (initialize_low_tracepoint): Call it.
4966 * server.h (set_trampoline_buffer_space): Declare.
4967 (claim_trampoline_space): Ditto.
4968 (have_fast_tracepoint_trampoline_buffer): Ditto.
4969
49702011-11-14 Yao Qi <yao@codesourcery.com>
4971
4972 * server.c (handle_query): Handle InstallInTrace for qSupported.
4973 * tracepoint.c (add_tracepoint): Sort list.
4974 (install_tracepoint, download_tracepoint): New.
4975 (cmd_qtdp): Call them to install and download tracepoints.
4976 (sort_tracepoints): Removed.
4977 (cmd_qtstart): Update.
4978
49792011-11-14 Yao Qi <yao@codesourcery.com>
4980
4981 * mem-break.c (inc_ref_fast_tracepoint_jump): New.
4982 * mem-break.h: Declare.
4983 * tracepoint.c (cmd_qtstart): Move some code to ...
4984 (clone_fast_tracepoint, install_fast_tracepoint): ... here.
4985 New.
4986 (download_tracepoints): Move some code to ...
4987 (download_tracepoint_1): ... here. New.
4988
49892011-11-08 Yao Qi <yao@codesourcery.com>
4990
4991 * remote-utils.c (relocate_instruction): A comment fix.
4992
49932011-11-07 Joel Brobecker <brobecker@adacore.com>
4994
4995 * win32-i386-low.c (dr_status_mirror, dr_control_mirror): Delete.
4996 (i386_dr_low_get_control, i386_dr_low_get_status): Use
4997 dr_status_mirror and dr_control_mirror from debug_reg_state.
4998 (i386_dr_low_get_status): Use debug_reg_state.dr_status_mirror
4999 (i386_initial_stuff): Remove use of deleted globals.
5000 (i386_get_thread_context, i386_set_thread_context,
5001 i386_thread_added): Use dr_status_mirror and dr_control_mirror
5002 from debug_reg_state.
5003
50042011-11-05 Yao Qi <yao@codesourcery.com>
5005
5006 * tracepoint.c (gdb_collect): Loop over tracepoints of same
5007 address as TPOINT's.
5008
50092011-11-02 Stan Shebs <stan@codesourcery.com>
5010
5011 * tracepoint.c (agent_mem_read_string): New function.
5012 (eval_agent_expr): Call it for tracenz.
5013 * server.c (handle_query): Report support for tracenz.
5014
50152011-11-02 Yao Qi <yao@codesourcery.com>
5016
5017 * tracepoint.c (cmd_qtstart): Remove unused local variables.
5018
50192011-11-02 Yao Qi <yao@codesourcery.com>
5020
5021 * target.h: Fix a typo in comment.
5022
50232011-10-31 Pedro Alves <pedro@codesourcery.com>
5024
5025 * mem-break.c (check_mem_write): Add `myaddr' parameter. Don't
5026 clobber the breakpoints' shadows with fast tracepoint jumps.
5027 * mem-break.h (check_mem_write): Add `myaddr' parameter.
5028 * target.c (write_inferior_memory): Also pass MYADDR down to
5029 check_mem_write.
5030
50312011-10-07 Ulrich Weigand <ulrich.weigand@linaro.org>
5032
5033 * configure.ac: Check support for personality routine.
5034 * configure: Regenerate.
5035 * config.in: Likewise.
5036 * linux-low.c: Include <sys/personality.h>.
5037 Define ADDR_NO_RANDOMIZE if necessary.
5038 (linux_create_inferior): Disable address space randomization when
5039 forking inferior, if requested.
5040 (linux_supports_disable_randomization): New function.
5041 (linux_target_ops): Install it.
5042 * server.h (disable_randomization): Declare.
5043 * server.c (disable_randomization): New global variable.
5044 (handle_general_set): Handle QDisableRandomization.
5045 (handle_query): Likewise for qSupported.
5046 (main): Support --disable-randomization and --no-disable-randomization
5047 command line arguments.
5048 * target.h (struct target_ops): Add supports_disable_randomization.
5049 (target_supports_disable_randomization): New macro.
5050
50512011-09-29 Mike Frysinger <vapier@gentoo.org>
5052
5053 * linux-low.c (target_loadseg): Add defined PTRACE_GETFDPIC to the
5054 ifdef check.
5055 [PT_GETDSBT] (target_loadmap): Wrap in a defined PT_GETDSBT check.
5056 [!PT_GETDSBT] (target_loadmap): New definition.
5057 (LINUX_LOADMAP, LINUX_LOADMAP_EXEC, LINUX_LOADMAP_INTERP): Define.
5058 (linux_read_loadmap): Change PTRACE_GETDSBT_EXEC to
5059 LINUX_LOADMAP_EXEC, PTRACE_GETDSBT_INTERP to LINUX_LOADMAP_INTERP,
5060 and PT_GETDSBT to LINUX_LOADMAP.
5061 [!PT_GETDSBT] (linux_read_loadmap): Define to NULL.
5062 (linux_target_ops): Delete unnecessary ifdef PT_GETDSBT check.
5063
50642011-09-21 Ulrich Weigand <ulrich.weigand@linaro.org>
5065
5066 * linux-arm-low.c (struct arm_linux_hwbp_cap): Remove.
5067 (arm_linux_hwbp_cap): New static variable.
5068 (arm_linux_get_hwbp_cap): Replace by ...
5069 (arm_linux_init_hwbp_cap): ... this new function.
5070 (arm_linux_get_hw_breakpoint_count): Use arm_linux_hwbp_cap.
5071 (arm_linux_get_hw_watchpoint_count): Likewise.
5072 (arm_linux_get_hw_watchpoint_max_length): Likewise.
5073 (arm_arch_setup): Call arm_linux_init_hwbp_cap.
5074 (arm_prepare_to_resume): Use perror_with_name instead of error.
5075
50762011-09-21 Ulrich Weigand <ulrich.weigand@linaro.org>
5077
5078 * linux-arm-low.c: Include <signal.h>.
5079 (PTRACE_GETHBPREGS, PTRACE_SETHBPREGS): Define if necessary.
5080 (struct arm_linux_hwbp_cap): New data type.
5081 (arm_hwbp_type, arm_hwbp_control_t): New typedefs.
5082 (struct arm_linux_hw_breakpoint): New data type.
5083 (MAX_BPTS, MAX_WPTS): Define.
5084 (struct arch_process_info, struct arch_lwp_info): New data types.
5085 (arm_linux_get_hwbp_cap): New function.
5086 (arm_linux_get_hw_breakpoint_count): Likewise.
5087 (arm_linux_get_hw_watchpoint_count): Likewise.
5088 (arm_linux_get_hw_watchpoint_max_length): Likewise.
5089 (arm_hwbp_control_initialize): Likewise.
5090 (arm_hwbp_control_is_enabled): Likewise.
5091 (arm_hwbp_control_is_initialized): Likewise.
5092 (arm_hwbp_control_disable): Likewise.
5093 (arm_linux_hw_breakpoint_equal): Likewise.
5094 (arm_linux_hw_point_initialize): Likewise.
5095 (struct update_registers_data): New data structure.
5096 (update_registers_callback: New function.
5097 (arm_insert_point): Likewise.
5098 (arm_remove_point): Likewise.
5099 (arm_stopped_by_watchpoint): Likewise.
5100 (arm_stopped_data_address): Likewise.
5101 (arm_new_process): Likewise.
5102 (arm_new_thread): Likewise.
5103 (arm_prepare_to_resume): Likewise.
5104 (the_low_target): Register arm_insert_point, arm_remove_point,
5105 arm_stopped_by_watchpoint, arm_stopped_data_address, arm_new_process,
5106 arm_new_thread, and arm_prepare_to_resume.
5107
51082011-09-15 Stan Shebs <stan@codesourcery.com>
5109
5110 * server.h (struct emit_ops): Add compare-goto fields.
5111 * tracepoint.c (gdb_agent_op_sizes): New table.
5112 (emit_eq_goto): New function.
5113 (emit_ne_goto): New function.
5114 (emit_lt_goto): New function.
5115 (emit_le_goto): New function.
5116 (emit_gt_goto): New function.
5117 (emit_ge_goto): New function.
5118 (is_goto_target): New function.
5119 (compile_bytecodes): Recognize special cases of compare-goto
5120 combinations and call specialized emitters for them.
5121 * linux-x86-low.c (amd64_emit_eq_goto): New function.
5122 (amd64_emit_ne_goto): New function.
5123 (amd64_emit_lt_goto): New function.
5124 (amd64_emit_le_goto): New function.
5125 (amd64_emit_gt_goto): New function.
5126 (amd64_emit_ge_goto): New function.
5127 (amd64_emit_ops): Add the new functions.
5128 (i386_emit_eq_goto): New function.
5129 (i386_emit_ne_goto): New function.
5130 (i386_emit_lt_goto): New function.
5131 (i386_emit_le_goto): New function.
5132 (i386_emit_gt_goto): New function.
5133 (i386_emit_ge_goto): New function.
5134 (i386_emit_ops): Add the new functions.
5135
51362011-09-08 Stan Shebs <stan@codesourcery.com>
5137
5138 * linux-x86-low.c (i386_emit_prologue): Save %ebx.
5139 (i386_emit_epilogue): Restore %ebx.
5140
51412011-08-31 Jie Zhang <jzhang918@gmail.com>
5142
5143 * server.c (step_thread): Remove definition.
5144 (process_serial_event): Don't handle Hs.
5145 * server.h (step_thread): Remove declaration.
5146 * target.c (set_desired_inferior): Remove use of step_thread.
5147
51482011-08-24 Luis Machado <lgustavo@codesourcery.com>
5149
5150 * linux-low.c: Include linux-procfs.h.
5151 (linux_attach_lwp_1): Update comments.
5152 (linux_attach): Scan for existing threads when attaching to a
5153 process that is the tgid.
5154 * Makefile.in: Update dependencies.
5155
51562011-08-24 Luis Machado <lgustavo@codesourcery.com>
5157
5158 * configure.srv: Add linux-procfs.o dependencies.
5159
51602011-08-14 Yao Qi <yao@codesourcery.com>
5161
5162 * target.h (struct target_ops): Fix indent.
5163 * win32-low.c (win32_target_ops): Fix comment.
5164
51652011-08-14 Andrew Jenner <andrew@codesourcery.com>
5166 Yao Qi <yao@codesourcery.com>
5167
5168 * Makefile.in (clean): Remove tic6x-*.c files.
5169 (linux-tic6x-low.o, tic6x-c62x-linux.o, tic6x-c64x-linux.o): New rules.
5170 (tic6x-c64xp-linux.o, tic6x-c62x-linux.c, tic6x-c64x-linux.c): Likewise.
5171 (tic6x-c64xp-linux.c): Likewise.
5172 * configure.srv: Add support for tic6x-*-uclinux.
5173 * linux-tic6x-low.c: New.
5174 * linux-low.c (PT_TEXT_ADDR, PT_DATA_ADDR, PT_TEXT_END_ADDR): Define.
5175
51762011-08-14 Andrew Stubbs <ams@codesourcery.com>
5177 Yao Qi <yao@codesourcery.com>
5178
5179 * target.h (struct target_ops): Add read_loadmap.
5180 * linux-low.c (struct target_loadseg): New type.
5181 (struct target_loadmap): New type.
5182 (linux_read_loadmap): New function.
5183 (linux_target_ops): Add linux_read_loadmap.
5184 * server.c (handle_query): Support qXfer:fdpic:read packet.
5185 * win32-low.c (win32_target_ops): Initialize field `read_loadmap'
5186 to NULL.
5187
51882011-08-05 Eli Zaretskii <eliz@gnu.org>
5189
5190 * win32-low.c: Include <stdint.h>.
5191
51922011-07-22 Pedro Alves <pedro@codesourcery.com>
5193
5194 * i386-low.c (i386_insert_aligned_watchpoint): Don't pass the info
5195 to the inferior here.
5196 (i386_remove_aligned_watchpoint): Ditto.
5197 (i386_handle_nonaligned_watchpoint): Return immediate on fail to
5198 fit part of the watchpoint in the debug registers.
5199 (i386_update_inferior_debug_regs): New.
5200 (i386_low_insert_watchpoint): Work on a local mirror of the debug
5201 registers, and only update the inferior on success.
5202 (i386_low_remove_watchpoint): Ditto.
5203
52042011-07-22 Kwok Cheung Yeung <kcy@codesourcery.com>
5205
5206 * linux-low.c (compare_ints, unique, list_threads, show_process,
5207 linux_core_of_thread): Delete.
5208 (linux_target_ops): Change linux_core_of_thread to
5209 linux_common_core_of_thread.
5210 (linux_qxfer_osdata): Defer to linux_common_xfer_osdata.
5211 * utils.c (malloc_failure): Change type of argument.
5212 (xmalloc, xrealloc, xcalloc, xsnprintf): Delete.
5213 * Makefile.in (SFILES): Add common/common-utils.c, common/xml-utils.c,
5214 common/linux-osdata.c, common/ptid.c and common/buffer.c.
5215 (OBS): Add xml-utils.o, common-utils.o, ptid.o and buffer.o.
5216 (IPA_OBJS): Add common-utils-ipa.o.
5217 (ptid_h, linux_osdata_h): New macros.
5218 (server_h): Add common/common-utils.h, common/xml-utils.h,
5219 common/buffer.h, common/gdb_assert.h, common/gdb_locale.h and
5220 common/ptid.h.
5221 (common-utils-ipa.o, common-utils.o, xml-utils.o, linux-osdata.o,
5222 ptid.o, buffer.o): New rules.
5223 (linux-low.o): Add common/linux-osdata.h as a dependency.
5224 * configure.srv (srv_tgtobj): Add linux-osdata.o to Linux targets.
5225 * configure.ac: Add AC_HEADER_DIRENT check.
5226 * config.in: Regenerate.
5227 * configure: Regenerate.
5228 * remote-utils.c (xml_escape_text): Delete.
5229 (buffer_grow, buffer_free, buffer_init, buffer_finish,
5230 buffer_xml_printf): Move to common/buffer.c.
5231 * server.c (main): Remove call to initialize_inferiors.
5232 * server.h (struct ptid, ptid_t, minus_one_ptid, null_ptid,
5233 ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid,
5234 ptid_equal, ptid_is_pid, initialize_inferiors, xml_escape_text,
5235 internal_error, gdb_assert, gdb_assert_fail): Delete.
5236 (struct buffer, buffer_grow, buffer_free, buffer_init, buffer_finish,
5237 buffer_xml_printf, buffer_grow_str, buffer_grow_str0): Move to
5238 common/buffer.h.
5239 * inferiors.c (null_ptid, minus_one_ptid, ptid_build, pid_to_ptid,
5240 ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid,
5241 initialize_inferiors): Delete.
5242
52432011-07-20 Pedro Alves <pedro@codesourcery.com>
5244
5245 * tracepoint.c (tracepoint_look_up_symbols): Return upon the first
5246 symbol error.
5247
52482011-05-31 Pedro Alves <pedro@codesourcery.com>
5249
5250 * linux-x86-low.c (i386_dr_low_get_addr): Fix off by one in
5251 assertion.
5252 * win32-i386-low.c (i386_dr_low_get_addr): Ditto.
5253
52542011-05-26 Yao Qi <yao@codesourcery.com>
5255
5256 * Makefile.in (thread-db.o): Track dependence to
5257 common/gdb_thread_db.h.
5258 * thread-db.c: include gdb_thread_db.h from right place.
5259
52602011-05-16 Adrian Cornish <gnu@bluedreamer.com>
5261
5262 * linux-i386-ipa.c (supply_static_tracepoint_registers): Pass
5263 __FILE__ and __LINE__ to internal_error.
5264
52652011-05-13 Doug Evans <dje@google.com>
5266
5267 * thread-db.c (try_thread_db_load_from_sdir): New function.
5268 (try_thread_db_load_from_dir): New function.
5269 (thread_db_load_search): Handle $sdir, ignore $pdir.
5270 Remove trying of system directories if search of
5271 libthread-db-search-path fails, that is now done via $sdir.
5272
52732011-05-12 Kwok Cheung Yeung <kcy@codesourcery.com>
5274
5275 * server.c (handle_query): Add EnableDisableTracepoints to the list
5276 of supported features.
5277 * tracepoint.c (clear_installed_tracepoints): Uninstall disabled
5278 tracepoints.
5279 (cmd_qtenable_disable): New.
5280 (cmd_qtstart): Install tracepoints even if disabled.
5281 (handle_tracepoint_general_set): Add call to cmd_qtenable_disable on
5282 receiving a QTEnable or QTDisable packet.
5283 (gdb_collect): Skip data collection if fast tracepoint is disabled.
5284 (ust_marker_to_static_tracepoint): Do not ignore disabled static
5285 tracepoints.
5286 (gdb_probe): Skip data collection if static tracepoint is disabled.
5287
52882011-05-10 Doug Evans <dje@google.com>
5289
5290 * thread-db.c (thread_db_handle_monitor_command): Handle elided path.
5291
52922011-05-04 Doug Evans <dje@google.com>
5293
5294 * linux-low.c (linux_join): Skip process lookup.
5295 * spu-low.c (spu_join): Ditto.
5296 * server.c (join_inferiors_callback): Delete.
5297 (process_serial_event): For 'D' packet (detach) call join_inferior
5298 directly.
5299
53002011-05-04 Joseph Myers <joseph@codesourcery.com>
5301
5302 * README: Don't mention xscale*-*-linux*.
5303 * configure.srv (xscale*-*-linux*): Don't handle target.
5304
53052011-04-27 Nathan Froyd <froydnj@codesourcery.com>
5306
5307 * linux-x86-low.c (amd64_emit_const): Call memcpy instead of
5308 casting pointers.
5309 (amd64_emit_reg, amd64_emit_int_call_1, amd64_emit_void_call_2):
5310 (i386_emit_const, i386_emit_reg, i386_emit_int_call_1):
5311 (i386_emit_void_call_2): Likewise.
5312
53132011-04-26 Yao Qi <yao@codesourcery.com>
5314
5315 * linux-low.c: Move common macros to linux-ptrace.h.
5316 Include linux-ptrace.h.
5317 * Makefile.in (linux_ptrace_h): New.
5318 (linux-low.o): Depends on linux-ptrace.h.
5319
53202011-04-24 Jan Kratochvil <jan.kratochvil@redhat.com>
5321
5322 * remote-utils.c (handle_accept_event): Close LISTEN_DESC only if
5323 RUN_ONCE. Comment for the LISTEN_DESC delete_file_handler call.
5324 (remote_prepare): New function with most of the TCP code from ...
5325 (remote_open): ... here. Detect PORT here unconditionally. Move also
5326 setting transport_is_reliable.
5327 * server.c (run_once): New variable.
5328 (gdbserver_usage): Document it.
5329 (main): Set run_once for `--once'. Call remote_prepare. Exit after
5330 the first run if RUN_ONCE.
5331 * server.h (run_once, remote_prepare): New declarations.
5332
53332011-04-19 Tom Tromey <tromey@redhat.com>
5334
5335 * win32-low.c (handle_load_dll): Remove duplicate "the".
5336
53372011-04-07 Pierre Muller <muller@ics.u-strasbg.fr>
5338
5339 Remove support for old Cygwin 1.5 versions.
5340 * win32-low.c (win32_create_inferior): Use new cygwin_path_list
5341 function to avoid warning.
5342 (win32_add_one_solib): Use cygwin_conv_path function to avoid
5343 warning.
5344
53452011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
5346
5347 * gdbserver/server.h (Macro _): Define it if not available.
5348
53492011-03-14 Michael Snyder <msnyder@vmware.com>
5350
5351 * hostio.c (handle_close): Remove unnecessary null test.
5352
53532011-03-10 Joel Brobecker <brobecker@adacore.com>
5354
5355 * Makefile.in (maintainer-clean realclean distclean): Remove
5356 "make ... subdir_do" command.
5357
53582011-03-10 Michael Snyder <msnyder@vmware.com>
5359
5360 * tracepoint.c (tracepoint_finish_step): Fix loop variable.
5361
5362 * server.c (handle_v_run): Free alloced buffer on early return.
5363
53642011-03-09 Yao Qi <yao@codesourcery.com>
5365
5366 Revert:
5367 2011-03-04 Yao Qi <yao@codesourcery.com>
5368
5369 * Makefile.in: Remove GNU make feature --directory.
5370
5371 2011-03-05 Yao Qi <yao@codesourcery.com>
5372
5373 * Makefile.in (CLEANDIRS, REQUIRED_SUBDIRS): New variable.
5374 (subdir_do): New make target. Copied from gdb/Makefile.
5375 (maintainer-clean, realclean, distclean, clean): Call corresponding
5376 make targets in common/Makefile.
5377
5378 2011-02-11 Yao Qi <yao@codesourcery.com>
5379
5380 * configure.ac: Call AC_PROG_RANLIB.
5381 * Makefile.in: Remove signals.o from OBS. Link libcommon.a.
5382 * configure: Regenerate.
5383
53842011-03-07 Jan Kratochvil <jan.kratochvil@redhat.com>
5385
5386 * remote-utils.c (putpkt_binary_1): Calculate BUF2 size dynamically.
5387
53882011-03-06 Yao Qi <yao@codesourcery.com>
5389
5390 * Makefile.in (REQUIRED_SUBDIRS): Remove $(LIBCOMMON_DIR).
5391
53922011-03-05 Yao Qi <yao@codesourcery.com>
5393
5394 * Makefile.in (CLEANDIRS, REQUIRED_SUBDIRS): New variable.
5395 (subdir_do): New make target. Copied from gdb/Makefile.
5396 (maintainer-clean, realclean, distclean, clean): Call corresponding
5397 make targets in common/Makefile.
5398
53992011-03-04 Yao Qi <yao@codesourcery.com>
5400
5401 * Makefile.in: Remove GNU make feature --directory.
5402
54032011-03-04 Michael Snyder <msnyder@vmware.com>
5404
5405 * server.c (queue_stop_reply): Call xmalloc not malloc.
5406
54072011-03-02 Michael Snyder <msnyder@vmware.com>
5408
5409 * linux-arm-low.c (arm_arch_setup): Replace malloc with xmalloc.
5410
54112011-02-28 Michael Snyder <msnyder@vmware.com>
5412
5413 * tracepoint.c (cmd_qtv): Discard unused value 'packet'.
5414 (cmd_qtframe): Ditto.
5415 (cmd_qtbuffer): Ditto.
5416 (cmd_bigqtbuffer): Ditto.
5417
5418 * utils.c (decimal2str): Initialize 'width' to nine, then
5419 don't mess with it.
5420
54212011-02-28 Ulrich Weigand <uweigand@de.ibm.com>
5422
5423 * hostio.c (require_data): Free *data, not data.
5424
54252011-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5426
5427 * hostio.c (require_data): Use free, not xfree.
5428
54292011-02-27 Michael Snyder <msnyder@vmware.com>
5430
5431 * server.c (handle_query): Discard unused value.
5432
5433 * hostio.c (require_data): Free malloc memory before returning
5434 error.
5435
54362011-02-26 Michael Snyder <msnyder@vmware.com>
5437
5438 * linux-low.c (list_threads): Call closedir for dirent.
5439
54402011-02-27 Michael Snyder <msnyder@vmware.com>
5441
5442 * i386-low.c (i386-length_and_rw_bits): Comment the fact that
5443 a case statement falls through.
5444
5445 * linux-low.c (linux_xfer_siginfo): Fix fencepost error.
5446
5447 * linux-amd64-ipa.c (gdb_agent_get_raw_reg): Fix fencepost error
5448 in comparison.
5449
54502011-02-26 Michael Snyder <msnyder@vmware.com>
5451
5452 * utils.c (decimal2str): Eliminate dead code and dead param.
5453 (pulongest): Drop dead param from call to decimal2str.
5454 (plongest): Ditto.
5455
54562011-02-24 Joel Brobecker <brobecker@adacore.com>
5457
5458 Revert the following patch (not approved yet):
5459 2011-02-21 Hui Zhu <teawater@gmail.com>
5460 * tracepoint.c (tp_printf): New function.
5461 (eval_agent_expr): Handle gdb_agent_op_printf.
5462
54632011-02-21 Hui Zhu <teawater@gmail.com>
5464
5465 * tracepoint.c (tp_printf): New function.
5466 (eval_agent_expr): Handle gdb_agent_op_printf.
5467
54682011-02-18 Tom Tromey <tromey@redhat.com>
5469
5470 * Makefile.in (tracepoint-ipa.o): Depend on ax.def.
5471 (tracepoint.o): Likewise.
5472 * tracepoint.c (enum gdb_agent_op): Use ax.def.
5473 (gdb_agent_op_names): Likewise.
5474
54752011-02-18 Tom Tromey <tromey@redhat.com>
5476
5477 * tracepoint.c (enum gdb_agent_op) <gdb_agent_op_pick,
5478 gdb_agent_op_rot>: New constants.
5479 (gdb_agent_op_names): Add pick and roll.
5480 (eval_agent_expr) <gdb_agent_op_pick, gdb_agent_op_rot>: New
5481 cases.
5482
54832011-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
5484
5485 * aclocal.m4: Regenerated with aclocal-1.11.1.
5486
54872011-02-14 Pedro Alves <pedro@codesourcery.com>
5488
5489 * server.c (handle_qxfer_traceframe_info): New.
5490 (qxfer_packets): Register "traceframe-info".
5491 (handle_query): Report support for qXfer:traceframe-info:read+.
5492 * tracepoint.c (match_blocktype): New.
5493 (traceframe_find_block_type): Rename to ...
5494 (traceframe_walk_blocks): ... this. Add callback filter argument,
5495 and use it.
5496 (traceframe_find_block_type): New, reimplemented on top of
5497 traceframe_walk_blocks.
5498 (build_traceframe_info_xml): New.
5499 (traceframe_read_info): New.
5500 * server.h (traceframe_read_info): Declare.
5501
55022011-02-11 Yao Qi <yao@codesourcery.com>
5503
5504 * configure.ac: Call AC_PROG_RANLIB.
5505 * Makefile.in: Remove signals.o from OBS. Link libcommon.a.
5506 * configure: Regenerate.
5507
55082011-02-07 Pedro Alves <pedro@codesourcery.com>
5509
5510 * server.c (gdb_read_memory): Change return semantics to allow
5511 partial transfers.
5512 (handle_search_memory_1): Adjust.
5513 (process_serial_event) <'m' packet>: Handle partial transfers.
5514 * tracepoint.c (traceframe_read_mem): Handle partial transfers.
5515
55162011-01-28 Pedro Alves <pedro@codesourcery.com>
5517
5518 * regcache.c (init_register_cache): Initialize
5519 regcache->register_status.
5520 (free_register_cache): Release regcache->register_status.
5521 (regcache_cpy): Copy register_status.
5522 (registers_to_string): Print 'x's for unavailable registers.
5523 (supply_register): Mark the register's status valid or
5524 unavailable, depending on whether a buffer was passed in or not.
5525 (supply_register_zeroed): New.
5526 (supply_regblock): Mark the registers' status valid or
5527 unavailable, depending on whether a buffer was passed in or not.
5528 * regcache.h (REG_UNAVAILABLE, REG_VALID): New defines.
5529 (struct regcache): New `register_status' field.
5530 (supply_register_zeroed): Declare.
5531 * i387-fp.c (i387_xsave_to_cache): Zero out registers using
5532 supply_register_zeroed, rather than passing a NULL buffer to
5533 supply_register.
5534 * tracepoint.c (fetch_traceframe_registers): Update comment.
5535
55362011-01-28 Pedro Alves <pedro@codesourcery.com>
5537
5538 * i387-fp.c (i387_xsave_to_cache): Make passing NULL as register
5539 buffer explicit.
5540
55412011-01-25 Pedro Alves <pedro@codesourcery.com>
5542
5543 * server.h (decode_xfer_write): Change prototype.
5544 * remote-utils.c (decode_xfer_write): Remove `annex' parameter,
5545 and don't extract the annex here.
5546 * server.c (decode_xfer_read): Remove `annex' parameter,
5547 and don't extract the annex here.
5548 (decode_xfer): New.
5549 (struct qxfer): New.
5550 (handle_qxfer_auxv, handle_qxfer_features, handle_qxfer_libraries)
5551 (handle_qxfer_osdata, handle_qxfer_siginfo, handle_qxfer_spu)
5552 (handle_qxfer_statictrace): New functions, abstracted out from
5553 handle_query, and made to use the struct qxfer interface.
5554 (handle_threads_qxfer_proper): Rename to ...
5555 (handle_qxfer_threads_proper): ... this.
5556 (handle_threads_qxfer): Rename to ...
5557 (handle_qxfer_threads): ... this. Adjust.
5558 (qxfer_packets): New array.
5559 (handle_qxfer): New function.
5560 (handle_query): Use handle_qxfer.
5561
55622011-01-05 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
5563
5564 * gdbreplay.c: Shorten lines of >= 80 columns.
5565 * linux-low.c: Ditto.
5566 * linux-ppc-low.c: Ditto.
5567 * linux-s390-low.c: Ditto.
5568 * linux-sparc-low.c: Ditto.
5569 * linux-x86-low.c: Ditto.
5570 * linux-xtensa-low.c: Ditto.
5571 * mem-break.c: Ditto.
5572 * nto-low.c: Ditto.
5573 * regcache.h: Ditto.
5574 * remote-utils.c: Ditto.
5575 * server.c: Ditto.
5576 * server.h: Ditto.
5577 * thread-db.c: Ditto.
5578 * tracepoint.c: Ditto.
5579 * utils.c: Ditto.
5580 * win32-low.h: Ditto.
5581
55822011-01-05 Joel Brobecker <brobecker@adacore.com>
5583
5584 * gdbserver/configure.ac, gdbserver/gdbserver.1: Copyright year
5585 update.
5586
55872011-01-01 Joel Brobecker <brobecker@adacore.com>
5588
5589 * server.c (gdbserver_version): Update copyright year in version
5590 output.
5591 * gdbreplay.c (gdbreplay_version): Ditto.
5592
55932010-12-29 Jie Zhang <jie.zhang@analog.com>
5594
5595 * configure.srv (bfin-*-*linux*): Handle Blackfin/Linux targets.
5596 * linux-bfin-low.c: New file.
5597 * linux-low.c: Define PT_TEXT_ADDR, PT_TEXT_END_ADDR, and
5598 PT_DATA_ADDR for BFIN targets.
5599 * Makefile.in (SFILES): Add linux-bfin-low.c.
5600 (clean): Remove reg-bfin.c.
5601 (linux-bfin-low.o, reg-bfin.o, reg-bfin.c): New targets.
5602 * README: Mention supported Blackfin targets.
5603
56042010-12-23 Mike Frysinger <vapier@gentoo.org>
5605
5606 * .gitignore: New file.
5607
56082010-11-16 Mike Frysinger <vapier@gentoo.org>
5609
5610 * linux-low.c (linux_tracefork_child): Add char* cast to arg.
5611
56122010-10-22 Jie Zhang <jie@codesourcery.com>
5613
5614 * Makefile.in: Add FLAGS_TO_PASS variable.
5615 (install): Remove dependency of install-only and recursively
5616 invoke make for install-only.
5617
56182010-10-04 Doug Evans <dje@google.com>
5619
5620 * Makefile.in (uninstall): Use $(DESTDIR).
5621
56222010-09-24 Pedro Alves <pedro@codesourcery.com>
5623
5624 PR gdb/11842
5625
5626 * linux-x86-low.c (compat_siginfo_from_siginfo)
5627 (siginfo_from_compat_siginfo): Also copy si_pid and si_uid when
5628 si_code is < 0. Check for si_code == SI_TIMER before checking for
5629 si_code < 0.
5630
56312010-09-13 Joel Brobecker <brobecker@adacore.com>
5632
5633 * lynx-i386-low.c: New file.
5634 * configure.srv: Add handling of i[34567]86-*-lynxos* targets.
5635
56362010-09-13 Joel Brobecker <brobecker@adacore.com>
5637
5638 * lynx-low.c (ptrace_request_to_str): Remove handling for
5639 request values that have been removed in LynxOS 5.x.
5640
56412010-09-13 Joel Brobecker <brobecker@adacore.com>
5642
5643 * lynx-low.c, lynx-ppc-loc.c: Include <sys/ptrace.h> instead of
5644 <ptrace.h>
5645
56462010-09-09 Nathan Sidwell <nathan@codesourcery.com>
5647
5648 * configure.ac: Add --enable-inprocess-agent option.
5649 * configure: Rebuilt.
5650
56512010-09-06 Yao Qi <yao@codesourcery.com>
5652
5653 * linux-low.c (linux_kill): Remove unused variable.
5654 (linux_stabilize_threads): Likewise.
5655 * server.c (start_inferior): Likewise.
5656 (queue_stop_reply_callback): Likewise.
5657 * tracepoint.c (do_action_at_tracepoint): Likewise.
5658
56592010-09-06 Yao Qi <yao@codesourcery.com>
5660
5661 * linux-low.c (maybe_move_out_of_jump_pad): Restore current_inferior
5662 on return.
5663
56642010-09-06 Jan Kratochvil <jan.kratochvil@redhat.com>
5665
5666 * target.c (mywait) <TARGET_WAITKIND_EXITED>: Fix to use INTEGER.
5667
56682010-09-06 Pedro Alves <pedro@codesourcery.com>
5669
5670 * Makefile.in (install-only): Replace $IPA_DEPFILES with
5671 "$(IPA_DEPFILES)".
5672
56732010-09-01 Joel Brobecker <brobecker@adacore.com>
5674
5675 * gdbserver/lynx-low.c, gdbserver/lynx-low.h,
5676 gdbserver/lynx-ppc-low.c: New files.
5677 * Makefile.in (lynx_low_h): New variable.
5678 (lynx-low.o, lynx-ppc-low.o): New rules.
5679 * configure.ac: On LynxOS, link with -lnetinet.
5680 * configure.srv: Add handling of powerpc-*-lynxos* targets.
5681 * configure: regenerate.
5682
56832010-09-01 Joel Brobecker <brobecker@adacore.com>
5684
5685 * Makefile.in (vasprintf.o, vsnprintf.o): New rules.
5686 * configure.ac: Add check for vasprintf and vsnprintf.
5687 * configure, config.in: Regenerate.
5688 * server.h (vasprintf, vsnprintf): Add conditional declarations.
5689
56902010-09-01 Joel Brobecker <brobecker@adacore.com>
5691
5692 * gdbreplay.c: Move include of alloca.h up, next to include of
5693 malloc.h.
5694 * server.h: Add include of malloc.h.
5695 * mem-break.c: Remove include of malloc.h.
5696 * server.c, tracepoint.c, utils.c, win32-low.c: Likewise.
5697
56982010-09-01 Joel Brobecker <brobecker@adacore.com>
5699
5700 * Makefile.in (memmem.o): Build with -Wno-error.
5701
57022010-09-01 Joel Brobecker <brobecker@adacore.com>
5703
5704 * utils.c (xsnprintf): Make non-static.
5705 * server.h: Add xsnprintf declaration.
5706 * linux-low.c, nto-low.c, target.c, thread-db.c, tracepoint.c:
5707 replace calls to snprintf by calls to xsnprintf throughout.
5708
57092010-09-01 Joel Brobecker <brobecker@adacore.com>
5710
5711 * configure.ac: Add configure check for alloca.
5712 * configure, config.in: Regenerate.
5713 * server.h: Include alloca.h if it exists.
5714 * gdbreplay.c: Include alloca.h if it exists.
5715
57162010-08-28 Pedro Alves <pedro@codesourcery.com>
5717
5718 * linux-low.c (__SIGRTMIN): Define if not already defined.
5719 (linux_create_inferior): Check for __ANDROID__ rather than
5720 __SIGRTMIN.
5721 (enqueue_one_deferred_signal): Don't requeue non-RT signals that
5722 are already deferred.
5723 (linux_wait_1): Check for __ANDROID__ rather than __SIGRTMIN.
5724 (linux_resume_one_thread): Don't queue a SIGSTOP if the lwp is
5725 stopped and already has a pending signal to report.
5726 (proceed_one_lwp): : Don't queue a SIGSTOP if the lwp already has
5727 a pending signal to report or is moving out of a jump pad.
5728 (linux_init_signals): Check for __ANDROID__ rather than
5729 __SIGRTMIN.
5730
57312010-08-28 Pedro Alves <pedro@codesourcery.com>
5732
5733 * linux-low.c (linux_stabilize_threads): Wrap debug output in a
5734 debug_threads check. Avoid a linear search when not doing debug
5735 output.
5736
57372010-08-27 Pedro Alves <pedro@codesourcery.com>
5738
5739 * event-loop.c (event_handle_func): Adjust to use gdb_fildes_t.
5740 (struct gdb_event) <fd>: Change type to gdb_fildes_t.
5741 (struct file_handler) <fd>: Change type to gdb_fildes_t.
5742 (process_event): Change local fd's type to gdb_fildes_t.
5743 (create_file_handler): Adjust prototype.
5744 (delete_file_handler): Adjust prototype.
5745 (handle_file_event): Adjust prototype. Use pfildes.
5746 (create_file_event): Adjsut prototype.
5747 * remote-utils.c (remote_desc, listen_desc): Change type to
5748 gdb_fildes_t.
5749 * server.h: New gdb_fildes_t typedef.
5750 [USE_WIN32API]: Include winsock2.h.
5751 (delete_file_handler, add_file_handler): Adjust prototypes.
5752 (pfildes): Declare.
5753 * utils.c (pfildes): New.
5754
57552010-08-27 Pedro Alves <pedro@codesourcery.com>
5756
5757 * configure.ac (build_warnings): Add -Wno-char-subscripts.
5758 * configure: Regenerate.
5759
57602010-08-27 Pedro Alves <pedro@codesourcery.com>
5761
5762 * linux-low.c (linux_unprepare_to_access_memory): Rename to ...
5763 (linux_done_accessing_memory): ... this.
5764 (linux_target_ops): Adjust.
5765 * linux-x86-low.c (x86_insert_point, x86_remove_point): Adjust.
5766 * nto-low.c (nto_target_ops): Adjust comment.
5767 * server.c (gdb_read_memory, gdb_write_memory): Adjust.
5768 * spu-low.c (spu_target_ops): Adjust comment.
5769 * target.h (target_ops): Rename unprepare_to_access_memory field
5770 to done_accessing_memory.
5771 (unprepare_to_access_memory): Rename to ...
5772 (done_accessing_memory): ... this.
5773
57742010-08-26 Pedro Alves <pedro@codesourcery.com>
5775
5776 * linux-low.c (linux_prepare_to_access_memory): New.
5777 (linux_unprepare_to_access_memory): New.
5778 (linux_target_ops): Install them.
5779 * server.c (read_memory): Rename to ...
5780 (gdb_read_memory): ... this. Use
5781 prepare_to_access_memory/prepare_to_access_memory.
5782 (write_memory): Rename to ...
5783 (gdb_write_memory): ... this. Use
5784 prepare_to_access_memory/prepare_to_access_memory.
5785 (handle_search_memory_1): Adjust.
5786 (process_serial_event): Adjust.
5787 * target.h (struct target_ops): New fields
5788 prepare_to_access_memory and unprepare_to_access_memory.
5789 (prepare_to_access_memory, unprepare_to_access_memory): New.
5790 * linux-x86-low.c (x86_insert_point, x86_remove_point): Use
5791 prepare_to_access_memory/prepare_to_access_memory.
5792 * nto-low.c (nto_target_ops): Adjust.
5793 * spu-low.c (spu_target_ops): Adjust.
5794 * win32-low.c (win32_target_ops): Adjust.
5795
57962010-08-26 Pedro Alves <pedro@codesourcery.com>
5797
5798 * Makefile.in (WARN_CFLAGS): Get it from configure.
5799 (WERROR_CFLAGS): New.
5800 (INTERNAL_CFLAGS): Add WERROR_CFLAGS.
5801 * configure.ac: Introduce --enable-werror, which adds -Werror to
5802 the compiler command line. Enabled by default. Disable with
5803 --disable-werror. Add -Wdeclaration-after-statement
5804 Wpointer-arith and -Wformat-nonliteral to warning flags.
5805 * configure: Regenerate.
5806
58072010-08-26 Pedro Alves <pedro@codesourcery.com>
5808
5809 * mem-break.c [HAVE_MALLOC_H]: Include malloc.h.
5810
58112010-08-26 Pedro Alves <pedro@codesourcery.com>
5812
5813 * gdbreplay.c (remote_error): New.
5814 (gdbchar): New.
5815 (expect): Use gdbchar. Check for error reading from GDB.
5816 Clarify sync error output.
5817 (play): Check for errors writing to GDB.
5818 * linux-low.c (sigchld_handler): Really ignore `write' errors.
5819 * remote-utils.c (getpkt): Check for errors writing to the remote
5820 descriptor.
5821
58222010-08-25 Pedro Alves <pedro@codesourcery.com>
5823
5824 * linux-low.c (linux_wait_1): Move non-debugging code out of
5825 `debug_threads' control.
5826
58272010-08-25 Pedro Alves <pedro@codesourcery.com>
5828
5829 * linux-low.c (linux_wait_1): Don't set last_status here.
5830 * server.c (push_event, queue_stop_reply_callback): Assert we're
5831 not pushing a TARGET_WAITKIND_IGNORE event.
5832 (start_inferior, start_inferior, attach_inferior, handle_v_cont)
5833 (myresume, handle_target_event): Set the thread's last_resume_kind
5834 and last_status from the target returned status.
5835
58362010-08-25 Pedro Alves <pedro@codesourcery.com>
5837
5838 PR threads/10729
5839
5840 * linux-x86-low.c (update_debug_registers_callback): New.
5841 (i386_dr_low_set_addr): Use it.
5842 (i386_dr_low_get_addr): New.
5843 (i386_dr_low_set_control): Use update_debug_registers_callback.
5844 (i386_dr_low_get_control): New.
5845 (i386_dr_low_get_status): Adjust.
5846 * linux-low.c (linux_stop_lwp): New.
5847 * linux-low.h (linux_stop_lwp): Declare.
5848
5849 * i386-low.c (I386_DR_GET_RW_LEN): Take the dr7 contents as
5850 argument instead of a i386_debug_reg_state.
5851 (I386_DR_WATCH_HIT): Take the dr6 contents as argument instead of
5852 a i386_debug_reg_state.
5853 (i386_insert_aligned_watchpoint): Adjust.
5854 (i386_remove_aligned_watchpoint): Adjust.
5855 (i386_low_stopped_data_address): Read the debug registers from the
5856 inferior instead of from the mirrors.
5857 * i386-low.h (struct i386_debug_reg_state): Extend comment.
5858 (i386_dr_low_get_addr): Declare.
5859 (i386_dr_low_get_control): Declare.
5860 (i386_dr_low_get_status): Change prototype.
5861
5862 * win32-i386-low.c (dr_status_mirror, dr_control_mirror): New globals.
5863 (i386_dr_low_get_addr): New.
5864 (i386_dr_low_get_control): New.
5865 (i386_dr_low_get_status): Adjust prototype. Return
5866 dr_status_mirror.
5867 (i386_initial_stuff): Clear dr_status_mirror and
5868 dr_control_mirror.
5869 (i386_get_thread_context): Adjust.
5870 (i386_set_thread_context): Adjust.
5871 (i386_thread_added): Adjust.
5872
58732010-08-24 Pedro Alves <pedro@codesourcery.com>
5874
5875 * linux-low.h (linux_thread_area): Delete declaration.
5876
58772010-08-11 Thomas Schwinge <thomas@codesourcery.com>
5878
5879 * linux-low.c (linux_wait_1): Correctly return the ptid of the child
5880 after its termination.
5881
58822010-08-09 Pedro Alves <pedro@codesourcery.com>
5883
5884 * linux-low.c (gdb_wants_lwp_stopped): Delete.
5885 (gdb_wants_all_stopped): Delete.
5886 (linux_wait_1): Don't call them.
5887 * server.c (handle_v_cont): Tag all threads as want-stopped.
5888 (gdb_wants_thread_stopped): Fix comments. Tag the thread that
5889 stopped as "client-wants-stopped".
5890
58912010-07-31 Pedro Alves <pedro@codesourcery.com>
5892
5893 * Makefile.in (signals_h): New.
5894 (server_h): Depend on it.
5895 (server.o): Don't depend on $(signals_def).
5896 (signals.o): Depend on $(signals_def).
5897
58982010-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
5899
5900 * Makefile.in (signals_def): New.
5901 (server_h): Append include/gdb/signals.h and signals_def.
5902 (server.o): Append signals_def.
5903
59042010-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
5905
5906 * server.c (handle_target_event): Use target_signal_to_host for
5907 resume_info.sig initialization.
5908 * target.h (struct thread_resume) <sig>: New comment.
5909
59102010-07-20 Ozkan Sezer <sezeroz@gmail.com>
5911
5912 * server.c (handle_query): strcpy() the returned string from paddress()
5913 instead of sprintf().
5914 * utils.c (paddress): Return phex_nz().
5915
59162010-07-07 Joel Brobecker <brobecker@adacore.com>
5917
5918 * server.c (handle_v_cont): Call mourn_inferior if process
5919 just exited.
5920 (myresume): Likewise.
5921
59222010-07-01 Pedro Alves <pedro@codesourcery.com>
5923
5924 Static tracepoints, and integration with UST.
5925
5926 * configure.ac: Handle --with-ust. substitute ustlibs and ustinc.
5927 * mem-break.c (uninsert_all_breakpoints)
5928 (reinsert_all_breakpoints): New.
5929 * mem-break.h (reinsert_all_breakpoints, uninsert_all_breakpoints):
5930 * tracepoint.c (ust_loaded, helper_thread_id, cmd_buf): New.
5931 (gdb_agent_ust_loaded, helper_thread_id)
5932 (gdb_agent_helper_thread_id): New macros.
5933 (struct ipa_sym_addresses): Add addr_ust_loaded,
5934 addr_helper_thread_id, addr_cmd_buf.
5935 (symbol_list): Add ust_loaded, helper_thread_id, cmd_buf.
5936 (in_process_agent_loaded_ust): New.
5937 (write_e_ust_not_loaded): New.
5938 (maybe_write_ipa_ust_not_loaded): New.
5939 (struct collect_static_trace_data_action): New.
5940 (enum tracepoint_type) <static_tracepoint>: New.
5941 (struct tracepoint) <handle>: Mention static tracepoints.
5942 (struct static_tracepoint_ctx): New.
5943 (CMD_BUF_SIZE): New.
5944 (add_tracepoint_action): Handle static tracepoint actions.
5945 (unprobe_marker_at): New.
5946 (clear_installed_tracepoints): Handle static tracepoints.
5947 (cmd_qtdp): Handle static tracepoints.
5948 (probe_marker_at): New.
5949 (cmd_qtstart): Handle static tracepoints.
5950 (response_tracepoint): Handle static tracepoints.
5951 (cmd_qtfstm, cmd_qtsstm, cmd_qtstmat): New.
5952 (handle_tracepoint_query): Handle qTfSTM, qTsSTM and qTSTMat.
5953 (get_context_regcache): Handle static tracepoints.
5954 (do_action_at_tracepoint): Handle static tracepoint actions.
5955 (traceframe_find_block_type): Handle static trace data blocks.
5956 (traceframe_read_sdata): New.
5957 (download_tracepoints): Download static tracepoint actions.
5958 [HAVE_UST] Include ust/ust.h, dlfcn.h, sys/socket.h, and sys/un.h.
5959 (GDB_PROBE_NAME): New.
5960 (ust_ops): New.
5961 (GET_UST_SYM): New.
5962 (USTF): New.
5963 (dlsym_ust): New.
5964 (ust_marker_to_static_tracepoint): New.
5965 (gdb_probe): New.
5966 (collect_ust_data_at_tracepoint): New.
5967 (gdb_ust_probe): New.
5968 (UNIX_PATH_MAX, SOCK_DIR): New.
5969 (gdb_ust_connect_sync_socket): New.
5970 (resume_thread, stop_thread): New.
5971 (run_inferior_command): New.
5972 (init_named_socket): New.
5973 (gdb_ust_socket_init): New.
5974 (cstr_to_hexstr): New.
5975 (next_st): New.
5976 (first_marker, next_marker): New.
5977 (response_ust_marker): New.
5978 (cmd_qtfstm, cmd_qtsstm): New.
5979 (unprobe_marker_at, probe_marker_at): New.
5980 (cmd_qtstmat, gdb_ust_thread): New.
5981 (gdb_ust_init): New.
5982 (initialize_tracepoint_ftlib): Call gdb_ust_init.
5983 * linux-amd64-ipa.c [HAVE_UST]: Include ust/processor.h
5984 (ST_REGENTRY): New.
5985 (x86_64_st_collect_regmap): New.
5986 (X86_64_NUM_ST_COLLECT_GREGS): New.
5987 (AMD64_RIP_REGNUM): New.
5988 (supply_static_tracepoint_registers): New.
5989 * linux-i386-ipa.c [HAVE_UST]: Include ust/processor.h
5990 (ST_REGENTRY): New.
5991 (i386_st_collect_regmap): New.
5992 (i386_NUM_ST_COLLECT_GREGS): New.
5993 (supply_static_tracepoint_registers): New.
5994 * server.c (handle_query): Handle qXfer:statictrace:read.
5995 <qSupported>: Report support for StaticTracepoints, and
5996 qXfer:statictrace:read features.
5997 * server.h (traceframe_read_sdata)
5998 (supply_static_tracepoint_registers): Declare.
5999 * remote-utils.c (convert_int_to_ascii, hexchars, ishex, tohex)
6000 (unpack_varlen_hex): Include in IPA build.
6001 * Makefile.in (ustlibs, ustinc): New.
6002 (IPA_OBJS): Add remote-utils-ipa.o.
6003 ($(IPA_LIB)): Link -ldl and -lpthread.
6004 (UST_CFLAGS): New.
6005 (IPAGENT_CFLAGS): Add UST_CFLAGS.
6006 * config.in, configure: Regenerate.
6007
60082010-06-20 Ian Lance Taylor <iant@google.com>
6009 Pedro Alves <pedro@codesourcery.com>
6010
6011 * linux-x86-low.c (always_true): Delete.
6012 (EMIT_ASM, EMIT_ASM32): Use an uncondition asm jmp instead of
6013 trying to fool the compiler with always_true.
6014
60152010-06-20 Pedro Alves <pedro@codesourcery.com>
6016
6017 * tracepoint.c (condition_true_at_tracepoint): Don't run compiled
6018 conditions in gdbserver.
6019
60202010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
6021
6022 * spu-low.c (spu_read_memory): Wrap around local store limit.
6023 (spu_write_memory): Likewise.
6024
60252010-06-15 Pedro Alves <pedro@codesourcery.com>
6026
6027 * linux-x86-low.c (amd64_emit_const, amd64_emit_void_call_2)
6028 (i386_emit_const, i386_emit_void_call_2): Replace int64_t uses with
6029 LONGEST uses.
6030 * server.h (struct emit_ops): Replace int64_t uses with LONGEST
6031 uses.
6032 * tracepoint.c (emit_const, emit_void_call_2): Replace int64_t
6033 uses with LONGEST uses.
6034
60352010-06-14 Stan Shebs <stan@codesourcery.com>
6036 Pedro Alves <pedro@codesourcery.com>
6037
6038 Bytecode compiler.
6039
6040 * linux-x86-low.c: Include limits.h.
6041 (add_insns): New.
6042 (always_true): New.
6043 (EMIT_ASM): New.
6044 (EMIT_ASM32): New.
6045 (amd64_emit_prologue, amd64_emit_epilogue, amd64_emit_add)
6046 (amd64_emit_sub, amd64_emit_mul, amd64_emit_lsh)
6047 (amd64_emit_rsh_signed, amd64_emit_rsh_unsigned, amd64_emit_ext,
6048 (amd64_emit_log_not, amd64_emit_bit_and, amd64_emit_bit_or)
6049 (amd64_emit_bit_xor, amd64_emit_bit_not, amd64_emit_equal,
6050 (amd64_emit_less_signed, amd64_emit_less_unsigned, amd64_emit_ref,
6051 (amd64_emit_if_goto, amd64_emit_goto, amd64_write_goto_address)
6052 (amd64_emit_const, amd64_emit_call, amd64_emit_reg)
6053 (amd64_emit_pop, amd64_emit_stack_flush, amd64_emit_zero_ext)
6054 (amd64_emit_swap, amd64_emit_stack_adjust, amd64_emit_int_call_1)
6055 (amd64_emit_void_call_2): New.
6056 (amd64_emit_ops): New.
6057 (i386_emit_prologue, i386_emit_epilogue, i386_emit_add)
6058 (i386_emit_sub,i386_emit_mul, i386_emit_lsh, i386_emit_rsh_signed)
6059 (i386_emit_rsh_unsigned, i386_emit_ext, i386_emit_log_not)
6060 (i386_emit_bit_and, i386_emit_bit_or, i386_emit_bit_xor)
6061 (i386_emit_bit_not, i386_emit_equal, i386_emit_less_signed)
6062 (i386_emit_less_unsigned, i386_emit_ref, i386_emit_if_goto)
6063 (i386_emit_goto, i386_write_goto_address, i386_emit_const)
6064 (i386_emit_call, i386_emit_reg, i386_emit_pop)
6065 (i386_emit_stack_flush, i386_emit_zero_ext, i386_emit_swap)
6066 (i386_emit_stack_adjust, i386_emit_int_call_1)
6067 (i386_emit_void_call_2): New.
6068 (i386_emit_ops): New.
6069 (x86_emit_ops): New.
6070 (the_low_target): Install x86_emit_ops.
6071 * server.h (struct emit_ops): New.
6072 (get_raw_reg_func_addr): Declare.
6073 (current_insn_ptr, emit_error): Declare.
6074 * tracepoint.c (get_raw_reg, get_trace_state_variable_value)
6075 (set_trace_state_variable_value): New defines.
6076 (struct ipa_sym_addresses): New fields addr_get_raw_reg,
6077 addr_get_trace_state_variable_value and
6078 addr_set_trace_state_variable_value.
6079 (symbol_list): New fields for get_raw_reg,
6080 get_trace_state_variable_value and set_trace_state_variable_value.
6081 (condfn): New typedef.
6082 (struct tracepoint): New field `compiled_cond'.
6083 (do_action_at_tracepoint): Clear compiled_cond.
6084 (get_trace_state_variable_value, set_trace_state_variable_value):
6085 Export in the IPA.
6086 (condition_true_at_tracepoint): If there's a compiled condition,
6087 run that.
6088 (current_insn_ptr, emit_error): New globals.
6089 (struct bytecode_address): New.
6090 (get_raw_reg_func_addr): New.
6091 (emit_prologue, emit_epilogue, emit_add, emit_sub, emit_mul)
6092 (emit_lsh, emit_rsh_signed, emit_rsh_unsigned, emit_ext)
6093 (emit_log_not, emit_bit_and, emit_bit_or, emit_bit_xor)
6094 (emit_bit_not, emit_equal, emit_less_signed, emit_less_unsigned)
6095 (emit_ref, emit_if_goto, emit_goto, write_goto_address, emit_const)
6096 (emit_reg, emit_pop, emit_stack_flush, emit_zero_ext, emit_swap)
6097 (emit_stack_adjust, emit_int_call_1, emit_void_call_2): New.
6098 (compile_tracepoint_condition, compile_bytecodes): New.
6099 * target.h (emit_ops): Forward declare.
6100 (struct target_ops): New field emit_ops.
6101 (target_emit_ops): New.
6102 * linux-amd64-ipa.c (gdb_agent_get_raw_reg): New.
6103 * linux-i386-ipa.c (gdb_agent_get_raw_reg): New.
6104 * linux-low.c (linux_emit_ops): New.
6105 (linux_target_ops): Install it.
6106 * linux-low.h (struct linux_target_ops): New field emit_ops.
6107
61082010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
6109
6110 * linux-ppc-low.c (ppc_arch_setup): Use private regcache to test MSR.
6111 * linux-s390-low.c (ppc_arch_setup): Use private regcache to test PSW.
6112
61132010-06-01 Pedro Alves <pedro@codesourcery.com>
6114 Stan Shebs <stan@codesourcery.com>
6115
6116 * Makefile.in (IPA_DEPFILES, extra_libraries): New.
6117 (all): Depend on $(extra_libraries).
6118 (install-only): Install the IPA.
6119 (IPA_OBJS, IPA_LIB): New.
6120 (clean): Remove the IPA lib.
6121 (IPAGENT_CFLAGS): New.
6122 (tracepoint-ipa.o, utils-ipa.o, remote-utils-ipa.o)
6123 (regcache-ipa.o, i386-linux-ipa.o, linux-i386-ipa.o)
6124 (linux-amd64-ipa.o, amd64-linux-ipa.o): New rules.
6125 * linux-amd64-ipa.c, linux-i386-ipa.c: New files.
6126 * configure.ac: Check for atomic builtins support in the compiler.
6127 (IPA_DEPFILES, extra_libraries): Define.
6128 * configure.srv (ipa_obj): Add description.
6129 (ipa_i386_linux_regobj, ipa_amd64_linux_regobj): Define.
6130 (i[34567]86-*-linux*): Set ipa_obj.
6131 (x86_64-*-linux*): Set ipa_obj.
6132 * linux-low.c (stabilizing_threads): New.
6133 (supports_fast_tracepoints): New.
6134 (linux_detach): Stabilize threads before detaching.
6135 (handle_tracepoints): Handle internal tracing breakpoints. Assert
6136 the lwp is either not stabilizing, or is moving out of a jump pad.
6137 (linux_fast_tracepoint_collecting): New.
6138 (maybe_move_out_of_jump_pad): New.
6139 (enqueue_one_deferred_signal): New.
6140 (dequeue_one_deferred_signal): New.
6141 (linux_wait_for_event_1): If moving out of a jump pad, defer
6142 pending signals to later.
6143 (linux_stabilize_threads): New.
6144 (linux_wait_1): Check if threads need moving out of jump pads, and
6145 do it if so.
6146 (stuck_in_jump_pad_callback): New.
6147 (move_out_of_jump_pad_callback): New.
6148 (lwp_running): New.
6149 (linux_resume_one_lwp): Handle moving out of jump pads.
6150 (linux_set_resume_request): Dequeue deferred signals.
6151 (need_step_over_p): Also step over fast tracepoint jumps.
6152 (start_step_over): Also uninsert fast tracepoint jumps.
6153 (finish_step_over): Also reinsert fast tracepoint jumps.
6154 (linux_install_fast_tracepoint_jump): New.
6155 (linux_target_ops): Install linux_stabilize_threads and
6156 linux_install_fast_tracepoint_jump_pad.
6157 * linux-low.h (linux_target_ops) <get_thread_area,
6158 install_fast_tracepoint_jump_pad>: New fields.
6159 (struct lwp_info) <collecting_fast_tracepoint,
6160 pending_signals_to_report, exit_jump_pad_bkpt>: New fields.
6161 (linux_get_thread_area): Declare.
6162 * linux-x86-low.c (jump_insn): New.
6163 (x86_get_thread_area): New.
6164 (append_insns): New.
6165 (push_opcode): New.
6166 (amd64_install_fast_tracepoint_jump_pad): New.
6167 (i386_install_fast_tracepoint_jump_pad): New.
6168 (x86_install_fast_tracepoint_jump_pad): New.
6169 (the_low_target): Install x86_get_thread_area and
6170 x86_install_fast_tracepoint_jump_pad.
6171 * mem-break.c (set_raw_breakpoint_at): Use read_inferior_memory.
6172 (struct fast_tracepoint_jump): New.
6173 (fast_tracepoint_jump_insn): New.
6174 (fast_tracepoint_jump_shadow): New.
6175 (find_fast_tracepoint_jump_at): New.
6176 (fast_tracepoint_jump_here): New.
6177 (delete_fast_tracepoint_jump): New.
6178 (set_fast_tracepoint_jump): New.
6179 (uninsert_fast_tracepoint_jumps_at): New.
6180 (reinsert_fast_tracepoint_jumps_at): New.
6181 (set_breakpoint_at): Use write_inferior_memory.
6182 (uninsert_raw_breakpoint): Use write_inferior_memory.
6183 (check_mem_read): Mask out fast tracepoint jumps.
6184 (check_mem_write): Mask out fast tracepoint jumps.
6185 * mem-break.h (struct fast_tracepoint_jump): Forward declare.
6186 (set_fast_tracepoint_jump): Declare.
6187 (delete_fast_tracepoint_jump)
6188 (fast_tracepoint_jump_here, uninsert_fast_tracepoint_jumps_at)
6189 (reinsert_fast_tracepoint_jumps_at): Declare.
6190 * regcache.c: Don't compile many functions when building the
6191 in-process agent library.
6192 (init_register_cache) [IN_PROCESS_AGENT]: Don't allow allocating
6193 the register buffer in the heap.
6194 (free_register_cache): If the register buffer isn't owned by the
6195 regcache, don't free it.
6196 (set_register_cache) [IN_PROCESS_AGENT]: Don't re-alocate
6197 pre-existing register caches.
6198 * remote-utils.c (convert_int_to_ascii): Constify `from' parameter
6199 type.
6200 (convert_ascii_to_int): : Constify `from' parameter type.
6201 (decode_M_packet, decode_X_packet): Replace the `to' parameter by
6202 a `to_p' pointer to pointer parameter. If TO_P is NULL, malloc
6203 the needed buffer in-place.
6204 (relocate_instruction): New.
6205 * server.c (handle_query) <qSymbols>: If the target supports
6206 tracepoints, give it a chance of looking up symbols. Report
6207 support for fast tracepoints.
6208 (handle_status): Stabilize threads.
6209 (process_serial_event): Adjust.
6210 * server.h (struct fast_tracepoint_jump): Forward declare.
6211 (struct process_info) <fast_tracepoint_jumps>: New field.
6212 (convert_ascii_to_int, convert_int_to_ascii): Adjust.
6213 (decode_X_packet, decode_M_packet): Adjust.
6214 (relocate_instruction): Declare.
6215 (in_process_agent_loaded): Declare.
6216 (tracepoint_look_up_symbols): Declare.
6217 (struct fast_tpoint_collect_status): Declare.
6218 (fast_tracepoint_collecting): Declare.
6219 (force_unlock_trace_buffer): Declare.
6220 (handle_tracepoint_bkpts): Declare.
6221 (initialize_low_tracepoint)
6222 (supply_fast_tracepoint_registers) [IN_PROCESS_AGENT]: Declare.
6223 * target.h (struct target_ops) <stabilize_threads,
6224 install_fast_tracepoint_jump_pad>: New fields.
6225 (stabilize_threads, install_fast_tracepoint_jump_pad): New.
6226 * tracepoint.c [HAVE_MALLOC_H]: Include malloc.h.
6227 [HAVE_STDINT_H]: Include stdint.h.
6228 (trace_debug_1): Rename to ...
6229 (trace_vdebug): ... this.
6230 (trace_debug): Rename to ...
6231 (trace_debug_1): ... this. Add `level' parameter.
6232 (trace_debug): New.
6233 (ATTR_USED, ATTR_NOINLINE): New.
6234 (IP_AGENT_EXPORT): New.
6235 (gdb_tp_heap_buffer, gdb_jump_pad_buffer, gdb_jump_pad_buffer_end)
6236 (collecting, gdb_collect, stop_tracing, flush_trace_buffer)
6237 (about_to_request_buffer_space, trace_buffer_is_full)
6238 (stopping_tracepoint, expr_eval_result, error_tracepoint)
6239 (tracepoints, tracing, trace_buffer_ctrl, trace_buffer_ctrl_curr)
6240 (trace_buffer_lo, trace_buffer_hi, traceframe_read_count)
6241 (traceframe_write_count, traceframes_created)
6242 (trace_state_variables)
6243 New renaming defines.
6244 (struct ipa_sym_addresses): New.
6245 (STRINGIZE_1, STRINGIZE, IPA_SYM): New.
6246 (symbol_list): New.
6247 (ipa_sym_addrs): New.
6248 (all_tracepoint_symbols_looked_up): New.
6249 (in_process_agent_loaded): New.
6250 (write_e_ipa_not_loaded): New.
6251 (maybe_write_ipa_not_loaded): New.
6252 (tracepoint_look_up_symbols): New.
6253 (debug_threads) [IN_PROCESS_AGENT]: New.
6254 (read_inferior_memory) [IN_PROCESS_AGENT]: New.
6255 (UNKNOWN_SIDE_EFFECTS): New.
6256 (stop_tracing): New.
6257 (flush_trace_buffer): New.
6258 (stop_tracing_bkpt): New.
6259 (flush_trace_buffer_bkpt): New.
6260 (read_inferior_integer): New.
6261 (read_inferior_uinteger): New.
6262 (read_inferior_data_pointer): New.
6263 (write_inferior_data_pointer): New.
6264 (write_inferior_integer): New.
6265 (write_inferior_uinteger): New.
6266 (struct collect_static_trace_data_action): Delete.
6267 (enum tracepoint_type): New.
6268 (struct tracepoint) <type>: New field `type'.
6269 <actions_str, step_actions, step_actions_str>: Only include in
6270 GDBserver.
6271 <orig_size, obj_addr_on_target, adjusted_insn_addr>
6272 <adjusted_insn_addr_end, jump_pad, jump_pad_end>: New fields.
6273 (tracepoints): Use IP_AGENT_EXPORT.
6274 (last_tracepoint): Don't include in the IPA.
6275 (stopping_tracepoint): Use IP_AGENT_EXPORT.
6276 (trace_buffer_is_full): Use IP_AGENT_EXPORT.
6277 (alloced_trace_state_variables): New.
6278 (trace_state_variables): Use IP_AGENT_EXPORT.
6279 (traceframe_t): Delete unused variable.
6280 (circular_trace_buffer): Don't include in the IPA.
6281 (trace_buffer_start): Delete.
6282 (struct trace_buffer_control): New.
6283 (trace_buffer_free): Delete.
6284 (struct ipa_trace_buffer_control): New.
6285 (GDBSERVER_FLUSH_COUNT_MASK, GDBSERVER_FLUSH_COUNT_MASK_PREV)
6286 (GDBSERVER_FLUSH_COUNT_MASK_CURR, GDBSERVER_UPDATED_FLUSH_COUNT_BIT):
6287 New.
6288 (trace_buffer_ctrl): New.
6289 (TRACE_BUFFER_CTRL_CURR): New.
6290 (trace_buffer_start, trace_buffer_free, trace_buffer_end_free):
6291 Reimplement as macros.
6292 (trace_buffer_wrap): Delete.
6293 (traceframe_write_count, traceframe_read_count)
6294 (traceframes_created, tracing): Use IP_AGENT_EXPORT.
6295 (struct tracepoint_hit_ctx) <type>: New field.
6296 (struct fast_tracepoint_ctx): New.
6297 (memory_barrier): New.
6298 (cmpxchg): New.
6299 (record_tracepoint_error): Update atomically in the IPA.
6300 (clear_inferior_trace_buffer): New.
6301 (about_to_request_buffer_space): New.
6302 (trace_buffer_alloc): Handle GDBserver and inferior simulatenous
6303 updating the same buffer.
6304 (add_tracepoint): Default the tracepoint's type to trap
6305 tracepoint, and orig_size to -1.
6306 (get_trace_state_variable) [IN_PROCESS_AGENT]: Handle allocated
6307 internal variables.
6308 (create_trace_state_variable): New parameter `gdb'. Handle it.
6309 (clear_installed_tracepoints): Clear fast tracepoint jumps.
6310 (cmd_qtdp): Handle fast tracepoints.
6311 (cmd_qtdv): Adjust.
6312 (max_jump_pad_size): New.
6313 (gdb_jump_pad_head): New.
6314 (get_jump_space_head): New.
6315 (claim_jump_space): New.
6316 (sort_tracepoints): New.
6317 (MAX_JUMP_SIZE): New.
6318 (cmd_qtstart): Handle fast tracepoints. Sync tracepoints with the
6319 IPA.
6320 (stop_tracing) [IN_PROCESS_AGENT]: Don't include the tdisconnected
6321 support. Upload fast traceframes, and delete internal IPA
6322 breakpoints.
6323 (stop_tracing_handler): New.
6324 (flush_trace_buffer_handler): New.
6325 (cmd_qtstop): Upload fast tracepoints.
6326 (response_tracepoint): Handle fast tracepoints.
6327 (tracepoint_finished_step): Upload fast traceframes. Set the
6328 tracepoint hit context's tracepoint type.
6329 (handle_tracepoint_bkpts): New.
6330 (tracepoint_was_hit): Set the tracepoint hit context's tracepoint
6331 type. Add comment about fast tracepoints.
6332 (collect_data_at_tracepoint) [IN_PROCESS_AGENT]: Don't access the
6333 non-existing action_str field.
6334 (get_context_regcache): Handle fast tracepoints.
6335 (do_action_at_tracepoint) [!IN_PROCESS_AGENT]: Don't write the PC
6336 to the regcache.
6337 (fast_tracepoint_from_jump_pad_address): New.
6338 (fast_tracepoint_from_ipa_tpoint_address): New.
6339 (collecting_t): New.
6340 (force_unlock_trace_buffer): New.
6341 (fast_tracepoint_collecting): New.
6342 (collecting): New.
6343 (gdb_collect): New.
6344 (write_inferior_data_ptr): New.
6345 (target_tp_heap): New.
6346 (target_malloc): New.
6347 (download_agent_expr): New.
6348 (UALIGN): New.
6349 (download_tracepoints): New.
6350 (download_trace_state_variables): New.
6351 (upload_fast_traceframes): New.
6352 (IPA_FIRST_TRACEFRAME): New.
6353 (IPA_NEXT_TRACEFRAME_1): New.
6354 (IPA_NEXT_TRACEFRAME): New.
6355 [IN_PROCESS_AGENT]: Include sys/mman.h and fcntl.h.
6356 [IN_PROCESS_AGENT] (gdb_tp_heap_buffer, gdb_jump_pad_buffer)
6357 (gdb_jump_pad_buffer_end): New.
6358 [IN_PROCESS_AGENT] (initialize_tracepoint_ftlib): New.
6359 (initialize_tracepoint): Adjust.
6360 [IN_PROCESS_AGENT]: Allocate the IPA heap, and jump pad scratch
6361 buffer. Initialize the low module.
6362 * utils.c (PREFIX, TOOLNAME): New.
6363 (malloc_failure): Use PREFIX.
6364 (error): In the IPA, an error causes an exit.
6365 (fatal, warning): Use PREFIX.
6366 (internal_error): Use TOOLNAME.
6367 (NUMCELLS): Increase to 10.
6368 * configure, config.in: Regenerate.
6369
63702010-06-01 Pedro Alves <pedro@codesourcery.com>
6371
6372 * server.c (handle_query) <qSupported>: Do two passes over the
6373 qSupported string to avoid nesting strtok.
6374
63752010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
6376
6377 * Makefile.in (SFILES): Add $(srcdir)/proc-service.list.
6378 (CDEPS): New.
6379 * configure.ac (RDYNAMIC): New AC_MSG_CHECKING wrapping. Test also
6380 -Wl,--dynamic-list.
6381 * configure: Regenerate.
6382 * proc-service.list: New.
6383
63842010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
6385
6386 * linux-low.c (linux_core_of_thread): Fix crash on invalid CONTENT.
6387 New comment.
6388
63892010-05-26 Ozkan Sezer <sezeroz@gmail.com>
6390
6391 * gdbreplay.c (remote_open): Check error return from socket() call by
6392 its equality to -1 not by it being negative.
6393 * remote-utils.c (remote_open): Likewise.
6394
63952010-05-23 Pedro Alves <pedro@codesourcery.com>
6396
6397 * config.h: Regenerate.
6398
63992010-05-19 Maxim Kuvyrkov <maxim@codesourcery.com>
6400
6401 * linux-m68k-low.c (ps_get_thread_area): Don't define if kernel
6402 doesn't provide PTRACE_GET_THREAD_AREA.
6403
64042010-05-19 Maxim Kuvyrkov <maxim@codesourcery.com>
6405
6406 * linux-m68k-low.c: Include <asm/ptrace.h>
6407 (ps_get_thread_area): Implement.
6408
64092010-05-03 Doug Evans <dje@google.com>
6410
6411 * event-loop.c (struct callback_event): New struct.
6412 (callback_list): New global.
6413 (append_callback_event, delete_callback_event): New functions.
6414 (process_callback): New function.
6415 (start_event_loop): Call it.
6416 * remote-utils.c (NOT_SCHEDULED): Define.
6417 (readchar_buf, readchar_bufcnt, readchar_bufp): New static globals,
6418 moved out of readchar.
6419 (readchar): Rewrite. Call reschedule before returning.
6420 (reset_readchar): New function.
6421 (remote_close): Call it.
6422 (process_remaining, reschedule): New functions.
6423 * server.h (callback_handler_func): New typedef.
6424 (append_callback_event, delete_callback_event): Declare.
6425
64262010-05-03 Pedro Alves <pedro@codesourcery.com>
6427
6428 * proc-service.c (ps_pglobal_lookup): Use
6429 thread_db_look_up_one_symbol.
6430 * remote-utils.c (look_up_one_symbol): Add new `may_ask_gdb'
6431 parameter. Use it instead of all_symbols_looked_up.
6432 * server.h (struct process_info) <all_symbols_looked_up>: Delete
6433 field.
6434 (all_symbols_looked_up): Don't declare.
6435 (look_up_one_symbol): Add new `may_ask_gdb' parameter.
6436 * thread-db.c (struct thread_db) <all_symbols_looked_up>: New
6437 field.
6438 (thread_db_look_up_symbols): Adjust call to look_up_one_symbol.
6439 Set all_symbols_looked_up here.
6440 (thread_db_look_up_one_symbol): New.
6441 (thread_db_get_tls_address): Adjust.
6442 (thread_db_load_search, try_thread_db_load_1): Always allocate the
6443 thread_db object on the heap, and tentatively set it in the
6444 process structure.
6445 (thread_db_init): Don't set all_symbols_looked_up here.
6446 * linux-low.h (thread_db_look_up_one_symbol): Declare.
6447
64482010-05-03 Pedro Alves <pedro@codesourcery.com>
6449
6450 * linux-low.c (linux_kill, linux_detach): Adjust.
6451 (status_pending_p_callback): Remove redundant statement. Check
6452 for !TARGET_WAITIKIND_IGNORE, instead of
6453 TARGET_WAITKIND_STOPPED.
6454 (handle_tracepoints): Make sure LWP is locked. Adjust.
6455 (linux_wait_for_event_1): Adjust.
6456 (linux_cancel_breakpoints): New.
6457 (unsuspend_one_lwp): New.
6458 (unsuspend_all_lwps): New.
6459 (linux_wait_1): If finishing a step-over, unsuspend all lwps.
6460 (send_sigstop_callback): Change return type to int, add new
6461 `except' parameter and handle it.
6462 (suspend_and_send_sigstop_callback): New.
6463 (stop_all_lwps): Add new `suspend' and `expect' parameters, and
6464 pass them down. If SUSPEND, also increment the lwp's suspend
6465 count.
6466 (linux_resume_one_lwp): Add notice about resuming a suspended LWP.
6467 (need_step_over_p): Don't consider suspended LWPs.
6468 (start_step_over): Adjust.
6469 (proceed_one_lwp): Change return type to int, add new `except'
6470 parameter and handle it.
6471 (unsuspend_and_proceed_one_lwp): New.
6472 (proceed_all_lwps): Use find_inferior instead of
6473 for_each_inferior.
6474 (unstop_all_lwps): Add `unsuspend' parameter. If UNSUSPEND, them
6475 also decrement the suspend count of LWPs. Pass `except' down,
6476 instead of hacking its suspend count.
6477 (linux_pause_all): Add `freeze' parameter. Adjust.
6478 (linux_unpause_all): New.
6479 (linux_target_ops): Install linux_unpause_all.
6480 * server.c (handle_status): Adjust.
6481 * target.h (struct target_ops): New fields `unpause_all' and
6482 `cancel_breakpoints'. Add new parameter to `pause_all'.
6483 (pause_all): Add new `freeze' parameter.
6484 (unpause_all): New.
6485 (cancel_breakpoints): New.
6486 * tracepoint.c (clear_installed_tracepoints): Pause threads, and
6487 cancel breakpoints.
6488 (cmd_qtstart): Pause threads.
6489 (stop_tracing): Pause threads, and cancel breakpoints.
6490 * win32-low.c (win32_target_ops): Adjust.
6491
64922010-05-03 Pedro Alves <pedro@codesourcery.com>
6493
6494 * linux-low.c (linux_wait_for_event_1): Move passing the signal to
6495 the inferior right away from here...
6496 (linux_wait_1): ... to here, and adjust to check the thread's
6497 last_resume_kind instead of the lwp's step or stop_expected flags.
6498
64992010-05-02 Pedro Alves <pedro@codesourcery.com>
6500
6501 * README: Use consistent `GDB' and `GDBserver' spellings.
6502
65032010-05-02 Pedro Alves <pedro@codesourcery.com>
6504
6505 * linux-low.c (linux_kill_one_lwp): Assume the lwp is stopped.
6506 (linux_kill): Stop all lwps here. Don't delete the main lwp here.
6507 (linux_detach_one_lwp): Assume the lwp is stopped.
6508 (any_thread_of): Delete.
6509 (linux_detach): Stop all lwps here. Don't blindly delete all
6510 breakpoints.
6511 (delete_lwp_callback): New.
6512 (linux_mourn): Delete all lwps of the process that is gone.
6513 (linux_wait_1): Don't delete the last lwp of the process here.
6514 * mem-break.h (mark_breakpoints_out): Declare.
6515 * mem-break.c (mark_breakpoints_out): New.
6516 (free_all_breakpoints): Use it.
6517 * server.c (handle_target_event): If the process is gone, mark
6518 breakpoints out.
6519 * thread-db.c (struct thread_db) <create_bp>: New field.
6520 (thread_db_enable_reporting): Fix prototype. Store a thread event
6521 breakpoint reference in the thread_db struct.
6522 (thread_db_load_search): Clear the thread_db object.
6523 (try_thread_db_load_1): Ditto.
6524 (switch_to_process): New.
6525 (disable_thread_event_reporting): Use it.
6526 (remove_thread_event_breakpoints): New.
6527 (thread_db_detach, thread_db_mourn): Use it.
6528
65292010-05-01 Pedro Alves <pedro@codesourcery.com>
6530
6531 * linux-low.c (linux_enable_event_reporting): New.
6532 (linux_wait_for_event_1, handle_extended_wait): Use it.
6533
65342010-04-30 Pedro Alves <pedro@codesourcery.com>
6535
6536 * linux-low.c (linux_kill_one_lwp, linux_kill)
6537 (linux_detach_one_lwp): Adjust to send_sigstop interface change.
6538 (send_sigstop): Take an lwp_info as parameter instead. Queue a
6539 SIGSTOP even if the LWP is stopped.
6540 (send_sigstop_callback): New.
6541 (stop_all_lwps): Use send_sigstop_callback instead.
6542 (linux_resume_one_thread): Adjust.
6543 (proceed_one_lwp): Still proceed an LWP that the client has
6544 requested to stop, if we haven't reported it as stopped yet. Make
6545 sure that LWPs the client want stopped, have a pending SIGSTOP.
6546
65472010-04-26 Doug Evans <dje@google.com>
6548
6549 * server.c (handle_general_set): Make static.
6550
6551 * remote-utils.c (putpkt_binary_1): Call readchar instead of read.
6552 Print received char after testing for error/eof instead of before.
6553 (input_interrupt): Tweak comment.
6554
65552010-04-23 Doug Evans <dje@google.com>
6556
6557 * server.c (start_inferior): Print inferior argv if --debug.
6558
65592010-04-21 Aleksandar Ristovski <aristovski@qnx.com>
6560
6561 * Makefile.in (nto_low_h nto-low.o nto-x86-low.o): New dependency lists.
6562 * nto-x86-low.c: Include server.h
6563
65642010-04-20 Pierre Muller <muller@ics.u-strasbg.fr>
6565
6566 * win32-i386-low.c: Use __x86_64__ macro instead of __x86_64 to
6567 be consistent with other sources of this directory.
6568 (init_registers_amd64): Correct name of source file of this function
6569 in the comment.
6570
65712010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
6572
6573 * configure.srv (x86_64-*-mingw*): New configuration for Windows
6574 64-bit executables.
6575
65762010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
6577
6578 * win32-i386-low.c: Add 64-bit support.
6579 (CONTEXT_EXTENDED_REGISTERS): Set macro to zero if not exisiting.
6580 (init_registers_amd64): Declare.
6581 (mappings): Add 64-bit version of array.
6582 (init_windows_x86): New function.
6583 (the_low_target): Change init_arch field to init_windows_x86.
6584
65852010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
6586
6587 * win32-low.c: Adapt to support also 64-bit architecture.
6588 (child_xfer_memory): Use uintptr_t type for local variable `addr'.
6589 (get_image_name): Use SIZE_T type for local variable `done'.
6590 (psapi_get_dll_name): Use LPVOID type for parameter `BaseAddress'.
6591 (toolhelp_get_dll_name): Idem.
6592 (handle_load_dll): Use CORE_ADDR type for local variable `load_addr'.
6593 Use uintptr_t typecast to avoid warning.
6594 (handle_unload_dll): Use uintptr_t typecast to avoid warning.
6595 (handle_exception): Use phex_nz to avoid warning.
6596 (win32_wait): Remove unused local variable `process'.
6597
65982010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
6599
6600 * configure.srv (srv_amd64_regobj): Replace `x86-64-avx.o' by
6601 `amd64-avx.o'.
6602
66032010-04-17 Pierre Muller <muller@ics.u-strasbg.fr>
6604
6605 * configure.ac: Use `ws2_32' library for srv_mingw.
6606 * configure: Regenerate.
6607 * gdbreplay.c: Include winsock2.h instead of winsock.h.
6608 * remote-utils.c: Likewise.
6609
66102010-04-17 H.J. Lu <hongjiu.lu@intel.com>
6611
6612 * linux-x86-low.c (xmltarget_amd64_linux_no_xml): Define only
6613 if __x86_64__ is defined.
6614
66152010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
6616
6617 * configure: Regenerate.
6618
66192010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
6620
6621 * server.c (handle_query): Handle 'qGetTIBAddr' query.
6622 * target.h (target_ops): New get_tib_address field.
6623 * win32-low.h (win32_thread_info): Add thread_local_base field.
6624 * win32-low.c (child_add_thread): Add tlb argument.
6625 Set thread_local_base field to TLB.
6626 (get_child_debug_event): Adapt to child_add_thread change.
6627 (win32_get_tib_address): New function.
6628 (win32_target_ops): Set get_tib_address field to
6629 win32_get_tib_address.
6630 * linux-low.c (linux_target_ops): Set get_tib_address field to NULL.
6631
66322010-04-12 Pedro Alves <pedro@codesourcery.com>
6633
6634 * linux-low.c (linux_mourn): Also remove the process.
6635 * server.c (handle_target_event): Don't remove the process here.
6636 * nto-low.c (nto_mourn): New.
6637 (nto_target_ops): Install it.
6638 * spu-low.c (spu_mourn): New.
6639 (spu_target_ops): Install it.
6640 * win32-low.c (win32_mourn): New.
6641 (win32_target_ops): Install it.
6642
66432010-04-12 Pedro Alves <pedro@codesourcery.com>
6644
6645 * server.h (buffer_xml_printf): Remove redundant `;'.
6646
66472010-04-12 Pedro Alves <pedro@codesourcery.com>
6648
6649 * regcache.c (set_register_cache): Invalidate regcaches before
6650 changing the register cache layout.
6651 (regcache_invalidate_one): Allow a NULL regcache.
6652 * linux-x86-low.c (x86_linux_update_xmltarget): Invalidate
6653 regcaches before changing the register cache layout or the target
6654 regsets.
6655
66562010-04-12 H.J. Lu <hongjiu.lu@intel.com>
6657
6658 * linux-x86-low.c (x86_linux_update_xmltarget): Avoid unused
6659 variable warning on Linux/x86-64.
6660
66612010-04-11 Pedro Alves <pedro@codesourcery.com>
6662
6663 GDBserver disconnected tracing support.
6664
6665 * linux-low.c (linux_remove_process): Delete.
6666 (add_lwp): Don't set last_resume_kind here.
6667 (linux_kill): Use `mourn'.
6668 (linux_detach): Use `thread_db_detach', and `mourn'.
6669 (linux_mourn): New.
6670 (linux_attach_lwp_1): Adjust comment.
6671 (linux_attach): last_resume_kind moved the thread_info; adjust.
6672 (status_pending_p_callback): Adjust.
6673 (linux_wait_for_event_1): Adjust.
6674 (count_events_callback, select_singlestep_lwp_callback)
6675 (select_event_lwp_callback, cancel_breakpoints_callback)
6676 (db_wants_lwp_stopped, linux_wait_1, need_step_over_p)
6677 (proceed_one_lwp): Adjust.
6678 (linux_async): Add debug output.
6679 (linux_thread_stopped): New.
6680 (linux_pause_all): New.
6681 (linux_target_ops): Install linux_mourn, linux_thread_stopped and
6682 linux_pause_all.
6683 * linux-low.h (struct lwp_info): Delete last_resume_kind field.
6684 (thread_db_free): Delete declaration.
6685 (thread_db_detach, thread_db_mourn): Declare.
6686 * thread-db.c (thread_db_init): Use thread_db_mourn.
6687 (thread_db_free): Delete, split in two.
6688 (disable_thread_event_reporting): New.
6689 (thread_db_detach): New.
6690 (thread_db_mourn): New.
6691
6692 * server.h (struct thread_info) <last_resume_kind>: New field.
6693 <attached>: Add comment.
6694 <gdb_detached>: New field.
6695 (handler_func): Change return type to int.
6696 (handle_serial_event, handle_target_event): Ditto.
6697 (gdb_connected): Declare.
6698 (tracing): Delete.
6699 (disconnected_tracing): Declare.
6700 (stop_tracing): Declare.
6701
6702 * server.c (handle_query) <qSupported>: Report support for
6703 disconnected tracing.
6704 (queue_stop_reply_callback): Account for running threads.
6705 (gdb_wants_thread_stopped): New.
6706 (gdb_wants_all_threads_stopped): New.
6707 (gdb_reattached_process): New.
6708 (handle_status): Clear the `gdb_detached' flag of all processes.
6709 In all-stop, stop all threads.
6710 (main): Be sure to leave tfind mode. Handle disconnected tracing.
6711 (process_serial_event): If the remote connection breaks, or if an
6712 exit was forced with "monitor exit", force an event loop exit.
6713 Handle disconnected tracing on detach.
6714 (handle_serial_event): Adjust.
6715 (handle_target_event): If GDB isn't connected, forward events back
6716 to the inferior, unless the last process exited, in which case,
6717 exit gdbserver. Adjust interface.
6718
6719 * remote-utils.c (remote_open): Don't block in accept. Instead
6720 register an event loop source on the listen socket file
6721 descriptor. Refactor bits into ...
6722 (listen_desc): ... this new global.
6723 (gdb_connected): ... this new function.
6724 (enable_async_notification): ... this new function.
6725 (handle_accept_event): ... this new function.
6726 (remote_close): Clear remote_desc.
6727
6728 * inferiors.c (add_thread): Set the new thread's last_resume_kind.
6729
6730 * target.h (struct target_ops) <mourn, thread_stopped, pause_all>:
6731 New fields.
6732 (mourn_inferior): Define.
6733 (target_process_qsupported): Avoid the dangling else problem.
6734 (thread_stopped): Define.
6735 (pause_all): Define.
6736 (target_waitstatus_to_string): Declare.
6737 * target.c (target_waitstatus_to_string): New.
6738
6739 * tracepoint.c (tracing): Make extern.
6740 (disconnected_tracing): New.
6741 (stop_tracing): Make extern. Handle tracing stops due to GDB
6742 disconnecting.
6743 (cmd_qtdisconnected): New.
6744 (cmd_qtstatus): Report disconnected tracing status in trace reply.
6745 (handle_tracepoint_general_set): Handle QTDisconnected.
6746
6747 * event-loop.c (event_handler_func): Change return type to int.
6748 (process_event): Bail out if the event handler wants the event
6749 loop to stop.
6750 (handle_file_event): Ditto.
6751 (start_event_loop): Bail out if the event handler wants the event
6752 loop to stop.
6753
6754 * nto-low.c (nto_target_ops): Adjust.
6755 * spu-low.c (spu_wait): Don't remove the process here.
6756 (spu_target_ops): Adjust.
6757 * win32-low.c (win32_wait): Don't remove the process here.
6758 (win32_target_ops): Adjust.
6759
67602010-04-11 Pedro Alves <pedro@codesourcery.com>
6761
6762 * regcache.c (realloc_register_cache): Invalidate inferior's
6763 regcache before recreating it.
6764
67652010-04-09 Pedro Alves <pedro@codesourcery.com>
6766
6767 * tracepoint.c (cmd_qtstatus): Report trace buffer circularity.
6768
67692010-04-09 Stan Shebs <stan@codesourcery.com>
6770 Pedro Alves <pedro@codesourcery.com>
6771
6772 * server.h (LONGEST): New.
6773 (struct thread_info) <while_stepping>: New field.
6774 (unpack_varlen_hex, xrealloc, pulongest, plongest, phex_nz):
6775 Declare.
6776 (initialize_tracepoint, handle_tracepoint_general_set)
6777 (handle_tracepoint_query, tracepoint_finished_step)
6778 (tracepoint_was_hit, release_while_stepping_state_list):
6779 (current_traceframe): Declare.
6780 * server.c (handle_general_set): Handle tracepoint packets.
6781 (read_memory): New.
6782 (write_memory): New.
6783 (handle_search_memory_1): Use read_memory.
6784 (handle_query): Report support for conditional tracepoints, trace
6785 state variables, and tracepoint sources. Handle tracepoint
6786 queries.
6787 (main): Initialize the tracepoints module.
6788 (process_serial_event): Handle traceframe reads/writes.
6789
6790 * linux-low.c (handle_tracepoints): New.
6791 (linux_wait_1): Call it.
6792 (linux_resume_one_lwp): Handle while-stepping.
6793 (linux_supports_tracepoints, linux_read_pc, linux_write_pc): New.
6794 (linux_target_ops): Install them.
6795 * linux-low.h (struct linux_target_ops) <supports_tracepoints>:
6796 New field.
6797 * linux-x86-low.c (x86_supports_tracepoints): New.
6798 (the_low_target). Install it.
6799
6800 * mem-break.h (delete_breakpoint): Declare.
6801 * mem-break.c (delete_breakpoint): Make external.
6802
6803 * target.h (struct target_ops): Add `supports_tracepoints',
6804 `read_pc', and `write_pc' fields.
6805 (target_supports_tracepoints): Define.
6806 * utils.c (xrealloc, decimal2str, pulongest, plongest, thirty_two)
6807 (phex_nz): New.
6808
6809 * regcache.h (struct regcache) <registers_owned>: New field.
6810 (init_register_cache, regcache_cpy): Declare.
6811 (regcache_read_pc, regcache_write_pc): Declare.
6812 (register_cache_size): Declare.
6813 (supply_regblock): Declare.
6814 * regcache.c (init_register_cache): New.
6815 (new_register_cache): Use it.
6816 (regcache_cpy): New.
6817 (register_cache_size): New.
6818 (supply_regblock): New.
6819 (regcache_read_pc, regcache_write_pc): New.
6820
6821 * tracepoint.c: New.
6822
6823 * Makefile.in (OBS): Add tracepoint.o.
6824 (tracepoint.o): New rule.
6825
68262010-04-08 H.J. Lu <hongjiu.lu@intel.com>
6827
6828 * Makefile.in (clean): Also remove i386-mmx.c i386-mmx-linux.c.
6829 (i386-mmx.o): New.
6830 (i386-mmx.c): Likewise.
6831 (i386-mmx-linux.o): Likewise.
6832 (i386-mmx-linux.c): Likewise.
6833
6834 * configure.srv (srv_i386_regobj): Add i386-mmx.o.
6835 (srv_i386_linux_regobj): Add i386-mmx-linux.o.
6836 (srv_i386_xmlfiles): Add i386/i386-mmx.xml.
6837 (srv_i386_linux_xmlfiles): Add i386/i386-mmx-linux.xml.
6838
6839 * linux-x86-low.c (init_registers_i386_mmx_linux): New.
6840 (x86_linux_update_xmltarget): Call init_registers_i386_mmx_linux
6841 and return if ptrace PTRACE_GETFPXREGS failed in 32bit.
6842
68432010-04-07 H.J. Lu <hongjiu.lu@intel.com>
6844
6845 * Makefile.in (clean): Updated.
6846 (i386-avx.o): New.
6847 (i386-avx.c): Likewise.
6848 (i386-avx-linux.o): Likewise.
6849 (i386-avx-linux.c): Likewise.
6850 (amd64-avx.o): Likewise.
6851 (amd64-avx.c): Likewise.
6852 (amd64-avx-linux.o): Likewise.
6853 (amd64-avx-linux.c): Likewise.
6854
6855 * configure.srv (srv_i386_regobj): Add i386-avx.o.
6856 (srv_i386_linux_regobj): Add i386-avx-linux.o.
6857 (srv_amd64_regobj): Add amd64-avx.o.
6858 (srv_amd64_linux_regobj): Add amd64-avx-linux.o.
6859 (srv_i386_32bit_xmlfiles): Add i386/32bit-avx.xml.
6860 (srv_i386_64bit_xmlfiles): Add i386/64bit-avx.xml.
6861 (srv_i386_xmlfiles): Add i386/i386-avx.xml.
6862 (srv_amd64_xmlfiles): Add i386/amd64-avx.xml.
6863 (srv_i386_linux_xmlfiles): Add i386/i386-avx-linux.xml.
6864 (srv_amd64_linux_xmlfiles): Add i386/amd64-avx-linux.xml.
6865
6866 * i387-fp.c: Include "i386-xstate.h".
6867 (i387_xsave): New.
6868 (i387_cache_to_xsave): Likewise.
6869 (i387_xsave_to_cache): Likewise.
6870 (x86_xcr0): Likewise.
6871
6872 * i387-fp.h (i387_cache_to_xsave): Likewise.
6873 (i387_xsave_to_cache): Likewise.
6874 (x86_xcr0): Likewise.
6875
6876 * linux-arm-low.c (target_regsets): Initialize nt_type to 0.
6877 * linux-crisv32-low.c (target_regsets): Likewise.
6878 * linux-m68k-low.c (target_regsets): Likewise.
6879 * linux-mips-low.c (target_regsets): Likewise.
6880 * linux-ppc-low.c (target_regsets): Likewise.
6881 * linux-s390-low.c (target_regsets): Likewise.
6882 * linux-sh-low.c (target_regsets): Likewise.
6883 * linux-sparc-low.c (target_regsets): Likewise.
6884 * linux-xtensa-low.c (target_regsets): Likewise.
6885
6886 * linux-low.c: Include <sys/uio.h>.
6887 (regsets_fetch_inferior_registers): Support nt_type.
6888 (regsets_store_inferior_registers): Likewise.
6889 (linux_process_qsupported): New.
6890 (linux_target_ops): Add linux_process_qsupported.
6891
6892 * linux-low.h (regset_info): Add nt_type.
6893 (linux_target_ops): Add process_qsupported.
6894
6895 * linux-x86-low.c: Include "i386-xstate.h", "elf/common.h"
6896 and <sys/uio.h>.
6897 (init_registers_i386_avx_linux): New.
6898 (init_registers_amd64_avx_linux): Likewise.
6899 (xmltarget_i386_linux_no_xml): Likewise.
6900 (xmltarget_amd64_linux_no_xml): Likewise.
6901 (PTRACE_GETREGSET): Likewise.
6902 (PTRACE_SETREGSET): Likewise.
6903 (x86_fill_xstateregset): Likewise.
6904 (x86_store_xstateregset): Likewise.
6905 (use_xml): Likewise.
6906 (x86_linux_update_xmltarget): Likewise.
6907 (x86_linux_process_qsupported): Likewise.
6908 (target_regsets): Add NT_X86_XSTATE entry and Initialize nt_type.
6909 (x86_arch_setup): Don't call init_registers_amd64_linux nor
6910 init_registers_i386_linux here. Call
6911 x86_linux_update_xmltarget.
6912 (the_low_target): Add x86_linux_process_qsupported.
6913
6914 * server.c (handle_query): Call target_process_qsupported.
6915
6916 * target.h (target_ops): Add process_qsupported.
6917 (target_process_qsupported): New.
6918
69192010-04-03 Pedro Alves <pedro@codesourcery.com>
6920
6921 * inferiors.c (add_thread): Set last_status kind to
6922 TARGET_WAITKIND_IGNORE.
6923 * linux-low.c (cancel_breakpoint): Remove unnecessary regcache
6924 fetch. Use ptid_of. Avoid unnecessary get_lwp_thread calls.
6925 (linux_wait_1): Move `thread' local definition to block that uses
6926 it. Don't NULL initialize `event_child'.
6927 (linux_resume_one_thread): Avoid unnecessary get_lwp_thread calls.
6928 Alway set the thread's last_status to TARGET_WAITKIND_IGNORE.
6929 * linux-x86-low.c (x86_breakpoint_at): Read raw memory.
6930
69312010-04-01 Pedro Alves <pedro@codesourcery.com>
6932
6933 * linux-low.c (get_stop_pc): Don't adjust the PC if stopped with
6934 an extended waitstatus, or by a watchpoint.
6935 (cancel_breakpoints_callback): Don't cancel a breakpoint if the
6936 thread was stepping or has been stopped by a watchpoint.
6937
69382010-04-01 Pedro Alves <pedro@codesourcery.com>
6939
6940 * mem-break.c (struct raw_breakpoint): New field shlib_disabled.
6941 (set_gdb_breakpoint_at): If GDB is inserting a breakpoint on top
6942 of another, then delete the previous, and validate all
6943 breakpoints.
6944 (validate_inserted_breakpoint): New.
6945 (delete_disabled_breakpoints): New.
6946 (validate_breakpoints): New.
6947 (check_mem_read): Validate breakpoints before trusting their
6948 shadow. Delete disabled breakpoints.
6949 (check_mem_write): Validate breakpoints before trusting they
6950 should be inserted. Delete disabled breakpoints.
6951 * mem-break.h (validate_breakpoints):
6952 * server.c (handle_query): Validate breakpoints when we see a
6953 qSymbol query.
6954
69552010-04-01 Pedro Alves <pedro@codesourcery.com>
6956
6957 * linux-low.c (linux_wait_1): Avoid setting need_step_over is
6958 there's a GDB breakpoint at stop_pc. Always report a trap to GDB
6959 if we could tell there's a GDB breakpoint at stop_pc.
6960 (need_step_over_p): Don't do a step over if we find a GDB
6961 breakpoint at the resume PC.
6962
6963 * mem-break.c (struct raw_breakpoint): New.
6964 (enum bkpt_type): New type `gdb_breakpoint'.
6965 (struct breakpoint): Delete the `PC', `old_data' and `inserted'
6966 fields. New field `raw'.
6967 (find_raw_breakpoint_at): New.
6968 (set_raw_breakpoint_at): Handle refcounting. Create a raw
6969 breakpoint instead.
6970 (set_breakpoint_at): Adjust.
6971 (delete_raw_breakpoint): New.
6972 (release_breakpoint): New.
6973 (delete_breakpoint): Rename to...
6974 (delete_breakpoint_1): ... this. Add proc parameter. Use
6975 release_breakpoint. Return ENOENT.
6976 (delete_breakpoint): Reimplement.
6977 (find_breakpoint_at): Delete.
6978 (find_gdb_breakpoint_at): New.
6979 (delete_breakpoint_at): Delete.
6980 (set_gdb_breakpoint_at): New.
6981 (delete_gdb_breakpoint_at): New.
6982 (gdb_breakpoint_here): New.
6983 (set_reinsert_breakpoint): Use release_breakpoint.
6984 (uninsert_breakpoint): Rename to ...
6985 (uninsert_raw_breakpoint): ... this.
6986 (uninsert_breakpoints_at): Adjust to handle raw breakpoints.
6987 (reinsert_raw_breakpoint): Change parameter type to
6988 raw_breakpoint.
6989 (reinsert_breakpoints_at): Adjust to handle raw breakpoints
6990 instead.
6991 (check_breakpoints): Adjust. Use release_breakpoint.
6992 (breakpoint_here): Rewrite using find_raw_breakpoint_at.
6993 (breakpoint_inserted_here): Ditto.
6994 (check_mem_read): Adjust to iterate over raw breakpoints instead.
6995 Don't trust the breakpoint's shadow if it is not inserted.
6996 (check_mem_write): Adjust to iterate over raw breakpoints instead.
6997 (delete_all_breakpoints): Adjust.
6998 (free_all_breakpoints): Mark all breakpoints as uninserted, and
6999 use delete_breakpoint_1.
7000
7001 * mem-break.h (breakpoints_supported): Delete declaration.
7002 (set_gdb_breakpoint_at): Declare.
7003 (gdb_breakpoint_here): Declare.
7004 (delete_breakpoint_at): Delete.
7005 (delete_gdb_breakpoint_at): Declare.
7006
7007 * server.h (struct raw_breakpoint): Forward declare.
7008 (struct process_info): New field `raw_breakpoints'.
7009
7010 * linux-x86-low.c (x86_insert_point, x86_remote_point): Handle Z0
7011 breakpoints.
7012
70132010-03-24 Pedro Alves <pedro@codesourcery.com>
7014
7015 * linux-low.c (status_pending_p_callback): Fix comment.
7016 (linux_wait_for_event_1): Move most of the internal breakpoint
7017 handling from here...
7018 (linux_wait_1): ... to here.
7019 (count_events_callback): New.
7020 (select_singlestep_lwp_callback): New.
7021 (select_event_lwp_callback): New.
7022 (cancel_breakpoints_callback): New.
7023 (select_event_lwp): New.
7024 (linux_wait_1): Simplify internal breakpoint handling. Give equal
7025 priority to all LWPs that have had events that should be reported
7026 to the client. Cancel breakpoints when about to reporting the
7027 event to the client, not while stopping lwps. No longer cancel
7028 finished single-steps here.
7029 (cancel_finished_single_step): Delete.
7030 (cancel_finished_single_steps): Delete.
7031
70322010-03-24 Pedro Alves <pedro@codesourcery.com>
7033
7034 * mem-break.c (enum bkpt_type): New.
7035 (struct breakpoint): New field `type'.
7036 (set_breakpoint_at): Change return type to struct breakpoint
7037 pointer. Set type to `other_breakpoint' by default.
7038 (delete_breakpoint): Rewrite, supporting more than one breakpoint
7039 in the breakpoint list.
7040 (delete_reinsert_breakpoints): Only delete reinsert breakpoints.
7041 (reinsert_breakpoint): Rename to ...
7042 (reinsert_raw_breakpoint): ... this.
7043 (reinsert_breakpoints_at): Adjust.
7044 * mem-break.h (struct breakpoint): Declare.
7045 (set_breakpoint_at): Change return type to struct breakpoint
7046 pointer.
7047
70482010-03-24 Pedro Alves <pedro@codesourcery.com>
7049
7050 * server.c (handle_query): Assign, not compare.
7051
70522010-03-24 Pedro Alves <pedro@codesourcery.com>
7053
7054 Teach linux gdbserver to step-over-breakpoints.
7055
7056 * linux-low.c (can_hardware_single_step): New.
7057 (supports_breakpoints): New.
7058 (handle_extended_wait): If stopping threads, read the stop pc of
7059 the new cloned LWP.
7060 (get_pc): New.
7061 (get_stop_pc): Add `lwp' parameter. Handle it. Bail out if the
7062 low target doesn't support retrieving the PC.
7063 (add_lwp): Set last_resume_kind to resume_continue.
7064 (linux_attach_lwp_1): Adjust comments. Always set stop_expected.
7065 (linux_attach): Don't clear stop_expected. Set the lwp's
7066 last_resume_kind to resume_stop.
7067 (linux_detach_one_lwp): Don't check for removed breakpoints.
7068 (check_removed_breakpoint): Delete.
7069 (status_pending_p): Rename to ...
7070 (status_pending_p_callback): ... this. Don't check for removed
7071 breakpoints. Don't consider threads that are stopped from GDB's
7072 perspective.
7073 (linux_wait_for_lwp): Always read the stop_pc here.
7074 (cancel_breakpoint): New.
7075 (step_over_bkpt): New global.
7076 (linux_wait_for_event_1): Implement stepping over breakpoints.
7077 (gdb_wants_lwp_stopped): New.
7078 (gdb_wants_all_stopped): New.
7079 (linux_wait_1): Tag threads as gdb-wants-stopped. Cancel finished
7080 single-step traps here. Store the thread's last reported target
7081 wait status.
7082 (send_sigstop): Don't clear stop_expected. Always set it,
7083 instead.
7084 (mark_lwp_dead): Remove reference to pending_is_breakpoint.
7085 (cancel_finished_single_step): New.
7086 (cancel_finished_single_steps): New.
7087 (wait_for_sigstop): Don't cancel finished single-step traps here.
7088 (linux_resume_one_lwp): Don't check for removed breakpoints.
7089 Don't set `step' on non-hardware step archs.
7090 (linux_set_resume_request): Ignore resume_stop requests if already
7091 stopping or stopped. Set the lwp's last_resume_kind.
7092 (resume_status_pending_p): Don't check for removed breakpoints.
7093 (need_step_over_p): New.
7094 (start_step_over): New.
7095 (finish_step_over): New.
7096 (linux_resume_one_thread): Always queue a sigstop for resume_stop
7097 requests. Clear the thread's last reported target waitstatus.
7098 Don't use the `suspended' flag. Don't consider pending breakpoints.
7099 (linux_resume): Start a step-over if necessary.
7100 (proceed_one_lwp): New.
7101 (proceed_all_lwps): New.
7102 (unstop_all_lwps): New.
7103 * linux-low.h (struct lwp_info): Rewrite comment for the
7104 `suspended' flag. Add the `stop_pc' field. Delete the
7105 `pending_stop_pc' field. Tweak the `stepping' flag's comment.
7106 Add `'last_resume_kind' and `need_step_over' fields.
7107 * inferiors.c (struct thread_info): Delete, moved elsewhere.
7108 * mem-break.c (struct breakpoint): Delete `reinserting' flag.
7109 Delete `breakpoint_to_reinsert' field. New flag `inserted'.
7110 (set_raw_breakpoint_at): New.
7111 (set_breakpoint_at): Rewrite to use it.
7112 (reinsert_breakpoint_handler): Delete.
7113 (set_reinsert_breakpoint): New.
7114 (reinsert_breakpoint_by_bp): Delete.
7115 (delete_reinsert_breakpoints): New.
7116 (uninsert_breakpoint): Rewrite.
7117 (uninsert_breakpoints_at): New.
7118 (reinsert_breakpoint): Rewrite.
7119 (reinsert_breakpoints_at): New.
7120 (check_breakpoints): Rewrite.
7121 (breakpoint_here): New.
7122 (breakpoint_inserted_here): New.
7123 (check_mem_read): Adjust.
7124 * mem-break.h (breakpoints_supported, breakpoint_here)
7125 (breakpoint_inserted_here, set_reinsert_breakpoint): Declare.
7126 (reinsert_breakpoint_by_bp): Delete declaration.
7127 (delete_reinsert_breakpoints): Declare.
7128 (reinsert_breakpoint): Delete declaration.
7129 (reinsert_breakpoints_at): Declare.
7130 (uninsert_breakpoint): Delete declaration.
7131 (uninsert_breakpoints_at): Declare.
7132 (check_breakpoints): Adjust prototype.
7133 * server.h: Adjust include order.
7134 (struct thread_info): Declare here. Add a `last_status' field.
7135
71362010-03-23 Michael Snyder <msnyder@vmware.com>
7137
7138 * server.c (crc32): New function.
7139 (handle_query): Add handling for 'qCRC:' request.
7140
71412010-03-23 Pedro Alves <pedro@codesourcery.com>
7142
7143 * linux-x86-low.c (x86_linux_prepare_to_resume): Clear DR6 if the
7144 lwp had been stopped by a watchpoint.
7145
71462010-03-16 Pedro Alves <pedro@codesourcery.com>
7147
7148 * server.h (internal_error): Declare.
7149 (gdb_assert, ASSERT_FUNCTION, gdb_assert_fail): Define.
7150 * utils.c (internal_error): New function.
7151
71522010-03-15 Andreas Schwab <schwab@redhat.com>
7153
7154 * configure.srv: Fix typo setting srv_regobj.
7155
71562010-03-15 Pedro Alves <pedro@codesourcery.com>
7157
7158 * linux-low.c (fetch_register): Avoid passing a non string literal
7159 format to `error'.
7160 (usr_store_inferior_registers): Ditto.
7161
71622010-03-14 Pedro Alves <pedro@codesourcery.com>
7163
7164 * linux-low.c (linux_write_memory): Bail out early if peeking
7165 memory failed.
7166
71672010-03-14 Pedro Alves <pedro@codesourcery.com>
7168
7169 * linux-low.h (struct lwp_info): New fields
7170 `stopped_by_watchpoint' and `stopped_data_address'.
7171 * linux-low.c (linux_wait_for_lwp): Check for watchpoint triggers
7172 here, and cache them in the lwp object.
7173 (wait_for_sigstop): Check stopped_by_watchpoint lwp field
7174 directly.
7175 (linux_resume_one_lwp): Clear the lwp's stopped_by_watchpoint
7176 field.
7177 (linux_stopped_by_watchpoint): Rewrite.
7178 (linux_stopped_data_address): Rewrite.
7179
71802010-03-06 Simo Melenius <simo.melenius@iki.fi>
7181
7182 * linux-low.c (linux_wait_for_lwp): Fetch the regcache after
7183 switching the current inferior, not before.
7184
71852010-03-01 H.J. Lu <hongjiu.lu@intel.com>
7186
7187 * Makefile.in (clean): Replace reg-i386.c, reg-x86-64.c,
7188 reg-i386-linux.c and reg-x86-64-linux.c with i386.c, amd64.c,
7189 i386-linux.c and amd64-linux.c.
7190 (reg-i386.o): Removed.
7191 (reg-i386.c): Likewise.
7192 (reg-i386-linux.o): Likewise.
7193 (reg-i386-linux.c): Likewise.
7194 (reg-x86-64.o): Likewise.
7195 (reg-x86-64.c): Likewise.
7196 (reg-x86-64-linux.o): Likewise.
7197 (reg-x86-64-linux.c): Likewise.
7198 (i386.o): New.
7199 (i386.c): Likewise.
7200 (i386-linux.o): Likewise.
7201 (i386-linux.c): Likewise.
7202 (amd64.o): Likewise.
7203 (amd64.c): Likewise.
7204 (amd64-linux.o): Likewise.
7205 (amd64-linux.c): Likewise.
7206
7207 * configure.srv (srv_i386_regobj): New.
7208 (srv_i386_linux_regobj): Likewise.
7209 (srv_amd64_regobj): Likewise.
7210 (srv_amd64_linux_regobj): Likewise.
7211 (srv_i386_32bit_xmlfiles): Likewise.
7212 (srv_i386_64bit_xmlfiles): Likewise.
7213 (srv_i386_xmlfiles): Likewise.
7214 (srv_amd64_xmlfiles): Likewise.
7215 (srv_i386_linux_xmlfiles): Likewise.
7216 (srv_amd64_linux_xmlfiles): Likewise.
7217 (i[34567]86-*-cygwin*): Set srv_regobj to $srv_i386_regobj. Set
7218 srv_xmlfiles to $srv_i386_xmlfiles.
7219 (i[34567]86-*-mingw32ce*): Likewise.
7220 (i[34567]86-*-mingw*): Likewise.
7221 (i[34567]86-*-nto*): Likewise.
7222 (i[34567]86-*-linux*): Set srv_regobj to $srv_i386_linux_regobj
7223 and $srv_amd64_linux_regobj. Set srv_xmlfiles to
7224 $srv_i386_linux_xmlfiles and $srv_amd64_linux_xmlfiles.
7225 (x86_64-*-linux*): Likewise.
7226
7227 * linux-x86-low.c (init_registers_x86_64_linux): Removed.
7228 (init_registers_amd64_linux): New.
7229 (x86_arch_setup): Replace init_registers_x86_64_linux with
7230 init_registers_amd64_linux.
7231
72322010-02-23 Maxim Kuvyrkov <maxim@codesourcery.com>
7233
7234 * configure.ac: Check for libdl. If it is not available link against
7235 static libthread_db.
7236 * configure: Regenerate.
7237
72382010-02-22 Pedro Alves <pedro@codesourcery.com>
7239
7240 PR9605
7241
7242 * i386-low.c (i386_length_and_rw_bits): Throw a fatal error if
7243 handing a read watchpoint.
7244 (i386_low_insert_watchpoint): Read watchpoints aren't supported.
7245
72462010-02-12 Doug Evans <dje@google.com>
7247
7248 * linux-low.c (linux_supports_tracefork_flag): Document.
7249 (linux_look_up_symbols): Add comment.
7250
72512010-02-03 H.J. Lu <hongjiu.lu@intel.com>
7252
7253 * regcache.c (supply_register): Clear regcache if buf is NULL.
7254
72552010-02-02 Nicolas Roche <roche@sourceware.org>
7256 Joel Brobecker <brobecker@adacore.com>
7257
7258 * inferiors.c (find_inferior): Add function documentation.
7259 (unloaded_dll): Handle the case where the unloaded dll has not
7260 been previously registered in the dll list.
7261
72622010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
7263
7264 * linux-arm-low.c (thumb_breakpoint_len): Delete.
7265 (thumb2_breakpoint): New.
7266 (arm_breakpoint_at): Check for Thumb-2 breakpoints.
7267
72682010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
7269
7270 * linux-low.c (get_stop_pc): Check for SIGTRAP.
7271 (linux_wait_for_event_1): Handle SIGILL and SIGSEGV as possible
7272 breakpoints.
7273
72742010-01-21 Pedro Alves <pedro@codesourcery.com>
7275
7276 * linux-ppc-low.c (ppc_arch_setup): Adjust to regcache changes.
7277
72782010-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
7279
7280 * linux-s390-low.c (s390_collect_ptrace_register)
7281 (s390_supply_ptrace_register): Adjust it for the new regcache parameter.
7282
72832010-01-21 Doug Evans <dje@google.com>
7284
7285 * linux-low.c (PTRACE_ARG3_TYPE): Change from long to void*.
7286 (PTRACE_ARG4_TYPE): New macro.
7287 (handle_extended_wait): Cast ptrace arg4 to PTRACE_ARG4_TYPE.
7288 (linux_wait_for_event_1, linux_resume_one_lwp): Ditto.
7289 (fetch_register): Cast to uintptr_t before casting to PTRACE_ARG3_TYPE.
7290 (usr_store_inferior_registers): Ditto.
7291 (linux_read_memory, linux_write_memory): Ditto.
7292 (linux_test_for_tracefork): Ditto.
7293
7294 * linux-arm-low.c: Remove redundant include of gdb_proc_service.h.
7295 Only include elf.h if gdb_proc_service.h didn't include linux/elf.h.
7296
72972010-01-21 Pedro Alves <pedro@codesourcery.com>
7298
7299 * proc-service.c (ps_lgetregs): Don't refetch registers from the
7300 target.
7301
73022010-01-21 Pedro Alves <pedro@codesourcery.com>
7303
7304 * spu-low.c (spu_fetch_registers, spu_store_registers): Change
7305 prototype to take a regcache. Adjust.
7306
73072010-01-20 Pedro Alves <pedro@codesourcery.com>
7308
7309 * regcache.h (struct thread_info): Forward declare.
7310 (struct regcache): New.
7311 (new_register_cache): Adjust prototype.
7312 (get_thread_regcache): Declare.
7313 (free_register_cache): Adjust prototype.
7314 (registers_to_string, registers_from_string): Ditto.
7315 (supply_register, supply_register_by_name, collect_register)
7316 (collect_register_as_string, collect_register_by_name): Ditto.
7317 * regcache.c (struct inferior_regcache_data): Delete.
7318 (get_regcache): Rename to ...
7319 (get_thread_regcache): ... this. Adjust. Switch inferior before
7320 fetching registers.
7321 (regcache_invalidate_one): Adjust.
7322 (regcache_invalidate): Fix prototype.
7323 (new_register_cache): Return the new register cache.
7324 (free_register_cache): Change prototype.
7325 (realloc_register_cache): Adjust.
7326 (registers_to_string): Change prototype to take a regcache. Adjust.
7327 (registers_from_string): Ditto.
7328 (register_data): Ditto.
7329 (supply_register): Ditto.
7330 (supply_register_by_name): Ditto.
7331 (collect_register): Ditto.
7332 (collect_register_as_string): Ditto.
7333 (collect_register_by_name): Ditto.
7334 * server.c (process_serial_event): Adjust.
7335 * linux-low.h (regset_fill_func, regset_store_func): Change
7336 prototype.
7337 (get_pc, set_pc, collect_ptrace_register, supply_ptrace_register):
7338 Change prototype.
7339 * linux-low.c (get_stop_pc): Adjust.
7340 (check_removed_breakpoint): Adjust.
7341 (linux_wait_for_event): Adjust.
7342 (linux_resume_one_lwp): Adjust.
7343 (fetch_register): Add regcache parameter. Adjust.
7344 (usr_store_inferior_registers): Ditto.
7345 (regsets_fetch_inferior_registers): Ditto.
7346 (regsets_store_inferior_registers): Ditto.
7347 (linux_fetch_registers, linux_store_registers): Ditto.
7348 * i387-fp.c (i387_cache_to_fsave): Change prototype to take a
7349 regcache. Adjust.
7350 (i387_fsave_to_cache, i387_cache_to_fxsave, i387_fxsave_to_cache):
7351 Ditto.
7352 * i387-fp.h (i387_cache_to_fsave, i387_fsave_to_cache): Change
7353 prototype to take a regcache.
7354 (i387_cache_to_fxsave, i387_fxsave_to_cache): Ditto.
7355 * remote-utils.c (convert_ascii_to_int, outreg)
7356 (prepare_resume_reply): Change prototype to take a regcache.
7357 Adjust.
7358 * target.h (struct target_ops) <fetch_registers, store_registers>:
7359 Change prototype to take a regcache.
7360 (fetch_inferior_registers, store_inferior_registers): Change
7361 prototype to take a regcache. Adjust.
7362 * proc-service.c (ps_lgetregs): Adjust.
7363 * linux-x86-low.c (x86_fill_gregset, x86_store_gregset)
7364 (x86_fill_fpregset, x86_store_fpregset, x86_fill_fpxregset)
7365 (x86_store_fpxregset, x86_get_pc, x86_set_pc): Change prototype to
7366 take a regcache. Adjust.
7367 * linux-arm-low.c (arm_fill_gregset, arm_store_gregset)
7368 (arm_fill_wmmxregset, arm_store_wmmxregset, arm_fill_vfpregset)
7369 (arm_store_vfpregset, arm_get_pc, arm_set_pc):
7370 (arm_breakpoint_at): Change prototype to take a regcache. Adjust.
7371 * linux-cris-low.c (cris_get_pc, cris_set_pc)
7372 (cris_cannot_fetch_register):
7373 (cris_breakpoint_at): Change prototype to take a regcache.
7374 Adjust.
7375 * linux-crisv32-low.c (cris_get_pc, cris_set_pc,
7376 cris_reinsert_addr, cris_write_data_breakpoint): Change prototype
7377 to take a regcache. Adjust.
7378 (cris_breakpoint_at, cris_insert_point, cris_remove_point):
7379 Adjust.
7380 * linux-m32r-low.c (m32r_get_pc, m32r_set_pc): Change prototype to
7381 take a regcache. Adjust.
7382 * linux-m68k-low.c (m68k_fill_gregset, m68k_store_gregset)
7383 (m68k_fill_fpregset, m68k_store_fpregset, m68k_get_pc,
7384 (m68k_set_pc): Change prototype to take a regcache. Adjust.
7385 * linux-mips-low.c (mips_get_pc):
7386 (mips_set_pc): Change prototype to take a regcache. Adjust.
7387 (mips_reinsert_addr): Adjust.
7388 (mips_collect_register): Change prototype to take a regcache.
7389 Adjust.
7390 (mips_supply_register):
7391 (mips_collect_register_32bit, mips_supply_register_32bit)
7392 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
7393 (mips_store_fpregset): Ditto.
7394 * linux-ppc-low.c (ppc_supply_ptrace_register)
7395 (ppc_supply_ptrace_register): Ditto.
7396 (parse_spufs_run): Adjust.
7397 (ppc_get_pc, ppc_set_pc, ppc_fill_gregset, ppc_fill_vsxregset)
7398 (ppc_store_vsxregset, ppc_fill_vrregset, ppc_store_vrregset)
7399 (ppc_fill_evrregset, ppc_store_evrregset): Change prototype to
7400 take a regcache. Adjust.
7401 * linux-s390-low.c (s390_collect_ptrace_register)
7402 (s390_supply_ptrace_register, s390_fill_gregset, s390_get_pc)
7403 (s390_set_pc): Change prototype to take a regcache. Adjust.
7404 (s390_arch_setup): Adjust.
7405 * linux-sh-low.c (sh_get_pc, sh_breakpoint_at)
7406 (sh_fill_gregset): Change prototype to take a regcache. Adjust.
7407 * linux-sparc-low.c (sparc_fill_gregset_to_stack)
7408 (sparc_fill_gregset, sparc_store_gregset_from_stack)
7409 (sparc_store_gregset, sparc_get_pc): Change prototype to take a
7410 regcache. Adjust.
7411 (sparc_breakpoint_at): Adjust.
7412 * linux-xtensa-low.c (xtensa_fill_gregset):
7413 (xtensa_store_gregset):
7414 (xtensa_fill_xtregset, xtensa_store_xtregset, xtensa_get_pc)
7415 (xtensa_set_pc): Change prototype to take a regcache. Adjust.
7416 * nto-low.c (nto_fetch_registers, nto_store_registers): Change
7417 prototype to take a regcache. Adjust.
7418 * win32-arm-low.c (arm_fetch_inferior_register)
7419 (arm_store_inferior_register): Change prototype to take a
7420 regcache. Adjust.
7421 * win32-i386-low.c (i386_fetch_inferior_register)
7422 (i386_store_inferior_register): Change prototype to take a
7423 regcache. Adjust.
7424 * win32-low.c (child_fetch_inferior_registers)
7425 (child_store_inferior_registers): Change prototype to take a
7426 regcache. Adjust.
7427 (win32_wait): Adjust.
7428 (win32_fetch_inferior_registers): Change prototype to take a
7429 regcache. Adjust.
7430 (win32_store_inferior_registers): Adjust.
7431 * win32-low.h (struct win32_target_ops) <fetch_inferior_register,
7432 store_inferior_register>: Change prototype to take a regcache.
7433
74342010-01-20 Doug Evans <dje@google.com>
7435
7436 * linux-low.c (linux_create_inferior): Wrap use of __SIGRTMIN in
7437 #ifdef.
7438 (linux_wait_for_event1, linux_init_signals): Ditto.
7439 (W_STOPCODE): Provide definition if missing.
7440
74412010-01-13 Vladimir Prus <vladimir@codesourcery.com>
7442
7443 * linux-low.c (linux_core_of_thread): New.
7444 (compare_ints, show_process, list_threads): New.
7445 (linux_qxfer_osdata): Report threads and cores.
7446 (linux_target_op): Register linux_core_of_thread.
7447 * remote-utils.c (prepare_resume_reply): Report the core.
7448 (buffer_xml_printf): Support %d specifier.
7449 * server.c (handle_threads_qxfer_proper, handle_threads_qxfer):
7450 New.
7451 (handle_query): Handle qXfer:threads. Announce availability
7452 thereof.
7453 * target.h (struct target_ops): New field core_of_thread.
7454
74552010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
7456
7457 * Makefile.in (clean): Remove new generated files.
7458 (reg-s390.o, reg-s390.c): Remove rules.
7459 (reg-s390x.o, reg-s390x.c): Likewise.
7460 (s390-linux32.o, s390-linux32.c): Add rules.
7461 (s390-linux64.o, s390-linux64.c): Likewise.
7462 (s390x-linux64.o, s390x-linux64.c): Likewise.
7463 * configure.srv (s390*-*-linux*): Update srv_regobj and srv_xmlfiles.
7464 * linux-s390-low.c: Include <elf.h>.
7465 (HWCAP_S390_HIGH_GPRS): Define if undefined.
7466 (init_registers_s390): Remove prototype.
7467 (init_registers_s390x): Likewise.
7468 (init_registers_s390_linux32): Add prototype.
7469 (init_registers_s390_linux64): Likewise.
7470 (init_registers_s390x_linux64): Likewise.
7471 (s390_num_regs_3264): New define.
7472 (s390_regmap_3264): New global variable.
7473 (s390_cannot_fetch_register): Remove obsolete check.
7474 (s390_cannot_store_register): Likewise.
7475 (s390_collect_ptrace_register): Handle upper/lower register halves.
7476 (s390_supply_ptrace_register): Likewise.
7477 (s390_fill_gregset): Update to register number changes.
7478 (s390_get_hwcap): New routine.
7479 (s390_arch_setup): Detect 32-bit process running on 64-bit system.
7480 Install appropriate regmap and register set.
7481
74822010-01-01 Joel Brobecker <brobecker@adacore.com>
7483
7484 * server.c (gdbserver_version): Update copyright year to 2010.
7485 * gdbreplay.c (gdbreplay_version): Likewise.
7486
74872009-12-28 Doug Evans <dje@google.com>
7488
7489 * linux-low.c: Delete inclusion of ansidecl.h, elf/common.h,
7490 elf/external.h. Include <elf.h> instead but only if necessary.
7491
74922009-12-28 Pedro Alves <pedro@codesourcery.com>
7493
7494 * linux-low.c (linux_remove_process): Remove `detaching'
7495 parameter. Don't release/detach from thread_db here.
7496 (linux_kill): Release/detach from thread_db here, ...
7497 (linux_detach): ... and here, before actually detaching.
7498 (linux_wait_1): ... and here, when a process exits.
7499 * thread-db.c (any_thread_of): New.
7500 (thread_db_free): Switch the current inferior to a thread of the
7501 passed in process.
7502
75032009-12-21 Doug Evans <dje@google.com>
7504
7505 * linux-x86-low.c: Delete outdated comment about Elf32_Phdr.
7506
7507 * linux-low.c (kill_lwp): Use __NR_tkill instead of SYS_tkill.
7508 Move definition of tkill_failed to ifdef __NR_tkill to avoid gcc
7509 warning ifndef __NR_tkill. Move setting of errno there too.
7510 Delete unnecessary resetting of errno after syscall.
7511 Minor comment changes to match gdb/linux-nat.c:kill_lwp.
7512
7513 * configure.ac: Check for dladdr.
7514 * config.in: Regenerate.
7515 * configure: Regenerate.
7516 * thread-db.c (dladdr_to_soname): Only define ifdef HAVE_DLADDR.
7517 (try_thread_db_load): Update.
7518
7519 * linux-low.c (my_waitpid): Delete unnecessary prototype.
7520
75212009-12-18 Doug Evans <dje@google.com>
7522
7523 * event-loop.c: Include unistd.h if it exists.
7524
7525 * linux-low.c (my_waitpid): Move definition away from being in
7526 between linux_tracefork_child/linux_test_for_tracefork.
7527
7528 * gdb_proc_service.h (psaddr_t): Fix type.
7529 * thread-db.c (thread_db_info.td_thr_tls_get_addr_p): Fix
7530 signature to match glibc.
7531
75322009-12-16 Doug Evans <dje@google.com>
7533
7534 * linux-low.c (linux_read_memory): Fix argument to read.
7535
75362009-11-26 Pedro Alves <pedro@codesourcery.com>
7537
7538 * win32-low.c (get_child_debug_event): On EXIT_THREAD_DEBUG_EVENT
7539 events, don't leave current_inferior pointing at null.
7540
75412009-11-26 Pedro Alves <pedro@codesourcery.com>
7542
7543 * win32-low.c (LOG): Delete.
7544 (OUTMSG): Output to stderr.
7545 (OUTMSG2): Conditionalize on `debug_threads' variable, instead of
7546 on compile time LOG macro.
7547 (win32_wait): Fix debug output.
7548
75492009-11-26 Pedro Alves <pedro@codesourcery.com>
7550
7551 * win32-low.c (win32_add_one_solib): If the dll name is
7552 "ntdll.dll", prepend the system directory to the dll path.
7553
75542009-11-17 Daniel Jacobowitz <dan@codesourcery.com>
7555
7556 * m68k-tdep.c (m68k_gdbarch_init): Reuse previous initialization.
7557
75582009-11-17 Nathan Sidwell <nathan@codesourcery.com>
7559 Vladimir Prus <vladimir@codesourcery.com>
7560
7561 * Makefile.in (reg-cf.o, reg-cf.c): New targets.
7562 * configure.ac: Check for __mcoldfire__ and set
7563 gdb_cv_m68k_is_coldfire.
7564 * configure.srv: Use gdb_cv_m68k_is_coldfire to select between
7565 reg-cf.o and reg-m68k.o.
7566 * configure: Regenerated.
7567
75682009-11-16 Pedro Alves <pedro@codesourcery.com>
7569
7570 * linux-low.c (linux_remove_process): Add `detaching' parameter.
7571 Pass it to thread_db_free.
7572 (linux_kill, linux_detach, linux_wait_1): Adjust to pass the
7573 proper `detaching' argument to linux_remove_process.
7574 * linux-low.h (thread_db_free): Add `detaching' parameter.
7575 * thread-db.c (thread_db_init): Pass false as `detaching' argument
7576 to thread_db_free.
7577 (thread_db_free): Add `detaching' parameter. Only
7578 call td_ta_clear_event if detaching from process.
7579
75802009-11-12 Maxim Kuvyrkov <maxim@codesourcery.com>
7581
7582 * thread-db.c (thread_db_free): Fix typo.
7583
75842009-11-11 Paul Pluzhnikov <ppluzhnikov@google.com>
7585
7586 PR gdb/10838
7587 * thread-db.c (thread_db_free): Call td_ta_clear_event.
7588
75892009-11-03 Nathan Sidwell <nathan@codesourcery.com>
7590
7591 * configure.ac (i[34567]86-*): Check if we're targetting x86-64
7592 with an i686 compiler.
7593 * configure.srv (i[34567]86-*-linux*): Pull in x86-64 handling if
7594 needed.
7595 * configure: Rebuilt.
7596
75972009-10-29 Sandra Loosemore <sandra@codesourcery.com>
7598
7599 PR gdb/10783
7600
7601 * server.c (handle_search_memory_1): Correct read_addr initialization
7602 in loop for searching subsequent chunks.
7603
76042009-10-29 Paul Pluzhnikov <ppluzhnikov@google.com>
7605
7606 * configure.ac: New --with-libthread-db option.
7607 * thread-db.c: Allow direct dependence on libthread_db.
7608 (thread_db_free): Adjust.
7609 * config.in: Regenerate.
7610 * configure: Likewise.
7611
76122009-10-28 Paul Pluzhnikov <ppluzhnikov@google.com>
7613
7614 PR gdb/10757
7615 * thread-db.c (attach_thread): New function.
7616 (maybe_attach_thread): Return success/failure.
7617 (find_new_threads_callback): Adjust.
7618 (thread_db_find_new_threads): Loop until no new threads.
7619
76202009-10-13 Pedro Alves <pedro@codesourcery.com>
7621
7622 * proc-service.c (ps_lgetregs): Formatting.
7623
76242009-10-08 Paul Pluzhnikov <ppluzhnikov@google.com>
7625
7626 * acinclude.m4: (SRV_CHECK_THREAD_DB, SRV_CHECK_TLS_GET_ADDR): Remove.
7627 * configure.ac: Adjust.
7628 * linux-low.h (struct process_info_private): Move members to struct
7629 thread_db.
7630 (thread_db_free, thread_db_handle_monitor_command): New prototype.
7631 * linux-low.c (linux_remove_process): Adjust.
7632 (linux_wait_for_event_1, linux_look_up_symbols): Likewise.
7633 * server.c (handle_query): Move code ...
7634 (handle_monitor_command): ... here. New function.
7635 * target.h (struct target_ops): New member.
7636 * thread-db.c (struct thread_db): New.
7637 (libthread_db_search_path): New variable.
7638 (thread_db_create_event, thread_db_enable_reporting)
7639 (find_one_thread, maybe_attach_thread, find_new_threads_callback)
7640 (thread_db_find_new_threads, (thread_db_get_tls_address): Adjust.
7641 (try_thread_db_load_1, dladdr_to_soname): New functions.
7642 (try_thread_db_load, thread_db_load_search): New functions.
7643 (thread_db_init): Search for libthread_db.
7644 (thread_db_free): New function.
7645 (thread_db_handle_monitor_command): Likewise.
7646 * config.in: Regenerate.
7647 * configure: Regenerate.
7648
76492009-09-27 Ulrich Weigand <uweigand@de.ibm.com>
7650
7651 * spu-low.c (spu_kill): Wait for inferior to terminate.
7652 Call clear_inferiors.
7653 (spu_detach): Call clear_inferiors.
7654
76552009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
7656
7657 * aclocal.m4: Regenerate.
7658 * config.in: Likewise.
7659 * configure: Likewise.
7660
76612009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
7662
7663 * linux-ppc-low.c (INSTR_SC, NR_spu_run): Define.
7664 (parse_spufs_run): New function.
7665 (ppc_get_pc, ppc_set_pc): Detect and handle SPU PC.
7666 (ppc_breakpoint_at): Handle SPU breakpoints.
7667
76682009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
7669
7670 * linux-low.c: Include <sys/stat.h> and <sys/vfs.h>.
7671 (SPUFS_MAGIC): Define.
7672 (spu_enumerate_spu_ids): New function.
7673 (linux_qxfer_spu): New function.
7674 (linux_target_ops): Install linux_qxfer_spu.
7675
76762009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
7677
7678 * configure.srv (powerpc*-*-linux*): Add powerpc-cell32l.o
7679 and powerpc-cell64l.o to srv_regobj. Add rs6000/powerpc-cell32l.xml
7680 and rs6000/powerpc-cell64l.xml to srv_xmlfiles.
7681 * Makefile.in (powerpc-cell32l.o, powerpc-cell32l.c): New rules.
7682 (powerpc-cell64l.o, powerpc-cell64l.c): Likewise.
7683 (clean): Handle powerpc-cell32l.c and powerpc-cell64l.c.
7684 * linux-ppc-low.c (PPC_FEATURE_CELL): Define.
7685 (init_registers_powerpc_cell32l): Add prototype.
7686 (init_registers_powerpc_cell64l): Likewise.
7687 (ppc_arch_setup): Detect Cell/B.E. architecture.
7688
76892009-07-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
7690
7691 * Makefile.in (datarootdir): New variable.
7692
76932009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
7694
7695 * linux-low.c (linux_write_memory): Update debugging output.
7696 * Makefile.in (clean): Add new descriptions.
7697 (arm-with-vfpv2.o, arm-with-vfpv2.c, arm-with-vfpv3.o)
7698 (arm-with-vfpv3.c, arm-with-neon.o, arm-with-neon.c): New rules.
7699 * configure.srv: Add new files for arm*-*-linux*.
7700 * linux-arm-low.c: Add new declarations.
7701 (PTRACE_GETVFPREGS, PTRACE_SETVFPREGS): Define if undefined.
7702 (arm_hwcap, HWCAP_VFP, HWCAP_IWMMXT, HWCAP_NEON, HWCAP_VFPv3)
7703 (HWCAP_VFPv3D16): New.
7704 (arm_fill_wmmxregset, arm_store_wmmxregset): Check HWCAP_IWMMXT
7705 instead of __IWMMXT__.
7706 (arm_fill_vfpregset, arm_store_vfpregset, arm_get_hwcap)
7707 (arm_arch_setup): New.
7708 (target_regsets): Remove #ifdef. Add VFP regset.
7709 (the_low_target): Use arm_arch_setup.
7710
77112009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
7712
7713 * linux-low.c (linux_kill_one_lwp): Adjust kernel workaround to skip
7714 the main thread again.
7715
77162009-07-06 Aleksandar Ristovski <aristovski@qnx.com>
7717
7718 Adding Neutrino gdbserver.
7719 * configure: Regenerated.
7720 * configure.ac: Add case for srv_qnx and set LIBS accordingly.
7721 * configure.srv (i[34567]86-*-nto*): New target.
7722 * nto-low.c, nto-low.h, nto-x86-low.c: New files.
7723 * remote-utils.c [__QNX__]: Include sys/iomgr.h
7724 (nto_comctrl) [__QNX__]: New function.
7725 (enable_async_io, disable_async_io) [__QNX__]: Call nto_comctrl.
7726
77272009-07-05 Danny Backx <dannybackx@users.sourceforge.net>
7728
7729 * configure.srv (i[34567]86-*-mingw32ce*): Add i386-low.o to
7730 srv_tgtobj.
7731
77322009-07-04 Danny Backx <dannybackx@users.sourceforge.net>
7733 Pedro Alves <pedro@codesourcery.com>
7734
7735 * win32-i386-low.c (i386_get_thread_context): Handle systems that
7736 don't support CONTEXT_EXTENDED_REGISTERS.
7737 (i386_win32_breakpoint, i386_win32_breakpoint_len): New.
7738 (the_low_target): Install them.
7739 * win32-low.c (get_child_debug_event): Handle WaitForDebugEvent
7740 failing with ERROR_PIPE_NOT_CONNECTED.
7741
77422009-06-30 Doug Evans <dje@google.com>
7743 Pierre Muller <muller@ics.u-strasbg.fr>
7744
7745 Add h/w watchpoint support to x86-linux, win32-i386.
7746 * Makefile.in (SFILES): Add i386-low.c
7747 (i386_low_h): Define.
7748 (i386-low.o): Add dependencies.
7749 (linux-x86-low.o): Add i386-low.h dependency.
7750 (win32-i386-low.o): Ditto.
7751 * i386-low.c: New file.
7752 * i386-low.h: New file.
7753 * configure.srv (i[34567]86-*-cygwin*): Add i386-low.o to srv_tgtobj.
7754 (i[34567]86-*-linux*, i[34567]86-*-mingw*, x86_64-*-linux*): Ditto.
7755 * linux-low.c (linux_add_process): Initialize arch_private.
7756 (linux_remove_process): Free arch_private.
7757 (add_lwp): Initialize arch_private.
7758 (delete_lwp): Free arch_private.
7759 (linux_resume_one_lwp): Call the_low_target.prepare_to_resume if
7760 provided.
7761 * linux-low.h (process_info_private): New member arch_private.
7762 (lwp_info): New member arch_private.
7763 (linux_target_ops): New members new_process, new_thread,
7764 prepare_to_resume.
7765 (ptid_of): New macro.
7766 * linux-x86-low.c: Include stddef.h, i386-low.h.
7767 (arch_process_info): New struct.
7768 (arch_lwp_info): New struct.
7769 (x86_linux_dr_get, x86_linux_dr_set): New functions.
7770 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
7771 (i386_dr_low_get_status): New function.
7772 (x86_insert_point, x86_remove_point): New functions.
7773 (x86_stopped_by_watchpoint): New function.
7774 (x86_stopped_data_address): New function.
7775 (x86_linux_new_process, x86_linux_new_thread): New functions.
7776 (x86_linux_prepare_to_resume): New function.
7777 (the_low_target): Add entries for insert_point, remove_point,
7778 stopped_by_watchpoint, stopped_data_address, new_process, new_thread,
7779 prepare_to_resume.
7780 * server.c (debug_hw_points): New global.
7781 (monitor_show_help): Document set debug-hw-points.
7782 (handle_query): Process "set debug-hw-points".
7783 * server.h (debug_hw_points): Declare.
7784 (paddress): Declare.
7785 * utils.c (NUMCELLS, CELLSIZE): New macros.
7786 (get_sell, xsnprintf, paddress): New functions.
7787 * win32-arm-low.c (the_low_target): Add entries for insert_point,
7788 remove_point, stopped_by_watchpoint, stopped_data_address.
7789 * win32-i386-low.c: Include i386-low.h.
7790 (debug_reg_state): Replaces dr.
7791 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
7792 (i386_dr_low_get_status): New function.
7793 (i386_insert_point, i386_remove_point): New functions.
7794 (i386_stopped_by_watchpoint): New function.
7795 (i386_stopped_data_address): New function.
7796 (i386_initial_stuff): Update.
7797 (get_thread_context,set_thread_context,i386_thread_added): Update.
7798 (the_low_target): Add entries for insert_point,
7799 remove_point, stopped_by_watchpoint, stopped_data_address.
7800 * win32-low.c (win32_insert_watchpoint): New function.
7801 (win32_remove_watchpoint): New function.
7802 (win32_stopped_by_watchpoint): New function.
7803 (win32_stopped_data_address): New function.
7804 (win32_target_ops): Add entries for insert_watchpoint,
7805 remove_watchpoint, stopped_by_watchpoint, stopped_data_address.
7806 * win32-low.h (win32_target_ops): New members insert_point,
7807 remove_point, stopped_by_watchpoint, stopped_data_address.
7808
78092009-06-25 Pedro Alves <pedro@codesourcery.com>
7810
7811 * server.c (process_serial_event): Re-return unsupported, not
7812 error, if the type isn't recognized. Re-allow supporting only
7813 insert or remove packets. Also call require_running for
7814 breakpoints. Add missing break statement to default case. Tidy.
7815 * target.h (struct target_ops): Rename insert_watchpoint to
7816 insert_point, and remove_watchpoint to remove_point.
7817
7818 * linux-low.h (struct linux_target_ops): Likewise.
7819 * linux-low.c (linux_insert_watchpoint): Rename to ...
7820 (linux_insert_point): ... this. Adjust.
7821 (linux_remove_watchpoint): Rename to ...
7822 (linux_remove_point): ... this. Adjust.
7823 (linux_target_ops): Adjust.
7824 * linux-crisv32-low.c (cris_insert_watchpoint): Rename to ...
7825 (cris_insert_point): ... this.
7826 (cris_remove_watchpoint): Rename to ...
7827 (cris_remove_point): ... this.
7828 (the_low_target): Adjust.
7829
78302009-06-24 Pierre Muller <muller@ics.u-strasbg.fr>
7831
7832 * server.c (handle_v_kill): Pass signal_pid to
7833 kill_inferior if multi_process is zero.
7834
78352009-06-23 Aleksandar Ristovski <aristovski@qnx.com>
7836
7837 * server.c (process_serial_event): Add support for Z0 and Z1 packet.
7838 * target.h (target_ops): Comment for *_watchpoint to make it clear
7839 the functions can get types '0' and '1'.
7840
78412009-06-22 Aleksandar Ristovski <aristovski@qnx.com>
7842
7843 * linux-low.c (usr_fetch_inferior_registers): Remove check for regno 0.
7844 * proc-service.c (ps_lgetregs): Pass -1 to fetch all registers.
7845 * regcache.c (get_regcache): Likewise.
7846 * spu-low.c (spu_fetch_registers): Remove 0 to -1 conversion.
7847 * win32-low.c (child_fetch_inferior_registers): Remove check for
7848 regno 0.
7849
78502009-06-19 Aleksandar Ristovski <aristovski@qnx.com>
7851 Pedro Alves <pedro@codesourcery.com>
7852
7853 * target.h (struct target_ops) <supports_multi_process>: New
7854 callback.
7855 (target_supports_multi_process): New.
7856 * server.c (handle_query): Even if GDB reports support, only
7857 enable multi-process if the target also supports it. Report
7858 multi-process support only if the target backend supports it.
7859 * linux-low.c (linux_supports_multi_process): New function.
7860 (linux_target_ops): Install it as target_supports_multi_process
7861 callback.
7862
78632009-05-24 Doug Evans <dje@google.com>
7864
7865 Global renaming of find_thread_pid to find_thread_ptid.
7866 * server.h (find_thread_ptid): Renamed from find_thread_pid.
7867 * inferiors.c (find_thread_ptid): Renamed from find_thread_pid.
7868 All callers updated.
7869
7870 * linux-low.c (handle_extended_wait): Use linux_resume_one_lwp
7871 to resume the newly created thread, don't call ptrace (PTRACE_CONT)
7872 directly.
7873
7874 * linux-low.c (get_stop_pc): Print pc if debug_threads.
7875 (check_removed_breakpoint, linux_wait_for_lwp): Ditto.
7876 (linux_resume_one_lwp): Ditto.
7877
78782009-05-23 Doug Evans <dje@google.com>
7879
7880 * linux-low.c (linux_resume_one_lwp): Change type of first arg
7881 from struct inferior_list_entry * to struct lwp_info *.
7882 All callers updated.
7883
78842009-05-13 Doug Evans <dje@google.com>
7885
7886 * linux-x86-low.c: Don't include assert.h.
7887 (x86_siginfo_fixup): Use fatal, not assert.
7888 (x86_arch_setup): Fix comment.
7889
78902009-05-12 Doug Evans <dje@google.com>
7891
7892 Biarch support for i386/amd64 gdbserver.
7893 * Makefile.in (SFILES): Remove linux-i386-low.c, linux-x86-64-low.c.
7894 Add linux-x86-low.c.
7895 (linux-i386-low.o, linux-x86-64-low.o): Delete.
7896 (linux-x86-low.o): Add.
7897 * linux-x86-64-low.c: Delete.
7898 * linux-i386-low.c: Delete.
7899 * linux-x86-low.c: New file.
7900 * configure.srv (i?86-linux srv_tgtobj): Replace linux-i386-low.o with
7901 linux-x86-low.o.
7902 (x86_64-linux srv_tgtobj): Replace linux-x86-64-low.o with
7903 linux-x86-low.o.
7904 (x86_64-linux srv_regobj): Add reg-i386-linux.o.
7905 * linux-low.c: Include ansidecl.h, elf/common.h, elf/external.h.
7906 (linux_child_pid_to_exec_file): New function.
7907 (elf_64_header_p, elf_64_file_p): New functions.
7908 (siginfo_fixup): New function.
7909 (linux_xfer_siginfo): New local inf_siginfo. Call siginfo_fixup to
7910 give target a chance to convert layout.
7911 * linux-low.h (linux_target_ops): New member siginfo_fixup.
7912 (linux_child_pid_to_exec_file, elf_64_file_p): Declare.
7913
79142009-05-07 Doug Evans <dje@google.com>
7915
7916 * linux-low.c (regsets_fetch_inferior_registers): Fix memory leak.
7917 (regsets_store_inferior_registers): Ditto.
7918
79192009-05-06 Pedro Alves <pedro@codesourcery.com>
7920
7921 PR server/10048
7922
7923 * linux-low.c (must_set_ptrace_flags): Delete.
7924 (linux_create_inferior): Set `lwp->must_set_ptrace_flags' instead
7925 of the global.
7926 (linux_attach_lwp_1): Don't set PTRACE_SETOPTIONS here. Set
7927 `lwp->must_set_ptrace_flags' instead.
7928 (linux_wait_for_event_1): Set ptrace options here.
7929 (linux_wait_1): ... not here.
7930
79312009-04-30 Doug Evans <dje@google.com>
7932
7933 * inferiors.c (started_inferior_callback): New function.
7934 (attached_inferior_callback): New function.
7935 (have_started_inferiors_p, have_attached_inferiors_p): New functions.
7936 * server.c (print_started_pid, print_attached_pid): New functions.
7937 (detach_or_kill_for_exit): New function.
7938 (main): Call it instead of for_each_inferior (kill_inferior_callback).
7939 * server.h (have_started_inferiors_p): Declare.
7940 (have_attached_inferiors_p): Declare.
7941
7942 * inferiors.c (remove_process): Fix memory leak, free process.
7943 * linux-low.c (linux_remove_process): New function.
7944 (linux_kill): Call it instead of remove_process.
7945 (linux_detach, linux_wait_1): Ditto.
7946
79472009-04-19 Danny Backx <dannybackx@users.sourceforge.net>
7948
7949 * configure.srv: Add x86 Windows CE target.
7950
79512009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
7952
7953 * inferiors.c (get_thread_process): Make global.
7954 * server.h (get_thread_process): Add prototype.
7955 * thread-db.c (find_one_thread): Use get_thread_process
7956 instead of current_process.
7957 (thread_db_get_tls_address): Do not crash if called when
7958 thread layer is not yet initialized.
7959
79602009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
7961
7962 * remote-utils.c (prepare_resume_reply): Null-terminate packet.
7963 * spu-low.c (current_tid): Rename to ...
7964 (current_ptid): ... this.
7965 (fetch_ppc_register, fetch_ppc_memory, store_ppc_memory,
7966 spu_proc_xfer_spu, spu_resume, spu_request_interrupt): Use
7967 ptid_get_lwp (current_ptid) instead of current_tid.
7968 (spu_kill, spu_detach, spu_join, spu_wait): Use pid argument
7969 instead of current_tid. Use find_process_pid to verify pid
7970 argument is valid. Pass proper argument to remove_process.
7971 (spu_thread_alive): Compare current_ptid instead of current_tid.
7972 (spu_resume): Likewise.
7973
79742009-04-02 Pedro Alves <pedro@codesourcery.com>
7975
7976 * linux-low.c (usr_store_inferior_registers): Declare local `pid'
7977 variable.
7978
79792009-04-01 Pedro Alves <pedro@codesourcery.com>
7980
7981 Implement the multiprocess extensions, and add linux multiprocess
7982 support.
7983
7984 * server.h (ULONGEST): Declare.
7985 (struct ptid, ptid_t): New.
7986 (minus_one_ptid, null_ptid): Declare.
7987 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
7988 (ptid_get_tid, ptid_equal, ptid_is_pid): Declare.
7989 (struct inferior_list_entry): Change `id' type from unsigned from
7990 to ptid_t.
7991 (struct sym_cache, struct breakpoint, struct
7992 process_info_private): Forward declare.
7993 (struct process_info): Declare.
7994 (current_process): Declare.
7995 (all_processes): Declare.
7996 (initialize_inferiors): Declare.
7997 (add_thread): Adjust to use ptid_t.
7998 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): Ditto.
7999 (add_process, remove_process, find_thread_pid): Declare.
8000 (find_inferior_id): Adjust to use ptid_t.
8001 (cont_thread, general_thread, step_thread): Change type to ptid_t.
8002 (multi_process): Declare.
8003 (push_event): Adjust to use ptid_t.
8004 (read_ptid, write_ptid): Declare.
8005 (prepare_resume_reply): Adjust to use ptid_t.
8006 (clear_symbol_cache): Declare.
8007 * inferiors.c (all_processes): New.
8008 (null_ptid, minus_one_ptid): New.
8009 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
8010 (ptid_get_tid, ptid_equal, ptid_is_pid): New.
8011 (add_thread): Change unsigned long to ptid. Remove gdb_id
8012 parameter. Adjust.
8013 (thread_id_to_gdb_id, thread_to_gdb_id): Change unsigned long to ptid.
8014 (gdb_id_to_thread): Rename to ...
8015 (find_thread_pid): ... this. Change unsigned long to ptid.
8016 (gdb_id_to_thread_id, find_inferior_id): Change unsigned long to ptid.
8017 (loaded_dll, pull_pid_from_list): Adjust.
8018 (add_process, remove_process, find_process_pid)
8019 (get_thread_process, current_process, initialize_inferiors): New.
8020 * target.h (struct thread_resume) <thread>: Change type to ptid_t.
8021 (struct target_waitstatus) <related_pid>: Ditto.
8022 (struct target_ops) <kill, detach>: Add `pid' argument. Change
8023 return type to int.
8024 (struct target_ops) <join>: Add `pid' argument.
8025 (struct target_ops) <thread_alive>: Change pid's type to ptid_t.
8026 (struct target_ops) <wait>: Add `ptid' field. Change return type
8027 to ptid.
8028 (kill_inferior, detach_inferior, join_inferior): Add `pid' argument.
8029 (mywait): Add `ptid' argument. Change return type to ptid_t.
8030 (target_pid_to_str): Declare.
8031 * target.c (set_desired_inferior): Adjust to use ptids.
8032 (mywait): Add new `ptid' argument. Adjust.
8033 (target_pid_to_str): New.
8034 * mem-break.h (free_all_breakpoints): Declare.
8035 * mem-break.c (breakpoints): Delelete.
8036 (set_breakpoint_at, delete_breakpoint, find_breakpoint_at)
8037 (check_mem_read, check_mem_write, delete_all_breakpoints): Adjust
8038 to use per-process breakpoint list.
8039 (free_all_breakpoints): New.
8040 * remote-utils.c (struct sym_cache) <name>: Drop `const'.
8041 (symbol_cache, all_symbols_looked_up): Delete.
8042 (hexchars): New.
8043 (ishex, unpack_varlen_hex, write_ptid, hex_or_minus_one,
8044 read_ptid): New.
8045 (prepare_resume_reply): Change ptid argument's type from unsigned
8046 long to ptid_t. Adjust. Implement W;process and X;process.
8047 (free_sym_cache, clear_symbol_cache): New.
8048 (look_up_one_symbol): Adjust to per-process symbol cache. *
8049 * server.c (cont_thread, general_thread, step_thread): Change type
8050 to ptid_t.
8051 (attached): Delete.
8052 (multi_process): New.
8053 (last_ptid): Change type to ptid_t.
8054 (struct vstop_notif) <ptid>: Change type to ptid_t.
8055 (queue_stop_reply, push_event): Change `ptid' argument's type to
8056 ptid_t.
8057 (discard_queued_stop_replies): Add `pid' argument.
8058 (start_inferior): Adjust to use ptids. Adjust to mywait interface
8059 changes. Don't reference the `attached' global.
8060 (attach_inferior): Adjust to mywait interface changes.
8061 (handle_query): Adjust to use ptids. Parse GDB's qSupported
8062 features. Handle and report "multiprocess+". Handle
8063 "qAttached:PID".
8064 (handle_v_cont): Adjust to use ptids. Adjust to mywait interface
8065 changes.
8066 (handle_v_kill): New.
8067 (handle_v_stopped): Adjust to use target_pid_to_str.
8068 (handle_v_requests): Allow multiple attaches and runs when
8069 multiprocess extensions are in effect. Handle "vKill".
8070 (myresume): Adjust to use ptids.
8071 (queue_stop_reply_callback): Add `arg' parameter. Handle it.
8072 (handle_status): Adjust to discard_queued_stop_replies interface
8073 change.
8074 (first_thread_of, kill_inferior_callback)
8075 (detach_or_kill_inferior_callback, join_inferiors_callback): New.
8076 (main): Call initialize_inferiors. Adjust to use ptids, killing
8077 and detaching from all inferiors. Handle multiprocess packet
8078 variants.
8079 * linux-low.h: Include gdb_proc_service.h.
8080 (struct process_info_private): New.
8081 (struct linux_target_ops) <pid_of>: Use ptid_get_pid.
8082 <lwpid_of>: Use ptid_get_lwp.
8083 (get_lwp_thread): Adjust.
8084 (struct lwp_info): Add `dead' member.
8085 (find_lwp_pid): Declare.
8086 * linux-low.c (thread_db_active): Delete.
8087 (new_inferior): Adjust comment.
8088 (inferior_pid): Delete.
8089 (linux_add_process): New.
8090 (handle_extended_wait): Adjust.
8091 (add_lwp): Change unsigned long to ptid.
8092 (linux_create_inferior): Add process to processes table. Adjust
8093 to use ptids. Don't set new_inferior here.
8094 (linux_attach_lwp): Rename to ...
8095 (linux_attach_lwp_1): ... this. Add `initial' argument. Handle
8096 it. Adjust to use ptids.
8097 (linux_attach_lwp): New.
8098 (linux_attach): Add process to processes table. Don't set
8099 new_inferior here.
8100 (struct counter): New.
8101 (second_thread_of_pid_p, last_thread_of_process_p): New.
8102 (linux_kill_one_lwp): Add `args' parameter. Handle it. Adjust to
8103 multiple processes.
8104 (linux_kill): Add `pid' argument. Handle it. Adjust to multiple
8105 processes. Remove process from process table.
8106 (linux_detach_one_lwp): Add `args' parameter. Handle it. Adjust
8107 to multiple processes.
8108 (any_thread_of): New.
8109 (linux_detach): Add `pid' argument, and handle it. Remove process
8110 from processes table.
8111 (linux_join): Add `pid' argument. Handle it.
8112 (linux_thread_alive): Change unsighed long argument to ptid_t.
8113 Consider dead lwps as not being alive.
8114 (status_pending_p): Rename `dummy' argument to `arg'. Filter out
8115 threads we're not interested in.
8116 (same_lwp, find_lwp_pid): New.
8117 (linux_wait_for_lwp): Change `pid' argument's type from int to
8118 ptid_t. Adjust.
8119 (linux_wait_for_event): Rename to ...
8120 (linux_wait_for_event_1): ... this. Change `pid' argument's type
8121 from int to ptid_t. Adjust.
8122 (linux_wait_for_event): New.
8123 (linux_wait_1): Add `ptid' argument. Change return type to
8124 ptid_t. Adjust. Use last_thread_of_process_p. Remove processes
8125 that exit from the process table.
8126 (linux_wait): Add `ptid' argument. Change return type to ptid_t.
8127 Adjust.
8128 (mark_lwp_dead): New.
8129 (wait_for_sigstop): Adjust to use ptids. If a process exits while
8130 stopping all threads, mark its main lwp as dead.
8131 (linux_set_resume_request, linux_resume_one_thread): Adjust to use
8132 ptids.
8133 (fetch_register, usr_store_inferior_registers)
8134 (regsets_fetch_inferior_registers)
8135 (regsets_store_inferior_registers, linux_read_memory)
8136 (linux_write_memory): Inline `inferior_pid'.
8137 (linux_look_up_symbols): Adjust to use per-process
8138 `thread_db_active'.
8139 (linux_request_interrupt): Adjust to use ptids.
8140 (linux_read_auxv): Inline `inferior_pid'.
8141 (initialize_low): Don't reference thread_db_active.
8142 * gdb_proc_service.h (struct ps_prochandle) <pid>: Remove.
8143 * proc-service.c (ps_lgetregs): Use find_lwp_pid.
8144 (ps_getpid): Return the pid of the current inferior.
8145 * thread-db.c (proc_handle, thread_agent): Delete.
8146 (thread_db_create_event, thread_db_enable_reporting): Adjust to
8147 per-process data.
8148 (find_one_thread): Change argument type to ptid_t. Adjust to
8149 per-process data.
8150 (maybe_attach_thread): Adjust to per-process data and ptids.
8151 (thread_db_find_new_threads): Ditto.
8152 (thread_db_init): Ditto.
8153 * spu-low.c (spu_create_inferior, spu_attach): Add process to
8154 processes table. Adjust to use ptids.
8155 (spu_kill, spu_detach): Adjust interface. Remove process from
8156 processes table.
8157 (spu_join, spu_thread_alive): Adjust interface.
8158 (spu_wait): Adjust interface. Remove process from processes
8159 table. Adjust to use ptids.
8160 * win32-low.c (current_inferior_tid): Delete.
8161 (current_inferior_ptid): New.
8162 (debug_event_ptid): New.
8163 (thread_rec): Take a ptid. Adjust.
8164 (child_add_thread): Add `pid' argument. Adjust to use ptids.
8165 (child_delete_thread): Ditto.
8166 (do_initial_child_stuff): Add `attached' argument. Add process to
8167 processes table.
8168 (child_fetch_inferior_registers, child_store_inferior_registers):
8169 Adjust.
8170 (win32_create_inferior): Pass 0 to do_initial_child_stuff.
8171 (win32_attach): Pass 1 to do_initial_child_stuff.
8172 (win32_kill): Adjust interface. Remove process from processes
8173 table.
8174 (win32_detach): Ditto.
8175 (win32_join): Adjust interface.
8176 (win32_thread_alive): Take a ptid.
8177 (win32_resume): Adjust to use ptids.
8178 (get_child_debug_event): Ditto.
8179 (win32_wait): Adjust interface. Remove exiting process from
8180 processes table.
8181
81822009-04-01 Pedro Alves <pedro@codesourcery.com>
8183
8184 Non-stop mode support.
8185
8186 * server.h (non_stop): Declare.
8187 (gdb_client_data, handler_func): Declare.
8188 (delete_file_handler, add_file_handler, start_event_loop):
8189 Declare.
8190 (handle_serial_event, handle_target_event, push_event)
8191 (putpkt_notif): Declare.
8192 * target.h (enum resume_kind): New.
8193 (struct thread_resume): Replace `step' field by `kind' field.
8194 (TARGET_WNOHANG): Define.
8195 (struct target_ops) <wait>: Add `options' argument.
8196 <supports_non_stop, async, start_non_stop>: New fields.
8197 (target_supports_non_stop, target_async): New.
8198 (start_non_stop): Declare.
8199 (mywait): Add `options' argument.
8200 * target.c (mywait): Add `options' argument. Print child exit
8201 notifications here.
8202 (start_non_stop): New.
8203 * server.c (non_stop, own_buf, mem_buf): New globals.
8204 (struct vstop_notif): New.
8205 (notif_queue): New global.
8206 (queue_stop_reply, push_event, discard_queued_stop_replies)
8207 (send_next_stop_reply): New.
8208 (start_inferior): Adjust to use resume_kind. Adjust to mywait
8209 interface changes.
8210 (attach_inferior): In non-stop mode, don't wait for the target
8211 here.
8212 (handle_general_set): Handle QNonStop.
8213 (handle_query): When handling qC, return the current general
8214 thread, instead of the first thread of the list.
8215 (handle_query): If the backend supports non-stop mode, include
8216 QNonStop+ in the qSupported query response.
8217 (handle_v_cont): Adjust to use resume_kind. Handle resume_stop
8218 and non-stop mode.
8219 (handle_v_attach, handle_v_run): Handle non-stop mode.
8220 (handle_v_stopped): New.
8221 (handle_v_requests): Report support for vCont;t. Handle vStopped.
8222 (myresume): Adjust to use resume_kind. Handle non-stop.
8223 (queue_stop_reply_callback): New.
8224 (handle_status): Handle non-stop mode.
8225 (main): Clear non_stop flag on reconnection. Use the event-loop.
8226 Refactor serial protocol handling from here ...
8227 (process_serial_event): ... to this new function. When GDB
8228 selects any thread, select one here. In non-stop mode, wait until
8229 GDB acks all pending events before exiting.
8230 (handle_serial_event, handle_target_event): New.
8231 * remote-utils.c (remote_open): Install remote_desc in the event
8232 loop.
8233 (remote_close): Remove remote_desc from the event loop.
8234 (putpkt_binary): Rename to...
8235 (putpkt_binary_1): ... this. Add `is_notic' argument. Handle it.
8236 (putpkt_binary): New as wrapper around putpkt_binary_1.
8237 (putpkt_notif): New.
8238 (prepare_resume_reply): In non-stop mode, don't change the
8239 general_thread.
8240 * event-loop.c: New.
8241 * Makefile.in (OBJ): Add event-loop.o.
8242 (event-loop.o): New rule.
8243
8244 * linux-low.h (pid_of): Moved here.
8245 (lwpid_of): New.
8246 (get_lwp_thread): Use lwpid_of.
8247 (struct lwp_info): Delete `lwpid' field. Add `suspended' field.
8248 * linux-low.c (pid_of): Delete.
8249 (inferior_pid): Use lwpid_of.
8250 (linux_event_pipe): New.
8251 (target_is_async_p): New.
8252 (delete_lwp): New.
8253 (handle_extended_wait): Use lwpid_of.
8254 (add_lwp): Don't set lwpid field.
8255 (linux_attach_lwp): Adjust debug output. Use lwpid_of.
8256 (linux_kill_one_lwp): If killing a running lwp, stop it first.
8257 Use lwpid_of. Adjust to linux_wait_for_event interface changes.
8258 (linux_detach_one_lwp): If detaching from a running lwp, stop it
8259 first. Adjust to linux_wait_for_event interface changes. Use
8260 lwpid_of.
8261 (linux_detach): Don't delete the main lwp here.
8262 (linux_join): Use my_waitpid. Avoid signal_pid. Use lwpid_of.
8263 (status_pending_p): Don't consider explicitly suspended lwps.
8264 (linux_wait_for_lwp): Take an integer pid instead of a lwp_info
8265 pointer. Add OPTIONS argument. Change return type to int. Use
8266 my_waitpid instead of sleeping. Handle WNOHANG. Use lwpid_of.
8267 (linux_wait_for_event): Take an integer pid instead of a lwp_info
8268 pointer. Add status pointer argument. Return a pid instead of a
8269 status. Use lwpid_of. Adjust to linux_wait_for_lwp interface
8270 changes. In non-stop mode, don't switch to a random thread.
8271 (linux_wait): Rename to...
8272 (linux_wait_1): ... this. Add target_options argument, and handle
8273 it. Adjust to use resume_kind. Use lwpid_of. In non-stop mode,
8274 don't handle the continue thread. Handle TARGET_WNOHANG. Merge
8275 clean exit and signal exit code. Don't stop all threads in
8276 non-stop mode. In all-stop mode, only stop all threads when
8277 reporting a stop to GDB. Handle explicit thread stop requests.
8278 (async_file_flush, async_file_mark): New.
8279 (linux_wait): New.
8280 (send_sigstop): Use lwpid_of.
8281 (wait_for_sigstop): Use lwpid_of. Adjust to linux_wait_for_event
8282 interface changes. In non-stop mode, don't switch to a random
8283 thread.
8284 (linux_resume_one_lwp): Use lwpid_of.
8285 (linux_continue_one_thread, linux_queue_one_thread): Merge into ...
8286 (linux_resume_one_thread): ... this. Handle resume_stop. In
8287 non-stop mode, don't look for pending flag in all threads.
8288 (resume_status_pending_p): Don't consider explicitly suspended
8289 threads.
8290 (my_waitpid): Reimplement. Emulate __WALL.
8291 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
8292 Use lwpid_of.
8293 (sigchld_handler, linux_supports_non_stop, linux_async)
8294 (linux_start_non_stop): New.
8295 (linux_target_ops): Register linux_supports_non_stop, linux_async
8296 and linux_start_non_stop.
8297 (initialize_low): Install SIGCHLD handler.
8298 * thread-db.c (thread_db_create_event, find_one_thread)
8299 (thread_db_get_tls_address): Use lwpid_of.
8300 * win32-low.c (win32_detach): Adjust to use resume_kind.
8301 (win32_wait): Add `options' argument.
8302 * spu-low.c (spu_resume): Adjust to use resume_kind.
8303 (spu_wait): Add `options' argument.
8304
83052009-04-01 Pedro Alves <pedro@codesourcery.com>
8306
8307 Decouple target code from remote protocol.
8308
8309 * target.h (enum target_waitkind): New.
8310 (struct target_waitstatus): New.
8311 (struct target_ops) <wait>: Return an unsigned long. Take a
8312 target_waitstatus pointer instead of a char pointer.
8313 (mywait): Likewise.
8314 * target.c (mywait): Change prototype to return an unsigned long.
8315 Take a target_waitstatus pointer instead of a char pointer. Adjust.
8316 * server.h (thread_from_wait, old_thread_from_wait): Delete
8317 declarations.
8318 (prepare_resume_reply): Change prototype to take a
8319 target_waitstatus.
8320 * server.c (thread_from_wait, old_thread_from_wait): Delete.
8321 (last_status, last_ptid): New.
8322 (start_inferior): Remove "statusptr" argument. Adjust. Return a
8323 pid instead of a signal.
8324 (attach_inferior): Remove "status" and "signal" parameters.
8325 Adjust.
8326 (handle_query): For qGetTLSAddr, parse the thread id with strtol,
8327 not as an address.
8328 (handle_v_cont, handle_v_attach, handle_v_run, handle_v_kill)
8329 (handle_v_requests, myresume): Remove "status" and "signal"
8330 parameters. Adjust.
8331 (handle_status): New.
8332 (main): Delete local `status'. Adjust.
8333 * remote-utils.c: Include target.h.
8334 (prepare_resume_reply): Change prototype to take a
8335 target_waitstatus. Adjust.
8336
8337 * linux-low.c (linux_wait): Adjust to new target_ops->wait
8338 interface.
8339 * spu-low.c (spu_wait): Adjust.
8340 * win32-low.c (enum target_waitkind, struct target_waitstatus):
8341 Delete.
8342 (win32_wait): Adjust.
8343
83442009-04-01 Pedro Alves <pedro@codesourcery.com>
8345
8346 * target.h (struct thread_resume): Delete leave_stopped member.
8347 (struct target_ops): Add a `n' argument to the `resume' callback.
8348 * server.c (start_inferior): Adjust.
8349 (handle_v_cont, myresume): Adjust.
8350 * linux-low.c (check_removed_breakpoint): Adjust to resume
8351 interface change, and to removed leave_stopped field.
8352 (resume_ptr): Delete.
8353 (struct thread_resume_array): New.
8354 (linux_set_resume_request): Add new `arg' parameter. Adjust to
8355 resume interface change.
8356 (linux_continue_one_thread, linux_queue_one_thread)
8357 (resume_status_pending_p): Check if the resume field is NULL
8358 instead of checking the leave_stopped member.
8359 (linux_resume): Adjust to the target resume interface change.
8360 * spu-low.c (spu_resume): Adjust to the target resume interface
8361 change.
8362 * win32-low.c (win32_detach, win32_resume): Ditto.
8363
83642009-04-01 Pedro Alves <pedro@codesourcery.com>
8365
8366 * linux-low.c (linux_wait_for_event): Don't clear the `stepping'
8367 flag.
8368 (wait_for_sigstop): Don't leave a finished single-step SIGTRAP
8369 pending.
8370 (linux_continue_one_thread): Only preserve the stepping flag if
8371 there's a pending breakpoint.
8372
83732009-03-31 Pedro Alves <pedro@codesourcery.com>
8374
8375 * server.c (main): After the inferior having exited, call
8376 remote_close before exiting gdbserver.
8377
83782009-03-25 Thiago Jung Bauermann <bauerman@br.ibm.com>
8379
8380 Fix size of FPSCR in Power 7 processors.
8381 * linux-ppc-low.c (PPC_FEATURE_ARCH_2_05): Remove #define.
8382 (PPC_FEATURE_HAS_DFP): New #define.
8383 (ppc_arch_setup): Check for DFP feature instead of ISA 2.05 to decide on
8384 size of the FPSCR.
8385
83862009-03-23 Pedro Alves <pedro@codesourcery.com>
8387
8388 * server.c (handle_query) Whitespace and formatting.
8389
83902009-03-22 Pedro Alves <pedro@codesourcery.com>
8391
8392 * i387-fp.c, linux-arm-low.c, linux-cris-low.c,
8393 linux-crisv32-low.c, linux-i386-low.c, linux-low.c,
8394 linux-mips-low.c, linux-s390-low.c, linux-sparc-low.c,
8395 linux-x86-64-low.c, linux-xtensa-low.c, proc-service.c,
8396 regcache.c, remote-utils.c, server.c, spu-low.c, target.h,
8397 thread-db.c, win32-low.c, xtensa-xtregs.c, gdbreplay.c,
8398 Makefile.in, configure.ac: Fix whitespace throughout.
8399 * configure: Regenerate.
8400
84012009-03-22 Pedro Alves <pedro@codesourcery.com>
8402
8403 * inferiors.c (find_inferior): Make it safe for the callback
8404 function to delete the currently iterated inferior.
8405
84062009-03-22 Pedro Alves <pedro@codesourcery.com>
8407
8408 * Makefile.in (linuw_low_h): Move higher.
8409 (thread-db.o): Depend on $(linux_low_h).
8410
84112009-03-17 Pedro Alves <pedro@codesourcery.com>
8412
8413 Rename "process" to "lwp" throughout.
8414
8415 * linux-low.c (all_processes): Rename to...
8416 (all_lwps): ... this.
8417 (inferior_pid, handle_extended_wait, get_stop_pc): Adjust.
8418 (add_process): Rename to ...
8419 (add_lwp): ... this. Adjust.
8420 (linux_create_inferior): Adjust.
8421 (linux_attach_lwp): Adjust.
8422 (linux_attach): Adjust.
8423 (linux_kill_one_process): Rename to ...
8424 (linux_kill_one_lwp): ... this. Adjust.
8425 (linux_kill): Adjust.
8426 (linux_detach_one_process): Rename to ...
8427 (linux_detach_one_lwp): ... this. Adjust.
8428 (linux_detach): Adjust.
8429 (check_removed_breakpoint): Adjust.
8430 (status_pending_p): Adjust.
8431 (linux_wait_for_process): Rename to ...
8432 (linux_wait_for_lwp): ... this. Adjust.
8433 (linux_wait_for_event): Adjust.
8434 (send_sigstop): Adjust.
8435 (wait_for_sigstop): Adjust.
8436 (stop_all_processes): Rename to ...
8437 (stop_all_lwps): ... this.
8438 (linux_resume_one_process): Rename to ...
8439 (linux_resume_one_lwp): ... this. Adjust.
8440 (linux_set_resume_request, linux_continue_one_thread)
8441 (linux_queue_one_thread, resume_status_pending_p)
8442 (usr_store_inferior_registers, regsets_store_inferior_registers)
8443 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
8444 Adjust.
8445 * linux-low.h (get_process): Rename to ...
8446 (get_lwp): ... this. Adjust.
8447 (get_thread_process): Rename to ...
8448 (get_thread_lwp): ... this. Adjust.
8449 (get_process_thread): Rename to ...
8450 (get_lwp_thread): ... this. Adjust.
8451 (struct process_info): Rename to ...
8452 (struct lwp_info): ... this.
8453 (all_processes): Rename to ...
8454 (all_lwps): ... this.
8455 * proc-service.c (ps_lgetregs): Adjust.
8456 * thread-db.c (thread_db_create_event, find_one_thread)
8457 (maybe_attach_thread, thread_db_get_tls_address): Adjust.
8458
84592009-03-14 Pedro Alves <pedro@codesourcery.com>
8460
8461 * server.c (handle_query): Handle "qAttached".
8462
84632009-03-13 Nathan Sidwell <nathan@codesourcery.com>
8464
8465 * Makefile.in, hostio-errno.c, errno.c, xtensa-xtregs.c: Change to
8466 GPLv3, update license URL.
8467
84682009-03-01 Doug Evans <dje@google.com>
8469
8470 * Makefile.in (INCLUDE_CFLAGS): Add -I$(srcdir)/../common.
8471 (server_h): Add gdb_signals.h.
8472 (signals.o): Update.
8473 * server.h (target_signal_from_host,target_signal_to_host_p)
8474 (target_signal_to_host,target_signal_to_name): Moved to gdb_signals.h.
8475
84762009-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
8477
8478 * remote-utils.c (getpkt): Also generate remote-debug
8479 information if noack_mode is set.
8480
84812009-02-06 Pedro Alves <pedro@codesourcery.com>
8482
8483 * server.c (handle_query): Report qXfer:siginfo:read and
8484 qXfer:siginfo:write as supported and handle them.
8485 * target.h (struct target_ops) <qxfer_siginfo>: New field.
8486 * linux-low.c (linux_xfer_siginfo): New.
8487 (linux_target_ops): Set it.
8488
84892009-01-26 Pedro Alves <pedro@codesourcery.com>
8490
8491 * server.c (gdbserver_usage): Mention --remote-debug.
8492 (main): Accept '--remote-debug' switch.
8493
84942009-01-18 Doug Evans <dje@google.com>
8495
8496 * regcache.c (new_register_cache): No need to check result of xcalloc.
8497 * server.c (handle_search_memory): Back out calls to xmalloc,
8498 result is checked and error is returned to user upon failure.
8499 (handle_query): Ditto. Add more checks for result of malloc.
8500 (handle_v_cont): Check result of malloc, report error back to
8501 user upon failure.
8502 (handle_v_run): Ditto. Call freeargv.
8503 * server.h (freeargv): Declare.
8504 * utils.c (freeargv): New fn.
8505
85062009-01-15 Doug Evans <dje@google.com>
8507
8508 * gdbreplay.c (perror_with_name): Make arg const char *.
8509 * server.h (target_signal_to_name): Make return type const char *.
8510 * thread-db.c (thread_db_err_str): Make return type const char *.
8511 * utils.c (perror_with_name): Make arg const char *.
8512
85132009-01-14 Pedro Alves <pedro@codesourcery.com>
8514
8515 * win32-low.c (get_child_debug_event): Issue a final DBG_CONTINUE
8516 when handling a EXIT_PROCESS_DEBUG_EVENT.
8517
85182009-01-06 Joel Brobecker <brobecker@adacore.com>
8519
8520 * gdbreplay.c (gdbreplay_version): Update copyright year.
8521 * server.c (gdbserver_version): Likewise.
8522
85232009-01-05 Doug Evans <dje@google.com>
8524
8525 * linux-low.c (linux_attach_lwp): Add some comments/fixmes.
8526 (handle_extended_wait): Improve comment.
8527
85282008-12-13 Doug Evans <dje@google.com>
8529
8530 * utils.c (xmalloc,xcalloc,xstrdup): New fns.
8531 * server.h (ATTR_MALLOC): New macro.
8532 (xmalloc,xcalloc,xstrdup): Declare.
8533 * hostio.c: Replace malloc,calloc,strdup with xmalloc,xcalloc,xstrdup.
8534 * inferiors.c: Ditto.
8535 * linux-low.c: Ditto.
8536 * mem-break.c: Ditto.
8537 * regcache.c: Ditto.
8538 * remote-utils.c: Ditto.
8539 * server.c: Ditto.
8540 * target.c: Ditto.
8541 * win32-low.c: Ditto.
8542
85432008-12-12 Doug Evans <dje@google.com>
8544
8545 * linux-low.c (linux_wait_for_process): Don't clobber current_inferior
8546 in debugging printf.
8547
8548 * linux-low.c (handle_extended_wait): Simplify, use my_waitpid.
8549
85502008-12-09 Doug Evans <dje@google.com>
8551
8552 * linux-low.h (struct process_info): Delete member tid, unused.
8553 * thread-db.c (find_one_thread): Update.
8554 (maybe_attach_thread): Update.
8555
85562008-12-02 Pedro Alves <pedro@codesourcery.com>
8557
8558 * target.h (struct target_ops): Add qxfer_osdata member.
8559 * linux-low.c: Include ctype.h and pwd.h and sys/types.h
8560 and dirent.h.
8561 (linux_qxfer_osdata): New functions.
8562 (linux_target_ops): Register linux_qxfer_osdata as qxfer_osdata
8563 callback.
8564 * server.c (handle_query): Handle "qXfer:osdata:read:".
8565 * remote-utils.c (buffer_grow, buffer_free, buffer_init, buffer_finish)
8566 (buffer_xml_printf): New functions.
8567 * server.h (struct buffer): New.
8568 (buffer_grow_str, buffer_grow_str0): New macros.
8569 (buffer_grow, buffer_free, buffer_init, buffer_finish)
8570 (buffer_xml_printf): Declare.
8571
85722008-11-24 Doug Evans <dje@google.com>
8573
8574 * Makefile.in (VERSION,DIST,LINT,LINTFLAGS): Delete, unused.
8575
85762008-11-24 Daniel Jacobowitz <dan@codesourcery.com>
8577
8578 * server.c (handle_v_run): Always use the supplied argument list.
8579
85802008-11-19 Bob Wilson <bob.wilson@acm.org>
8581
8582 * xtensa-xtregs.c (XTENSA_ELF_XTREG_SIZE): Change to 4.
8583 (xtensa_regmap_table): Add entry for scompare1.
8584
85852008-11-18 Thiago Jung Bauermann <bauerman@br.ibm.com>
8586
8587 * Makefile.in (powerpc-isa205-32l.o, powerpc-isa205-32l.c,
8588 powerpc-isa205-altivec32l.o, powerpc-isa205-altivec32l.c,
8589 powerpc-isa205-vsx32l.o, powerpc-isa205-vsx32l.c,
8590 powerpc-isa205-64l.o, powerpc-isa205-64l.c,
8591 powerpc-isa205-altivec64l.o, powerpc-isa205-altivec64l.c,
8592 powerpc-isa205-vsx64l.o, powerpc-isa205-vsx64l.c): New targets.
8593 * configure.srv (powerpc*-*-linux*): Add ISA 2.05 object files and
8594 XML target descriptions.
8595 * linux-ppc-low.c (ppc_arch_setup): Init registers with 64-bit FPSCR
8596 when inferior is running on an ISA 2.05 or later processor. Add
8597 special case to return offset for full 64-bit slot of FPSCR when
8598 in 32-bits.
8599
86002008-11-14 Daniel Gutson <dgutson@codesourcery.com>
8601
8602 * Makefile.in (SFILES, clean): Added sparc64 files.
8603 (reg-sparc64.o, reg-sparc64.c): New.
8604 * configure.srv (sparc*-*-linux*): New configuration.
8605 * linux-low.c (regsets_fetch_inferior_registers): Swap ptrace
8606 syscall arguments for SPARC.
8607 (regsets_store_inferior_registers): Likewise.
8608 * linux-sparc-low.c: New file.
8609
86102008-10-21 Doug Evans <dje@google.com>
8611
8612 * Makefile.in (BFD_DIR,BFD,BFD_SRC,BFD_CFLAGS): Delete.
8613 (READLINE_DIR,READLINE_DEP): Delete.
8614 (INTERNAL_CFLAGS): Update.
8615 (LINTFLAGS): Update.
8616
86172008-10-10 Pedro Alves <pedro@codesourcery.com>
8618
8619 * server.c (handle_v_run): If GDB didn't specify an argv, use the
8620 whole argv from the last run, not just argv[0].
8621
86222008-09-08 Pedro Alves <pedro@codesourcery.com>
8623
8624 * regcache.c (new_register_cache): Return NULL if the register
8625 cache size isn't known yet.
8626 (free_register_cache): Avoid dereferencing a NULL regcache.
8627
86282008-09-04 Daniel Jacobowitz <dan@codesourcery.com>
8629
8630 * configure.srv: Merge MIPS and MIPS64.
8631
86322008-08-24 Maciej W. Rozycki <macro@linux-mips.org>
8633
8634 * Makefile.in (uninstall): Apply $(EXEEXT) too.
8635
86362008-08-18 Luis Machado <luisgpm@br.ibm.com>
8637
8638 * Makefile.in: Add required vsx dependencies.
8639
8640 * linux-ppc-low: Define PPC_FEATURE_HAS_VSX.
8641 Declare init_registers_powerpc_vsx32l.
8642 Declare init_registers_powerpc_vsx64l.
8643 Define PTRACE_GETVSXREGS and PTRACE_SETVSXREGS.
8644 (ppc_arch_setup): Check for VSX in hwcap.
8645 (ppc_fill_vsxregset): New function.
8646 (ppc_store_vsxregset): New function.
8647 Add new VSX entry in regset_info target_regsets.
8648
8649 * configure.srv: Add new VSX dependencies.
8650
86512008-08-12 Pedro Alves <pedro@codesourcery.com>
8652
8653 * remote-utils.c (noack_mode, transport_is_reliable): New globals.
8654 (remote_open): Set or clear transport_is_reliable.
8655 (putpkt_binary): Don't expect acks in noack mode.
8656 (getpkt): Don't send ack/nac in noack mode.
8657 * server.c (handle_general_set): Handle QStartNoAckMode.
8658 (handle_query): If connected by tcp pass QStartNoAckMode+ in
8659 qSupported.
8660 (main): Reset noack_mode on every connection.
8661 * server.h (noack_mode): Declare.
8662
86632008-08-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
8664
8665 * Makefile.in (GDBREPLAY_OBS): New variable.
8666 (gdbreplay$(EXEEXT)): Use it to avoid unportable $^.
8667
86682008-08-05 Ulrich Weigand <uweigand@de.ibm.com>
8669 Daniel Jacobowitz <dan@codesourcery.com>
8670
8671 * linux-low.c (linux_resume_one_process): Ignore ESRCH.
8672 (usr_store_inferior_registers): Likewise.
8673 (regsets_store_inferior_registers): Likewise.
8674
86752008-07-31 Rolf Jansen <rj@surtec.com>
8676 Pedro Alves <pedro@codesourcery.com>
8677
8678 * configure.ac: Check for memmem declaration.
8679 * server.c [HAVE_MALLOC_H]: Include malloc.h.
8680 (disable_packet_vCont, disable_packet_Tthread, disable_packet_qC)
8681 (disable_packet_qfThreadInfo): Unconditionally compile.
8682 * server.h [!HAVE_DECL_MEMMEM]: Declare memmem.
8683 * configure, config.in: Regenerate.
8684
86852008-07-28 Doug Kwan <dougkwan@google.com>
8686
8687 * linux-low.c (sys/dir.h, sys/user.h): Remove includes.
8688 (linux_write_memory): Remove declaration of errno.
8689
86902008-07-12 Ulrich Weigand <uweigand@de.ibm.com>
8691
8692 * linux-low.c (handle_extended_wait): Do not use "status"
8693 variable uninitialized.
8694
86952008-07-07 Pedro Alves <pedro@codesourcery.com>
8696
8697 * server.c (handle_v_attach): Inhibit reporting dll changes.
8698
86992008-06-27 Pedro Alves <pedro@codesourcery.com>
8700
8701 * remote-utils.c (prepare_resume_reply): If requested, don't
8702 output "thread:TID" in the T stop reply.
8703
8704 * server.c (disable_packet_vCont, disable_packet_Tthread)
8705 (disable_packet_qC, disable_packet_qfThreadInfo): New globals.
8706 (handle_query): If requested, disable support for qC, qfThreadInfo
8707 and qsThreadInfo.
8708 (handle_v_requests): If requested, disable support for vCont.
8709 (gdbserver_show_disableable): New.
8710 (main): Handle --disable-packet and --disable-packet=LIST.
8711
8712 * server.h (disable_packet_vCont, disable_packet_Tthread)
8713 (disable_packet_qC, disable_packet_qfThreadInfo): Declare.
8714
87152008-06-20 Carlos O'Donell <carlos@codesourcery.com>
8716
8717 * server.c (gdbserver_usage): Mention --version.
8718
87192008-06-06 Daniel Jacobowitz <dan@codesourcery.com>
8720
8721 * Makefile.in (gdbreplay.o): New rule.
8722
87232008-06-06 Joseph Myers <joseph@codesourcery.com>
8724
8725 * gdbreplay.c (gdbreplay_version): Say gdbreplay in version
8726 message, not gdbserver.
8727
87282008-06-05 Vladimir Prus <vladimir@codesourcery.com>
8729 Nathan Sidwell <nathan@codesourcery.com>
8730 Joseph Myers <joseph@codesourcery.com>
8731
8732 * acinclude.m4: Include ../../config/acx.m4.
8733 * configure.ac: Use ACX_PKGVERSION and ACX_BUGURL.
8734 * configure, config.in: Regenerate.
8735 * Makefile.in (gdbreplay$(EXEEXT)): Add version.o.
8736 * server.c (gdbserver_version): Print PKGVERSION.
8737 (gdbsrever_usage): Add stream parameter. Print REPORT_BUGS_TO.
8738 (main): Adjust gdbserver_usage calls.
8739 * gdbreplay.c (version, host_name): Add declarations.
8740 (gdbreplay_version, gdbreplay_usage): New.
8741 (main): Accept --version and --help options.
8742
87432008-06-04 Daniel Jacobowitz <dan@codesourcery.com>
8744
8745 * linux-arm-low.c (thumb_breakpoint, thumb_breakpoint_len): New.
8746 (arm_breakpoint_at): Handle Thumb.
8747 (the_low_target): Add comment.
8748
87492008-05-29 Ulrich Weigand <uweigand@de.ibm.com>
8750
8751 * linux-ppc-low.c (ppc_collect_ptrace_register): Clear buffer.
8752
87532008-05-09 Doug Evans <dje@google.com>
8754
8755 * server.h (decode_search_memory_packet): Declare.
8756 * remote-utils.c (decode_search_memory_packet): New fn.
8757 * server.c (handle_search_memory_1): New fn.
8758 (handle_search_memory): New fn.
8759 (handle_query): Process qSearch:memory packets.
8760
87612008-05-08 Ulrich Weigand <uweigand@de.ibm.com>
8762
8763 * regcache.c (registers_length): Remove.
8764 (set_register_cache): Verify that PBUFSIZ is large enough to hold a
8765 full register packet.
8766 * regcache.h (registers_length): Remove prototype.
8767 * server.h (PBUFSIZ): Define to 16384.
8768
87692008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
8770
8771 * configure.srv (powerpc*-*-linux*): Set srv_regobj to
8772 powerpc-32l.o, powerpc-altivec32l.o, powerpc-e500l.o,
8773 powerpc-64l.o, and powerpc-altivec64l.o.
8774 Remove rs6000/powerpc-32.xml, rs6000/powerpc-64.xml, and
8775 rs6000/powerpc-e500.xml; add rs6000/powerpc-32l.xml,
8776 rs6000/powerpc-altivec32l.xml, rs6000/powerpc-e500l.xml,
8777 rs6000/powerpc-64l.xml, rs6000/powerpc-altivec64l.xml,
8778 rs6000/power-linux.xml, and rs6000/power64-linux.xml
8779 to srv_xmlfiles.
8780
8781 * Makefile.in (reg-ppc.o, reg-ppc.c): Remove, replace by ...
8782 (powerpc-32l.o, powerpc-32l.c): ... these new rules.
8783 (powerpc-32.o, powerpc-32.c): Remove, replace by ...
8784 (powerpc-altivec32l.o, powerpc-altivec32l.c): ... these new rules.
8785 (powerpc-e500.o, powerpc-e500.c): Remove, replace by ...
8786 (powerpc-e500l.o, powerpc-e500l.c): ... these new rules.
8787 (reg-ppc64.o, reg-ppc64.c): Remove, replace by ...
8788 (powerpc-64l.o, powerpc-64l.c): ... these new rules.
8789 (powerpc-64.o, powerpc-64.c): Remove, replace by ...
8790 (powerpc-altivec64l.o, powerpc-altivec64l.c): ... these new rules.
8791 (clean): Update.
8792
8793 * linux-ppc-low.c (init_registers_ppc): Remove, replace by ...
8794 (init_registers_powerpc_32l): ... this new prototype.
8795 (init_registers_powerpc_32): Remove, replace by ...
8796 (init_registers_powerpc_altivec32l): ... this new prototype.
8797 (init_registers_powerpc_e500): Remove, replace by ...
8798 (init_registers_powerpc_e500l): ... this new prototype.
8799 (init_registers_ppc64): Remove, replace by ...
8800 (init_registers_powerpc_64l): ... this new prototype.
8801 (init_registers_powerpc_64): Remove, replace by ...
8802 (init_registers_powerpc_altivec64l): ... this new prototype.
8803 (ppc_num_regs): Set to 73.
8804 (PT_ORIG_R3, PT_TRAP): Define if necessary.
8805 (ppc_regmap, ppc_regmap_e500): Add values for orig_r3 and trap.
8806 (ppc_cannot_store_register): Handle orig_r3 and trap.
8807 (ppc_arch_setup): Update init_registers_... calls.
8808 (ppc_fill_gregset): Handle orig_r3 and trap.
8809
8810 * inferiors.c (clear_inferiors): Reset current_inferior.
8811
88122008-04-23 Paolo Bonzini <bonzini@gnu.org>
8813
8814 * acinclude.m4: Add override.m4.
8815 * configure: Regenerate.
8816
88172008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
8818
8819 * linux-ppc-low.c (ppc_arch_setup): Reset ppc_hwcap after the
8820 initial call to init_register_ppc64.
8821
88222008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
8823
8824 * configure.srv (powerpc64-*-linux*, powerpc-*-linux*): Merge into
8825 single powerpc*-*-linux* case.
8826 (s390-*-linux*, s390x-*-linux*): Merge into single s390*-*-linux* case.
8827
88282008-04-17 Ulrich Weigand <uweigand@de.ibm.com>
8829
8830 * configure.srv [powerpc64-*-linux*]: Remove powerpc-e500.o from
8831 srv_regobj. Remove rs6000/powerpc-e500.xml and rs6000/power-spe.xml
8832 from reg_xmlfiles.
8833 * linux-ppc-low.c: Include <elf.h>.
8834 (PPC_FEATURE_HAS_ALTIVEC, PPC_FEATURE_HAS_SPE): Define.
8835 (ppc_hwcap): New global variable.
8836 (ppc_regmap): Remove __SPE__ #ifdef sections.
8837 (ppc_regmap_e500): New global variable.
8838 (ppc_cannot_store_register): Update __SPE__ special case.
8839 (ppc_get_hwcap): New function.
8840 (ppc_arch_setup): Use it to determine whether inferior supports
8841 AltiVec or SPE registers. Set the_low_target.regmap if appropriate.
8842 (ppc_fill_vrregset, ppc_store_vrregset): Define unconditionally.
8843 Do not access registers if target does not support AltiVec.
8844 (ppc_fill_evrregset, ppc_store_evrregset): Define unconditionally.
8845 Do not access registers if target does not support SPE.
8846 (target_regsets): Unconditionally include AltiVec and SPE regsets.
8847
88482008-04-17 Daniel Jacobowitz <dan@codesourcery.com>
8849
8850 * linux-low.c (disabled_regsets, num_regsets): New.
8851 (use_regsets_p): Delete.
8852 (linux_wait_for_process): Clear disabled_regsets.
8853 (regsets_fetch_inferior_registers): Check and set it.
8854 (regsets_store_inferior_registers): Likewise.
8855 (linux_fetch_registers, linux_store_registers): Do not use
8856 use_regsets_p.
8857 (initialize_low): Allocate disabled_regsets.
8858
88592008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
8860
8861 * Makefile.in (LIBOBJS): New.
8862 (OBS): Use LIBOBJS.
8863 (memmem.o): New rule.
8864 * configure.ac: Use AC_CONFIG_LIBOBJ_DIR and check for memmem.
8865 * configure: Regenerated.
8866
88672008-04-04 Ulrich Weigand <uweigand@de.ibm.com>
8868
8869 * server.c (handle_query): Never return "unsupported" for
8870 qXfer:features:read queries.
8871
88722008-03-27 Ulrich Weigand <uweigand@de.ibm.com>
8873
8874 * server.c (get_features_xml): Fix inverted condition.
8875 (handle_query): Always support qXfer:feature:read.
8876
88772008-03-10 Daniel Jacobowitz <dan@codesourcery.com>
8878
8879 * server.c (wrapper_argv): New.
8880 (start_inferior): Handle wrapper_argv. If set, expect an extra
8881 trap.
8882 (gdbserver_usage): Document --wrapper.
8883 (main): Parse --wrapper.
8884
88852008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
8886
8887 * configure.srv [powerpc64-*-linux*]: Add all files mentioned for
8888 powerpc-*-linux* to srv_regobj and reg_xmlfiles.
8889 * linux-ppc-low.c (ppc_get_pc): Support bi-arch operation.
8890 (ppc_set_pc): Likewise.
8891 (ppc_arch_setup): New function.
8892 (ppc_fill_gregset): Call ppc_collect_ptrace_register instead
8893 of collect_register.
8894 (the_low_target): Use ppc_arch_setup as arch_setup initializer.
8895
88962008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
8897
8898 * configure.srv [powerpc64-*-linux*]: Use linux-ppc-low.o
8899 instead of linux-ppc64-low.o.
8900 * linux-ppc64-low.c: Remove file.
8901 * Makefile.in (SFILES): Remove linux-ppc64-low.c.
8902 (linux-ppc64-low.o): Remove rule.
8903
8904 * linux-ppc-low.c (init_registers_ppc64): Add prototype.
8905 (init_registers_powerpc_64): Likewise.
8906 (ppc_regmap): Conditionally define depending on __powerpc64__.
8907 (ppc_cannot_store_register): Do not special-case "fpscr" when
8908 compiled on __powerpc64__.
8909 (ppc_collect_ptrace_register): New function.
8910 (ppc_supply_ptrace_register): New function.
8911 (ppc_breakpoint): Change type to "unsigned int".
8912 (ppc_breakpoint_at): Change type of "insn" to "unsigned int".
8913 (the_low_target): Conditionally provide initializers for the
8914 arch_setup member depending on __powerpc64__. Install
8915 collect_ptrace_register and supply_ptrace_register members.
8916
89172008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
8918
8919 * regcache.h (gdbserver_xmltarget): Add extern declaration.
8920 * server.c (gdbserver_xmltarget): Define.
8921 (get_features_xml): Use it to replace "target.xml" and arch_string.
8922
8923 * configure.srv: Remove srv_xmltarget. Add XML files that were
8924 mentioned there to srv_xmlfiles instead. Remove conditional tests
8925 on gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe; set
8926 srv_xmlfiles and srv_regobj to include all possible choices.
8927 * configure.ac (srv_xmltarget): Remove.
8928 (srv_xmlfiles): Do not add "target.xml".
8929 (gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe): Remove
8930 checks for supplementary target information.
8931 * configure: Regenerate.
8932 * Makefile.in (XML_TARGET): Remove.
8933 (target.xml): Remove rule.
8934 (clean): Do not clean up target.xml.
8935 (.PRECIOUS): Do not mention target.xml.
8936
8937 * target.h (struct target_ops): Remove arch_string member.
8938 * linux-low.c (linux_arch_string): Remove.
8939 (linux_target_ops): Remove arch_string initializer.
8940 * linux-low.h (struct linux_target_ops): Remove arch_string member.
8941 * linux-i386-low.c (the_low_target): Remove arch_string initializer.
8942 * linux-x86-64-low.c (the_low_target): Remove arch_string initializer.
8943 * spu-low.c (spu_arch_string): Remove.
8944 (spu_target_ops): Remove arch_string initializer.
8945 * win32-low.c (win32_arch_string): Remove.
8946 (win32_target_ops): Remove arch_string initializer.
8947 * win32-low.h (struct win32_target_ops): Remove arch_string member.
8948 * win32-arm-low.c (the_low_target): Remove arch_string initializer.
8949 * win32-i368-low.c (the_low_target): Remove arch_string initializer.
8950
89512008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
8952
8953 * linux-low.h (struct linux_target_ops): Replace left_pad_xfer field
8954 by collect_ptrace_register and supply_ptrace_register hooks.
8955 * linux-low.c (fetch_register): Use supply_ptrace_register callback
8956 instead of checking for the_low_target.left_pad_xfer.
8957 (usr_store_inferior_registers): Use collect_ptrace_register callback
8958 instead of checking for the_low_target.left_pad_xfer.
8959
8960 * linux-s390-low.c (s390_collect_ptrace_register): New function.
8961 (s390_supply_ptrace_register): Likewise.
8962 (s390_fill_gregset): Call s390_collect_ptrace_register.
8963 (the_low_target): Update.
8964
8965 * linux-ppc64-low.c (ppc_collect_ptrace_register): New function.
8966 (ppc_supply_ptrace_register): Likewise.
8967 (the_low_target): Update.
8968
8969 * linux-i386-low.c (the_low_target): Update.
8970 * linux-x86-64-low.c (the_low_target): Update.
8971
89722008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
8973
8974 * configure.srv [s390x-*-linux*]: Set srv_regobj to include both
8975 reg-s390.o and reg-s390x.o.
8976
8977 * linux-low.c (new_inferior): New global variable.
8978 (linux_create_inferior, linux_attach): Set it.
8979 (linux_wait_for_process): Call the_low_target.arch_setup after the
8980 target has stopped for the first time.
8981 (initialize_low): Do not call the_low_target.arch_setup.
8982
8983 * linux-s390-low.c (s390_get_pc): Support bi-arch operation.
8984 (s390_set_pc): Likewise.
8985 (s390_arch_setup): New function.
8986 (the_low_target): Use s390_arch_setup as arch_setup routine.
8987
8988 * regcache.c (realloc_register_cache): New function.
8989 (set_register_cache): Call it for each existing regcache.
8990
89912008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
8992
8993 * server.h (init_registers): Remove prototype.
8994
8995 * linux-low.h (struct linux_target_ops): Add arch_setup field.
8996 * linux-low.c (initialize_low): Call the_low_target.arch_setup ()
8997 instead of init_registers ().
8998 * linux-arm-low.c (init_registers_arm): Add prototype.
8999 (init_registers_arm_with_iwmmxt): Likewise.
9000 (the_low_target): Add initializer for arch_setup field.
9001 * linux-cris-low.c (init_registers_cris): Add prototype.
9002 (the_low_target): Add initializer for arch_setup field.
9003 * linux-crisv32-low.c (init_registers_crisv32): Add prototype.
9004 (the_low_target): Add initializer for arch_setup field.
9005 * linux-i386-low.c (init_registers_i386_linux): Add prototype.
9006 (the_low_target): Add initializer for arch_setup field.
9007 * linux-ia64-low.c (init_registers_ia64): Add prototype.
9008 (the_low_target): Add initializer for arch_setup field.
9009 * linux-m32r-low.c (init_registers_m32r): Add prototype.
9010 (the_low_target): Add initializer for arch_setup field.
9011 * linux-m68k-low.c (init_registers_m68k): Add prototype.
9012 (the_low_target): Add initializer for arch_setup field.
9013 * linux-mips-low.c (init_registers_mips_linux): Add prototype.
9014 (init_registers_mips64_linux): Likewise.
9015 (the_low_target): Add initializer for arch_setup field.
9016 * linux-ppc-low.c (init_registers_ppc): Add prototype.
9017 (init_registers_powerpc_32, init_registers_powerpc_e500): Likewise.
9018 (the_low_target): Add initializer for arch_setup field.
9019 * linux-ppc64-low.c (init_registers_ppc64): Add prototype.
9020 (init_registers_powerpc_64): Likewise.
9021 (the_low_target): Add initializer for arch_setup field.
9022 * linux-s390-low.c (init_registers_s390): Add prototype.
9023 (init_registers_s390x): Likewise.
9024 (the_low_target): Add initializer for arch_setup field.
9025 * linux-sh-low.c (init_registers_sh): Add prototype.
9026 (the_low_target): Add initializer for arch_setup field.
9027 * linux-x86-64-low.c (init_registers_x86_64_linux): Add prototype.
9028 (the_low_target): Add initializer for arch_setup field.
9029 * linux-xtensa-low.c (init_registers_xtensa): Add prototype.
9030 (the_low_target): Add initializer for arch_setup field.
9031
9032 * win32-low.h (struct win32_target_ops): Add arch_setup field.
9033 * win32-low.c (initialize_low): Call the_low_target.arch_setup ()
9034 instead of init_registers ().
9035 * win32-arm-low.c (init_registers_arm): Add prototype.
9036 (the_low_target): Add initializer for arch_setup field.
9037 * win32-i386-low.c (init_registers_i386): Add prototype.
9038 (the_low_target): Add initializer for arch_setup field.
9039
9040 * spu-low.c (init_registers_spu): Add prototype.
9041 (initialize_low): Call initialie_registers_spu () instead of
9042 initialize_registers ().
9043
90442008-02-19 Pedro Alves <pedro@codesourcery.com>
9045
9046 * server.c (handle_v_requests): When handling the vRun and vAttach
9047 packets, if already debugging a process, don't kill it. Return an
9048 error instead.
9049
90502008-02-17 Daniel Jacobowitz <dan@codesourcery.com>
9051
9052 * server.c (handle_query): Correct length check.
9053
90542008-02-14 Pedro Alves <pedro_alves@portugalmail.pt>
9055
9056 * win32-low.c (do_initial_child_stuff): Add process handle
9057 parameter. Set current_process_handle and current_process_id from the
9058 parameters. Clear globals.
9059 (win32_create_inferior): Don't set current_process_handle and
9060 current_process_id here. Instead pass them on the call to
9061 do_initial_child_stuff.
9062 (win32_attach): Likewise.
9063 (win32_clear_inferiors): New.
9064 (win32_kill): Don't close the current process handle or the
9065 current thread handle here. Instead call win32_clear_inferiors.
9066 (win32_detach): Don't open a new handle to the process. Call
9067 win32_clear_inferiors.
9068 (win32_join): Don't rely on current_process_handle; open a new
9069 handle using the process id.
9070 (win32_wait): Call win32_clear_inferiors when the inferior process
9071 has exited.
9072
90732008-02-14 Daniel Jacobowitz <dan@codesourcery.com>
9074
9075 * server.c (monitor_show_help): Add "exit".
9076
90772008-02-11 Maxim Grigoriev <maxim2405@gmail.com>
9078
9079 * Makefile.in (SFILES): Add linux-xtensa-low.c.
9080 (clean): Add reg-xtensa.c.
9081 (linux-xtensa-low.o, reg-xtensa.o, reg-xtensa.c): New dependencies.
9082 * configure.srv (xtensa*-*-linux*) New target.
9083 * linux-xtensa-low.c: New.
9084 * xtensa-xtregs.c: New.
9085
90862008-02-01 Pedro Alves <pedro_alves@portugalmail.pt>
9087
9088 * hostio.c: Don't include errno.h.
9089 (errno_to_fileio_errno): Move to hostio-errno.
9090 * hostio.c: (hostio_error): Remove the error parameter. Defer the
9091 error number outputting to the target->hostio_last_error callback.
9092 (hostio_packet_error): Use FILEIO_EINVAL directly.
9093 (handle_open, handle_pread, hostio_error, handle_unlink): Update
9094 calls to hostio_error.
9095 * hostio-errno.c: New.
9096 * server.h (hostio_last_error_from_errno): Declare.
9097 * target.h (target_ops): Add hostio_last_error member.
9098 * linux-low.c (linux_target_op): Register hostio_last_error_from_errno
9099 as hostio_last_error handler.
9100 * spu-low.c (spu_target_ops): Likewise.
9101 * win32-low.c [_WIN32_WCE] (win32_error_to_fileio_error)
9102 (wince_hostio_last_error): New functions.
9103 (win32_target_ops) [_WIN32_WCE]: Register wince_hostio_last_error
9104 as hostio_last_error handler.
9105 (win32_target_ops) [!_WIN32_WCE]: Register
9106 hostio_last_error_from_errno as hostio_last_error handler.
9107 * Makefile.in (SFILES): Add hostio.c and hostio-errno.c.
9108 (hostio-errno.o): New rule.
9109 * configure.ac (GDBSERVER_DEPFILES): Add $srv_hostio_err_objs.
9110 * configure.srv (srv_hostio_err_objs): New variable. Default to
9111 hostio-errno.o.
9112 (arm*-*-mingw32ce*): Set srv_hostio_err_objs to "".
9113 * configure: Regenerate.
9114
91152008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
9116
9117 * linux-low.c (linux_attach_lwp): Do not _exit after errors.
9118 (linux_kill, linux_detach): Clean up the process list.
9119 * remote-utils.c (remote_open): Improve port number parsing.
9120 (putpkt_binary, input_interrupt): Only send interrupts if the target
9121 is running.
9122 * server.c (extended_protocol): Make static.
9123 (attached): Define earlier.
9124 (exit_requested, response_needed, program_argv): New variables.
9125 (target_running): New.
9126 (start_inferior): Clear attached here.
9127 (attach_inferior): Set attached here.
9128 (require_running): Define.
9129 (handle_query): Use require_running and target_running. Implement
9130 "monitor exit".
9131 (handle_v_attach, handle_v_run): New.
9132 (handle_v_requests): Use require_running. Handle vAttach and vRun.
9133 (gdbserver_usage): Update.
9134 (main): Redo argument parsing. Handle --debug and --multi. Handle
9135 --attach along with other options or after the port. Save
9136 program_argv. Support no initial program. Resynchronize
9137 communication with GDB after an error. Handle "monitor exit".
9138 Use require_running and target_running. Always allow the extended
9139 protocol. Do not error out for Hc0 or Hc-1. Do not automatically
9140 restart in extended mode.
9141 * README: Refer to the GDB manual. Update --attach usage.
9142
91432007-12-20 Andreas Schwab <schwab@suse.de>
9144
9145 * linux-low.c (STACK_SIZE): Define.
9146 (linux_tracefork_child): Use it. Use __clone2 on ia64.
9147 (linux_test_for_tracefork): Likewise.
9148
91492007-12-18 Daniel Jacobowitz <dan@codesourcery.com>
9150
9151 * linux-low.c (linux_wait_for_event): Update messages. Do not
9152 reinsert auto-delete breakpoints.
9153 * mem-break.c (struct breakpoint): Change return type of handler to
9154 int.
9155 (set_breakpoint_at): Update handler type.
9156 (reinsert_breakpoint_handler): Return 1 instead of calling
9157 delete_breakpoint.
9158 (reinsert_breakpoint_by_bp): Check for the original breakpoint before
9159 setting a new one.
9160 (check_breakpoints): Delete auto-delete breakpoints and return 2.
9161 * mem-break.h (set_breakpoint_at): Update handler type.
9162 * thread-db.c (thread_db_create_event, thread_db_create_event): Update.
9163 * win32-low.c (auto_delete_breakpoint): New.
9164 (get_child_debug_event): Use it.
9165
91662007-12-16 Daniel Jacobowitz <dan@codesourcery.com>
9167
9168 * configure.ac: Check for pread and pwrite.
9169 * hostio.c (handle_pread): Fall back to lseek and read.
9170 (handle_pwrite): Fall back to lseek and write.
9171 * config.in, configure: Regenerated.
9172
91732007-12-07 Daniel Jacobowitz <dan@codesourcery.com>
9174
9175 * server.c (myresume): Add own_buf argument.
9176 (main): Update calls.
9177
91782007-12-06 Daniel Jacobowitz <dan@codesourcery.com>
9179
9180 * linux-low.c (linux_wait, linux_resume): Do not handle async I/O.
9181 * remote-utils.c (remote_open): Do not call disable_async_io.
9182 (block_async_io): Delete.
9183 (unblock_async_io): Make static.
9184 (initialize_async_io): New.
9185 * server.c (handle_v_cont): Handle async I/O here.
9186 (myresume): Likewise. Move other common resume tasks here...
9187 (main): ... from here. Call initialize_async_io. Disable async
9188 I/O before the main loop.
9189 * server.h (initialize_async_io): Declare.
9190 (block_async_io, unblock_async_io): Delete prototypes.
9191 * spu-low.c (spu_resume, spu_wait): Do not handle async I/O here.
9192
91932007-12-06 Mick Davis <mickd@goanna.iinet.net.au>
9194
9195 * remote-utils.c (readchar): Allow binary data in received messages.
9196
91972007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
9198
9199 * win32-low.c (attaching): New global.
9200 (win32_create_inferior): Clear the `attaching' global.
9201 (win32_attach): Set the `attaching' global.
9202 (get_child_debug_event) [_WIN32_WCE]: Stop the inferior when
9203 attaching. Only set a breakpoint at the entry point if not
9204 attaching.
9205
92062007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
9207
9208 * server.c (main): Don't report dll events on the initial
9209 connection on attaches.
9210
92112007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
9212
9213 * server.c (main): Relax numerical bases supported for the pid of
9214 the --attach command line argument.
9215
92162007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
9217
9218 * win32-low.c (win32_attach): Call OpenProcess before
9219 DebugActiveProcess, not after. Add last error output to error
9220 call.
9221
92222007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
9223
9224 * win32-low.c (win32_get_thread_context)
9225 (win32_set_thread_context): New functions.
9226 (thread_rec): Use win32_get_thread_context.
9227 (continue_one_thread, win32_resume): Use win32_set_thread_context.
9228 * win32-low.h (win32_thread_info) [_WIN32_WCE]: Add `base_context'
9229 field.
9230
92312007-12-03 Leo Zayas
9232 Pedro Alves <pedro_alves@portugalmail.pt>
9233
9234 * win32-low.c (soft_interrupt_requested, faked_breakpoint): New
9235 global variables.
9236 (child_add_thread): Minor cleanup.
9237 (child_continue): Resume artificially suspended threads before
9238 calling ContinueDebugEvent.
9239 (suspend_one_thread): New.
9240 (fake_breakpoint_event): New.
9241 (get_child_debug_event): Change return type to int. Check here if
9242 gdb sent an interrupt request. If a soft interrupt was requested,
9243 fake a breakpoint event. Return 0 if there is no event to handle,
9244 and 1 otherwise.
9245 (win32_wait): Don't check here if gdb sent an interrupt request.
9246 Ensure there is a valid event to handle.
9247 (win32_request_interrupt): Add soft interruption method as last
9248 resort.
9249
92502007-12-03 Leo Zayas
9251 Pedro Alves <pedro_alves@portugalmail.pt>
9252
9253 * win32-low.h (win32_thread_info): Add descriptions to the
9254 structure members. Replace `suspend_count' counter by a
9255 `suspended' flag.
9256 * win32-low.c (thread_rec): Update condition of when to get the
9257 context from the inferior. Rely on ContextFlags being set if it
9258 has already been retrieved. Only suspend the inferior thread if
9259 we haven't already. Warn if that fails.
9260 (continue_one_thread): s/suspend_count/suspended/. Only call
9261 ResumeThread once. Warn if that fails.
9262
92632007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
9264
9265 * win32-low.c (win32_wait): Don't read from the inferior when it
9266 has already exited.
9267
92682007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
9269
9270 * Makefile.in (win32_low_h): New variable.
9271 (win32-low.o): Add dependency on $(win32_low_h).
9272 (win32-arm-low.o, win32-i386-low.o): New rules.
9273
92742007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
9275
9276 * hostio.c: Correct copyright year.
9277
92782007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
9279
9280 * Makefile.in (OBS): Add hostio.o.
9281 (hostio.o): New rule.
9282 * server.h (handle_vFile): Declare.
9283 * hostio.c: New file.
9284 * server.c (handle_v_requests): Take packet_len and new_packet_len
9285 for binary packets. Call handle_vFile.
9286 (main): Update call to handle_v_requests.
9287
92882007-11-05 Daniel Jacobowitz <dan@codesourcery.com>
9289
9290 * linux-low.c: Include <sched.h>.
9291
92922007-11-01 Daniel Jacobowitz <dan@codesourcery.com>
9293
9294 * linux-low.c (linux_tracefork_grandchild): New.
9295 (linux_tracefork_child): Use clone.
9296 (linux_test_for_tracefork): Use clone; allocate and free a stack.
9297
92982007-10-31 Joel Brobecker <brobecker@adacore.com>
9299
9300 * Makefile.in: Use $(SHELL) instead of "sh" to call regdat.sh.
9301
93022007-10-24 Daniel Jacobowitz <dan@codesourcery.com>
9303
9304 * linux-low.c (handle_extended_wait): Handle unexpected signals.
9305
93062007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
9307
9308 * inferiors.c (change_inferior_id): Delete.
9309 (add_pid_to_list, pull_pid_from_list): New.
9310 * linux-low.c (PTRACE_SETOPTIONS, PTRACE_GETEVENTMSG)
9311 (PTRACE_O_TRACESYSGOOD, PTRACE_O_TRACEFORK, PTRACE_O_TRACEVFORK)
9312 (PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXEC, PTRACE_O_TRACEVFORKDONE)
9313 (PTRACE_O_TRACEEXIT, PTRACE_EVENT_FORK, PTRACE_EVENT_VFORK)
9314 (PTRACE_EVENT_CLONE, PTRACE_EVENT_EXEC, PTRACE_EVENT_VFORK_DONE)
9315 (PTRACE_EVENT_EXIT, __WALL): Provide default definitions.
9316 (stopped_pids, thread_db_active, must_set_ptrace_flags): New variables.
9317 (using_threads): Always set to 1.
9318 (handle_extended_wait): New.
9319 (add_process): Do not set TID.
9320 (linux_create_inferior): Set must_set_ptrace_flags.
9321 (linux_attach_lwp): Remove TID argument. Do not check using_threads.
9322 Use PTRACE_SETOPTIONS. Call new_thread_notify. Update all callers.
9323 (linux_thread_alive): Rename TID argument to LWPID.
9324 (linux_wait_for_process): Handle unknown processes. Do not use TID.
9325 (linux_wait_for_event): Do not use TID or check using_threads. Update
9326 call to dead_thread_notify. Call handle_extended_wait.
9327 (linux_create_inferior): Use PTRACE_SETOPTIONS.
9328 (send_sigstop): Delete sigstop_sent.
9329 (wait_for_sigstop): Avoid TID.
9330 (linux_supports_tracefork_flag, linux_tracefork_child, my_waitpid)
9331 (linux_test_for_tracefork): New.
9332 (linux_lookup_signals): Use thread_db_active and
9333 linux_supports_tracefork_flag.
9334 (initialize_low): Use thread_db_active and linux_test_for_tracefork.
9335 * linux-low.h (get_process_thread): Avoid TID.
9336 (struct process_ifo): Move thread_known and tid to the end. Remove
9337 sigstop_sent.
9338 (linux_attach_lwp, thread_db_init): Update prototypes.
9339 * server.h (change_inferior_id): Delete prototype.
9340 (add_pid_to_list, pull_pid_from_list): New prototypes.
9341 * thread-db.c (thread_db_use_events): New.
9342 (find_first_thread): Rename to...
9343 (find_one_thread): ...this. Update callers and messages. Do not
9344 call fatal. Check thread_db_use_events. Do not call
9345 change_inferior_id or new_thread_notify.
9346 (maybe_attach_thread): Update. Do not call new_thread_notify.
9347 (thread_db_init): Set thread_db_use_events. Check use_events.
9348 * utils.c (fatal, warning): Correct message prefix.
9349
93502007-10-15 Daniel Jacobowitz <dan@codesourcery.com>
9351
9352 * Makefile.in (clean): Remove new files.
9353 (powerpc-32.o, powerpc-32.c, powerpc-e500.o, powerpc-e500.c)
9354 (powerpc-64.o, powerpc-64.c): New rules.
9355 * configure.srv: Use alternate register sets for powerpc64-*-linux*
9356 with AltiVec, powerpc-*-linux* with AltiVec, and powerpc-*-linux*
9357 with SPE.
9358 * linux-ppc-low.c (ppc_regmap): Do not fetch the FP registers for
9359 SPE targets.
9360 (ppc_cannot_store_register): Do not check for FPSCR for SPE targets.
9361 (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS, ppc_fill_vrregset)
9362 (ppc_store_vrregset, PTRACE_GETEVRREGS, PTRACE_SETEVRREGS)
9363 (struct gdb_evrregset_t, ppc_fill_evrregset, ppc_store_evrregset): New.
9364 (target_regsets): Add AltiVec and SPE register sets.
9365 * configure.ac: Check for AltiVec and SPE.
9366 * linux-ppc64-low.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS)
9367 (ppc_fill_vrregset, ppc_store_vrregset): New.
9368 (target_regsets): Add AltiVec register set.
9369 * configure: Regenerated.
9370
93712007-09-19 Daniel Jacobowitz <dan@codesourcery.com>
9372
9373 * linux-low.c (O_LARGEFILE): Define.
9374 (linux_read_memory): Use /proc/PID/mem.
9375 * configure.ac: Use AC_GNU_SOURCE. Check for pread64.
9376 * configure, config.in: Regenerated.
9377
93782007-09-04 Daniel Jacobowitz <dan@codesourcery.com>
9379
9380 * linux-low.c (linux_wait_for_event): Do not pass signals while
9381 single-stepping.
9382
93832007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
9384
9385 * win32-low.c (create_process): New.
9386 (win32_create_inferior): Use create_process instead of
9387 CreateProcess. If create_process failed retry appending an ".exe"
9388 suffix. Store the GetLastError result immediatelly after
9389 create_process calls and use it on the call to error.
9390
93912007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
9392
9393 * win32-low.c (handle_load_dll): Don't use toolhelp when waiting.
9394
93952007-08-23 Joel Brobecker <brobecker@adacore.com>
9396
9397 * configure.ac: Switch license to GPLv3.
9398
93992007-08-01 Michael Snyder <msnyder@access-company.com>
9400
9401 * remote-utils.c (putpkt_binary): Memory leak, free buf2.
9402
94032007-07-31 Pedro Alves <pedro_alves@portugalmail.pt>
9404
9405 * win32-low.c (winapi_CloseToolhelp32Snapshot) [_WIN32_WCE]: New
9406 typedef.
9407 (win32_CloseToolhelp32Snapshot) [_WIN32_WCE]: New global var.
9408 (load_toolhelp) [_WIN32_WCE]: Load TOOLHELP.DLL. Get
9409 CloseToolhelp32Snapshot.
9410 (toolhelp_get_dll_name) [_WIN32_WCE]: Close the snapshot with
9411 CloseToolhelp32Snapshot.
9412
94132007-07-27 Michael Snyder <michael.snyder@access-company.com>
9414
9415 * server.c (main): Check for inferior exit before main loop.
9416
94172007-07-18 Pedro Alves <pedro_alves@portugalmail.pt>
9418
9419 * remote-utils.c (remote_open): Set SO_KEEPALIVE on remote_desc
9420 instead of on tmp_desc.
9421
94222007-07-17 Pedro Alves <pedro_alves@portugalmail.pt>
9423 Daniel Jacobowitz <dan@codesourcery.com>
9424
9425 * inferiors.c (all_dlls, dlls_changed, get_dll): New.
9426 (add_thread): Minor cleanups.
9427 (clear_inferiors): Move lower in the file. Clear the DLL
9428 list.
9429 (free_one_dll, match_dll, loaded_dll, unloaded_dll, clear_list): New.
9430 * remote-utils.c (prepare_resume_reply): Check dlls_changed.
9431 (xml_escape_text): New.
9432 * server.c (handle_query): Handle qXfer:libraries:read. Report it
9433 for qSupported.
9434 (handle_v_cont): Report errors.
9435 (gdbserver_version): Update.
9436 (main): Correct size of own_buf. Do not report initial DLL events.
9437 * server.h (struct dll_info, all_dlls, dlls_changed, loaded_dll)
9438 (unloaded_dll, xml_escape_text): New.
9439 * win32-low.c (enum target_waitkind): Update comments.
9440 (win32_add_one_solib, get_image_name, winapi_EnumProcessModules)
9441 (winapi_GetModuleInformation, winapi_GetModuleFileNameExA)
9442 (win32_EnumProcessModules, win32_GetModuleInformation)
9443 (win32_GetModuleFileNameExA, load_psapi, psapi_get_dll_name)
9444 (winapi_CreateToolhelp32Snapshot, winapi_Module32First)
9445 (winapi_Module32Next, win32_CreateToolhelp32Snapshot)
9446 (win32_Module32First, win32_Module32Next, load_toolhelp)
9447 (toolhelp_get_dll_name, handle_load_dll, handle_unload_dll): New.
9448 (get_child_debug_event): Handle DLL events.
9449 (win32_wait): Likewise.
9450
94512007-07-12 Daniel Jacobowitz <dan@codesourcery.com>
9452
9453 * configure.srv: Set srv_linux_regsets for sh*-*-linux*.
9454 * linux-sh-low.c (sh_fill_gregset, target_regsets): New.
9455
94562007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
9457
9458 * win32-low.c (handle_output_debug_string): Ignore event if not
9459 waiting.
9460
94612007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
9462
9463 * win32-arm-low.c (arm_wince_breakpoint): Fix typo.
9464
94652007-07-03 Daniel Jacobowitz <dan@codesourcery.com>
9466
9467 * remote-utils.c (look_up_one_symbol): Handle 'm' packets.
9468
94692007-07-02 Daniel Jacobowitz <dan@codesourcery.com>
9470
9471 * inferiors.c (change_inferior_id): Add comment.
9472 * linux-low.c (check_removed_breakpoint): Add an early
9473 prototype. Improve debug output.
9474 (linux_attach): Doc update.
9475 (linux_detach_one_process, linux_detach): Clean up before releasing
9476 each process.
9477 (send_sigstop, wait_for_sigstop): Improve comments and debug output.
9478 * linux-low.h (struct process_info): Doc improvement.
9479 * mem-break.c (delete_all_breakpoints): New.
9480 * mem-break.h (delete_all_breakpoints): New prototype.
9481 * thread-db.c (find_first_thread): New.
9482 (thread_db_create_event): Call it instead of
9483 thread_db_find_new_threads. Clean up unused variables.
9484 (maybe_attach_thread): Remove first thread handling.
9485 (thread_db_find_new_threads): Use find_first_thread.
9486 (thread_db_get_tls_address): Likewise.
9487
94882007-06-27 Daniel Jacobowitz <dan@codesourcery.com>
9489
9490 * thread-db.c (thread_db_find_new_threads): Add prototype.
9491 (thread_db_create_event): Check for the main thread before adding
9492 a new thread.
9493 (maybe_attach_thread): Only enable event reporting if TID == 0.
9494 (thread_db_get_tls_address): Check for new threads.
9495
94962007-06-20 Daniel Jacobowitz <dan@codesourcery.com>
9497
9498 * linux-low.c (linux_create_inferior): Try execv before execvp.
9499 * spu-low.c (spu_create_inferior): Likewise.
9500
95012007-06-13 Mike Frysinger <vapier@gentoo.org>
9502
9503 * linux-low.c (linux_create_inferior): Change execv to execvp.
9504 * spu-low.c (spu_create_inferior): Likewies.
9505
95062007-06-13 Daniel Jacobowitz <dan@codesourcery.com>
9507
9508 * Makefile.in (clean): Clean new files instead of deleted ones.
9509 (reg-mips.o, reg-mips.c, reg-mips64.o, reg-mips64.c): Delete.
9510 (mips-linux.o, mips-linux.c, mips64-linux.o, mips64-linux.c): New
9511 rules.
9512 * configure.srv: Specify XML files and new regformats for MIPS and
9513 MIPS64 GNU/Linux.
9514 * linux-mips-low.c (mips_num_regs): Set to only used registers.
9515 (mips_regmap): Do not fetch $0. Remove unused registers. Add
9516 an entry for the restart register.
9517 (mips_cannot_fetch_register, mips_cannot_store_register)
9518 (mips_reinsert_addr, mips_fill_fpregset, mips_store_fpregset): Update
9519 register names to match the XML descriptions.
9520 (mips_fill_gregset, mips_store_gregset): Likewise. Handle the
9521 restart register instead of $0.
9522
95232007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
9524 Markus Deuling <deuling@de.ibm.com>
9525
9526 * remote-utils.c (decode_xfer_write): New function.
9527 * server.h (decode_xfer_write): Add prototype.
9528 * server.c (handle_query): Add PACKET_LEN argument. Support
9529 qXfer:spu:read and qXfer:spu:write packets.
9530 (main): Pass packet_len to handle_query.
9531 * spu-low.c (spu_target_ops): Add spu_proc_xfer_spu.
9532 * target.h (target_ops): Add qxfer_spu.
9533
95342007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
9535
9536 * spu-low.c (spu_proc_xfer_spu): Do not return failure when
9537 accessing non-seekable spufs files.
9538
95392007-05-16 Markus Deuling <deuling@de.ibm.com>
9540
9541 * server.c (handle_query): Add reply for qC packet.
9542
95432007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
9544 Leo Zayas <lerele@champenstudios@com>
9545
9546 * server.h (check_remote_input_interrupt_request): New function.
9547 * remote_utils.c (INVALID_DESCRIPTOR): New define.
9548 (remote_desc): Initialize with INVALID_DESCRIPTOR.
9549 (input_interrupt): Expose on USE_WIN32API too. Fix whitespace.
9550 (check_remote_input_interrupt_request): New function.
9551 * server.h (check_remote_input_interrupt_request): Declare.
9552 * win32-low.c (winapi_DebugBreakProcess,
9553 winapi_GenerateConsoleCtrlEvent): New typedefs.
9554 (get_child_debug_event): Lower Win32 debug event polling from 1 sec
9555 to 250 ms.
9556 (win32_wait): Check for remote interrupt request
9557 with check_remote_input_interrupt_request.
9558 (win32_request_interrupt): New function.
9559 (win32_target_op): Set request_interrupt to win32_request_interrupt.
9560
95612007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
9562
9563 * win32-low.c (debug_registers_changed,
9564 debug_registers_used, CONTEXT_EXTENDED_REGISTERS,
9565 CONTEXT_FLOATING_POINT, CONTEXT_DEBUG_REGISTERS,
9566 CONTEXT_DEBUGGER, CONTEXT_DEBUGGER_DR): Delete.
9567 (thread_rec): Get context using the low target.
9568 (child_add_thread): Call thread_added on the low target,
9569 which does the same thing.
9570 (regptr): Delete.
9571 (do_initial_child_stuff): Remove debug registers references.
9572 Set context using the low target. Resume threads after
9573 setting the contexts.
9574 (child_continue): Remove dead variable. Remove debug
9575 registers references.
9576 (child_fetch_inferior_registers): Go through the low target.
9577 (do_child_store_inferior_registers): Remove.
9578 (child_store_inferior_registers): Go through the low target.
9579 (win32_resume): Remove debug registers references.
9580 Set context using the low target.
9581 (handle_exception): Change return type to void. Don't record
9582 context here. Set status to TARGET_WAITKIND_SPURIOUS on a
9583 first chance exception.
9584 (get_child_debug_event): Change return type to void. Remove
9585 goto loop. Always return after waiting for debug event.
9586 (win32_wait): Convert to switch statement. Handle spurious
9587 events.
9588
9589 * win32-i386-low.c (debug_registers_changed,
9590 debug_registers_used): New.
9591 (initial_stuff): Rename to ...
9592 (i386_initial_stuff): ... this. Clear debug registers
9593 state variables.
9594 (store_debug_registers): Delete.
9595 (i386_get_thread_context): New.
9596 (load_debug_registers): Delete.
9597 (i386_set_thread_context): New.
9598 (i386_thread_added): New.
9599 (single_step): Rename to ...
9600 (i386_single_step): ... this.
9601 (do_fetch_inferior_registers): Rename to ...
9602 (i386_fetch_inferior_register): ... this.
9603 (i386_store_inferior_register): New.
9604 (the_low_target): Adapt to new interface.
9605
9606 * win32-arm-low.c (CONTEXT_FLOATING_POINT): Define.
9607 (arm_get_thread_context): New.
9608 (arm_set_thread_context): New.
9609 (regptr): New.
9610 (do_fetch_inferior_registers): Rename to ...
9611 (arm_fetch_inferior_register): ... this.
9612 (arm_store_inferior_register): New.
9613 (arm_wince_breakpoint): Reimplement as unsigned long.
9614 (arm_wince_breakpoint_len): Define.
9615 (the_low_target): Adapt to new interface.
9616
9617 * win32-low.h (target_ops): Remove regmap, store_debug_registers and
9618 load_debug_registers. Add get_thread_context, set_thread_context,
9619 thread_added and store_inferior_register. Rename
9620 fetch_inferior_registers to fetch_inferior_register.
9621 (regptr): Remove declaration.
9622
96232007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
9624
9625 * linux-low.c (linux_detach): Change return type to int. Return 0.
9626 * spu-low.c (spu_detach): Likewise.
9627
96282007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
9629
9630 * target.h (target_ops): Change return type of detach to int.
9631 Add join.
9632 (join_inferior): New.
9633 * server.c (main): Don't skip detach support on mingw32.
9634 If the inferior doesn't support detaching return error.
9635 Call join_inferior instead of using waitpid.
9636 * linux-low.c (linux_join): New.
9637 (linux_target_op): Add linux_join.
9638 * spu-low.c (spu_join): New.
9639 (spu_target_ops): Add spu_join.
9640 * win32-low.c (win32_detach): Adapt to new interface.
9641 Reopen current_process_handle before detaching. Issue a child
9642 resume before detaching.
9643 (win32_join): New.
9644 (win32_target_op): Add win32_join.
9645
96462007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
9647
9648 * win32-low.c (win32-attach): Fix return value.
9649 * target.h (target_ops): Describe ATTACH return values.
9650
96512007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
9652
9653 * win32-low.c (GETPROCADDRESS): Define.
9654 (winapi_DebugActiveProcessStop): Add WINAPI. typedef as pointer.
9655 (winapi_DebugSetProcessKillOnExit): Likewise.
9656 (win32_create_inferior): Force usage of ansi CreateProcessA.
9657 (win32_attach): Use GETPROCADDRESS.
9658 (win32_detach): Likewise.
9659
96602007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
9661
9662 * win32-low.c (win32_wait): Don't use WSTOPSIG.
9663
96642007-03-30 Pedro Alves <pedro_alves@portugalmail.pt>
9665
9666 * win32-low.c: Commit leftover changes from 2007-03-29.
9667
96682007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
9669
9670 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Make 16-bit
9671 fields short instead of int. Add explicit padding.
9672 (i387_cache_to_fsave): Remove unnecessary casts.
9673 (i387_fsave_to_cache): Doc fix.
9674 (i387_cache_to_fxsave): Remove unnecessary casts and masking.
9675
96762007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
9677
9678 * i387-fp.c (i387_cache_to_fxsave): Reinitialize val2 before use.
9679 (i387_fxsave_to_cache): Check fp->ftag while building ftag value.
9680
96812007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
9682
9683 * configure.srv (arm*-*-mingw32ce*): Move near the other
9684 arm targets.
9685
96862007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
9687
9688 * configure.ac: Add errno checking.
9689 (AC_CHECK_HEADERS): Add errno.h, fcntl.h, signal.h,
9690 sys/file.h and malloc.h.
9691 (AC_CHECK_DECLS): Add perror.
9692 (srv_mingwce): Handle.
9693 * configure.srv (i[34567]86-*-cygwin*): Add
9694 win32-i386-low.o to srv_tgtobj.
9695 (i[34567]86-*-mingw*): Likewise.
9696 (arm*-*-mingw32ce*): Add case.
9697 * gdbreplay.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
9698 HAVE_FCNTL_H, HAVE_ERRNO_H, HAVE_MALLOC_H]: Check.
9699 [__MINGW32CE__] (strerror): New function.
9700 [__MINGW32CE__] (errno): Define to GetLastError.
9701 [__MINGW32CE__] (COUNTOF): New macro.
9702 (remote_open): Remove extra close call.
9703 * mem-break.c (delete_breakpoint_at): New function.
9704 * mem-break.h (delete_breakpoint_at): Declare.
9705 * remote-utils.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
9706 HAVE_FCNTL_H, HAVE_UNISTD_H, HAVE_ERRNO_H]: Check.
9707 [USE_WIN32API] (read, write): Add char* casts.
9708 * server.c [HAVE_UNISTD_H, HAVE_SIGNAL_H]: Check.
9709 * server.h: Include wincecompat.h on Windows CE.
9710 [HAVE_ERRNO_H]: Check.
9711 (perror): Declare if not declared.
9712 * utils.c: Add stdlib.h, errno.h and malloc.h includes.
9713 (perror_with_name): Remove errno declaration.
9714 * wincecompat.h: New.
9715 * wincecompat.c: New.
9716 * win32-low.h: New.
9717 * win32-arm-low.c: New.
9718 * win32-i386-low.c: New.
9719 (win32-low.c): Include mem-break.h and win32-low.h, and winnt.h.
9720 (OUTMSG2): Make it safe.
9721 (_T): New macro.
9722 (COUNTOF): New macro.
9723 (NUM_REGS): Get it from the low target.
9724 (CONTEXT_EXTENDED_REGISTERS, CONTEXT_FLOATING_POINT,
9725 CONTEXT_DEBUG_REGISTERS): Add fallbacks to 0.
9726 (thread_rec): Let low target handle debug registers.
9727 (child_add_thread): Likewise.
9728 (child_init_thread_list): Likewise.
9729 (continue_one_thread): Likewise.
9730 (regptr): New.
9731 (do_child_fetch_inferior_registers): Move to ...
9732 * win32-i386-low.c: ... here, and rename to ...
9733 (do_fetch_inferior_registers): ... this.
9734 * win32-low.c (child_fetch_inferior_registers):
9735 Go through the low target.
9736 (do_child_store_inferior_registers): Use regptr.
9737 (strwinerror): New function.
9738 (win32_create_inferior): Handle Windows CE.
9739 Use strwinerror instead of strerror on Windows error
9740 codes. Add program to the error output.
9741 Don't close the main thread handle on Windows CE.
9742 (win32_attach): Use coredll.dll on Windows CE.
9743 (win32_kill): Close current process and current
9744 thread handles.
9745 (win32_detach): Use coredll.dll on Windows CE.
9746 (win32_resume): Let low target handle debug registers, and
9747 step request.
9748 (handle_exception): Add/Remove initial breakpoint. Avoid
9749 non-existant WSTOPSIG on Windows CE.
9750 (win32_read_inferior_memory): Cast to remove warning.
9751 (win32_arch_string): Go through the low target.
9752 (initialize_low): Call set_breakpoint_data with the low
9753 target's breakpoint.
9754 * win32-low.c (dr, FLAG_TRACE_BIT, FCS_REGNUM,
9755 FOP_REGNUM, mappings): Move to ...
9756 * win32-i386-low.c: ... here.
9757 * win32-low.c (win32_thread_info): Move to ...
9758 * win32-low.h: ... here.
9759 * Makefile.in (SFILES): Add win32-low.c, win32-i386-low.c,
9760 win32-arm-low.c and wincecompat.c.
9761 (all:): Add $EXEEXT.
9762 (install-only:): Likewise.
9763 (gdbserver:): Likewise.
9764 (gdbreplay:): Likewise.
9765 * config.in: Regenerate.
9766 * configure: Regenerate.
9767
97682007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
9769
9770 * win32-low.c: Rename typedef thread_info to
9771 win32_thread_info throughout.
9772
97732007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
9774
9775 * win32-i386-low.c: Rename to ...
9776 * win32-low.c: ... this.
9777 * configure.srv: Replace win32-i386-low.o with win32-low.o.
9778 * Makefile.in: Likewise.
9779
97802007-03-27 Pedro Alves <pedro_alves@portugalmail.pt>
9781
9782 * remote-utils.c (monitor_output): Constify msg parameter.
9783 * server.h (monitor_output): Likewise.
9784 * win32-i386-low.c (handle_output_debug_string): New.
9785 (win32_kill): Handle OUTPUT_DEBUG_STRING_EVENT events using
9786 handle_output_debug_string.
9787 (get_child_debug_event): Likewise.
9788
97892007-03-27 Mat Hostetter <mat@lcs.mit.edu>
9790
9791 * server.c (main): Correct strtoul check.
9792
97932007-03-27 Jon Ringle <jon@ringle.org>
9794
9795 * linux-low.c: Check __ARCH_HAS_MMU__ also.
9796
97972007-03-27 Brooks Moses <brooks.moses@codesourcery.com>
9798
9799 * Makefile.in: Add dummy "pdf" and "install-pdf" targets.
9800
98012007-02-27 Daniel Jacobowitz <dan@codesourcery.com>
9802
9803 * terminal.h: Check HAVE_SGTTY_H.
9804
98052007-02-27 Mat Hostetter <mat@lcs.mit.edu>
9806
9807 * remote-utils.c (remote_open): Print out the assigned port number.
9808
98092007-02-26 Daniel Jacobowitz <dan@codesourcery.com>
9810
9811 * remote-utils.c (monitor_output): New function.
9812 * server.c (debug_threads): Define here.
9813 (monitor_show_help): New function.
9814 (handle_query): Handle qRcmd.
9815 (main): Do not handle 'd' packet.
9816 * server.h (debug_threads, remote_debug, monitor_output): Declare.
9817 * linux-low.c, spu-low.c, win32-i386-low.c: Remove definitions
9818 of debug_threads.
9819
98202007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
9821
9822 * Makefile.in (EXEEXT): New.
9823 (clean): Use $(EXEEXT).
9824
98252007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
9826
9827 * target.h (target_ops): Rename send_signal to request_interrupt,
9828 and remove enum target_signal parameter.
9829 * linux-low.c (linux_request_interrupt): Rename from
9830 linux_send_signal, and always send SIGINT.
9831 * spu-low.c (spu_request_interrupt): Rename from spu_send_signal,
9832 and always send SIGINT.
9833 * remote-utils.c (putpkt_binary): Call request_interrupt, instead
9834 of send_signal.
9835 (input_interrupt): Likewise.
9836
98372007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
9838
9839 * server.c (get_features_xml): Check if target implemented
9840 arch_string.
9841 * win32-i386-low.c (win32_arch_string): New.
9842 (win32_target_ops): Add win32_arch_string as arch_string member.
9843
98442007-02-22 Markus Deuling <deuling@de.ibm.com>
9845
9846 * spu-low.c (spu_arch_string): New.
9847 (spu_target_ops): Add spu_arch_string.
9848
98492007-02-16 Daniel Jacobowitz <dan@codesourcery.com>
9850
9851 * remote-utils.c: Remove HAVE_TERMINAL_H check.
9852 * configure.ac: Do not check for terminal.h.
9853 * configure, config.in: Regenerated.
9854
98552007-02-08 Daniel Jacobowitz <dan@codesourcery.com>
9856
9857 * Makefile.in (OBS): Add $(XML_BUILTIN).
9858 (XML_DIR, XML_TARGET, XML_FILES, XML_BUILTIN): New.
9859 (clean): Update.
9860 (target.xml, xml-builtin.c, stamp-xml, arm-with-iwmmxt.o)
9861 (arm-with-iwmmxt.c): New.
9862 * config.in, configure: Regenerate.
9863 * configure.ac: Check for iWMMXt. Handle srv_xmltarget,
9864 srv_xmlbuiltin, and srv_xmlfiles. Define USE_XML.
9865 * configure.srv: Mention srv_xmltarget and srv_xmlfiles.
9866 (arm*-*-linux*): Add iWMMXt and regset support.
9867 * linux-arm-low.c (PTRACE_GETWMMXREGS, PTRACE_SETWMMXREGS): Define.
9868 (arm_fill_gregset, arm_store_gregset, arm_fill_wmmxregset)
9869 (arm_store_wmmxregset, target_regsets): New.
9870 * server.c (get_features_xml): Take annex argument. Check builtin
9871 XML documents.
9872 (handle_query): Handle multiple annexes.
9873
98742007-01-29 Daniel Jacobowitz <dan@codesourcery.com>
9875
9876 * remote-utils.c [USE_WIN32API] (read, write): Define.
9877 (putpkt_binary, input_interrupt, readchar, getpkt): Use read and
9878 write.
9879
98802007-01-09 Daniel Jacobowitz <dan@codesourcery.com>
9881
9882 * linux-i386-low.c (the_low_target): Set arch_string.
9883 * linux-x86-64-low.c (the_low_target): Likewise.
9884 * linux-low.c (linux_arch_string): New.
9885 (linux_target_ops): Add it.
9886 * linux-low.h (struct linux_target_ops): Add arch_string.
9887 * server.c (write_qxfer_response): Use const void * for DATA.
9888 (get_features_xml): New.
9889 (handle_query): Handle qXfer:features:read. Report it for qSupported.
9890 * target.h (struct target_ops): Add arch_string method.
9891
98922007-01-03 Denis Pilat <denis.pilat@st.com>
9893 Daniel Jacobowitz <dan@codesourcery.com>
9894
9895 * linux-low.c (linux_kill): Handle being called with no threads.
9896 * win32-i386-low.c (win32_kill): Likewise.
9897 (get_child_debug_event): Clear current_process_handle.
9898
98992006-12-30 Denis PILAT <denis.pilat@st.com>
9900 Daniel Jacobowitz <dan@codesourcery.com>
9901
9902 * remote-utils.c (remote_open): Check the type of specified
9903 serial port devices before opening them.
9904 * server.c (main): Kill the inferior if an error occurs during
9905 the first remote_open.
9906
99072006-12-05 Markus Deuling <deuling@de.ibm.com>
9908
9909 * README: Update supported targets.
9910
99112006-11-28 Daniel Jacobowitz <dan@codesourcery.com>
9912
9913 * Makefile.in (clean): Remove reg-mips64.c.
9914 (reg-mips64.c, reg-mips64.o): New rules.
9915 * configure.srv: Handle mips64. Include regset support for mips.
9916 * linux-mips-low.c (union mips_register): New.
9917 (mips_get_pc, mips_set_pc, mips_reinsert_addr): Use it.
9918 (mips_breakpoint, mips_breakpoint_at): Use int.
9919 (mips_collect_register, mips_supply_register)
9920 (mips_collect_register_32bit, mips_supply_register_32bit)
9921 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
9922 (mips_store_fpregset, target_regsets): New.
9923 * thread-db.c (thread_db_get_tls_address): Use uintptr_t.
9924
99252006-11-22 Ulrich Weigand <uweigand@de.ibm.com>
9926
9927 * configure.srv: Add target "spu*-*-*".
9928 * Makefile.in (clean): Remove reg-spu.c.
9929 (reg-spu.c, reg-spu.o, spu-low.o): Add dependencies.
9930 * spu-low.c: New file.
9931
99322006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
9933
9934 * configure.ac: Correct td_thr_tls_get_addr test.
9935 * configure: Regenerated.
9936
99372006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
9938
9939 * linux-low.c (linux_wait_for_event): Reformat. Use the
9940 pass_signals array.
9941 * remote-utils.c (decode_address_to_semicolon): New.
9942 * server.c (pass_signals, handle_general_set): New.
9943 (handle_query): Mention QPassSignals for qSupported.
9944 (main): Call handle_general_set.
9945 * server.h (pass_signals, decode_address_to_semicolon): New.
9946
99472006-11-06 Daniel Jacobowitz <dan@codesourcery.com>
9948
9949 * server.c (handle_query): Correct error handling for read_auxv.
9950
99512005-10-19 Ulrich Weigand <uweigand@de.ibm.com>
9952
9953 * configure.srv [s390-*-linux*, s390x-*-linux*]: Set srv_linux_regsets
9954 and srv_linux_thread_db to yes.
9955 * linux-s390-low.c (s390_fill_gregset): New function.
9956 (target_regsets): Define data structure.
9957
99582006-10-17 Daniel Jacobowitz <dan@codesourcery.com>
9959
9960 * acinclude.m4 (SRV_CHECK_TLS_GET_ADDR): New.
9961 * configure.ac: Use it. Define HAVE_TD_THR_TLS_GET_ADDR.
9962 * config.in, configure: Regenerated.
9963 * inferiors.c (gdb_id_to_thread): New function.
9964 (gdb_id_to_thread_id): Use it.
9965 * linux-low.c (linux_target_ops): Use thread_db_get_tls_address.
9966 * linux-low.h (struct process_info): Add th member.
9967 (thread_db_get_tls_address): New prototype.
9968 * remote-utils.c (decode_address): Make non-static.
9969 * server.c (handle_query): Handle qGetTLSAddr.
9970 * server.h (gdb_id_to_thread, decode_address): New prototypes.
9971 * target.h (struct target_ops): Add get_tls_address.
9972 * thread-db.c (maybe_attach_thread): Save the thread handle.
9973 (thread_db_get_tls_address): New.
9974
99752006-09-28 Daniel Jacobowitz <dan@codesourcery.com>
9976
9977 * linux-low.c (PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
9978 (linux_resume_one_process): Take a siginfo_t *. Update all
9979 callers. Queue it if necessary. Use PTRACE_SETSIGINFO.
9980 (struct pending_signals): Add a siginfo_t.
9981 (linux_wait_for_process): Always set last_status.
9982 (linux_wait_for_event): Use PTRACE_GETSIGINFO.
9983 (linux_queue_one_thread): Use PTRACE_GETSIGINFO.
9984 * linux-low.h (struct process_info): Add last_status.
9985
99862006-09-21 Daniel Jacobowitz <dan@codesourcery.com>
9987
9988 * remote-utils.c (try_rle): New function.
9989 (putpkt_binary): Use it.
9990
99912006-08-19 Daniel Jacobowitz <dan@codesourcery.com>
9992
9993 * Makefile.in (clean): Clean reg-x86-64-linux.c.
9994 (reg-x86-64-linux.o, reg-x86-64-linux.c): New.
9995 * configure.srv (x86_64-*-linux*): Use reg-x86-64-linux.o.
9996 * linux-x86-64-low.c (x86_64_regmap): Include ORIG_RAX.
9997 (x86_64_fill_gregset, x86_64_store_gregset): Skip floating
9998 point registers.
9999
100002006-08-08 Richard Sandiford <richard@codesourcery.com>
10001
10002 * server.c (terminal_fd): New variable.
10003 (old_foreground_pgrp): Likewise.
10004 (restore_old_foreground_pgrp): New function.
10005 (start_inferior): Record the terminal file descriptor in terminal_fd
10006 and its original foreground group in old_foreground_pgrp. Register
10007 restore_old_foreground_pgrp with atexit().
10008
100092006-07-26 Daniel Jacobowitz <dan@codesourcery.com>
10010
10011 * server.c (handle_query): Correct qPart to qXfer.
10012
100132006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
10014
10015 * configure.ac: Check for more headers which are missing on
10016 Windows. Automatically supply -lwsock32 and USE_WIN32API.
10017 * configure.srv: Add Cygwin and mingw32.
10018 * remote-utils.c: Don't include headers unconditionally which
10019 are missing on mingw32. Include <winsock.h> for mingw32.
10020 (remote_open): Adjust for mingw32 support. Flush
10021 standard error after writing to it.
10022 (remote_close, putpkt_binary, input_interrupt, block_async_io)
10023 (unblock_async_io, enable_async_io, disable_async_io)
10024 (readchar, getpkt): Update for Winsock support.
10025 (prepare_resume_reply): Expect a protocol signal number.
10026 * server.c: Disable <sys/wait.h> on mingw32.
10027 (start_inferior): Adjust for mingw32 support. Flush
10028 standard error after writing to it.
10029 (attach_inferior): Likewise. Use protocol signal
10030 numbers.
10031 (main): Skip 'D' packet on mingw32. Use protocol signal numbers
10032 and names.
10033 * win32-i386-low.c: New file.
10034 * Makefile.in (XM_CLIBS): Set.
10035 (gdbserver, gdbreplay): Use $(INTERNAL_CFLAGS).
10036 (win32-i386-low.o): New dependency rule.
10037 * linux-low.c (linux_wait): Use target signal numbers.
10038 * target.h (struct target_ops): Doc fix.
10039 * server.h (target_signal_to_name): New prototype.
10040 * gdbreplay.c: Don't include headers unconditionally which
10041 are missing on mingw32. Include <winsock.h> for mingw32.
10042 (remote_close, remote_open): Adjust for Winsock support.
10043 * configure, config.in: Regenerated.
10044
100452006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
10046
10047 * server.c (decode_xfer_read, write_qxfer_response): New.
10048 (handle_query): Take a packet length argument. Handle
10049 qXfer:auxv:read instead of qPart:auxv:read. Mention it in
10050 the qSupported response.
10051 (main): Update call to handle_query.
10052
100532006-06-22 Daniel Jacobowitz <dan@codesourcery.com>
10054
10055 * remote-utils.c (remote_escape_output, remote_unescape_input): New.
10056 (putpkt_binary): Renamed from putpkt and adjusted for binary
10057 data.
10058 (putpkt): New wrapper for putpkt_binary.
10059 (readchar): Don't mask off the high bit.
10060 (decode_X_packet): New function.
10061 * server.c (main): Call putpkt_binary if a handler sets the packet
10062 length. Save the length of the incoming packet. Handle 'X'.
10063 * server.h (gdb_byte, remote_escape_output, decode_X_packet): New.
10064
100652006-06-21 Daniel Jacobowitz <dan@codesourcery.com>
10066
10067 * server.c (handle_query): Handle qSupported.
10068
100692006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
10070
10071 * remote-utils.c (all_symbols_looked_up): New variable.
10072 (look_up_one_symbol): Check it.
10073 * server.h (look_up_one_symbol): New declaration.
10074 * thread-db.c (thread_db_init): Set all_symbols_looked_up.
10075
100762006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
10077
10078 * Makefile.in (linux-arm-low.o): Update dependencies.
10079 * linux-arm-low.c: Include "gdb_proc_service.h".
10080 (PTRACE_GET_THREAD_AREA): Define.
10081 (ps_get_thread_area): New function.
10082
100832006-05-09 Nathan Sidwell <nathan@codesourcery.com>
10084
10085 * configure.srv (m68k*-*-uclinux*): New target.
10086 * linux-low.c (linux_create_inferior): Use vfork on mmuless systems.
10087 (linux_resume_one_process): Remove extraneous cast.
10088 (linux_read_offsets): New.
10089 (linux_target_op): Add linux_read_offsets on mmuless systems.
10090 * server.c (handle_query): Add qOffsets logic.
10091 * target.h (struct target_ops): Add read_offsets.
10092
100932006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
10094
10095 * linux-mips-low.c: Include <sys/ptrace.h> and "gdb_proc_service.h".
10096 (PTRACE_GET_THREAD_AREA): Define.
10097 (ps_get_thread_area): New function.
10098 * Makefile.in (linux-i386-low.o, linux-mips-low.o)
10099 (linux-x86-64-low.o): Update.
10100
101012006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
10102
10103 * configure.ac: Remove checks for prfpregset_t.
10104 * gdb_proc_service.h: New file.
10105 * linux-i386-low.c, linux-x86-64-low.c, thread-db.c: Use the
10106 new "gdb_proc_service.h".
10107 * proc-service.c: Likewise.
10108 (ps_pglobal_lookup, ps_pdread, ps_pdwrite): Use psaddr_t.
10109 (ps_lgetfpregs, ps_lsetfpregs): Use a void* argument.
10110 * Makefile.in (gdb_proc_service_h): Updated.
10111 * configure, config.in: Regenerated.
10112
101132006-03-03 Daniel Jacobowitz <dan@codesourcery.com>
10114
10115 * remote-utils.c (prepare_resume_reply): Move declaration
10116 of gdb_id_from_wait to the top of the block.
10117
101182006-02-15 Daniel Jacobowitz <dan@codesourcery.com>
10119
10120 * linux-low.c (regsets_store_inferior_registers): Read the regset
10121 from the target before filling it.
10122
101232006-02-08 Daniel Jacobowitz <dan@codesourcery.com>
10124
10125 * server.c (attach_inferior): Return SIGTRAP for a successful
10126 attach.
10127
101282006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
10129
10130 * Makefile.in (OBS): Add version.o.
10131 (STAGESTUFF): Delete.
10132 (version.o): Add dependencies.
10133 (version.c): Replace rule.
10134 (clean): Remove version.c.
10135 * server.c (gdbserver_version): New.
10136 (gdbserver_usage): Use printf.
10137 (main): Handle --version and --help.
10138 * server.h (version, host_name): Add declarations.
10139
101402005-12-23 Eli Zaretskii <eliz@gnu.org>
10141
10142 * linux-arm-low.c:
10143 * linux-arm-low.c:
10144 * inferiors.c:
10145 * i387-fp.h:
10146 * i387-fp.c:
10147 * gdbreplay.c:
10148 * regcache.c:
10149 * proc-service.c:
10150 * mem-break.h:
10151 * mem-break.c:
10152 * linux-x86-64-low.c:
10153 * linux-sh-low.c:
10154 * linux-s390-low.c:
10155 * linux-ppc64-low.c:
10156 * linux-ppc-low.c:
10157 * linux-mips-low.c:
10158 * linux-m68k-low.c:
10159 * linux-m32r-low.c:
10160 * linux-low.h:
10161 * linux-low.c:
10162 * linux-ia64-low.c:
10163 * linux-i386-low.c:
10164 * linux-crisv32-low.c:
10165 * thread-db.c:
10166 * terminal.h:
10167 * target.h:
10168 * target.c:
10169 * server.h:
10170 * server.c:
10171 * remote-utils.c:
10172 * regcache.h:
10173 * utils.c:
10174 * Makefile.in:
10175 * configure.ac:
10176 * gdbserver.1: Add (C) after Copyright. Update the FSF
10177 address.
10178
101792005-11-13 Daniel Jacobowitz <dan@codesourcery.com>
10180
10181 * linux-arm-low.c (arm_eabi_breakpoint): New variable.
10182 (arm_breakpoint_at): Recognize both breakpoints.
10183 (the_low_target): Use the correct breakpoint instruction.
10184
101852005-11-02 Daniel Jacobowitz <dan@codesourcery.com>
10186
10187 * configure.srv (x86_64-*-linux*): Turn on thread_db support.
10188 * linux-x86-64-low.c (x86_64_breakpoint, x86_64_breakpoint_len)
10189 (x86_64_get_pc, x86_64_set_pc, x86_64_breakpoint_at): New.
10190 (the_low_target): Update.
10191
101922005-10-25 Andreas Schwab <schwab@suse.de>
10193
10194 * server.c (main): Allocate mem_buf with PBUFSIZ bytes.
10195
10196 * linux-ia64-low.c (ia64_regmap): Remove NAT registers.
10197 (ia64_num_regs): Reduce to 462.
10198
101992005-09-17 Daniel Jacobowitz <dan@codesourcery.com>
10200
10201 * acinclude.m4: Correct quoting.
10202 * aclocal.m4: Regenerated.
10203
10204 Suggested by SZOKOVACS Robert <szo@ies.hu>:
10205 * thread-db.c (thread_db_err_str): Handle TD_VERSION.
10206 (thread_db_init): Call thread_db_err_str.
10207 * configure.ac: Check for TD_VERSION.
10208 * config.in, configure: Regenerated.
10209
102102005-07-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10211
10212 * server.h (error, fatal, warning): Add ATTR_FORMAT.
10213
102142005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
10215
10216 * configure.ac: Define HAVE_LINUX_REGSETS even if PTRACE_GETREGS
10217 is not available. Define HAVE_PTRACE_GETREGS if it is.
10218 * config.in, configure: Regenerated.
10219 * configure.srv: Set srv_linux_regsets for PowerPC and PowerPC64.
10220 * linux-i386-low.c, linux-m68k-low.c: Update to use
10221 HAVE_PTRACE_GETREGS.
10222 * linux-low.c (regsets_fetch_inferior_registers)
10223 (regsets_store_inferior_registers): Only return 0 if we processed
10224 GENERAL_REGS.
10225 * linux-ppc-low.c (ppc_fill_gregset, target_regsets): New.
10226 * linux-ppc64-low.c (ppc_fill_gregset, target_regsets): New.
10227
102282005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
10229
10230 * inferiors.c (struct thread_info): Add gdb_id.
10231 (add_thread): Add gdb_id argument.
10232 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New.
10233 * linux-low.c (linux_create_inferior, linux_attach_lwp): Update
10234 calls to add_thread.
10235 * remote-utils.c (prepare_resume_reply: Use thread_to_gdb_id.
10236 * server.c (handle_query): Use thread_to_gdb_id.
10237 (handle_v_cont, main): Use gdb_id_to_thread_id.
10238 * server.h (add_thread): Update prototype.
10239 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New
10240 prototypes.
10241
102422005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
10243
10244 * linux-low.c (fetch_register, usr_store_inferior_registers): Handle
10245 left-padded registers.
10246 * linux-low.h (struct linux_target_ops): Add left_pad_xfer.
10247 * linux-ppc64-low.c (the_low_target): Set left_pad_xfer.
10248
102492005-07-01 Steve Ellcey <sje@cup.hp.com>
10250
10251 * configure.ac (BFD_NEED_DECLARATION): Replace with AC_CHECK_DECLS.
10252 * configure: Regenerate.
10253 * config.in: Regenerate.
10254 * server.h (NEED_DECLARATION_STRERROR):
10255 Replace with !HAVE_DECL_STRERROR.
10256
102572005-06-16 Daniel Jacobowitz <dan@codesourcery.com>
10258
10259 * linux-low.c (linux_wait, linux_send_signal): Don't test
10260 an unsigned long variable for > 0 if it could be MAX_ULONG.
10261 * server.c (myresume): Likewise.
10262 * target.c (set_desired_inferior): Likewise.
10263
102642005-06-13 Mark Kettenis <kettenis@gnu.org>
10265
10266 * configure.ac: Simplify and improve check for socklen_t.
10267 * configure, config.in: Regenerate.
10268
102692005-06-12 Daniel Jacobowitz <dan@codesourcery.com>
10270
10271 * acconfig.h: Remove.
10272 * configure.ac: Add a test for socklen_t. Use three-argument
10273 AC_DEFINE throughout.
10274 * config.in: Regenerated using autoheader 2.59.
10275 * configure: Regenerated.
10276
10277 * gdbreplay.c (socklen_t): Provide a default.
10278 (remote_open): Use socklen_t.
10279 * remote-utils.c (socklen_t): Provide a default.
10280 (remote_open): Use socklen_t.
10281 (convert_int_to_ascii, convert_ascii_to_int, decode_M_packet): Use
10282 unsigned char.
10283
10284 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Use unsigned
10285 char for buffers.
10286 * linux-low.c (linux_read_memory, linux_write_memory)
10287 (linux_read_auxv): Likewise.
10288 * mem-break.c (breakpoint_data, set_breakpoint_data, check_mem_read)
10289 (check_mem_write): Likewise.
10290 * mem-break.h (set_breakpoint_data, check_mem_read, check_mem_write):
10291 Likewise.
10292 * regcache.c (struct inferior_rgcache_data, registers_to_string)
10293 (registers_from_string, register_data): Likewise.
10294 * server.c (handle_query, main): Likewise.
10295 * server.h (convert_ascii_to_int, convert_int_to_ascii)
10296 (decode_M_packet): Likewise.
10297 * target.c (read_inferior_memory, write_inferior_memory): Likewise.
10298 * target.h (struct target_ops): Update read_memory, write_memory,
10299 and read_auxv.
10300 (read_inferior_memory, write_inferior_memory): Update.
10301 * linux-low.h (struct linux_target_ops): Change type of breakpoint
10302 to unsigned char *.
10303 * linux-arm-low.c, linux-cris-low.c, linux-crisv32-low.c,
10304 linux-i386-low.c, linux-m32r-low.c, linux-m68k-low.c,
10305 linux-mips-low.c, linux-ppc-low.c, linux-ppc64-low.c,
10306 linux-s390-low.c, linux-sh-low.c: Update for changes in
10307 read_inferior_memory and the_low_target->breakpoint.
10308
103092005-05-28 Daniel Jacobowitz <dan@codesourcery.com>
10310
10311 * Makefile.in (SFILES): Add linux-ppc64-low.c.
10312 (linux-ppc64-low.o, reg-ppc64.c, reg-ppc64.o): New targets.
10313 * configure.srv: Add powerpc64-*-linux*.
10314 * linux-ppc64-low.c: New file.
10315
103162005-05-23 Orjan Friberg <orjanf@axis.com>
10317
10318 * linux-cris-low.c: New file with support for CRIS.
10319 * linux-crisv32-low.c: Ditto for CRISv32.
10320 * Makefile.in (SFILES): Add linux-cris-low.c, linux-crisv32-low.c.
10321 (clean): Add reg-cris.c and reg-crisv32.c.
10322 Add linux-cris-low.o, linux-crisv32-low.o, reg-cris.o, reg-cris.c,
10323 reg-crisv32.o, and reg-crisv32.c to make rules.
10324 * configure.srv: Add cris-*-linux* and crisv32-*-linux* to list of
10325 recognized targets.
10326
103272005-05-16 Ulrich Weigand <uweigand@de.ibm.com>
10328
10329 * linux-low.c (fetch_register): Ensure buffer size is a multiple
10330 of sizeof (PTRACE_XFER_TYPE).
10331 (usr_store_inferior_registers): Likewise. Zero out excess bytes.
10332
103332005-05-12 Orjan Friberg <orjanf@axis.com>
10334
10335 * target.h (struct target_ops): Add insert_watchpoint,
10336 remove_watchpoint, stopped_by_watchpoint, stopped_data_address function
10337 pointers for hardware watchpoint support.
10338 * linux-low.h (struct linux_target_ops): Ditto.
10339 * linux-low.c (linux_insert_watchpoint, linux_remove_watchpoint)
10340 (linux_stopped_by_watchpoint, linux_stopped_data_address): New. Add
10341 to linux_target_ops.
10342 * remote-utils.c (prepare_resume_reply): Add watchpoint information to
10343 reply packet.
10344 * server.c (main): Recognize 'Z' and 'z' packets.
10345
103462005-05-10 Ulrich Weigand <uweigand@de.ibm.com>
10347
10348 * linux-s390-low.c (s390_breakpoint, s390_breakpoint_len): Define.
10349 (s390_get_pc, s390_set_pc, s390_breakpoint_at): New functions.
10350 (the_low_target): Add new members.
10351
103522005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
10353
10354 * proc-service.c (ps_lgetregs): Search all_processes instead of
10355 all_threads.
10356
103572005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
10358
10359 * server.c (start_inferior): Change return type to int.
10360 (attach_inferior): Change sigptr to int *.
10361 (handle_v_cont, handle_v_requests): Change signal to int *.
10362 (main): Change signal to int.
10363
103642005-04-15 Kei Sakamoto <sakamoto.kei@renesas.com>
10365
10366 * Makefile.in: Add linux-m32r-low.o, reg-m32r.c and reg-m32r.o.
10367 * configure.srv: Add m32r*-*-linux*.
10368 * linux-m32r-low.c: New file.
10369
103702005-03-04 Daniel Jacobowitz <dan@codesourcery.com>
10371
10372 * Makefile.in (stamp-h): Set CONFIG_HEADERS explicitly.
10373
103742005-03-03 Daniel Jacobowitz <dan@codesourcery.com>
10375
10376 * inferiors.c (change_inferior_id, add_thread, find_inferior_id):
10377 Take unsigned long arguments for PIDs.
10378 * linux-low.c (add_process, linux_attach_lwp, linux_attach)
10379 (linux_thread_alive, linux_wait_for_event, kill_lwp, send_sigstop)
10380 (wait_for_sigstop, linux_resume_one_process)
10381 (regsets_fetch_inferior_registers, linux_send_signal)
10382 (linux_read_auxv): Likewise. Update the types of variables holding
10383 PIDs. Update format string specifiers.
10384 * linux-low.h (struct process_info, linux_attach_lwp): Likewise.
10385 * remote-utils.c (prepare_resume_reply): Likewise.
10386 * server.c (cont_thread, general_thread, step_thread)
10387 (thread_from_wait, old_thread_from_wait, signal_pid): Change type to
10388 unsigned long.
10389 (handle_query): Update format specifiers.
10390 (handle_v_cont, main): Use strtoul for thread IDs.
10391 * server.h (struct inferior_list_entry): Use unsigned long for ID.
10392 (add_thread, find_inferior_id, change_inferior_id, cont_thread)
10393 (general_thread, step_thread, thread_from_wait)
10394 (old_thread_from_wait): Update.
10395 * target.h (struct thread_resume): Use unsigned long for THREAD.
10396 (struct target_ops): Use unsigned long for arguments to attach and
10397 thread_alive.
10398
103992005-02-24 Daniel Jacobowitz <dan@codesourcery.com>
10400
10401 * acinclude.m4: Include bfd/bfd.m4 directly.
10402 * configure.ac: Use AC_ARG_PROGRAM. Suggested by Aron Griffis
10403 <agriffis@toolchain.org>.
10404 * aclocal.m4, configure: Regenerated.
10405
104062005-01-07 Andrew Cagney <cagney@gnu.org>
10407
10408 * configure.ac: Rename configure.in, require autoconf 2.59.
10409 * configure: Re-generate.
10410
104112004-12-08 Daniel Jacobowitz <dan@debian.org>
10412
10413 * acinclude.m4 (SRV_CHECK_THREAD_DB): Add ps_get_thread_area. Reset
10414 LIBS when finished.
10415 * aclocal.m4: Regenerated.
10416 * configure: Regenerated.
10417
104182004-11-21 Andreas Schwab <schwab@suse.de>
10419
10420 * linux-m68k-low.c (m68k_num_gregs): Define.
10421 (m68k_fill_gregset, m68k_store_gregset, m68k_fill_fpregset)
10422 (m68k_store_fpregset, target_regsets) [HAVE_LINUX_REGSETS]: New.
10423 (m68k_breakpoint, m68k_breakpoint_len, m68k_get_pc, m68k_set_pc)
10424 (m68k_breakpoint_at): New. Add to the_low_target.
10425
10426 * configure.srv (m68*-*-linux*): Set srv_linux_regsets and
10427 srv_linux_thread_db to yes.
10428
104292004-10-20 Joel Brobecker <brobecker@gnat.com>
10430
10431 * linux-x86-64-low.c (ARCH_SET_GS): Add definition if missing.
10432 (ARCH_SET_FS): Likewise.
10433 (ARCH_GET_FS): Likewise.
10434 (ARCH_GET_GS): Likewise.
10435
104362004-10-16 Daniel Jacobowitz <dan@debian.org>
10437
10438 * linux-i386-low.c (ps_get_thread_area): New.
10439 * linux-x86-64-low.c (ps_get_thread_area): New.
10440 * linux-low.c: Include <sys/syscall.h>.
10441 (linux_kill_one_process): Don't kill the first thread here.
10442 (linux_kill): Kill the first thread here.
10443 (kill_lwp): New function.
10444 (send_sigstop, linux_send_signal): Use it.
10445 * proc-service.c: Clean up #ifdefs.
10446 (fpregset_info): Delete.
10447 (ps_lgetregs): Update and enable implementation.
10448 (ps_lsetregs, ps_lgetfpregs, ps_lsetfpregs): Remove disabled
10449 implementations.
10450 * remote-utils.c (struct sym_cache, symbol_cache): New.
10451 (input_interrupt): Print a clearer message.
10452 (async_io_enabled): New variable.
10453 (enable_async_io, disable_async_io): Use it. Update comments.
10454 (look_up_one_symbol): Use the symbol cache.
10455 * thread-db.c (thread_db_look_up_symbols): New function.
10456 (thread_db_init): Update comments. Call thread_db_look_up_symbols.
10457
104582004-10-16 Daniel Jacobowitz <dan@debian.org>
10459
10460 * configure.in: Test for -rdynamic.
10461 * configure: Regenerated.
10462 * Makefile (INTERNAL_LDFLAGS): New.
10463 (gdbserver, gdbreplay): Use it.
10464
104652004-09-02 Andrew Cagney <cagney@gnu.org>
10466
10467 * Makefile.in (TAGS): Replace TM_FILE with DEPRECATED_TM_FILE.
10468
104692004-03-23 Daniel Jacobowitz <drow@mvista.com>
10470
10471 * linux-low.c (linux_wait): Clear all_processes list also.
10472
104732004-03-12 Daniel Jacobowitz <drow@mvista.com>
10474
10475 * linux-low.c: Include <errno.h>. Remove extern declaration of
10476 errno.
10477
104782004-03-12 Daniel Jacobowitz <drow@mvista.com>
10479
10480 * gdbreplay.c, server.h, utils.c: Update copyright years.
10481
104822004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
10483
10484 * server.c (main): Print child status or termination signal from
10485 variable 'signal', not 'sig'.
10486
104872004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
10488
10489 * linux-low.c (linux_read_memory): Change return type to
10490 int. Check for and return error from ptrace().
10491 * target.c (read_inferior_memory): Change return type to int. Pass
10492 back return status from the_target->read_memory().
10493 * target.h (struct target_ops): Adapt *read_memory() prototype.
10494 Update comment.
10495 (read_inferior_memory): Adapt prototype.
10496 * server.c (main): Return an error packet if
10497 read_inferior_memory() returns an error.
10498
104992004-03-04 Daniel Jacobowitz <drow@mvista.com>
10500
10501 * Makefile.in (distclean): Remove config.h, stamp-h, and config.log.
10502 Unify with other clean targets.
10503
105042004-02-29 Daniel Jacobowitz <drow@mvista.com>
10505
10506 * server.c (handle_v_cont): Call set_desired_inferior.
10507
105082004-02-29 Daniel Jacobowitz <drow@mvista.com>
10509
10510 * remote-utils.c (prepare_resume_reply): Always supply "thread:".
10511
105122004-02-29 Daniel Jacobowitz <drow@mvista.com>
10513
10514 * linux-low.c (linux_wait): Unblock async I/O.
10515 (linux_resume): Block and enable async I/O.
10516 * remote-utils.c (block_async_io, unblock_async_io): New functions.
10517 * server.h (block_async_io, unblock_async_io): Add prototypes.
10518
105192004-02-29 Daniel Jacobowitz <drow@mvista.com>
10520
10521 * remote-utils.c (remote_open): Print a status notice after
10522 opening a TCP port.
10523 * server.c (attach_inferior): Print a status notice after
10524 attaching.
10525
105262004-02-29 Daniel Jacobowitz <drow@mvista.com>
10527
10528 * linux-arm-low.c (arm_get_pc): Print out stop PC in debug mode.
10529
105302004-02-26 Daniel Jacobowitz <drow@mvista.com>
10531
10532 * remote-utils.c (write_enn): Use "E01" instead of "ENN" for the
10533 error packet.
10534 * server.c, target.h: Update copyright years.
10535
105362004-02-25 Roland McGrath <roland@redhat.com>
10537
10538 * target.h (struct target_ops): New member `read_auxv'.
10539 * server.c (handle_query): Handle qPart:auxv:read: query using that.
10540 * linux-low.c (linux_read_auxv): New function.
10541 (linux_target_ops): Initialize `read_auxv' member to that.
10542
105432004-02-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
10544
10545 Committed by Jim Blandy <jimb@redhat.com>.
10546
10547 * linux-s390-low.c (s390_num_regs): Update.
10548 (s390_regmap): Remove control registers. Use __s390x__ predefine
10549 instead of GPR_SIZE to distiguish s390 and s390x targets.
10550
105512004-01-31 Daniel Jacobowitz <drow@mvista.com>
10552
10553 * linux-low.c: Update copyright year.
10554 (check_removed_breakpoint): Clear pending_is_breakpoint.
10555 (linux_set_resume_request, linux_queue_one_thread)
10556 (resume_status_pending_p): New functions.
10557 (linux_continue_one_thread): Use process->resume.
10558 (linux_resume): Only resume threads if there are no pending events.
10559 * linux-low.h (struct process_info): Add resume request
10560 pointer.
10561
105622004-01-30 Daniel Jacobowitz <drow@mvista.com>
10563
10564 * regcache.c (new_register_cache): Clear the allocated register
10565 buffer. Suggested by Atsushi Nemoto <anemo@mba.ocn.ne.jp>.
10566
105672003-10-13 Daniel Jacobowitz <drow@mvista.com>
10568
10569 * linux-low.c (linux_resume): Take a struct thread_resume *
10570 argument.
10571 (linux_wait): Update call.
10572 (resume_ptr): New static variable.
10573 (linux_continue_one_thread): Renamed from
10574 linux_continue_one_process. Use resume_ptr.
10575 (linux_resume): Use linux_continue_one_thread.
10576 * server.c (handle_v_cont, handle_v_requests): New functions.
10577 (myresume): New function.
10578 (main): Handle 'v' case.
10579 * target.h (struct thread_resume): New type.
10580 (struct target_ops): Change argument of "resume" to struct
10581 thread_resume *.
10582 (myresume): Delete macro.
10583
105842003-08-08 H.J. Lu <hongjiu.lu@intel.com>
10585
10586 * Makefile.in (install-only): Create dest dir. Support DESTDIR.
10587 (uninstall): Support DESTDIR.
10588
10589Mon Jul 21 20:09:34 UTC 2003 Brendan Conoboy <blc@redhat.com>
10590
10591 * configure.srv: Add xscale*linux copy of arm*linux entry.
10592
105932003-07-24 Daniel Jacobowitz <drow@mvista.com>
10594
10595 * linux-arm-low.c (arm_reinsert_addr): New function.
10596 (the_low_target): Add arm_reinsert_addr.
10597
105982003-07-08 Mark Kettenis <kettenis@gnu.org>
10599
10600 * mem-break.c: Remove whitespace at end of file.
10601
106022003-06-28 Daniel Jacobowitz <drow@mvista.com>
10603
10604 * configure.in: Check whether we need to prototype strerror.
10605 * server.h: Optionally prototype strerror.
10606 * gdbreplay.c (perror_with_name): Use strerror.
10607 * linux-low.c (linux_attach_lwp): Use strerror.
10608 * utils.c (perror_with_name): Use strerror.
10609 * config.in, configure: Regenerated.
10610
106112003-06-28 Daniel Jacobowitz <drow@mvista.com>
10612
10613 * linux-sh-low.c (sh_regmap): Fix FP register offsets, reported by
10614 SUGIOKA Toshinobu <sugioka@itonet.co.jp>.
10615
106162003-06-20 Daniel Jacobowitz <drow@mvista.com>
10617
10618 * Makefile.in (SFILES): Update.
10619 * low-hppabsd.c, low-lynx.c, low-nbsd.c, low-sim.c, low-sparc.c,
10620 low-sun3.c: Remove files.
10621
106222003-06-17 Daniel Jacobowitz <drow@mvista.com>
10623
10624 * linux-low.c: Move comment to linux_thread_alive where it belonged.
10625 (linux_detach_one_process, linux_detach): New functions.
10626 (linux_target_ops): Add linux_detach.
10627 * server.c (main): Handle 'D' packet.
10628 * target.h (struct target_ops): Add "detach" member.
10629 (detach_inferior): Define.
10630
106312003-06-13 Mark Kettenis <kettenis@gnu.org>
10632
10633 From Kelley Cook <kelleycook@wideopenwest.com>:
10634 * configure.srv: Accept i[34567]86 variants.
10635
106362003-06-05 Daniel Jacobowitz <drow@mvista.com>
10637
10638 * linux-low.c (linux_wait_for_event): Correct comment typos.
10639 (linux_resume_one_process): Call check_removed_breakpoint.
10640 (linux_send_signal): New function.
10641 (linux_target_ops): Add linux_send_signal.
10642 * remote-utils.c (putpkt, input_interrupt): Use send_signal instead
10643 of kill.
10644 * target.h (struct target_ops): Add send_signal.
10645
106462003-05-29 Jim Blandy <jimb@redhat.com>
10647
10648 * linux-low.c (usr_store_inferior_registers): Transfer buf in
10649 PTRACE_XFER_TYPE-sized chunks, not int-sized chunks. Otherwise,
10650 if 'int' is smaller than PTRACE_XFER_TYPE, you end up throwing
10651 away part of the register's value.
10652
106532003-03-26 Daniel Jacobowitz <drow@mvista.com>
10654
10655 * linux-low.c (linux_create_inferior): Use __SIGRTMIN.
10656 (linux_wait_for_event, linux_init_signals): Likewise.
10657
106582003-03-17 Daniel Jacobowitz <drow@mvista.com>
10659
10660 * configure.in: Check for stdlib.h.
10661 * configure: Regenerated.
10662 * config.in: Regenerated.
10663
106642003-01-04 Andreas Schwab <schwab@suse.de>
10665
10666 * linux-m68k-low.c (m68k_num_regs): Define to 29 instead of 31.
10667
106682003-01-02 Andrew Cagney <ac131313@redhat.com>
10669
10670 * Makefile.in: Remove obsolete code.
10671
106722002-11-20 Daniel Jacobowitz <drow@mvista.com>
10673
10674 * linux-s390-low.c (s390_regmap): Check GPR_SIZE instead of
10675 defined(PT_FPR0_HI).
10676
106772002-11-17 Stuart Hughes <seh@zee2.com>
10678
10679 * linux-arm-low.c (arm_num_regs): Increase.
10680 (arm_regmap): Include status register.
10681
106822002-11-17 Daniel Jacobowitz <drow@mvista.com>
10683
10684 * linux-low.c (register_addr): Remove incorrect -1 check.
10685
106862002-08-29 Daniel Jacobowitz <drow@mvista.com>
10687
10688 * linux-low.c (linux_create_inferior): Call setpgid. Return
10689 the new PID.
10690 (unstopped_p, linux_signal_pid): Remove.
10691 (linux_target_ops): Remove linux_signal_pid.
10692 * remote-utils.c (putpkt, input_interrupt): Use signal_pid
10693 global instead of target method.
10694 * target.h (struct target_ops): Remove signal_pid. Update comment
10695 for create_inferior.
10696 * server.c (signal_pid): New variable.
10697 (create_inferior): Set signal_pid. Block SIGTTOU and SIGTTIN in
10698 gdbserver. Set the child to be the foreground process group.
10699 (attach_inferior): Set signal_pid.
10700
107012002-08-23 Daniel Jacobowitz <drow@mvista.com>
10702
10703 * ChangeLog: New file, with entries from gdb/ChangeLog after GDB 5.2.
10704
107052002-08-20 Jim Blandy <jimb@redhat.com>
10706
10707 * Makefile.in (LDFLAGS): Allow the configure script to establish a
10708 default for this.
10709
107102002-08-01 Andrew Cagney <cagney@redhat.com>
10711
10712 * Makefile.in: Make chill references obsolete.
10713
107142002-07-24 Kevin Buettner <kevinb@redhat.com>
10715
10716 * configure.in (unistd.h): Add to AC_CHECK_HEADERS list.
10717 * configure: Regenerate.
10718 * config.in: Regenerate.
10719
107202002-07-09 David O'Brien <obrien@FreeBSD.org>
10721
10722 * gdbreplay.c (stdlib.h, unistd.h): Conditionaly include.
10723 (perror_with_name, remote_close, remote_open, expect, play): Static.
10724
107252002-07-04 Michal Ludvig <mludvig@suse.cz>
10726
10727 * linux-x86-64-low.c (x86_64_regmap): Make it an array of
10728 byte offsets instead of an array of indexes.
10729 (x86_64_store_gregset, x86_64_store_fpregset): Parameter made const.
10730
107312002-06-13 Daniel Jacobowitz <drow@mvista.com>
10732
10733 * regcache.c: Add comment.
10734
107352002-06-11 Daniel Jacobowitz <drow@mvista.com>
10736
10737 * thread-db.c: New file.
10738 * proc-service.c: New file.
10739 * acinclude.m4: New file.
10740 * Makefile.in: Add GDBSERVER_LIBS, gdb_proc_service_h,
10741 proc-service.o, and thread-db.o.
10742 (linux-low.o): Add USE_THREAD_DB.
10743 * acconfig.h: Add HAVE_PRGREGSET_T, HAVE_PRFPREGSET_T,
10744 HAVE_LWPID_T, HAVE_PSADDR_T, and PRFPREGSET_T_BROKEN.
10745 * aclocal.m4: Regenerated.
10746 * config.in: Regenerated.
10747 * configure: Regenerated.
10748 * configure.in: Check for proc_service.h, sys/procfs.h,
10749 thread_db.h, and linux/elf.h headrs.
10750 Check for lwpid_t, psaddr_t, prgregset_t, prfpregset_t, and
10751 PRFPREGSET_T_BROKEN. Introduce srv_thread_depfiles and USE_THREAD_DB.
10752 Check for -lthread_db and thread support.
10753 * configure.srv: Enable thread_db support for ARM, i386, MIPS,
10754 PowerPC, and SuperH.
10755 * i387-fp.c: Constify arguments.
10756 * i387-fp.h: Likewise.
10757 * inferiors.c: (struct thread_info): Renamed from
10758 `struct inferior_info'. Remove PID member. Use generic inferior
10759 list header. All uses updated.
10760 (inferiors, signal_pid): Removed.
10761 (all_threads): New variable.
10762 (get_thread): Define.
10763 (add_inferior_to_list): New function.
10764 (for_each_inferior): New function.
10765 (change_inferior_id): New function.
10766 (add_inferior): Removed.
10767 (remove_inferior): New function.
10768 (add_thread): New function.
10769 (free_one_thread): New function.
10770 (remove_thread): New function.
10771 (clear_inferiors): Use for_each_inferior and free_one_thread.
10772 (find_inferior): New function.
10773 (find_inferior_id): New function.
10774 (inferior_target_data): Update argument type.
10775 (set_inferior_target_data): Likewise.
10776 (inferior_regcache_data): Likewise.
10777 (set_inferior_regcache_data): Likewise.
10778 * linux-low.c (linux_bp_reinsert): Remove.
10779 (all_processes, stopping_threads, using_thrads)
10780 (struct pending_signals, debug_threads, pid_of): New.
10781 (inferior_pid): Replace with macro.
10782 (struct inferior_linux_data): Remove.
10783 (get_stop_pc, add_process): New functions.
10784 (linux_create_inferior): Restore SIGRTMIN+1 before calling exec.
10785 Use add_process and add_thread.
10786 (linux_attach_lwp): New function, based on old linux_attach. Use
10787 add_process and add_thread. Set stop_expected for new threads.
10788 (linux_attach): New function.
10789 (linux_kill_one_process): New function.
10790 (linux_kill): Kill all LWPs.
10791 (linux_thread_alive): Use find_inferior_id.
10792 (check_removed_breakpoints, status_pending_p): New functions.
10793 (linux_wait_for_process): Renamed from linux_wait_for_one_inferior.
10794 Update. Use WNOHANG. Wait for cloned processes also. Update process
10795 struct for the found process.
10796 (linux_wait_for_event): New function.
10797 (linux_wait): Use it. Support LWPs.
10798 (send_sigstop, wait_for_sigstop, stop_all_processes)
10799 (linux_resume_one_process, linux_continue_one_process): New functions.
10800 (linux_resume): Support LWPs.
10801 (REGISTER_RAW_SIZE): Remove.
10802 (fetch_register): Use register_size instead. Call supply_register.
10803 (usr_store_inferior_registers): Likewise. Call collect_register.
10804 Fix recursive case.
10805 (regsets_fetch_inferior_registers): Improve error message.
10806 (regsets_store_inferior_registers): Add debugging.
10807 (linux_look_up_symbols): Call thread_db_init if USE_THREAD_DB.
10808 (unstopped_p, linux_signal_pid): New functions.
10809 (linux_target_ops): Add linux_signal_pid.
10810 (linux_init_signals): New function.
10811 (initialize_low): Call it. Initialize using_threads.
10812 * regcache.c (inferior_regcache_data): Add valid
10813 flag.
10814 (get_regcache): Fetch registers lazily. Add fetch argument
10815 and update all callers.
10816 (regcache_invalidate_one, regcache_invalidate): New
10817 functions.
10818 (new_register_cache): Renamed from create_register_cache.
10819 Return the new regcache.
10820 (free_register_cache): Change argument to a void *.
10821 (registers_to_string, registers_from_string): Call get_regcache
10822 with fetch flag set.
10823 (register_data): Make static. Pass fetch flag to get_regcache.
10824 (supply_register): Call get_regcache with fetch flag clear.
10825 (collect_register): Call get_regcache with fetch flag set.
10826 (collect_register_as_string): New function.
10827 * regcache.h: Update.
10828 * remote-utils.c (putpkt): Flush after debug output and use
10829 stderr.
10830 Handle input interrupts while waiting for an ACK.
10831 (input_interrupt): Use signal_pid method.
10832 (getpkt): Flush after debug output and use stderr.
10833 (outreg): Use collect_register_as_string.
10834 (new_thread_notify, dead_thread_notify): New functions.
10835 (prepare_resume_reply): Check using_threads. Set thread_from_wait
10836 and general_thread.
10837 (look_up_one_symbol): Flush after debug output.
10838 * server.c (step_thread, server_waiting): New variables.
10839 (start_inferior): Don't use signal_pid. Update call to mywait.
10840 (attach_inferior): Update call to mywait.
10841 (handle_query): Handle qfThreadInfo and qsThreadInfo.
10842 (main): Don't fetch/store registers explicitly. Use
10843 set_desired_inferior. Support proposed ``Hs'' packet. Update
10844 calls to mywait.
10845 * server.h: Update.
10846 (struct inferior_list, struct_inferior_list_entry): New.
10847 * target.c (set_desired_inferior): New.
10848 (write_inferior_memory): Constify.
10849 (mywait): New function.
10850 * target.h: Update.
10851 (struct target_ops): New signal_pid method.
10852 (mywait): Removed macro, added prototype.
10853
10854 * linux-low.h (regset_func): Removed.
10855 (regset_fill_func, regset_store_func): New.
10856 (enum regset_type): New.
10857 (struct regset_info): Add type field. Use new operation types.
10858 (struct linux_target_ops): stop_pc renamed to get_pc.
10859 Add decr_pc_after_break and breakpoint_at.
10860 (get_process, get_thread_proess, get_process_thread)
10861 (strut process_info, all_processes, linux_attach_lwp)
10862 (thread_db_init): New.
10863
10864 * linux-arm-low.c (arm_get_pc, arm_set_pc,
10865 arm_breakpoint, arm_breakpoint_len, arm_breakpoint_at): New.
10866 (the_low_target): Add new members.
10867 * linux-i386-low.c (i386_store_gregset, i386_store_fpregset)
10868 (i386_store_fpxregset): Constify.
10869 (target_regsets): Add new kind identifier.
10870 (i386_get_pc): Renamed from i386_stop_pc. Simplify.
10871 (i386_set_pc): Add debugging.
10872 (i386_breakpoint_at): New function.
10873 (the_low_target): Add new members.
10874 * linux-mips-low.c (mips_get_pc, mips_set_pc)
10875 (mips_breakpoint, mips_breakpoint_len, mips_reinsert_addr)
10876 (mips_breakpoint_at): New.
10877 (the_low_target): Add new members.
10878 * linux-ppc-low.c (ppc_get_pc, ppc_set_pc)
10879 (ppc_breakpoint, ppc_breakpoint_len, ppc_breakpoint_at): New.
10880 (the_low_target): Add new members.
10881 * linux-sh-low.c (sh_get_pc, sh_set_pc)
10882 (sh_breakpoint, sh_breakpoint_len, sh_breakpoint_at): New.
10883 (the_low_target): Add new members.
10884 * linux-x86-64-low.c (target_regsets): Add new kind
10885 identifier.
10886
108872002-05-15 Daniel Jacobowitz <drow@mvista.com>
10888
10889 From Martin Pool <mbp@samba.org>:
10890 * server.c (gdbserver_usage): New function.
10891 (main): Call it.
10892
108932002-05-14 Daniel Jacobowitz <drow@mvista.com>
10894
10895 * mem-break.c (reinsert_breakpoint_by_bp): Correct typo
10896 stop_at -> stop_pc.
10897
108982002-05-04 Andrew Cagney <ac131313@redhat.com>
10899
10900 * Makefile.in: Remove obsolete code.
10901
109022002-04-24 Michal Ludvig <mludvig@suse.cz>
10903
10904 * linux-low.c (regsets_fetch_inferior_registers),
10905 (regsets_store_inferior_registers): Removed cast to int from
10906 ptrace() calls.
10907 * regcache.h: Added declaration of struct inferior_info.
10908
109092002-04-20 Daniel Jacobowitz <drow@mvista.com>
10910
10911 * inferiors.c (struct inferior_info): Add regcache_data.
10912 (add_inferior): Call create_register_cache.
10913 (clear_inferiors): Call free_register_cache.
10914 (inferior_regcache_data, set_inferior_regcache_data): New functions.
10915 * regcache.c (struct inferior_regcache_data): New.
10916 (registers): Remove.
10917 (get_regcache): New function.
10918 (create_register_cache, free_register_cache): New functions.
10919 (set_register_cache): Don't initialize the register cache here.
10920 (registers_to_string, registers_from_string, register_data): Call
10921 get_regcache.
10922 * regcache.h: Add prototypes.
10923 * server.h: Likewise.
10924
109252002-04-20 Daniel Jacobowitz <drow@mvista.com>
10926
10927 * mem-break.c: New file.
10928 * mem-break.h: New file.
10929 * Makefile.in: Add mem-break.o rule; update server.h
10930 dependencies.
10931 * inferiors.c (struct inferior_info): Add target_data
10932 member.
10933 (clear_inferiors): Free target_data member if set.
10934 (inferior_target_data, set_inferior_target_data): New functions.
10935 * linux-i386-low.c (i386_breakpoint, i386_breakpoint_len)
10936 (i386_stop_pc, i386_set_pc): New. Add to the_low_target.
10937 * linux-low.c (linux_bp_reinsert): New variable.
10938 (struct inferior_linux_data): New.
10939 (linux_create_inferior): Use set_inferior_target_data.
10940 (linux_attach): Likewise. Call add_inferior.
10941 (linux_wait_for_one_inferior): New function.
10942 (linux_wait): Call it.
10943 (linux_write_memory): Add const.
10944 (initialize_low): Call set_breakpoint_data.
10945 * linux-low.h (struct linux_target_ops): Add breakpoint
10946 handling members.
10947 * server.c (attach_inferior): Remove extra add_inferior
10948 call.
10949 * server.h: Include mem-break.h. Update inferior.c
10950 prototypes.
10951 * target.c (read_inferior_memory)
10952 (write_inferior_memory): New functions.
10953 * target.h (read_inferior_memory)
10954 (write_inferior_memory): Change macros to prototypes.
10955 (struct target_ops): Update comments. Add const to write_memory
10956 definition.
10957
109582002-04-11 Daniel Jacobowitz <drow@mvista.com>
10959
10960 * linux-low.c (usr_store_inferior_registers): Support
10961 registers which are allowed to fail to store.
10962 * linux-low.h (linux_target_ops): Likewise.
10963 * linux-ppc-low.c (ppc_regmap): Support FPSCR.
10964 (ppc_cannot_store_register): FPSCR may not be storable.
10965
109662002-04-09 Daniel Jacobowitz <drow@mvista.com>
10967
10968 * server.h: Include <string.h> if HAVE_STRING_H.
10969 * ChangeLog: Correct paths in last ChangeLog entry.
10970
109712002-04-09 Daniel Jacobowitz <drow@mvista.com>
10972
10973 * linux-low.h: Remove obsolete prototypes.
10974 (struct linux_target_ops): New.
10975 (extern the_low_target): New.
10976 * linux-low.c (num_regs, regmap): Remove declarations.
10977 (register_addr): Use the_low_target explicitly.
10978 (fetch_register): Likewise.
10979 (usr_fetch_inferior_registers): Likewise.
10980 (usr_store_inferior_registers): Likewise.
10981 * linux-arm-low.c (num_regs): Remove.
10982 (arm_num_regs): Define.
10983 (arm_regmap): Renamed from regmap, made static.
10984 (arm_cannot_fetch_register): Renamed from cannot_fetch_register,
10985 made static.
10986 (arm_cannot_store_register): Renamed from cannot_store_register,
10987 made static.
10988 (the_low_target): New.
10989 * linux-i386-low.c (num_regs): Remove.
10990 (i386_num_regs): Define.
10991 (i386_regmap): Renamed from regmap, made static.
10992 (i386_cannot_fetch_register): Renamed from cannot_fetch_register,
10993 made static.
10994 (i386_cannot_store_register): Renamed from cannot_store_register,
10995 made static.
10996 (the_low_target): New.
10997 * linux-ia64-low.c (num_regs): Remove.
10998 (ia64_num_regs): Define.
10999 (ia64_regmap): Renamed from regmap, made static.
11000 (ia64_cannot_fetch_register): Renamed from cannot_fetch_register,
11001 made static.
11002 (ia64_cannot_store_register): Renamed from cannot_store_register,
11003 made static.
11004 (the_low_target): New.
11005 * linux-m68k-low.c (num_regs): Remove.
11006 (m68k_num_regs): Define.
11007 (m68k_regmap): Renamed from regmap, made static.
11008 (m68k_cannot_fetch_register): Renamed from cannot_fetch_register,
11009 made static.
11010 (m68k_cannot_store_register): Renamed from cannot_store_register,
11011 made static.
11012 (the_low_target): New.
11013 * linux-mips-low.c (num_regs): Remove.
11014 (mips_num_regs): Define.
11015 (mips_regmap): Renamed from regmap, made static.
11016 (mips_cannot_fetch_register): Renamed from cannot_fetch_register,
11017 made static.
11018 (mips_cannot_store_register): Renamed from cannot_store_register,
11019 made static.
11020 (the_low_target): New.
11021 * linux-ppc-low.c (num_regs): Remove.
11022 (ppc_num_regs): Define.
11023 (ppc_regmap): Renamed from regmap, made static.
11024 (ppc_cannot_fetch_register): Renamed from cannot_fetch_register,
11025 made static.
11026 (ppc_cannot_store_register): Renamed from cannot_store_register,
11027 made static.
11028 (the_low_target): New.
11029 * linux-s390-low.c (num_regs): Remove.
11030 (s390_num_regs): Define.
11031 (s390_regmap): Renamed from regmap, made static.
11032 (s390_cannot_fetch_register): Renamed from cannot_fetch_register,
11033 made static.
11034 (s390_cannot_store_register): Renamed from cannot_store_register,
11035 made static.
11036 (the_low_target): New.
11037 * linux-sh-low.c (num_regs): Remove.
11038 (sh_num_regs): Define.
11039 (sh_regmap): Renamed from regmap, made static.
11040 (sh_cannot_fetch_register): Renamed from cannot_fetch_register,
11041 made static.
11042 (sh_cannot_store_register): Renamed from cannot_store_register,
11043 made static.
11044 (the_low_target): New.
11045 * linux-x86-64-low.c (x86_64_regmap): Renamed from regmap.
11046 (the_low_target): New.
11047
110482002-04-09 Daniel Jacobowitz <drow@mvista.com>
11049
11050 * Makefile.in: Add stamp-h target.
11051 * configure.in: Create stamp-h.
11052 * configure: Regenerated.
11053
110542002-04-09 Daniel Jacobowitz <drow@mvista.com>
11055
11056 * inferiors.c: New file.
11057 * target.c: New file.
11058 * target.h: New file.
11059 * Makefile.in: Add target.o and inferiors.o. Update
11060 dependencies.
11061 * linux-low.c (inferior_pid): New static variable,
11062 moved from server.c.
11063 (linux_create_inferior): Renamed from create_inferior.
11064 Call add_inferior. Return 0 on success instead of a PID.
11065 (linux_attach): Renamed from myattach.
11066 (linux_kill): Renamed from kill_inferior. Call clear_inferiors ().
11067 (linux_thread_alive): Renamed from mythread_alive.
11068 (linux_wait): Renamed from mywait. Call clear_inferiors () if the
11069 child dies.
11070 (linux_resume): Renamed from myresume. Add missing ``return 0''.
11071 (regsets_store_inferior_registers): Correct error message.
11072 Add missing ``return 0''.
11073 (linux_fetch_registers): Renamed from fetch_inferior_registers.
11074 (linux_store_registers): Renamed from store_inferior_registers.
11075 (linux_read_memory): Renamed from read_inferior_memory.
11076 (linux_write_memory): Renamed from write_inferior_memory.
11077 (linux_target_ops): New structure.
11078 (initialize_low): Call set_target_ops ().
11079 * remote-utils.c (unhexify): New function.
11080 (hexify): New function.
11081 (input_interrupt): Send signals to ``signal_pid''.
11082 * server.c (inferior_pid): Remove.
11083 (start_inferior): Update create_inferior call.
11084 (attach_inferior): Call add_inferior.
11085 (handle_query): New function.
11086 (main): Call handle_query for `q' packets.
11087 * server.h: Include "target.h". Remove obsolete prototypes.
11088 Add prototypes for "inferiors.c", "target.c", hexify, and unhexify.
11089
110902002-04-09 Daniel Jacobowitz <drow@mvista.com>
11091
11092 * Makefile.in: Add WARN_CFLAGS. Update configury
11093 dependencies.
11094 * configure.in: Check for <string.h>
11095 * configure: Regenerate.
11096 * config.in: Regenerate.
11097 * gdbreplay.c: Include needed system headers.
11098 (remote_open): Remove strchr prototype.
11099 * linux-low.h: Correct #ifdef to HAVE_LINUX_USRREGS.
11100 * regcache.c (supply_register): Change buf argument to const void *.
11101 (supply_register_by_name): Likewise.
11102 (collect_register): Change buf argument to void *.
11103 (collect_register_by_name): Likewise.
11104 * regcache.h: Add missing prototypes.
11105 * remote-utils.c: Include <arpa/inet.h> for inet_ntoa.
11106 * server.c (handle_query): New function.
11107 (attached): New static variable, moved out of main.
11108 (main): Quiet longjmp clobber warnings.
11109 * server.h: Add ATTR_NORETURN and ATTR_FORMAT. Update prototypes.
11110 * utils.c (error): Remove NORETURN.
11111 (fatal): Likewise.
This page took 0.068345 seconds and 4 git commands to generate.