]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/gdbserver/ChangeLog
2012-09-03 Joel Sherrill <joel.sherrill@oarcorp.com>
[thirdparty/binutils-gdb.git] / gdb / gdbserver / ChangeLog
CommitLineData
918d227b
YQ
12012-09-04 Yao Qi <yao@codesourcery.com>
2
3 * tracepoint.c (cmd_qtsv): Adjust debug message.
4 Don't check CUR_TPOINT.
5
18c1b81a
YQ
62012-08-28 Yao Qi <yao@codesourcery.com>
7
8 * ax.c, tracepoint.c: Replace ATTR_FORMAT with ATTRIBUTE_PRINTF.
9 * server.h: Include 'libiberty.h' and 'ansidecl.h'.
10 (ATTR_NORETURN, ATTR_FORMAT, ATTR_MALLOC): Remove.
11 Remove declarations of xmalloc, xreallloc, xstrdup and
12 freeargv.
13 * Makefile.in (libiberty_h): New.
14 (server_h): Append dependencies 'libiberty.h' and 'ansidecl.h'.
15 (linux-bfin-low.o): Append dependency 'libiberty.h'.
16
dc82f37b
YQ
172012-08-23 Yao Qi <yao@codesourcery.com>
18
19 * server.h: Remove declaration of 'xsnprintf'.
20
406b1477
KS
212012-08-22 Keith Seitz <keiths@redhat.com>
22
23 * server.h: Include build-gnulib-gbserver/config.h.
24 * gdbreplay.c: Likewise.
25
e6712ff1
DE
262012-08-08 Doug Evans <dje@google.com>
27
28 * Makefile.in (SFILES): Add gdb_vecs.c.
29 (OBS): Add gdb_vecs.o.
30 (gdb_vecs_h, host_defs_h): New variables.
31 (thread-db.o): Add $(gdb_vecs_h) dependency.
32 (gdb_vecs.o): New rule.
33 * thread-db.c: #include "gdb_vecs.h".
34 (thread_db_load_search): Use a vector to iterate over path elements.
35 Handle text appearing after "$pdir".
36
37 * configure.ac: Add check for strstr.
38 * config.in: Regenerate.
39 * configure: Regenerate.
40
7c3270ae
UW
412012-08-02 Ulrich Weigand <ulrich.weigand@linaro.org>
42
43 * hostio.c (handle_pread): If pread fails, fall back to attempting
44 lseek/read.
45 (handle_pwrite): Likewise for pwrite.
46
b62e2b27
UW
472012-08-01 Ulrich Weigand <ulrich.weigand@linaro.org>
48
49 * linux-arm-low.c (arm_linux_hw_point_initialize): Distinguish
50 between unsupported TYPE and unimplementable ADDR/LEN combination.
51 (arm_insert_point): Act on new return value.
52
78a99e91
PA
532012-07-31 Pedro Alves <palves@redhat.com>
54
55 * server.c (process_point_options): Only skip tokens if we find
56 one that is unrecognized. Don't treat 'X' specially while
57 skipping unrecognized tokens.
58
fcf303ab
UW
592012-07-30 Ulrich Weigand <ulrich.weigand@linaro.org>
60
61 * linux-arm-low.c (arm_linux_hw_point_initialize): Do not attempt
62 to 4-byte-align HW breakpoint addresses for Thumb.
63
7255706c
YQ
642012-07-27 Yao Qi <yao@codesourcery.com>
65
66 PR remote/14161.
67
68 * server.h: Declare gdb_agent_about_to_close.
69 * target.c (kill_inferior): Include "agent.h".
70 New. Send command 'kill'.
71 * target.h (kill_inferior): Removed macro.
72 * tracepoint.c (gdb_agent_about_to_close): New.
73 (gdb_agent_helper_thread): Handle command 'close'.
74 Wait endlessly until the inferior stops.
75 Install gdb_agent_remove_socket to atexit hook.
76 (agent_socket_name): New static variable.
77 (gdb_agent_socket_init): Replace local variable 'name' with
78 'agent_socket_name'.
79 (gdb_agent_remove_socket): New.
80
5a3f286f
YQ
812012-07-27 Yao Qi <yao@codesourcery.com>
82
83 * server.c (process_point_options): Stop at 'X' when parsing.
84
961bd387
ME
852012-07-19 Michael Eager <eager@eagercon.com>
86
87 * i386-low.c (Z_packet_to_hw_type): Add Z_PACKET_HW_BP, translate
88 to hw_execute.
89 * linux-x86-low.c (x86_insert_point, x86_remove_point):
90 Call i386_low_insert_watchpoint, i386_low_remove_watchpoint to add/del
91 hardware breakpoint.
92
aa7c7447
JK
932012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
94
95 * gdbserver/linux-low.c (initialize_low): Call
96 linux_ptrace_init_warnings.
97
7f216e7c
DE
982012-07-02 Doug Evans <dje@google.com>
99
100 * mem-break.c (gdb_no_commands_at_breakpoint): Fix cast from
101 pointer to int.
102
d3ce09f5
SS
1032012-07-02 Stan Shebs <stan@codesourcery.com>
104
105 * Makefile.in (WARN_CFLAGS_NO_FORMAT): Define.
106 (ax.o): Add it to build rule.
107 (ax-ipa.o): Ditto.
108 (OBS): Add format.o.
109 (IPA_OBS): Add format.o.
110 * server.c (handle_query): Claim support for breakpoint commands.
111 (process_point_options): Add command case.
112 (process_serial_event): Leave running if there are printfs in
113 effect.
114 * mem-break.h (any_persistent_commands): Declare.
115 (add_breakpoint_commands): Declare.
116 (gdb_no_commands_at_breakpoint): Declare.
117 (run_breakpoint_commands): Declare.
118 * mem-break.c (struct point_command_list): New struct.
119 (struct breakpoint): New field command_list.
120 (any_persistent_commands): New function.
121 (add_commands_to_breakpoint): New function.
122 (add_breakpoint_commands): New function.
123 (gdb_no_commands_at_breakpoint): New function.
124 (run_breakpoint_commands): New function.
125 * linux-low.c (linux_wait_1): Test for and run breakpoint commands
126 locally.
127 * ax.c: Include format.h.
128 (ax_printf): New function.
129 (gdb_eval_agent_expr): Add printf opcode.
130
2f8f6aed
YQ
1312012-06-13 Yao Qi <yao@codesourcery.com>
132
133 * server.c (start_inferior): Remove duplicated writes to fields
134 'last_resume_kind' and 'last_status' of 'current_inferior'.
135
0c9070b3
YQ
1362012-06-12 Yao Qi <yao@codesourcery.com>
137 Pedro Alves <palves@redhat.com>
138
139 * linux-low.c (linux_set_resume_request): Simplify predicate. Add
140 comment.
141 * server.c (handle_v_cont): Extend comment.
142
c52daf70
YQ
1432012-06-11 Yao Qi <yao@codesourcery.com>
144
145 * linux-low.c (linux_attach): Add 'static'.
146
d38bbb0a
YQ
1472012-06-06 Yao Qi <yao@codesourcery.com>
148
149 * ax.c (gdb_eval_agent_expr): Print `top' in hex.
150
89dc0afd
JK
1512012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
152
153 Fix gcc -flto compilation warning.
154 * server.c (main): Make variable multi_mode and attach volatile.
155
75f62ce7
TJB
1562012-05-30 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
157
158 * linux-low.c (get_r_debug): Disable code using DT_MIPS_RLD_MAP
159 if the platform doesn't know about it.
160
65f479b6
PA
1612012-05-30 Jeff Kenton <jkenton@tilera.com>
162
163 * Makefile.in (SFILES): Add linux-tile-low.c.
164 (linux-tile-low.o, reg-tilegx.o, reg-tilegx.c): New rules.
165 * configure.srv: Handle tilegx-*-linux*.
166 * linux-tile-low.c: New file.
167
0c5bf5a9
JK
1682012-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
169
170 * linux-low.c (linux_qxfer_libraries_svr4): Return -1 if R_DEBUG is -1.
171
a493e3e2
PA
1722012-05-24 Pedro Alves <palves@redhat.com>
173
174 PR gdb/7205
175
176 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
177
2ea28649
PA
1782012-05-24 Pedro Alves <palves@redhat.com>
179
180 PR gdb/7205
181
182 Replace target_signal with gdb_signal throughout.
183
8d409d16
MR
1842012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
185
186 * linux-low.c (linux_store_registers): Avoid the copying sequence
187 when no data has been retrieved by ptrace.
188
23512c01
MGD
1892012-05-22 Will Deacon <will.deacon@arm.com>
190
191 * linux-low (__UCLIBC__ && !(__UCLIBC_HAS_MMU__ || __ARCH_HAS_MMU__)):
192 Include asm/ptrace.h.
193 (PT_TEXT_ADDR, PT_DATA_ADDR, PT_TEXT_END_ADDR): Define only if not
194 already defined.
195
4934b29e
MR
1962012-05-21 Maciej W. Rozycki <macro@codesourcery.com>
197
198 * linux-low.c (linux_store_registers): Don't re-retrieve data
199 with ptrace that has already been obtained from /proc. Always
200 copy any data retrieved with ptrace to the buffer supplied.
201
bde24c0a
PA
2022012-05-11 Yao Qi <yao@codesourcery.com>
203 Pedro Alves <palves@redhat.com>
204
205 * linux-low.c (enum stopping_threads_kind): New.
206 (stopping_threads): Change type to `enum stopping_threads_kind'.
207 (handle_extended_wait): If stopping and suspending threads, leave
208 the new_lwp suspended too.
209 (linux_wait_for_event): Adjust.
210 (stop_all_lwps): Set `stopping_threads' to
211 STOPPING_AND_SUSPENDING_THREADS or STOPPING_THREADS depending on
212 whether we're suspending threads or just stopping them. Assert no
213 recursion happens.
214
623b6bdf
YQ
2152012-04-29 Yao Qi <yao@codesourcery.com>
216
217 * server.h: Move some code to ...
218 * gdbthread.h: ... here. New.
219 * Makefile.in (inferiors.o, regcache.o): Depends on gdbthread.h
220 (remote-utils.o, server.o, target.o tracepoint.o): Likewise.
221 (nto-low.o, win32-low.o): Likewise.
222 * inferiors.c, linux-low.h, nto-low.c: Include gdbthread.h.
223 * regcache.c, remote-utils.c, server.c: Likewise.
224 * target.c, tracepoint.c, win32-low.c: Likewise.
225
f15f9948
TJB
2262012-04-24 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
227
228 * linux-low.h (PTRACE_ARG3_TYPE): Move macro from linux-low.c.
229 (PTRACE_ARG4_TYPE): Likewise.
230 (PTRACE_XFER_TYPE): Likewise.
231 * linux-arm-low.c (arm_prepare_to_resume): Cast third argument of
232 ptrace to PTRACE_ARG3_TYPE.
233 * linux-low.c (PTRACE_ARG3_TYPE): Move macro to linux-low.h.
234 (PTRACE_ARG4_TYPE): Likewise.
235 (PTRACE_XFER_TYPE): Likewise.
236 (linux_detach_one_lwp): Cast fourth argument of
237 ptrace to long then PTRACE_ARG4_TYPE.
238 (regsets_fetch_inferior_registers): Cast third argument of
239 ptrace to long then PTRACE_ARG3_TYPE.
240 (regsets_store_inferior_registers): Likewise.
241
38ea300a
PA
2422012-04-20 Pedro Alves <palves@redhat.com>
243
244 * configure: Regenerate.
245
c971b7fa
PA
2462012-04-19 Pedro Alves <palves@redhat.com>
247
248 * Makefile.in (GNULIB_BUILDDIR): New.
249 (LIBGNU, INCGNU, GNULIB_H): Adjust.
250 (SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
251 (all, install-only, uninstall, clean-info, all-lib, clean): No
252 longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
253 (maintainer-clean realclean distclean): Use subdir_do.
254 (subdir_do): New.
255 (gnulib/import/Makefile): Adjust. Replace gnulib/import with
256 $(GNULIB_BUILDDIR). Don't pass argument to config.status.
257 * acinclude.m4: Include acx_configure_dir.m4.
258 * configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
259 calls. Call AC_PROG_RANLIB. Configure gnulib using
260 ACX_CONFIGURE_DIR.
261 (GNULIB): New.
262 (GNULIB_STDINT_H): Adjust.
263 (AC_OUTPUT): Don't output gnulib/Makefile anymore.
264 * gdbreplay.c: Include build-gnulib/config.h.
265 * server.h: Likewise.
266 * aclocal.m4: Regenerate.
267 * config.in: Regenerate.
268 * configure: Regenerate.
269
809277f8
PA
2702012-04-19 Pedro Alves <palves@redhat.com>
271
272 * Makefile.in (LIBGNU, INCGNU): Adjust.
273 (GNULIB_FLAGS_TO_PASS, GNULIB_H): Adjust.
274 (all, install-only, uninstall, clean-info, all-lib, clean)
275 (maintainer-clean, Makefile, gnulib/Makefile): Adjust.
276 * configure.ac: Adjust AC_OUTPUT output.
277 * aclocal.m4: Regenerate.
278 * configure: Regenerate.
279
fd9bb8b8
PA
2802012-04-19 Pedro Alves <palves@redhat.com>
281
282 * Makefile.in (generated_files): New.
283 (server_h): Remove the explicit dependency on config.h, and depend
284 on $generated_files.
285
1c298c66
PA
2862012-04-19 Pedro Alves <palves@redhat.com>
287
288 * Makefile.in (INCGNU): Add -Ignulib.
289
57c4b50b
PA
2902012-04-19 Pedro Alves <palves@redhat.com>
291
292 * Makefile.in (GNULIB_INCLUDE_DIR): Rename to ...
293 (INCGNU): ... this, and spell out -I here.
294 (GNULIB_LIB): Rename to ...
295 (LIBGNU): ... this.
296 (INCLUDE_CFLAGS, gdbserver$(EXEEXT), $(GNULIB_LIB) rule): Adjust.
297
1030e047
PA
2982012-04-19 Pedro Alves <palves@redhat.com>
299
300 * config.in: Regenerate.
301
447d4319
PA
3022012-04-19 Pedro Alves <palves@redhat.com>
303
304 * configure.ac: Remove AC_CHECK_DECLS check for memmem.
305 * server.h (memmem): Remove declaration.
306 * config.in: Regenerate.
307 * configure: Regenerate.
308
aad9eab9
YQ
3092012-04-19 Yao Qi <yao@codesourcery.com>
310
311 * Makefile.in (SFILES): Add common/vec.c.
312 (OBS): Add vec.o.
313 (vec.o): New rule.
314
3e10640f
YQ
3152012-04-19 Yao Qi <yao@codesourcery.com>
316
317 * remote-utils.c (prepare_resume_reply): Replace with macro
318 target_core_of_thread.
319 * server.c (handle_qxfer_threads_proper): Likewise.
320 * target.h (traget_core_of_thread): New macro.
321
71622373
PA
3222012-04-18 Pedro Alves <palves@redhat.com>
323
324 * aclocal.m4: Regenerate.
325 * configure: Regenerate.
326
80d26939
YQ
3272012-04-16 Yao Qi <yao@codesourcery.com>
328
329 * tracepoint.c (cmd_qtstart): Download tracepoints even when they are
330 duplicated on address.
331
42476b70
YQ
3322012-04-16 Yao Qi <yao@codesourcery.com>
333
334 * tracepoint.c (COPY_FIELD_TO_BUF): New macro.
335 (struct tracepoint_action_ops) <send>: New field.
336 (m_tracepoint_action_send, r_tracepoint_action_send): New.
337 (agent_expr_send, x_tracepoint_action_send): New.
338 (l_tracepoint_action_send): New.
339 (cmd_qtdp): Download and install tracepoint
340 according to `use_agent'.
341 (run_inferior_command): Add one more parameter `len'.
342 Update callers.
343 (tracepoint_send_agent): New.
344 (cmd_qtdp, cmd_qtstart): Call tracepoint_send_agent.
345
7bc83639
YQ
3462012-04-16 Yao Qi <yao@codesourcery.com>
347
348 * tracepoint.c (download_tracepoints): Moved to ...
349 (cmd_qtstart): ... here.
350
5f18041e
YQ
3512012-04-14 Yao Qi <yao@codesourcery.com>
352
353 * tracepoint.c: Include inttypes.h.
354 (struct collect_memory_action): Use sized types.
355 (struct tracepoint): Likewise.
356 (cmd_qtdp, stop_tracing): Update print specifiers.
357 (cmd_qtp, response_tracepoint): Likewise.
358 (collect_data_at_tracepoint): Likewise.
359 (collect_data_at_step): Likewise.
360
55a8c076
YQ
3612012-04-14 Yao Qi <yao@codesourcery.com>
362
363 Import gnulib module inttypes.
364 * aclocal.m4, config.in, configure: Regenerated.
365
dc750257
YQ
3662012-04-14 Yao Qi <yao@codesourcery.com>
367
368 * Makefile.in (maintainer-clean, realclean, distclean): Remove
369 Makefile and config.status at last.
370
0ab5faf9
YQ
3712012-04-13 Yao Qi <yao@codesourcery.com>
372
373 * tracepoint.c: Include stdint.h unconditionally.
374
18f5fd81
TJB
3752012-04-13 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
376
377 * acinclude.m4 (GDBSERVER_HAVE_THREAD_DB_TYPE): New macro based
378 on BFD_HAVE_SYS_PROCFS_TYPE.
379 * configure.ac: Look for lwpid_t and psaddr_t in libthread_db.h.
380 * configure: Regenerate.
381 * config.in: Likewise.
382
4d47af5c
L
3832012-04-13 H.J. Lu <hongjiu.lu@intel.com>
384
385 * Makefile.in (clean): Also remove x32.c x32-linux.c
386 x32-avx.c x32-avx-linux.c.
387 (x32.o): New target.
388 (x32.c): Likewise.
389 (x32-linux.o): Likewise.
390 (x32-linux.c): Likewise.
391 (x32-avx.o): Likewise.
392 (x32-avx.c): Likewise.
393 (x32-avx-linux.o): Likewise.
394 (x32-avx-linux.c): Likewise.
395
396 * configure.srv (srv_amd64_regobj): Add x32.o x32-avx.o.
397 (srv_amd64_linux_regobj): Add x32-linux.o x32-avx-linux.o.
398 (srv_i386_64bit_xmlfiles): Add i386/x32-core.xml.
399 (srv_amd64_xmlfiles): Add i386/x32.xml i386/x32-avx.xml.
400 (srv_amd64_linux_xmlfiles): Add i386/x32-linux.xml
401 i386/x32-avx-linux.xml.
402
403 * linux-x86-low.c (init_registers_x32_linux): New prototype.
404 (init_registers_x32_avx_linux): Likwise.
405 (x86_linux_update_xmltarget): Call init_registers_x32_linux
406 or init_registers_x32_avx_linux if linux_is_elf64 is false.
407
ecedbe58
PA
4082012-04-13 Pedro Alves <palves@redhat.com>
409
410 * Makefile.in (GNULIB_FLAGS_TO_PASS): New.
411 (FLAGS_TO_PASS): Don't change or set $top_srcdir, $srcdir and VPATH.
412 (all, uninstall, clean-info, all-lib, clean, maintainer-clean)
413 (realclean, distclean): Explicitly pass $GNULIB_FLAGS_TO_PASS to
414 the sub-make.
415
c92b5177
L
4162012-04-12 H.J. Lu <hongjiu.lu@intel.com>
417
418 * linux-x86-low.c (compat_x32_clock_t): New.
419 (compat_x32_siginfo_t): Likewise.
420 (compat_x32_siginfo_from_siginfo): Likewise.
421 (siginfo_from_compat_x32_siginfo): Likewise.
422 (linux_is_elf64): Likewise.
423 (x86_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
424 and siginfo_from_compat_x32_siginfo for x32.
425 (x86_arch_setup): Set linux_is_elf64.
426
214d508e
L
4272012-04-12 H.J. Lu <hongjiu.lu@intel.com>
428
429 PR gdb/13969
430 * linux-low.c (linux_pid_exe_is_elf_64_file): Also return the
431 e_machine field.
432 (linux_qxfer_libraries_svr4): Update call to elf_64_file_p.
433 * linux-low.h (linux_pid_exe_is_elf_64_file): Updated.
434 * linux-x86-low.c (x86_arch_setup): Check if GDBserver is
435 compatible with process.
436
c9a1864a
YQ
4372012-04-12 Yao Qi <yao@codesourcery.com>
438
439 * Makefile.in: Define abs_top_srcdir and abs_srcdir.
440 (INCLUDE_CFLAGS): Append GNULIB_INCLUDE_DIR.
441 (install-only, install-info, clean): Handle sub dir gnulib.
442 (all-lib, am--refresh): New targets.
443 (memmem.o): Remove target.
444 * configure.ac: Remove AC_CONFIG_LIBOBJ_DIR.
445 Invoke gl_EARLY. Invoke AC_CHECK_PROGS for make.
446 (AC_REPLACE_FUNCS): Remove memmem.
447 Invoke gl_INIT and AM_INIT_AUTOMAKE.
448 (AC_OUTPUT): Generate Makefile in gnulib/.
449 * aclocal.m4, config.in, configure: Regenerated.
450
367ba2c2
MR
4512012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
452
453 * linux-low.c (get_r_debug): Handle DT_MIPS_RLD_MAP.
454
9d236627
PA
4552012-04-05 Pedro Alves <palves@redhat.com>
456
457 -Werror=strict-aliasing
458
459 * spu-low.c (parse_spufs_run): Avoid dereferencing type-punned
460 pointer.
461
111217b3
PA
4622012-04-04 Pedro Alves <palves@redhat.com>
463
464 * linux-sparc-low.c (sparc_fill_gregset_to_stack)
465 (sparc_store_gregset_from_stack, sparc_store_gregset)
466 (sparc_breakpoint_at): Fix formatting.
467
8365dcf5
TJB
4682012-03-30 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
469
470 * configure.ac: Check whether Elf32_auxv_t and Elf64_auxv_t
471 are available.
472 * linux-low.c [HAVE_ELF32_AUXV_T] (Elf32_auxv_t): Add typedef.
473 [HAVE_ELF64_AUXV_T] (Elf64_auxv_t): Likewise.
474 * config.in: Regenerate.
475 * configure: Likewise.
476
689cc2ae
PA
4772012-03-29 Pedro Alves <palves@redhat.com>
478
479 * linux-low.c (regsets_store_inferior_registers) [__sparc__]:
480 Correct ptrace arguments.
481
c14dfd32
PA
4822012-03-28 Pedro Alves <palves@redhat.com>
483
484 * linux-ia64-low.c (ia64_regmap): Map IA64_EC_REGNUM to PT_AR_EC.
485 (IA64_GR0_REGNUM, IA64_FR0_REGNUM)
486 (IA64_FR1_REGNUM): New defines.
487 (ia64_fetch_register): New.
488 (the_low_target): Install it.
489 * linux-low.h (struct linux_target_ops) <fetch_register>: New
490 field.
491 * linux-low.c (linux_fetch_registers): Try the
492 the_low_target.fetch_register hook first.
493
494 * linux-arm-low.c (the_low_target): Adjust.
495 * linux-bfin-low.c (the_low_target): Adjust.
496 * linux-cris-low.c (the_low_target): Adjust.
497 * linux-crisv32-low.c (the_low_target): Adjust.
498 * linux-m32r-low.c (the_low_target): Adjust.
499 * linux-m68k-low.c (the_low_target): Adjust.
500 * linux-mips-low.c (the_low_target): Adjust.
501 * linux-ppc-low.c (the_low_target): Adjust.
502 * linux-s390-low.c (the_low_target): Adjust.
503 * linux-sh-low.c (the_low_target): Adjust.
504 * linux-sparc-low.c (the_low_target): Adjust.
505 * linux-tic6x-low.c (the_low_target): Adjust.
506 * linux-x86-low.c (the_low_target): Adjust.
507 * linux-xtensa-low.c (the_low_target): Adjust.
508
63c88e13
PA
5092012-03-26 Pedro Alves <palves@redhat.com>
510
511 * server.c (handle_qxfer_libraries): Don't bail early if
512 the_target->qxfer_libraries_svr4 is not NULL.
513
fb723180
PA
5142012-03-26 Pedro Alves <palves@redhat.com>
515
516 * linux-low.c (linux_qxfer_libraries_svr4): Fix pasto in comment.
517
0afae3cf
PA
5182012-03-23 Pedro Alves <palves@redhat.com>
519
520 * linux-low.c (linux_qxfer_libraries_svr4): Terminate the
521 "library-list-svr4" element's start tag when the the DSO list is
522 empty.
523
485f1ee4
PA
5242012-03-23 Pedro Alves <palves@redhat.com>
525
526 * linux-low.c (read_one_ptr): Read the inferior's pointer through
527 a variable whose type size is the same as the inferior's pointer
528 size.
529
a5362b9a
TS
5302012-03-21 Thomas Schwinge <thomas@codesourcery.com>
531
532 * linux-arm-low.c (arm_stopped_by_watchpoint): Use siginfo_t instead of
533 struct siginfo.
534 * linux-low.c (siginfo_fixup, linux_xfer_siginfo): Likewise.
535 * linux-x86-low.c (x86_siginfo_fixup): Likewise.
536 * linux-low.h: Include <signal.h>.
537 (struct siginfo): Remove forward declaration.
538 (struct linux_target_ops) <siginfo_fixup>: Use siginfo_t instead of
539 struct siginfo.
540
d226c142
MF
5412012-03-21 Mike Frysinger <vapier@gentoo.org>
542
543 * .gitignore: Ignore more files.
544
122f36ef
PA
5452012-03-19 Pedro Alves <palves@redhat.com>
546 Jan Kratochvil <jan.kratochvil@redhat.com>
547
548 * server.c (cont_thread, general_thread): Add describing comments.
549 (start_inferior): Clear `cont_thread'.
550 (handle_v_cont): Don't set `cont_thread' if resuming all threads
551 of a process.
552
fc3e5175
YQ
5532012-03-15 Yao Qi <yao@codesourcery.com>
554
555 * tracepoint.c (install_tracepoint): Move duplicated tracepoint
556 handling to ...
557 (cmd_qtdp): ... here.
558
8d0d92cd
YQ
5592012-03-15 Yao Qi <yao@codesourcery.com>
560
561 * tracepoint.c (struct tracepoint_action_ops): New.
562 (struct tracepoint_action) [!IN_PROCESS_AGENT] <ops>: New field.
563 (m_tracepoint_action_download): New.
564 (r_tracepoint_action_download): New.
565 (x_tracepoint_action_download): New.
566 (l_tracepoint_action_download): New.
567 (add_tracepoint_action): Install `action->ops' according type.
568 (download_tracepoint_1): Move code `download' function pointer
569 of various tracepoint_action_ops.
570
87b0bb13
JK
5712012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
572
573 * linux-low.c (linux_attach_lwp_1): New variable buffer. Call
574 linux_ptrace_attach_warnings.
575
5f572dec
JK
5762012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
577
578 * Makefile.in (linux-ptrace.o): New.
579 * configure.srv (arm*-*-linux*, bfin-*-*linux*, crisv32-*-linux*)
580 (cris-*-linux*, i[34567]86-*-linux*, ia64-*-linux*, m32r*-*-linux*)
581 (m68*-*-linux*, m68*-*-uclinux*, mips*-*-linux*, powerpc*-*-linux*)
582 (s390*-*-linux*, sh*-*-linux*, sparc*-*-linux*, tic6x-*-uclinux)
583 (x86_64-*-linux*, xtensa*-*-linux*): Add linux-ptrace.o to SRV_TGTOBJ
584 of these targets.
585 * linux-low.c (linux_attach_lwp_1): Remove redundent else clause.
586
f4647387
YQ
5872012-03-08 Yao Qi <yao@codesourcery.com>
588 Pedro Alves <palves@redhat.com>
589
590 Fix PR server/13392.
591 * linux-x86-low.c (amd64_install_fast_tracepoint_jump_pad): Check
592 offset of JMP insn.
593 * tracepoint.c (remove_tracepoint): New.
594 (cmd_qtdp): Call remove_tracepoint when failed to install.
595
9b224c5e
PA
5962012-03-07 Pedro Alves <palves@redhat.com>
597
598 * linux-low.c (get_detach_signal): New.
599 (linux_detach_one_lwp): Get rid of a pending SIGSTOP with SIGCONT.
600 Pass on pending signals to PTRACE_DETACH. Check the result of the
601 ptrace call.
602 * server.c (program_signals, program_signals_p): New.
603 (handle_general_set): Handle QProgramSignals.
604 * server.h (program_signals, program_signals_p): Declare.
605
e237a7e2
JK
6062012-03-05 Pedro Alves <palves@redhat.com>
607 Jan Kratochvil <jan.kratochvil@redhat.com>
608
609 * linux-low.c (get_dynamic): Don't warn when PT_PHDR isn't found.
610 New comment why.
611
5808517f
YQ
6122012-03-03 Yao Qi <yao@codesourcery.com>
613
614 * tracepoint.c (tracepoint_look_up_symbols): Update call to
615 agent_look_up_symbols.
616
58b4daa5
YQ
6172012-03-03 Yao Qi <yao@codesourcery.com>
618
619 * Makefile.in (linux-low.o): Keep dependence on agent.h.
620 (linux-x86-low.o): Likewise.
621 * server.h: Remove in_process_agent_loaded.
622 * tracepoint.c (in_process_agent_loaded): Removed. Moved it
623 common/agent.c.
624 Update callers.
625
8ffcbaaf
YQ
6262012-03-03 Yao Qi <yao@codesourcery.com>
627
628 * tracepoint.c (gdb_agent_capability): New global.
629 (in_process_agent_loaded_ust): Renamed to
630 `in_process_agent_supports_ust'.
631 Update callers.
632 (in_process_agent_supports_ust): Call agent_capability_check.
633 (clear_installed_tracepoints): Assert that agent supports
634 agent.
635
d1feda86
YQ
6362012-03-03 Yao Qi <yao@codesourcery.com>
637
638 * linux-low.c (linux_supports_agent): New.
639 (linux_target_ops): Initialize field `supports_agent' with
640 linux_supports_agent.
641 * target.h (struct target_ops) <supports_agent>: New.
642 (target_supports_agent): New macro.
643 * server.c (handle_general_set): Handle packet 'QAgent'.
644 (handle_query): Send `QAgent+'.
645 * Makefile.in (server.o): Depends on agent.h.
646
2fa291ac
YQ
6472012-03-03 Yao Qi <yao@codesourcery.com>
648
649 * Makefile.in (OBS): Add agent.o.
650 Add new rule for agent.o.
651 Track dependence of tracepoint.c on agent.h.
652 * tracepoint.c (run_inferior_command_1):
653 (run_inferior_command): Call agent_run_command.
654 (gdb_ust_connect_sync_socket): Deleted. Move it to
655 common/agent.c.
656 (resume_thread, stop_thread): Likewise.
657 (gdb_ust_socket_init): Renamed to ...
658 (gdb_agent_socket_init): ... New.
659 (gdb_ust_thread): Renamed to ...
660 (gdb_agent_helper_thread): ... New.
661 (gdb_ust_init): Move some code to ...
662 (gdb_agent_init): ... here. New.
663 [HAVE_UST]: Call gdb_ust_init.
664 (initialize_tracepoint_ftlib): Call gdb_agent_init.
665 * configure.ac: Add `sys/un.h' to AC_CHECK_HEADERS.
666 * config.in, configure: Regenerated.
667
05044653
PA
6682012-03-02 Pedro Alves <palves@redhat.com>
669
670 * inferiors.c (add_pid_to_list, pull_pid_from_list): Delete.
671 * linux-low.c (struct simple_pid_list): New.
672 (stopped_pids): New a struct simple_pid_list pointer.
673 (add_to_pid_list, pull_pid_from_list): New.
674 (handle_extended_wait): Don't assume the first signal new children
675 report is SIGSTOP. Adjust call to pull_pid_from_list.
676 (linux_wait_for_lwp): Adjust.
677
8d00225b
YQ
6782012-03-02 Yao Qi <yao@codesourcery.com>
679
680 * tracepoint.c (do_action_at_tracepoint): Write `stop_pc' in
681 debug log.
682
19560ba5
YQ
6832012-03-02 Yao Qi <yao@codesourcery.com>
684
685 * tracepoint.c (collect_ust_data_at_tracepoint): Remove parameters
686 `stop_pc' and `tpoint'. Update caller.
687
1faeff08
MR
6882012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
689
690 * linux-low.h (linux_target_ops): Add regset_bitmap member.
691 * linux-low.c (use_linux_regsets): New macro.
692 [!HAVE_LINUX_REGSETS] (regsets_fetch_inferior_registers): Likewise.
693 [!HAVE_LINUX_REGSETS] (regsets_store_inferior_registers): Likewise.
694 (linux_register_in_regsets): New function.
695 (usr_fetch_inferior_registers): Skip registers covered by
696 regsets.
697 (usr_store_inferior_registers): Likewise.
698 (usr_fetch_inferior_registers): New macro.
699 (usr_store_inferior_registers): Likewise.
700 (linux_fetch_registers): Handle mixed regset/non-regset targets.
701 (linux_store_registers): Likewise.
702 * linux-mips-low.c (init_registers_mips_dsp_linux): New
703 prototype.
704 (init_registers_mips64_dsp_linux): Likewise.
705 (init_registers_mips_linux): New macro.
706 (init_registers_mips_dsp_linux): Likewise.
707 (mips_dsp_num_regs): Likewise.
708 (DSP_BASE, DSP_CONTROL): New fallback macros.
709 (mips_base_regs): New macro.
710 (mips_regmap): Use it. Fix the size.
711 (mips_dsp_regmap): New variable.
712 (mips_dsp_regset_bitmap): Likewise.
713 (mips_arch_setup): New function.
714 (mips_cannot_fetch_register): Use the_low_target.regmap rather
715 than mips_regmap.
716 (mips_cannot_store_register): Likewise.
717 (the_low_target): Update .arch_setup, .num_regs and .regmap
718 initializers. Add .regset_bitmap initializer.
719 * linux-arm-low.c (the_low_target): Add .regset_bitmap
720 initializer.
721 * linux-bfin-low.c (the_low_target): Likewise.
722 * linux-cris-low.c (the_low_target): Likewise.
723 * linux-crisv32-low.c (the_low_target): Likewise.
724 * linux-ia64-low.c (the_low_target): Likewise.
725 * linux-m32r-low.c (the_low_target): Likewise.
726 * linux-m68k-low.c (the_low_target): Likewise.
727 * linux-ppc-low.c (the_low_target): Likewise.
728 * linux-s390-low.c (the_low_target): Likewise.
729 * linux-sh-low.c (the_low_target): Likewise.
730 * linux-sparc-low.c (the_low_target): Likewise.
731 * linux-tic6x-low.c (the_low_target): Likewise.
732 * linux-x86-low.c (the_low_target): Likewise.
733 * linux-xtensa-low.c (the_low_target): Likewise.
734 * configure.srv <mips*-*-linux*>: Add mips-dsp-linux.o and
735 mips64-dsp-linux.o to srv_regobj. Add mips-dsp-linux.xml,
736 mips64-dsp-linux.xml, mips-dsp.xml and mips64-dsp.xml to
737 srv_xmlfiles.
738 * Makefile.in (mips-dsp-linux.o, mips-dsp-linux.c): New targets.
739 (mips64-dsp-linux.o, mips64-dsp-linux.c): Likewise.
740
c03e6ccc
YQ
7412012-02-29 Yao Qi <yao@codesourcery.com>
742 Pedro Alves <palves@redhat.com>
743
744 * linux-low.c: (linux_wait_1): Call unsuspend_all_lwps when
745 `step_over_finished' is true.
746
644cebc9
PA
7472012-02-27 Pedro Alves <palves@redhat.com>
748
749 * linux-low.c (pid_is_stopped): Delete, moved to common/.
750 (linux_attach_lwp_1): Adjust to use linux_proc_pid_is_stopped.
751
c14d7ab2
PA
7522012-02-27 Pedro Alves <palves@redhat.com>
753
754 PR server/9684
755 * linux-low.c (pid_is_stopped): New.
756 (linux_attach_lwp_1): Handle attaching to 'T (stopped)' processes.
757
412c89dd
LM
7582012-02-25 Luis Machado <lgustavo@codesourcery.com>
759
760 * mem-break.c (clear_gdb_breakpoint_conditions): Fix de-allocation
761 of conditions.
762
b745defe
MR
7632012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
764
765 * linux-mips-low.c (mips_regmap): Correct the index of $f9.
766
9f3a5c85
LM
7672012-02-24 Luis Machado <lgustavo@codesourcery>
768
769 * server.c (handle_query): Advertise support for target-side
770 breakpoint condition evaluation.
771 (process_point_options): New function.
772 (process_serial_event): When inserting a breakpoint, check for
773 a target-side condition that should be evaluated.
774
775 * mem-break.c: Include regcache.h and ax.h.
776 (point_cond_list_t): New data structure.
777 (breakpoint) <cond_list>: New field.
778 (find_gdb_breakpoint_at): Make non-static.
779 (delete_gdb_breakpoint_at): Clear any target-side
780 conditions.
781 (clear_gdb_breakpoint_conditions): New function.
782 (add_condition_to_breakpoint): Likewise.
783 (add_breakpoint_condition): Likewise.
784 (gdb_condition_true_at_breakpoint): Likewise.
785 (gdb_breakpoint_here): Return result directly instead
786 of going through a local variable.
787
788 * mem-break.h (find_gdb_breakpoint_at): New prototype.
789 (clear_gdb_breakpoint_conditions): Likewise.
790 (add_breakpoint_condition): Likewise.
791 (gdb_condition_true_at_breakpoint): Likewise.
792
793 * linux-low.c (linux_wait_1): Evaluate target-side breakpoint condition.
794 (need_step_over_p): Take target-side breakpoint condition into
795 consideration.
796
5e1dc496
LM
7972012-02-24 Luis Machado <lgustavo@codesourcery>
798
799 * server.h: Include tracepoint.h.
800 (agent_mem_read, agent_get_trace_state_variable_value,
801 agent_set_trace_state_variable_value,
802 agent_tsv_read, agent_mem_read_string, get_get_tsv_func_addr,
803 get_set_tsv_func_addr): New prototypes.
804
805 * ax.h: New include file.
806 * ax.c: New source file.
807
808 * tracepoint.c: Include ax.h.
809 (gdb_agent_op, gdb_agent_op_names, gdb_agent_op_sizes,
810 agent_expr, eval_result_type): Move to ax.h.
811 (parse_agent_expr): Rename to ...
812 (gdb_parse_agent_expr): ... this, make it non-static and move
813 to ax.h.
814 (unparse_agent_expr) Rename to ...
815 (gdb_unparse_agent_expr): ... this, make it non-static and move
816 to ax.h.
817 (eval_agent_expr): Rename to ...
818 (eval_tracepoint_agent_expr): ... this.
819 (agent_mem_read, agent_mem_read_string, agent_tsv_read): Remove
820 forward declarations.
821 (add_tracepoint_action): Call gdb_parse_agent_expr (...).
822 (agent_get_trace_state_variable_value): New function.
823 (agent_set_trace_state_variable_value): New function.
824 (cmd_qtdp): Call gdb_parse_agent_expr (...).
825 (response_tracepoint): Call gdb_unparse_agent_expr (...).
826 (do_action_at_tracepoint): Call eval_tracepoint_agent_expr (...).
827 (condition_true_at_tracepoint): Likewise.
828 (parse_agent_expr): Rename to ...
829 (gdb_parse_agent_expr): ... this and move to ax.c.
830 (unparse_agent_expr): Rename to ...
831 (gdb_unparse_agent_expr): ... this and move to ax.c.
832 (gdb_agent_op_name): Move to ax.c.
833 (eval_agent_expr): Rename to ...
834 (gdb_eval_agent_expr): ... this, use regcache passed as parameter
835 and move to ax.c.
836 (eval_tracepoint_agent_expr): New function.
837 (agent_mem_read, agent_mem_read_string, agent_tsv_read): Make
838 non-static.
839 (current_insn_ptr, emit_error, struct bytecode_address): Move to
840 ax.c.
841 (emit_prologue, emit_epilogue, emit_add, emit_sub, emit_mul, emit_lsh,
842 emit_rsh_signed, emit_rsh_unsigned, emit_ext, emit_log_not,
843 emit_bit_and, emit_bit_or, emit_bit_xor, emit_bit_not, emit_equal,
844 emit_less_signed, emit_less_unsigned, emit_ref, emit_if_goto,
845 emit_goto, write_goto_address, emit_const, emit_reg, emit_pop,
846 emit_stack, emit_zero_ext, emit_swap, emit_stack_adjust,
847 emit_int_call_1, emit_void_call_2, emit_eq_goto, emit_ne_goto,
848 emit_lt_goto, emit_ge_goto, emit_gt_goto, emit_le_goto): Move to ax.c.
849 (get_get_tsv_func_addr, get_set_tsv_func_addr): New functions.
850 (compile_bytecodes): Remove forward declaration.
851 (is_goto_target): Move to ax.c.
852 (compile_bytecodes): Move to ax.c and call
853 agent_get_trace_state_variable_value (...) and
854 agent_set_trace_state_variable_value (...).
855
856 * Makefile.in: Update ax.c and IPA dependencies.
857
277e4e52
PA
8582012-02-24 Pedro Alves <palves@redhat.com>
859
860 * tracepoint.c (cmd_bigqtbuffer): Rename as ...
861 (cmd_bigqtbuffer_circular): ... this. Only handle
862 'QTBuffer:circular:'.
863 (handle_tracepoint_general_set): Adjust.
864
bf4c19f7
YQ
8652012-02-16 Yao Qi <yao@codesourcery.com>
866
867 * inferiors.c: Move code to ...
868 * dll.c: .... here. New.
869 * server.h: Declare clear_dlls.
870 * Makefile.in (SFILES): Add dll.c.
871 (OBS): Add dll.o
872 (dll.o): New rule.
873
d73f2619
YQ
8742012-02-11 Yao Qi <yao@codesourcery.com>
875
876 * server.c: (handle_monitor_command): Add a new parameter
877 `own_buf'.
878 (handle_query): Update caller.
879
f8255c2a
JB
8802012-02-09 Joel Brobecker <brobecker@adacore.com>
881
882 * configure.ac: Add readlink to AC_CHECK_FUNCS list.
883 * configure, config.in: Regenerate.
884 * hostio.c: Provide an alternate implementation if HAVE_READLINK
885 is not defined.
886
da84f473
PA
8872012-02-02 Pedro Alves <palves@redhat.com>
888
889 Try SIGKILL first, then PTRACE_KILL.
890 * linux-low.c (linux_kill_one_lwp): New.
891 (linux_kill_one_lwp): Rename to ...
892 (kill_one_lwp_callback): ... this. Use the new
893 linux_kill_one_lwp.
894
e886a173
PA
8952012-02-02 Pedro Alves <palves@redhat.com>
896
897 * tracepoint.c (cmd_qtminftpilen): Return 0 if there's no current
898 inferior.
899
be07f1a2
PA
9002012-01-27 Pedro Alves <palves@redhat.com>
901
902 * linux-low.c (linux_child_pid_to_exec_file): Delete.
903 (elf_64_file_p): Make static.
904 (linux_pid_exe_is_elf_64_file): New.
905 * linux-low.h (linux_child_pid_to_exec_file, elf_64_file_p):
906 Delete declarations.
907 (linux_pid_exe_is_elf_64_file): Declare.
908 * linux-x86-low.c (x86_arch_setup): Use
909 linux_pid_exe_is_elf_64_file.
910
d8301ad1
JK
9112012-01-25 Jan Kratochvil <jan.kratochvil@redhat.com>
912
913 * linux-low.c (linux_wait_for_event_1): Rename to ...
914 (linux_wait_for_event): ... here and merge it with former
915 linux_wait_for_event - new variable wait_ptid, use it.
916 (linux_wait_for_event): Remove - merge it to linux_wait_for_event_1.
917
01b17894
PA
9182012-01-23 Pedro Alves <palves@redhat.com>
919
920 * server.c (main): Avoid yet another case of infinite loop while
921 detaching/killing after a longjmp.
922
e825046f
JK
9232012-01-20 Jan Kratochvil <jan.kratochvil@redhat.com>
924
925 Code cleanup.
926 * linux-low.c (linux_wait_for_event_1): Use ptid_is_pid.
927
b9e7b9c3
UW
9282012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
929
930 * hostio.c (handle_readlink): New function.
931 (handle_vFile): Call it to handle "vFile:readlink" packets.
932
901f9912
UW
9332012-01-20 Pedro Alves <palves@redhat.com>
934 Ulrich Weigand <ulrich.weigand@linaro.org>
935
936 * server.c (handle_v_requests): Only support vAttach and vRun to
937 start multiple processes when in extended protocol mode.
938
fc1ab1a0
PA
9392012-01-17 Pedro Alves <palves@redhat.com>
940
941 * tracepoint.c (initialize_tracepoint): Use mmap instead of
942 memalign plus mprotect to allocate the scratch buffer.
943
7d5d4e98
PA
9442012-01-13 Pedro Alves <palves@redhat.com>
945
946 * server.c (attach_inferior): Clear `cont_thread'.
947
f128d5e9
PA
9482012-01-13 Pedro Alves <palves@redhat.com>
949
950 * server.c (main): Avoid infinite loop while detaching/killing
951 after a longjmp.
952
06db92f0
DE
9532012-01-09 Doug Evans <dje@google.com>
954
955 * server.c (start_inferior): Set last_ptid in --wrapper case.
956
32d92999
YQ
9572012-01-06 Yao Qi <yao@codesourcery.com>
958
959 * tracepoint.c [IN_PROCESS_AGENT] (debug_threads): Macro
960 defined.
961 [IN_PROCESS_AGENT] (debug_agent): New global variable.
962
5e0a92a9
YQ
9632012-01-04 Yao Qi <yao@codesourcery.com>
964
965 * tracepoint.c (cmd_qtdp): Print debug message
966 for static tracepoint.
967
ae639e8c
YQ
9682012-01-04 Yao Qi <yao@codesourcery.com>
969
970 * tracepoint.c (trace_vdebug): Differentiate debug message
971 between gdbserver and IPA.
972
f72429c5
YQ
9732012-01-03 Yao Qi <yao@codesourcery.com>
974
975 * tracepoint.c (tracepoint_was_hit): Don't collect for
976 static tracepoint.
977
12c3e59c
JB
9782012-01-02 Joel Brobecker <brobecker@adacore.com>
979
980 * terminal.h: Reformat copyright header.
981
67827812
JB
9822012-01-02 Joel Brobecker <brobecker@adacore.com>
983
984 * server.c (gdbserver_version): Update copyright year.
985 * gdbreplay.c (gdbreplay_version): Likewise.
986
3e52c33d
JK
9872011-12-18 Jan Kratochvil <jan.kratochvil@redhat.com>
988
989 * linux-low.c (linux_create_inferior): Put empty if clause for write.
990
991 Revert:
992 2011-12-18 Hui Zhu <teawater@gmail.com>
993 * linux-low.c (linux_create_inferior): Save return value to ret.
994
66f1260e
HZ
9952011-12-18 Hui Zhu <teawater@gmail.com>
996
997 * linux-low.c (linux_create_inferior): Save return value to ret.
998
e77616d7
DE
9992011-12-16 Doug Evans <dje@google.com>
1000
e7b06c57
DE
1001 * linux-low.c (linux_create_inferior): If stdio connection,
1002 redirect stdin from /dev/null, stdout to stderr.
1003 * remote-utils.c (remote_is_stdio): New static global.
1004 (remote_connection_is_stdio): New function.
1005 (remote_prepare): Handle stdio connection.
1006 (remote_open): Ditto.
1007 (remote_close): Don't close stdin for stdio connections.
1008 (read_prim,write_prim): New functions. Replace all calls to
1009 read/write to these.
1010 * server.c (main): Watch for "-" argument. Move call to
1011 remote_prepare before start_inferior.
1012 * server.h (STDIO_CONNECTION_NAME): New macro.
1013 (remote_connection_is_stdio): Declare.
1014
e77616d7
DE
1015 * remote-utils.c (prepare_resume_reply): Remove extraneous \n
1016 in debugging output.
1017
82067193
YQ
10182011-12-15 Yao Qi <yao@codesourcery.com>
1019
1020 * tracepoint.c: Include sys/syscall.h.
1021 (gdb_ust_thread): Remove preprocessor conditional.
1022
82bfbe7e
PA
10232011-12-14 Pedro Alves <pedro@codesourcery.com>
1024
1025 * linux-low.c (linux_detach_one_lwp): Call
1026 the_low_target.prepare_to_resume before detaching.
1027
712c6575
YQ
10282011-12-14 Yao Qi <yao@codesourcery.com>
1029
1030 * tracepoint.c (gdb_ust_thread): Don't ignore return value
1031 of write.
1032
d54d1edf
YQ
10332011-12-14 Yao Qi <yao@codesourcery.com>
1034
1035 * i386-low.c (i386_low_stopped_data_address): Initialize local
1036 variable `control'.
1037
6210a125
PA
10382011-12-13 Pedro Alves <pedro@codesourcery.com>
1039
1040 PR remote/13492
1041
1042 * i386-low.c (i386_low_stopped_data_address): Avoid fetching
1043 DR_CONTROL unless necessary. Extend comments.
1044 * linux-x86-low.c (x86_linux_prepare_to_resume): Don't write to
1045 DR0-3 if not used. If any watchpoint was set, clear DR_STATUS.
1046
2ece8244
YQ
10472011-12-13 Yao Qi <yao@codesourcery.com>
1048
1049 * tracepoint.c (trace_buffer_alloc): Replace magic numbers with
1050 macros.
1051 (upload_fast_traceframes, upload_fast_traceframes): Likewise.
1052
784867a5
JK
10532011-12-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1054
1055 * linux-low.c (linux_kill): Skip PTRACE_KILL if LWP does not exist.
1056 Print new debug message for such case.
1057
6bf36717
JK
10582011-12-06 Jan Kratochvil <jan.kratochvil@redhat.com>
1059
1060 Fix overlapping memcpy.
1061 * mem-break.c (set_raw_breakpoint_at): New variable buf. Use it for
1062 the read_inferior_memory transfer.
1063 (delete_fast_tracepoint_jump): New variable buf. Use it for the
1064 write_inferior_memory transfer.
1065 (set_fast_tracepoint_jump): New variable buf. Use it for the
1066 read_inferior_memory and write_inferior_memory transfers.
1067 (uninsert_fast_tracepoint_jumps_at, reinsert_fast_tracepoint_jumps_at)
1068 (delete_raw_breakpoint, uninsert_raw_breakpoint): New variable buf.
1069 Use it for the write_inferior_memory transfer.
1070 (check_mem_read, check_mem_write): New gdb_asserts for overlapping
1071 buffers.
1072
50275556
MR
10732011-12-06 Maciej W. Rozycki <macro@codesourcery.com>
1074
1075 * linux-low.c (fetch_register, store_register): Make code
1076 consistent, fix formatting.
1077
7325beb4
MR
10782011-12-06 Maciej W. Rozycki <macro@codesourcery.com>
1079
1080 * linux-low.c (usr_store_inferior_registers): Factor out code
1081 to handle individual registers into...
1082 (store_register): ... this new function.
1083
c642a434
UW
10842011-12-06 Ulrich Weigand <uweigand@de.ibm.com>
1085
1086 * Makefile.in (s390-linux32v1.o, s390-linux32v1.c): New rules.
1087 (s390-linux32v2.o, s390-linux32v2.c): Likewise.
1088 (s390-linux64v1.o, s390-linux64v1.c): Likewise.
1089 (s390-linux64v2.o, s390-linux64v2.c): Likewise.
1090 (s390x-linux64v1.o, s390x-linux64v1.c): Likewise.
1091 (s390x-linux64v2.o, s390x-linux64v2.c): Likewise.
1092 * configure.srv [s390*-*-linux*] (srv_regobj): Add new objects.
1093 (srv_xmlfiles): Add new XML files.
1094
1095 * linux-s390-low.c: Include "elf/common.h", <sys/ptrace.h>,
1096 and <sys/uio.h>.
1097 (PTRACE_GETREGSET, PTRACE_SETREGSET): Define if undefined.
1098 (init_registers_s390_linux32v1): Add prototype.
1099 (init_registers_s390_linux32v2): Likewise.
1100 (init_registers_s390_linux64v1): Likewise.
1101 (init_registers_s390_linux64v2): Likewise.
1102 (init_registers_s390x_linux64v1): Likewise.
1103 (init_registers_s390x_linux64v2): Likewise.
1104 (s390_num_regs): Increment to 52.
1105 (s390_regmap): Add orig_r2 register.
1106 (s390_num_regs_3264): Increment to 68.
1107 (s390_regmap_3264): Add orig_r2 register.
1108 (s390_collect_ptrace_register): Handle orig_r2 register.
1109 (s390_supply_ptrace_register): Likewise.
1110 (s390_fill_last_break): New function.
1111 (s390_store_last_break): Likewise.
1112 (s390_fill_system_call): New function.
1113 (s390_store_system_call): Likewise.
1114 (target_regsets): Handle NT_S390_LAST_BREAK and NT_S390_SYSTEM_CALL
1115 register sets.
1116 (s390_check_regset): New function.
1117 (s390_arch_setup): Check for presence of NT_S390_LAST_BREAK and
1118 NT_S390_SYSTEM_CALL regsets and use appropriate description.
1119 Update target_regsets for available register sets.
1120
2268b414
JK
11212011-12-02 Paul Pluzhnikov <ppluzhnikov@google.com>
1122 Jan Kratochvil <jan.kratochvil@redhat.com>
1123
1124 * linux-low.c (get_phdr_phnum_from_proc_auxv, get_dynamic, get_r_debug)
1125 (read_one_ptr, struct link_map_offsets, linux_qxfer_libraries_svr4):
1126 New.
1127 (struct linux_target_ops): Install linux_qxfer_libraries_svr4.
1128 * linux-low.h (struct process_info_private): New member r_debug.
1129 * server.c (handle_qxfer_libraries): Call
1130 the_target->qxfer_libraries_svr4.
1131 (handle_qxfer_libraries_svr4): New function.
1132 (qxfer_packets): New entry "libraries-svr4".
1133 (handle_query): Check QXFER_LIBRARIES_SVR4 and report libraries-svr4.
1134 * target.h (struct target_ops): New member qxfer_libraries_svr4.
1135 * remote.c (remote_xfer_partial): Call add_packet_config_cmd for
1136 PACKET_qXfer_libraries_svr4.
1137
d6db1fab
UW
11382011-11-30 Ulrich Weigand <uweigand@de.ibm.com>
1139
1140 * linux-s390-low.c (s390_collect_ptrace_register): Fully convert
1141 PSW address/mask between 8-byte and 16-byte formats.
1142 (s390_supply_ptrace_register): Likewise.
1143 (s390_get_pc, s390_set_pc): 4-byte PSW address always includes
1144 basic addressing mode bit.
1145
242f5f1c
SS
11462011-11-24 Stan Shebs <stan@codesourcery.com>
1147
1148 * tracepoint.c (cmd_qtstatus): Use plongest instead of %llx.
1149
f196051f
SS
11502011-11-17 Stan Shebs <stan@codesourcery.com>
1151
1152 * tracepoint.c (struct tracepoint): New field traceframe_usage.
1153 (tracing_start_time): New global.
1154 (tracing_stop_time): New global.
1155 (tracing_user_name): New global.
1156 (tracing_notes): New global.
1157 (tracing_stop_note): New global.
1158 (cmd_qtstart): Set traceframe_usage, start_time.
1159 (stop_tracing): Set stop_time.
1160 (cmd_qtstatus): Report additional status.
1161 (cmd_qtp): New function.
1162 (handle_tracepoint_query): Call it.
1163 (cmd_qtnotes): New function.
1164 (handle_tracepoint_general_set): Call it.
1165 (get_timestamp): Rename from tsv_get_timestamp.
1166
405f8e94
SS
11672011-11-14 Stan Shebs <stan@codesourcery.com>
1168 Kwok Cheung Yeung <kcy@codesourcery.com>
1169
1170 * linux-x86-low.c (small_jump_insn): New.
1171 (i386_install_fast_tracepoint_jump_pad): Add arguments for
1172 trampoline and error message, build a trampoline and issue a small
1173 jump instruction to it.
1174 (x86_install_fast_tracepoint_jump_pad): Add arguments for
1175 trampoline and error message.
1176 (x86_get_min_fast_tracepoint_insn_len): New.
1177 (the_low_target): Add call to x86_get_min_fast_tracepoint_insn_len.
1178 * linux-low.h (struct linux_target_ops): Add arguments to
1179 install_fast_tracepoint_jump_pad operation, add new operation.
1180 * linux-low.c (linux_install_fast_tracepoint_jump_pad): Add
1181 arguments.
1182 (linux_get_min_fast_tracepoint_insn_len): New function.
1183 (linux_target_op): Add new operation.
1184 * tracepoint.c (gdb_trampoline_buffer): New IPA variable.
1185 (gdb_trampoline_buffer_end): Ditto.
1186 (gdb_trampoline_buffer_error): Ditto.
1187 (struct ipa_sym_addresses): Add fields for new IPA variables.
1188 (symbol_list): Add entries for new IPA variables.
1189 (struct tracepoint): Add fields to hold the address range of the
1190 trampoline used by the tracepoint.
1191 (trampoline_buffer_head): New static variable.
1192 (trampoline_buffer_tail): Ditto.
1193 (claim_trampoline_space): New function.
1194 (have_fast_tracepoint_trampoline_buffer): New function.
1195 (clone_fast_tracepoint): Fill in trampoline fields of tracepoint
1196 structure.
1197 (install_fast_tracepoint): Ditto, also add error buffer argument.
1198 (cmd_qtminftpilen): New function.
1199 (handle_tracepoint_query): Add response to qTMinFTPILen packet.
1200 (fast_tracepoint_from_trampoline_address): New function.
1201 (fast_tracepoint_collecting): Handle trampoline as part of jump
1202 pad space.
1203 (set_trampoline_buffer_space): New function.
1204 (initialize_tracepoint): Initialize new IPA variables.
1205 * target.h (struct target_ops): Add arguments to
1206 install_fast_tracepoint_jump_pad operation, add new
1207 get_min_fast_tracepoint_insn_len operation.
1208 (target_get_min_fast_tracepoint_insn_len): New.
1209 (install_fast_tracepoint_jump_pad): Add arguments.
1210 * server.h (IPA_BUFSIZ): Define.
1211 * linux-i386-ipa.c: Include extra header files.
1212 (initialize_fast_tracepoint_trampoline_buffer): New function.
1213 (initialize_low_tracepoint): Call it.
1214 * server.h (set_trampoline_buffer_space): Declare.
1215 (claim_trampoline_space): Ditto.
1216 (have_fast_tracepoint_trampoline_buffer): Ditto.
1217
1e4d1764
YQ
12182011-11-14 Yao Qi <yao@codesourcery.com>
1219
1220 * server.c (handle_query): Handle InstallInTrace for qSupported.
1221 * tracepoint.c (add_tracepoint): Sort list.
1222 (install_tracepoint, download_tracepoint): New.
1223 (cmd_qtdp): Call them to install and download tracepoints.
1224 (sort_tracepoints): Removed.
1225 (cmd_qtstart): Update.
1226
5c73ff4e
YQ
12272011-11-14 Yao Qi <yao@codesourcery.com>
1228
1229 * mem-break.c (inc_ref_fast_tracepoint_jump): New.
1230 * mem-break.h: Declare.
1231 * tracepoint.c (cmd_qtstart): Move some code to ...
1232 (clone_fast_tracepoint, install_fast_tracepoint): ... here.
1233 New.
1234 (download_tracepoints): Move some code to ...
1235 (download_tracepoint_1): ... here. New.
1236
86a30030
YQ
12372011-11-08 Yao Qi <yao@codesourcery.com>
1238
1239 * remote-utils.c (relocate_instruction): A comment fix.
1240
8d26e50c
JB
12412011-11-07 Joel Brobecker <brobecker@adacore.com>
1242
1243 * win32-i386-low.c (dr_status_mirror, dr_control_mirror): Delete.
1244 (i386_dr_low_get_control, i386_dr_low_get_status): Use
1245 dr_status_mirror and dr_control_mirror from debug_reg_state.
1246 (i386_dr_low_get_status): Use debug_reg_state.dr_status_mirror
1247 (i386_initial_stuff): Remove use of deleted globals.
1248 (i386_get_thread_context, i386_set_thread_context,
1249 i386_thread_added): Use dr_status_mirror and dr_control_mirror
1250 from debug_reg_state.
1251
a59306a3
YQ
12522011-11-05 Yao Qi <yao@codesourcery.com>
1253
1254 * tracepoint.c (gdb_collect): Loop over tracepoints of same
1255 address as TPOINT's.
1256
3065dfb6
SS
12572011-11-02 Stan Shebs <stan@codesourcery.com>
1258
1259 * tracepoint.c (agent_mem_read_string): New function.
1260 (eval_agent_expr): Call it for tracenz.
1261 * server.c (handle_query): Report support for tracenz.
1262
fd0d8c7c
YQ
12632011-11-02 Yao Qi <yao@codesourcery.com>
1264
1265 * tracepoint.c (cmd_qtstart): Remove unused local variables.
1266
609086b1
YQ
12672011-11-02 Yao Qi <yao@codesourcery.com>
1268
1269 * target.h: Fix a typo in comment.
1270
b9fd1791
PA
12712011-10-31 Pedro Alves <pedro@codesourcery.com>
1272
1273 * mem-break.c (check_mem_write): Add `myaddr' parameter. Don't
1274 clobber the breakpoints' shadows with fast tracepoint jumps.
1275 * mem-break.h (check_mem_write): Add `myaddr' parameter.
1276 * target.c (write_inferior_memory): Also pass MYADDR down to
1277 check_mem_write.
1278
03583c20
UW
12792011-10-07 Ulrich Weigand <ulrich.weigand@linaro.org>
1280
1281 * configure.ac: Check support for personality routine.
1282 * configure: Regenerate.
1283 * config.in: Likewise.
1284 * linux-low.c: Include <sys/personality.h>.
1285 Define ADDR_NO_RANDOMIZE if necessary.
1286 (linux_create_inferior): Disable address space randomization when
1287 forking inferior, if requested.
1288 (linux_supports_disable_randomization): New function.
1289 (linux_target_ops): Install it.
1290 * server.h (disable_randomization): Declare.
1291 * server.c (disable_randomization): New global variable.
1292 (handle_general_set): Handle QDisableRandomization.
1293 (handle_query): Likewise for qSupported.
1294 (main): Support --disable-randomization and --no-disable-randomization
1295 command line arguments.
1296 * target.h (struct target_ops): Add supports_disable_randomization.
1297 (target_supports_disable_randomization): New macro.
1298
723b724b
MF
12992011-09-29 Mike Frysinger <vapier@gentoo.org>
1300
1301 * linux-low.c (target_loadseg): Add defined PTRACE_GETFDPIC to the
1302 ifdef check.
1303 [PT_GETDSBT] (target_loadmap): Wrap in a defined PT_GETDSBT check.
1304 [!PT_GETDSBT] (target_loadmap): New definition.
1305 (LINUX_LOADMAP, LINUX_LOADMAP_EXEC, LINUX_LOADMAP_INTERP): Define.
1306 (linux_read_loadmap): Change PTRACE_GETDSBT_EXEC to
1307 LINUX_LOADMAP_EXEC, PTRACE_GETDSBT_INTERP to LINUX_LOADMAP_INTERP,
1308 and PT_GETDSBT to LINUX_LOADMAP.
1309 [!PT_GETDSBT] (linux_read_loadmap): Define to NULL.
1310 (linux_target_ops): Delete unnecessary ifdef PT_GETDSBT check.
1311
55329a5c 13122011-09-21 Ulrich Weigand <ulrich.weigand@linaro.org>
71487fd7
UW
1313
1314 * linux-arm-low.c (struct arm_linux_hwbp_cap): Remove.
1315 (arm_linux_hwbp_cap): New static variable.
1316 (arm_linux_get_hwbp_cap): Replace by ...
1317 (arm_linux_init_hwbp_cap): ... this new function.
1318 (arm_linux_get_hw_breakpoint_count): Use arm_linux_hwbp_cap.
1319 (arm_linux_get_hw_watchpoint_count): Likewise.
1320 (arm_linux_get_hw_watchpoint_max_length): Likewise.
1321 (arm_arch_setup): Call arm_linux_init_hwbp_cap.
1322 (arm_prepare_to_resume): Use perror_with_name instead of error.
1323
55329a5c 13242011-09-21 Ulrich Weigand <ulrich.weigand@linaro.org>
09b4ad9f
UW
1325
1326 * linux-arm-low.c: Include <signal.h>.
1327 (PTRACE_GETHBPREGS, PTRACE_SETHBPREGS): Define if necessary.
1328 (struct arm_linux_hwbp_cap): New data type.
1329 (arm_hwbp_type, arm_hwbp_control_t): New typedefs.
1330 (struct arm_linux_hw_breakpoint): New data type.
1331 (MAX_BPTS, MAX_WPTS): Define.
1332 (struct arch_process_info, struct arch_lwp_info): New data types.
1333 (arm_linux_get_hwbp_cap): New function.
1334 (arm_linux_get_hw_breakpoint_count): Likewise.
1335 (arm_linux_get_hw_watchpoint_count): Likewise.
1336 (arm_linux_get_hw_watchpoint_max_length): Likewise.
1337 (arm_hwbp_control_initialize): Likewise.
1338 (arm_hwbp_control_is_enabled): Likewise.
1339 (arm_hwbp_control_is_initialized): Likewise.
1340 (arm_hwbp_control_disable): Likewise.
1341 (arm_linux_hw_breakpoint_equal): Likewise.
1342 (arm_linux_hw_point_initialize): Likewise.
1343 (struct update_registers_data): New data structure.
1344 (update_registers_callback: New function.
1345 (arm_insert_point): Likewise.
1346 (arm_remove_point): Likewise.
1347 (arm_stopped_by_watchpoint): Likewise.
1348 (arm_stopped_data_address): Likewise.
1349 (arm_new_process): Likewise.
1350 (arm_new_thread): Likewise.
1351 (arm_prepare_to_resume): Likewise.
1352 (the_low_target): Register arm_insert_point, arm_remove_point,
1353 arm_stopped_by_watchpoint, arm_stopped_data_address, arm_new_process,
1354 arm_new_thread, and arm_prepare_to_resume.
1355
6b9801d4
SS
13562011-09-15 Stan Shebs <stan@codesourcery.com>
1357
1358 * server.h (struct emit_ops): Add compare-goto fields.
1359 * tracepoint.c (gdb_agent_op_sizes): New table.
1360 (emit_eq_goto): New function.
1361 (emit_ne_goto): New function.
1362 (emit_lt_goto): New function.
1363 (emit_le_goto): New function.
1364 (emit_gt_goto): New function.
1365 (emit_ge_goto): New function.
1366 (is_goto_target): New function.
1367 (compile_bytecodes): Recognize special cases of compare-goto
1368 combinations and call specialized emitters for them.
1369 * linux-x86-low.c (amd64_emit_eq_goto): New function.
1370 (amd64_emit_ne_goto): New function.
1371 (amd64_emit_lt_goto): New function.
1372 (amd64_emit_le_goto): New function.
1373 (amd64_emit_gt_goto): New function.
1374 (amd64_emit_ge_goto): New function.
1375 (amd64_emit_ops): Add the new functions.
1376 (i386_emit_eq_goto): New function.
1377 (i386_emit_ne_goto): New function.
1378 (i386_emit_lt_goto): New function.
1379 (i386_emit_le_goto): New function.
1380 (i386_emit_gt_goto): New function.
1381 (i386_emit_ge_goto): New function.
1382 (i386_emit_ops): Add the new functions.
1383
bf15cbda
SS
13842011-09-08 Stan Shebs <stan@codesourcery.com>
1385
1386 * linux-x86-low.c (i386_emit_prologue): Save %ebx.
1387 (i386_emit_epilogue): Restore %ebx.
1388
943ca1dd
JZ
13892011-08-31 Jie Zhang <jzhang918@gmail.com>
1390
1391 * server.c (step_thread): Remove definition.
1392 (process_serial_event): Don't handle Hs.
1393 * server.h (step_thread): Remove declaration.
1394 * target.c (set_desired_inferior): Remove use of step_thread.
1395
e3deef73
LM
13962011-08-24 Luis Machado <lgustavo@codesourcery.com>
1397
1398 * linux-low.c: Include linux-procfs.h.
1399 (linux_attach_lwp_1): Update comments.
1400 (linux_attach): Scan for existing threads when attaching to a
1401 process that is the tgid.
1402 * Makefile.in: Update dependencies.
1403
13da1c97
LM
14042011-08-24 Luis Machado <lgustavo@codesourcery.com>
1405
1406 * configure.srv: Add linux-procfs.o dependencies.
1407
881127c9
YQ
14082011-08-14 Yao Qi <yao@codesourcery.com>
1409
1410 * target.h (struct target_ops): Fix indent.
1411 * win32-low.c (win32_target_ops): Fix comment.
1412
58dbd541
YQ
14132011-08-14 Andrew Jenner <andrew@codesourcery.com>
1414 Yao Qi <yao@codesourcery.com>
1415
1416 * Makefile.in (clean): Remove tic6x-*.c files.
1417 (linux-tic6x-low.o, tic6x-c62x-linux.o, tic6x-c64x-linux.o): New rules.
1418 (tic6x-c64xp-linux.o, tic6x-c62x-linux.c, tic6x-c64x-linux.c): Likewise.
1419 (tic6x-c64xp-linux.c): Likewise.
1420 * configure.srv: Add support for tic6x-*-uclinux.
1421 * linux-tic6x-low.c: New.
1422 * linux-low.c (PT_TEXT_ADDR, PT_DATA_ADDR, PT_TEXT_END_ADDR): Define.
1423
78d85199
YQ
14242011-08-14 Andrew Stubbs <ams@codesourcery.com>
1425 Yao Qi <yao@codesourcery.com>
1426
1427 * target.h (struct target_ops): Add read_loadmap.
1428 * linux-low.c (struct target_loadseg): New type.
1429 (struct target_loadmap): New type.
1430 (linux_read_loadmap): New function.
1431 (linux_target_ops): Add linux_read_loadmap.
1432 * server.c (handle_query): Support qXfer:fdpic:read packet.
1433 * win32-low.c (win32_target_ops): Initialize field `read_loadmap' to NULL.
1434
a959a88d
EZ
14352011-08-05 Eli Zaretskii <eliz@gnu.org>
1436
1437 * win32-low.c: Include <stdint.h>.
1438
1ced966e
PA
14392011-07-22 Pedro Alves <pedro@codesourcery.com>
1440
1441 * i386-low.c (i386_insert_aligned_watchpoint): Don't pass the info
1442 to the inferior here.
1443 (i386_remove_aligned_watchpoint): Ditto.
1444 (i386_handle_nonaligned_watchpoint): Return immediate on fail to
1445 fit part of the watchpoint in the debug registers.
1446 (i386_update_inferior_debug_regs): New.
1447 (i386_low_insert_watchpoint): Work on a local mirror of the debug
1448 registers, and only update the inferior on success.
1449 (i386_low_remove_watchpoint): Ditto.
1450
d26e3629
KY
14512011-07-22 Kwok Cheung Yeung <kcy@codesourcery.com>
1452
1453 * linux-low.c (compare_ints, unique, list_threads, show_process,
1454 linux_core_of_thread): Delete.
1455 (linux_target_ops): Change linux_core_of_thread to
1456 linux_common_core_of_thread.
1457 (linux_qxfer_osdata): Defer to linux_common_xfer_osdata.
1458 * utils.c (malloc_failure): Change type of argument.
1459 (xmalloc, xrealloc, xcalloc, xsnprintf): Delete.
1460 * Makefile.in (SFILES): Add common/common-utils.c, common/xml-utils.c,
1461 common/linux-osdata.c, common/ptid.c and common/buffer.c.
1462 (OBS): Add xml-utils.o, common-utils.o, ptid.o and buffer.o.
1463 (IPA_OBJS): Add common-utils-ipa.o.
1464 (ptid_h, linux_osdata_h): New macros.
1465 (server_h): Add common/common-utils.h, common/xml-utils.h,
1466 common/buffer.h, common/gdb_assert.h, common/gdb_locale.h and
1467 common/ptid.h.
1468 (common-utils-ipa.o, common-utils.o, xml-utils.o, linux-osdata.o,
1469 ptid.o, buffer.o): New rules.
1470 (linux-low.o): Add common/linux-osdata.h as a dependency.
1471 * configure.srv (srv_tgtobj): Add linux-osdata.o to Linux targets.
1472 * configure.ac: Add AC_HEADER_DIRENT check.
1473 * config.in: Regenerate.
1474 * configure: Regenerate.
1475 * remote-utils.c (xml_escape_text): Delete.
1476 (buffer_grow, buffer_free, buffer_init, buffer_finish,
1477 buffer_xml_printf): Move to common/buffer.c.
1478 * server.c (main): Remove call to initialize_inferiors.
1479 * server.h (struct ptid, ptid_t, minus_one_ptid, null_ptid,
1480 ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid,
1481 ptid_equal, ptid_is_pid, initialize_inferiors, xml_escape_text,
1482 internal_error, gdb_assert, gdb_assert_fail): Delete.
1483 (struct buffer, buffer_grow, buffer_free, buffer_init, buffer_finish,
1484 buffer_xml_printf, buffer_grow_str, buffer_grow_str0): Move to
1485 common/buffer.h.
1486 * inferiors.c (null_ptid, minus_one_ptid, ptid_build, pid_to_ptid,
1487 ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid,
1488 initialize_inferiors): Delete.
1489
2275a1a7
PA
14902011-07-20 Pedro Alves <pedro@codesourcery.com>
1491
1492 * tracepoint.c (tracepoint_look_up_symbols): Return upon the first
1493 symbol error.
1494
0a5b1e09
PA
14952011-05-31 Pedro Alves <pedro@codesourcery.com>
1496
1497 * linux-x86-low.c (i386_dr_low_get_addr): Fix off by one in
1498 assertion.
1499 * win32-i386-low.c (i386_dr_low_get_addr): Ditto.
1500
6938fd34
YQ
15012011-05-26 Yao Qi <yao@codesourcery.com>
1502
1503 * Makefile.in (thread-db.o): Track dependence to
1504 common/gdb_thread_db.h.
1505 * thread-db.c: include gdb_thread_db.h from right place.
1506
b481f9e0
TT
15072011-05-16 Adrian Cornish <gnu@bluedreamer.com>
1508
1509 * linux-i386-ipa.c (supply_static_tracepoint_registers): Pass
1510 __FILE__ and __LINE__ to internal_error.
1511
98a5dd13
DE
15122011-05-13 Doug Evans <dje@google.com>
1513
1514 * thread-db.c (try_thread_db_load_from_sdir): New function.
1515 (try_thread_db_load_from_dir): New function.
1516 (thread_db_load_search): Handle $sdir, ignore $pdir.
1517 Remove trying of system directories if search of
1518 libthread-db-search-path fails, that is now done via $sdir.
1519
d248b706
KY
15202011-05-12 Kwok Cheung Yeung <kcy@codesourcery.com>
1521
1522 * server.c (handle_query): Add EnableDisableTracepoints to the list
1523 of supported features.
1524 * tracepoint.c (clear_installed_tracepoints): Uninstall disabled
1525 tracepoints.
1526 (cmd_qtenable_disable): New.
1527 (cmd_qtstart): Install tracepoints even if disabled.
1528 (handle_tracepoint_general_set): Add call to cmd_qtenable_disable on
1529 receiving a QTEnable or QTDisable packet.
1530 (gdb_collect): Skip data collection if fast tracepoint is disabled.
1531 (ust_marker_to_static_tracepoint): Do not ignore disabled static
1532 tracepoints.
1533 (gdb_probe): Skip data collection if static tracepoint is disabled.
1534
84e578fb
DE
15352011-05-10 Doug Evans <dje@google.com>
1536
1537 * thread-db.c (thread_db_handle_monitor_command): Handle elided path.
1538
71f55dd8
DE
15392011-05-04 Doug Evans <dje@google.com>
1540
1541 * linux-low.c (linux_join): Skip process lookup.
1542 * spu-low.c (spu_join): Ditto.
1543 * server.c (join_inferiors_callback): Delete.
1544 (process_serial_event): For 'D' packet (detach) call join_inferior
1545 directly.
1546
4d393d60
JM
15472011-05-04 Joseph Myers <joseph@codesourcery.com>
1548
1549 * README: Don't mention xscale*-*-linux*.
1550 * configure.srv (xscale*-*-linux*): Don't handle target.
1551
b00ad6ff
NF
15522011-04-27 Nathan Froyd <froydnj@codesourcery.com>
1553
1554 * linux-x86-low.c (amd64_emit_const): Call memcpy instead of
1555 casting pointers.
1556 (amd64_emit_reg, amd64_emit_int_call_1, amd64_emit_void_call_2):
1557 (i386_emit_const, i386_emit_reg, i386_emit_int_call_1):
1558 (i386_emit_void_call_2): Likewise.
1559
af96c192
YQ
15602011-04-26 Yao Qi <yao@codesourcery.com>
1561
1562 * linux-low.c: Move common macros to linux-ptrace.h.
1563 Include linux-ptrace.h.
1564 * Makefile.in (linux_ptrace_h): New.
1565 (linux-low.o): Depends on linux-ptrace.h.
1566
03f2bd59
JK
15672011-04-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1568
1569 * remote-utils.c (handle_accept_event): Close LISTEN_DESC only if
1570 RUN_ONCE. Comment for the LISTEN_DESC delete_file_handler call.
1571 (remote_prepare): New function with most of the TCP code from ...
1572 (remote_open): ... here. Detect PORT here unconditionally. Move also
1573 setting transport_is_reliable.
1574 * server.c (run_once): New variable.
1575 (gdbserver_usage): Document it.
1576 (main): Set run_once for `--once'. Call remote_prepare. Exit after
1577 the first run if RUN_ONCE.
1578 * server.h (run_once, remote_prepare): New declarations.
1579
7a9dd1b2
TT
15802011-04-19 Tom Tromey <tromey@redhat.com>
1581
1582 * win32-low.c (handle_load_dll): Remove duplicate "the".
1583
81239425
PM
15842011-04-07 Pierre Muller <muller@ics.u-strasbg.fr>
1585
1586 Remove support for old Cygwin 1.5 versions.
1587 * win32-low.c (win32_create_inferior): Use new cygwin_path_list
1588 function to avoid warning.
1589 (win32_add_one_solib): Use cygwin_conv_path function to avoid
1590 warning.
1591
9e0627f1
PM
15922011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
1593
1594 * gdbserver/server.h (Macro _): Define it if not available.
1595
588eebee
MS
15962011-03-14 Michael Snyder <msnyder@vmware.com>
1597
348af9f7 1598 * hostio.c (handle_close): Remove unnecessary null test.
588eebee 1599
43f70d4c
JB
16002011-03-10 Joel Brobecker <brobecker@adacore.com>
1601
1602 * Makefile.in (maintainer-clean realclean distclean): Remove
1603 "make ... subdir_do" command.
1604
348af9f7
MS
16052011-03-10 Michael Snyder <msnyder@vmware.com>
1606
1607 * tracepoint.c (tracepoint_finish_step): Fix loop variable.
1608
1609 * server.c (handle_v_run): Free alloced buffer on early return.
1610
e637a4f5
YQ
16112011-03-09 Yao Qi <yao@codesourcery.com>
1612
1613 Revert:
1614 2011-03-04 Yao Qi <yao@codesourcery.com>
1615
1616 * Makefile.in: Remove GNU make feature --directory.
1617
1618 2011-03-05 Yao Qi <yao@codesourcery.com>
1619
1620 * Makefile.in (CLEANDIRS, REQUIRED_SUBDIRS): New variable.
1621 (subdir_do): New make target. Copied from gdb/Makefile.
1622 (maintainer-clean, realclean, distclean, clean): Call corresponding
1623 make targets in common/Makefile.
1624
1625 2011-02-11 Yao Qi <yao@codesourcery.com>
1626
1627 * configure.ac: Call AC_PROG_RANLIB.
1628 * Makefile.in: Remove signals.o from OBS. Link libcommon.a.
1629 * configure: Regenerate.
1630
e6edda56
JK
16312011-03-07 Jan Kratochvil <jan.kratochvil@redhat.com>
1632
1633 * remote-utils.c (putpkt_binary_1): Calculate BUF2 size dynamically.
1634
e5141119
JB
16352011-03-06 Yao Qi <yao@codesourcery.com>
1636
1637 * Makefile.in (REQUIRED_SUBDIRS): Remove $(LIBCOMMON_DIR).
1638
64794aa4
JB
16392011-03-05 Yao Qi <yao@codesourcery.com>
1640
1641 * Makefile.in (CLEANDIRS, REQUIRED_SUBDIRS): New variable.
1642 (subdir_do): New make target. Copied from gdb/Makefile.
1643 (maintainer-clean, realclean, distclean, clean): Call corresponding
1644 make targets in common/Makefile.
1645
7a762829
YQ
16462011-03-04 Yao Qi <yao@codesourcery.com>
1647
1648 * Makefile.in: Remove GNU make feature --directory.
1649
348af9f7
MS
16502011-03-04 Michael Snyder <msnyder@vmware.com>
1651
1652 * server.c (queue_stop_reply): Call xmalloc not malloc.
1653
16542011-03-02 Michael Snyder <msnyder@vmware.com>
1655
1656 * linux-arm-low.c (arm_arch_setup): Replace malloc with xmalloc.
1657
9f72fee2
MS
16582011-02-28 Michael Snyder <msnyder@vmware.com>
1659
588eebee
MS
1660 * tracepoint.c (cmd_qtv): Discard unused value 'packet'.
1661 (cmd_qtframe): Ditto.
1662 (cmd_qtbuffer): Ditto.
1663 (cmd_bigqtbuffer): Ditto.
1664
9f72fee2
MS
1665 * utils.c (decimal2str): Initialize 'width' to nine, then
1666 don't mess with it.
1667
8040bd49
UW
16682011-02-28 Ulrich Weigand <uweigand@de.ibm.com>
1669
1670 * hostio.c (require_data): Free *data, not data.
1671
7e52cbd0
JK
16722011-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1673
1674 * hostio.c (require_data): Use free, not xfree.
1675
9130f83e
MS
16762011-02-27 Michael Snyder <msnyder@vmware.com>
1677
4b812f4e
MS
1678 * server.c (handle_query): Discard unused value.
1679
9130f83e
MS
1680 * hostio.c (require_data): Free malloc memory before returning
1681 error.
1682
69d37113
MS
16832011-02-26 Michael Snyder <msnyder@vmware.com>
1684
1685 * linux-low.c (list_threads): Call closedir for dirent.
1686
35f5825a
MS
16872011-02-27 Michael Snyder <msnyder@vmware.com>
1688
2a589cef
MS
1689 * i386-low.c (i386-length_and_rw_bits): Comment the fact that
1690 a case statement falls through.
1691
0adea5f7
MS
1692 * linux-low.c (linux_xfer_siginfo): Fix fencepost error.
1693
35f5825a
MS
1694 * linux-amd64-ipa.c (gdb_agent_get_raw_reg): Fix fencepost error
1695 in comparison.
1696
238f1c74
MS
16972011-02-26 Michael Snyder <msnyder@vmware.com>
1698
1699 * utils.c (decimal2str): Eliminate dead code and dead param.
1700 (pulongest): Drop dead param from call to decimal2str.
1701 (plongest): Ditto.
1702
633ff500
JB
17032011-02-24 Joel Brobecker <brobecker@adacore.com>
1704
1705 Revert the following patch (not approved yet):
1706 2011-02-21 Hui Zhu <teawater@gmail.com>
1707 * tracepoint.c (tp_printf): New function.
1708 (eval_agent_expr): Handle gdb_agent_op_printf.
1709
f9c6ff72
HZ
17102011-02-21 Hui Zhu <teawater@gmail.com>
1711
1712 * tracepoint.c (tp_printf): New function.
1713 (eval_agent_expr): Handle gdb_agent_op_printf.
1714
94d5e490
TT
17152011-02-18 Tom Tromey <tromey@redhat.com>
1716
1717 * Makefile.in (tracepoint-ipa.o): Depend on ax.def.
1718 (tracepoint.o): Likewise.
1719 * tracepoint.c (enum gdb_agent_op): Use ax.def.
1720 (gdb_agent_op_names): Likewise.
1721
c7f96d2b
TT
17222011-02-18 Tom Tromey <tromey@redhat.com>
1723
1724 * tracepoint.c (enum gdb_agent_op) <gdb_agent_op_pick,
1725 gdb_agent_op_rot>: New constants.
1726 (gdb_agent_op_names): Add pick and roll.
1727 (eval_agent_expr) <gdb_agent_op_pick, gdb_agent_op_rot>: New
1728 cases.
1729
0feedb2c
JK
17302011-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1731
1732 * aclocal.m4: Regenerated with aclocal-1.11.1.
1733
b3b9301e
PA
17342011-02-14 Pedro Alves <pedro@codesourcery.com>
1735
1736 * server.c (handle_qxfer_traceframe_info): New.
1737 (qxfer_packets): Register "traceframe-info".
1738 (handle_query): Report support for qXfer:traceframe-info:read+.
1739 * tracepoint.c (match_blocktype): New.
1740 (traceframe_find_block_type): Rename to ...
1741 (traceframe_walk_blocks): ... this. Add callback filter argument,
1742 and use it.
1743 (traceframe_find_block_type): New, reimplemented on top of
1744 traceframe_walk_blocks.
1745 (build_traceframe_info_xml): New.
1746 (traceframe_read_info): New.
1747 * server.h (traceframe_read_info): Declare.
1748
4f3e6fb7
YQ
17492011-02-11 Yao Qi <yao@codesourcery.com>
1750
1751 * configure.ac: Call AC_PROG_RANLIB.
1752 * Makefile.in: Remove signals.o from OBS. Link libcommon.a.
1753 * configure: Regenerate.
1754
764880b7
PA
17552011-02-07 Pedro Alves <pedro@codesourcery.com>
1756
1757 * server.c (gdb_read_memory): Change return semantics to allow
1758 partial transfers.
1759 (handle_search_memory_1): Adjust.
1760 (process_serial_event) <'m' packet>: Handle partial transfers.
1761 * tracepoint.c (traceframe_read_mem): Handle partial transfers.
1762
1c79eb8a
PA
17632011-01-28 Pedro Alves <pedro@codesourcery.com>
1764
1765 * regcache.c (init_register_cache): Initialize
1766 regcache->register_status.
1767 (free_register_cache): Release regcache->register_status.
1768 (regcache_cpy): Copy register_status.
1769 (registers_to_string): Print 'x's for unavailable registers.
1770 (supply_register): Mark the register's status valid or
1771 unavailable, depending on whether a buffer was passed in or not.
1772 (supply_register_zeroed): New.
1773 (supply_regblock): Mark the registers' status valid or
1774 unavailable, depending on whether a buffer was passed in or not.
1775 * regcache.h (REG_UNAVAILABLE, REG_VALID): New defines.
1776 (struct regcache): New `register_status' field.
1777 (supply_register_zeroed): Declare.
1778 * i387-fp.c (i387_xsave_to_cache): Zero out registers using
1779 supply_register_zeroed, rather than passing a NULL buffer to
1780 supply_register.
1781 * tracepoint.c (fetch_traceframe_registers): Update comment.
1782
85724a0e
PA
17832011-01-28 Pedro Alves <pedro@codesourcery.com>
1784
1785 * i387-fp.c (i387_xsave_to_cache): Make passing NULL as register
1786 buffer explicit.
1787
d08aafef
PA
17882011-01-25 Pedro Alves <pedro@codesourcery.com>
1789
1790 * server.h (decode_xfer_write): Change prototype.
1791 * remote-utils.c (decode_xfer_write): Remove `annex' parameter,
1792 and don't extract the annex here.
1793 * server.c (decode_xfer_read): Remove `annex' parameter,
1794 and don't extract the annex here.
1795 (decode_xfer): New.
1796 (struct qxfer): New.
1797 (handle_qxfer_auxv, handle_qxfer_features, handle_qxfer_libraries)
1798 (handle_qxfer_osdata, handle_qxfer_siginfo, handle_qxfer_spu)
1799 (handle_qxfer_statictrace): New functions, abstracted out from
1800 handle_query, and made to use the struct qxfer interface.
1801 (handle_threads_qxfer_proper): Rename to ...
1802 (handle_qxfer_threads_proper): ... this.
1803 (handle_threads_qxfer): Rename to ...
1804 (handle_qxfer_threads): ... this. Adjust.
1805 (qxfer_packets): New array.
1806 (handle_qxfer): New function.
1807 (handle_query): Use handle_qxfer.
1808
493e2a69
MS
18092011-01-05 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
1810
1811 * gdbreplay.c: Shorten lines of >= 80 columns.
1812 * linux-low.c: Ditto.
1813 * linux-ppc-low.c: Ditto.
1814 * linux-s390-low.c: Ditto.
1815 * linux-sparc-low.c: Ditto.
1816 * linux-x86-low.c: Ditto.
1817 * linux-xtensa-low.c: Ditto.
1818 * mem-break.c: Ditto.
1819 * nto-low.c: Ditto.
1820 * regcache.h: Ditto.
1821 * remote-utils.c: Ditto.
1822 * server.c: Ditto.
1823 * server.h: Ditto.
1824 * thread-db.c: Ditto.
1825 * tracepoint.c: Ditto.
1826 * utils.c: Ditto.
1827 * win32-low.h: Ditto.
1828
44944448
JB
18292011-01-05 Joel Brobecker <brobecker@adacore.com>
1830
1831 * gdbserver/configure.ac, gdbserver/gdbserver.1: Copyright year
1832 update.
1833
71ce852c
JB
18342011-01-01 Joel Brobecker <brobecker@adacore.com>
1835
1836 * server.c (gdbserver_version): Update copyright year in version
1837 output.
1838 * gdbreplay.c (gdbreplay_version): Ditto.
1839
eb826dc6
MF
18402010-12-29 Jie Zhang <jie.zhang@analog.com>
1841
1842 * configure.srv (bfin-*-*linux*): Handle Blackfin/Linux targets.
1843 * linux-bfin-low.c: New file.
1844 * linux-low.c: Define PT_TEXT_ADDR, PT_TEXT_END_ADDR, and
1845 PT_DATA_ADDR for BFIN targets.
1846 * Makefile.in (SFILES): Add linux-bfin-low.c.
1847 (clean): Remove reg-bfin.c.
1848 (linux-bfin-low.o, reg-bfin.o, reg-bfin.c): New targets.
1849 * README: Mention supported Blackfin targets.
1850
39ab222a
MF
18512010-12-23 Mike Frysinger <vapier@gentoo.org>
1852
1853 * .gitignore: New file.
1854
a1f2ce7d
MF
18552010-11-16 Mike Frysinger <vapier@gentoo.org>
1856
1857 * linux-low.c (linux_tracefork_child): Add char* cast to arg.
1858
f474844c
JZ
18592010-10-22 Jie Zhang <jie@codesourcery.com>
1860
1861 * Makefile.in: Add FLAGS_TO_PASS variable.
1862 (install): Remove dependency of install-only and recursively
1863 invoke make for install-only.
1864
f1048712
DE
18652010-10-04 Doug Evans <dje@google.com>
1866
1867 * Makefile.in (uninstall): Use $(DESTDIR).
1868
b53a1623
PA
18692010-09-24 Pedro Alves <pedro@codesourcery.com>
1870
e6ee044d
PA
1871 PR gdb/11842
1872
b53a1623
PA
1873 * linux-x86-low.c (compat_siginfo_from_siginfo)
1874 (siginfo_from_compat_siginfo): Also copy si_pid and si_uid when
1875 si_code is < 0. Check for si_code == SI_TIMER before checking for
1876 si_code < 0.
1877
fa1bd1e4
JB
18782010-09-13 Joel Brobecker <brobecker@adacore.com>
1879
1880 * lynx-i386-low.c: New file.
1881 * configure.srv: Add handling of i[34567]86-*-lynxos* targets.
1882
47fac8f8
JB
18832010-09-13 Joel Brobecker <brobecker@adacore.com>
1884
1885 * lynx-low.c (ptrace_request_to_str): Remove handling for
1886 request values that have been removed in LynxOS 5.x.
1887
1adfc54d
JB
18882010-09-13 Joel Brobecker <brobecker@adacore.com>
1889
1890 * lynx-low.c, lynx-ppc-loc.c: Include <sys/ptrace.h> instead of
1891 <ptrace.h>
1892
c2a66c29
NS
18932010-09-09 Nathan Sidwell <nathan@codesourcery.com>
1894
1895 * configure.ac: Add --enable-inprocess-agent option.
1896 * configure: Rebuilt.
1897
32fcada3
YQ
18982010-09-06 Yao Qi <yao@codesourcery.com>
1899
1900 * linux-low.c (linux_kill): Remove unused variable.
1901 (linux_stabilize_threads): Likewise.
1902 * server.c (start_inferior): Likewise.
1903 (queue_stop_reply_callback): Likewise.
1904 * tracepoint.c (do_action_at_tracepoint): Likewise.
1905
0cccb683
YQ
19062010-09-06 Yao Qi <yao@codesourcery.com>
1907
1908 * linux-low.c (maybe_move_out_of_jump_pad): Restore current_inferior
1909 on return.
1910
423ec54c
JK
19112010-09-06 Jan Kratochvil <jan.kratochvil@redhat.com>
1912
1913 * target.c (mywait) <TARGET_WAITKIND_EXITED>: Fix to use INTEGER.
1914
12ac6819
PA
19152010-09-06 Pedro Alves <pedro@codesourcery.com>
1916
1917 * Makefile.in (install-only): Replace $IPA_DEPFILES with
1918 "$(IPA_DEPFILES)".
1919
8ed54b31
JB
19202010-09-01 Joel Brobecker <brobecker@adacore.com>
1921
1922 * gdbserver/lynx-low.c, gdbserver/lynx-low.h,
1923 gdbserver/lynx-ppc-low.c: New files.
1924 * Makefile.in (lynx_low_h): New variable.
1925 (lynx-low.o, lynx-ppc-low.o): New rules.
1926 * configure.ac: On LynxOS, link with -lnetinet.
1927 * configure.srv: Add handling of powerpc-*-lynxos* targets.
1928 * configure: regenerate.
1929
bb0116a4
JB
19302010-09-01 Joel Brobecker <brobecker@adacore.com>
1931
1932 * Makefile.in (vasprintf.o, vsnprintf.o): New rules.
1933 * configure.ac: Add check for vasprintf and vsnprintf.
1934 * configure, config.in: Regenerate.
1935 * server.h (vasprintf, vsnprintf): Add conditional declarations.
1936
a778ab81 19372010-09-01 Joel Brobecker <brobecker@adacore.com>
1938
1939 * gdbreplay.c: Move include of alloca.h up, next to include of
1940 malloc.h.
1941 * server.h: Add include of malloc.h.
1942 * mem-break.c: Remove include of malloc.h.
1943 * server.c, tracepoint.c, utils.c, win32-low.c: Likewise.
1944
8b034a19 19452010-09-01 Joel Brobecker <brobecker@adacore.com>
1946
1947 * Makefile.in (memmem.o): Build with -Wno-error.
1948
19492010-09-01 Joel Brobecker <brobecker@adacore.com>
1950
1951 * utils.c (xsnprintf): Make non-static.
1952 * server.h: Add xsnprintf declaration.
1953 * linux-low.c, nto-low.c, target.c, thread-db.c, tracepoint.c:
1954 replace calls to snprintf by calls to xsnprintf throughout.
1955
19562010-09-01 Joel Brobecker <brobecker@adacore.com>
1957
1958 * configure.ac: Add configure check for alloca.
1959 * configure, config.in: Regenerate.
1960 * server.h: Include alloca.h if it exists.
1961 * gdbreplay.c: Include alloca.h if it exists.
1962
1a981360
PA
19632010-08-28 Pedro Alves <pedro@codesourcery.com>
1964
1965 * linux-low.c (__SIGRTMIN): Define if not already defined.
1966 (linux_create_inferior): Check for __ANDROID__ rather than
1967 __SIGRTMIN.
1968 (enqueue_one_deferred_signal): Don't requeue non-RT signals that
1969 are already deferred.
1970 (linux_wait_1): Check for __ANDROID__ rather than __SIGRTMIN.
1971 (linux_resume_one_thread): Don't queue a SIGSTOP if the lwp is
1972 stopped and already has a pending signal to report.
1973 (proceed_one_lwp): : Don't queue a SIGSTOP if the lwp already has
1974 a pending signal to report or is moving out of a jump pad.
1975 (linux_init_signals): Check for __ANDROID__ rather than
1976 __SIGRTMIN.
1977
b4d51a55
PA
19782010-08-28 Pedro Alves <pedro@codesourcery.com>
1979
1980 * linux-low.c (linux_stabilize_threads): Wrap debug output in a
1981 debug_threads check. Avoid a linear search when not doing debug
1982 output.
1983
ec48365d
PA
19842010-08-27 Pedro Alves <pedro@codesourcery.com>
1985
1986 * event-loop.c (event_handle_func): Adjust to use gdb_fildes_t.
1987 (struct gdb_event) <fd>: Change type to gdb_fildes_t.
1988 (struct file_handler) <fd>: Change type to gdb_fildes_t.
1989 (process_event): Change local fd's type to gdb_fildes_t.
1990 (create_file_handler): Adjust prototype.
1991 (delete_file_handler): Adjust prototype.
1992 (handle_file_event): Adjust prototype. Use pfildes.
1993 (create_file_event): Adjsut prototype.
1994 * remote-utils.c (remote_desc, listen_desc): Change type to
1995 gdb_fildes_t.
1996 * server.h: New gdb_fildes_t typedef.
1997 [USE_WIN32API]: Include winsock2.h.
1998 (delete_file_handler, add_file_handler): Adjust prototypes.
1999 (pfildes): Declare.
2000 * utils.c (pfildes): New.
2001
854d88f0
PA
20022010-08-27 Pedro Alves <pedro@codesourcery.com>
2003
2004 * configure.ac (build_warnings): Add -Wno-char-subscripts.
2005 * configure: Regenerate.
2006
0146f85b
PA
20072010-08-27 Pedro Alves <pedro@codesourcery.com>
2008
2009 * linux-low.c (linux_unprepare_to_access_memory): Rename to ...
2010 (linux_done_accessing_memory): ... this.
2011 (linux_target_ops): Adjust.
2012 * linux-x86-low.c (x86_insert_point, x86_remove_point): Adjust.
2013 * nto-low.c (nto_target_ops): Adjust comment.
2014 * server.c (gdb_read_memory, gdb_write_memory): Adjust.
2015 * spu-low.c (spu_target_ops): Adjust comment.
2016 * target.h (target_ops): Rename unprepare_to_access_memory field
2017 to done_accessing_memory.
2018 (unprepare_to_access_memory): Rename to ...
2019 (done_accessing_memory): ... this.
2020
90d74c30
PA
20212010-08-26 Pedro Alves <pedro@codesourcery.com>
2022
2023 * linux-low.c (linux_prepare_to_access_memory): New.
2024 (linux_unprepare_to_access_memory): New.
2025 (linux_target_ops): Install them.
2026 * server.c (read_memory): Rename to ...
2027 (gdb_read_memory): ... this. Use
2028 prepare_to_access_memory/prepare_to_access_memory.
2029 (write_memory): Rename to ...
2030 (gdb_write_memory): ... this. Use
2031 prepare_to_access_memory/prepare_to_access_memory.
2032 (handle_search_memory_1): Adjust.
2033 (process_serial_event): Adjust.
2034 * target.h (struct target_ops): New fields
2035 prepare_to_access_memory and unprepare_to_access_memory.
2036 (prepare_to_access_memory, unprepare_to_access_memory): New.
2037 * linux-x86-low.c (x86_insert_point, x86_remove_point): Use
2038 prepare_to_access_memory/prepare_to_access_memory.
2039 * nto-low.c (nto_target_ops): Adjust.
2040 * spu-low.c (spu_target_ops): Adjust.
2041 * win32-low.c (win32_target_ops): Adjust.
2042
fd467969
PA
20432010-08-26 Pedro Alves <pedro@codesourcery.com>
2044
2045 * Makefile.in (WARN_CFLAGS): Get it from configure.
2046 (WERROR_CFLAGS): New.
2047 (INTERNAL_CFLAGS): Add WERROR_CFLAGS.
2048 * configure.ac: Introduce --enable-werror, which adds -Werror to
2049 the compiler command line. Enabled by default. Disable with
2050 --disable-werror. Add -Wdeclaration-after-statement
2051 Wpointer-arith and -Wformat-nonliteral to warning flags.
2052 * configure: Regenerate.
2053
331e2f5f
PA
20542010-08-26 Pedro Alves <pedro@codesourcery.com>
2055
2056 * mem-break.c [HAVE_MALLOC_H]: Include malloc.h.
2057
e581f2b4
PA
20582010-08-26 Pedro Alves <pedro@codesourcery.com>
2059
2060 * gdbreplay.c (remote_error): New.
2061 (gdbchar): New.
2062 (expect): Use gdbchar. Check for error reading from GDB.
2063 Clarify sync error output.
2064 (play): Check for errors writing to GDB.
2065 * linux-low.c (sigchld_handler): Really ignore `write' errors.
2066 * remote-utils.c (getpkt): Check for errors writing to the remote
2067 descriptor.
2068
3c11dd79
PA
20692010-08-25 Pedro Alves <pedro@codesourcery.com>
2070
2071 * linux-low.c (linux_wait_1): Move non-debugging code out of
2072 `debug_threads' control.
2073
d20a8ad9
PA
20742010-08-25 Pedro Alves <pedro@codesourcery.com>
2075
2076 * linux-low.c (linux_wait_1): Don't set last_status here.
2077 * server.c (push_event, queue_stop_reply_callback): Assert we're
2078 not pushing a TARGET_WAITKIND_IGNORE event.
2079 (start_inferior, start_inferior, attach_inferior, handle_v_cont)
2080 (myresume, handle_target_event): Set the thread's last_resume_kind
2081 and last_status from the target returned status.
2082
964e4306
PA
20832010-08-25 Pedro Alves <pedro@codesourcery.com>
2084
2085 PR threads/10729
2086
2087 * linux-x86-low.c (update_debug_registers_callback): New.
2088 (i386_dr_low_set_addr): Use it.
2089 (i386_dr_low_get_addr): New.
2090 (i386_dr_low_set_control): Use update_debug_registers_callback.
2091 (i386_dr_low_get_control): New.
2092 (i386_dr_low_get_status): Adjust.
2093 * linux-low.c (linux_stop_lwp): New.
2094 * linux-low.h (linux_stop_lwp): Declare.
2095
2096 * i386-low.c (I386_DR_GET_RW_LEN): Take the dr7 contents as
2097 argument instead of a i386_debug_reg_state.
2098 (I386_DR_WATCH_HIT): Take the dr6 contents as argument instead of
2099 a i386_debug_reg_state.
2100 (i386_insert_aligned_watchpoint): Adjust.
2101 (i386_remove_aligned_watchpoint): Adjust.
2102 (i386_low_stopped_data_address): Read the debug registers from the
2103 inferior instead of from the mirrors.
2104 * i386-low.h (struct i386_debug_reg_state): Extend comment.
2105 (i386_dr_low_get_addr): Declare.
2106 (i386_dr_low_get_control): Declare.
2107 (i386_dr_low_get_status): Change prototype.
2108
2109 * win32-i386-low.c (dr_status_mirror, dr_control_mirror): New globals.
2110 (i386_dr_low_get_addr): New.
2111 (i386_dr_low_get_control): New.
2112 (i386_dr_low_get_status): Adjust prototype. Return
2113 dr_status_mirror.
2114 (i386_initial_stuff): Clear dr_status_mirror and
2115 dr_control_mirror.
2116 (i386_get_thread_context): Adjust.
2117 (i386_set_thread_context): Adjust.
2118 (i386_thread_added): Adjust.
2119
5f21a75b
PA
21202010-08-24 Pedro Alves <pedro@codesourcery.com>
2121
2122 * linux-low.h (linux_thread_area): Delete declaration.
2123
3e4c1235
TS
21242010-08-11 Thomas Schwinge <thomas@codesourcery.com>
2125
2126 * linux-low.c (linux_wait_1): Correctly return the ptid of the child
2127 after its termination.
2128
1971b033
PA
21292010-08-09 Pedro Alves <pedro@codesourcery.com>
2130
2131 * linux-low.c (gdb_wants_lwp_stopped): Delete.
2132 (gdb_wants_all_stopped): Delete.
2133 (linux_wait_1): Don't call them.
2134 * server.c (handle_v_cont): Tag all threads as want-stopped.
2135 (gdb_wants_thread_stopped): Fix comments. Tag the thread that
2136 stopped as "client-wants-stopped".
2137
310444ac
PA
21382010-07-31 Pedro Alves <pedro@codesourcery.com>
2139
2140 * Makefile.in (signals_h): New.
2141 (server_h): Depend on it.
2142 (server.o): Don't depend on $(signals_def).
2143 (signals.o): Depend on $(signals_def).
2144
a19cae16
JK
21452010-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
2146
2147 * Makefile.in (signals_def): New.
2148 (server_h): Append include/gdb/signals.h and signals_def.
2149 (server.o): Append signals_def.
2150
30d50328
JK
21512010-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
2152
2153 * server.c (handle_target_event): Use target_signal_to_host for
2154 resume_info.sig initialization.
2155 * target.h (struct thread_resume) <sig>: New comment.
2156
5c3216e2
OS
21572010-07-20 Ozkan Sezer <sezeroz@gmail.com>
2158
c6f46ca0
OS
2159 * server.c (handle_query): strcpy() the returned string from paddress()
2160 instead of sprintf().
5c3216e2
OS
2161 * utils.c (paddress): Return phex_nz().
2162
6bd31874
JB
21632010-07-07 Joel Brobecker <brobecker@adacore.com>
2164
2165 * server.c (handle_v_cont): Call mourn_inferior if process
2166 just exited.
2167 (myresume): Likewise.
2168
0fb4aa4b
PA
21692010-07-01 Pedro Alves <pedro@codesourcery.com>
2170
2171 Static tracepoints, and integration with UST.
2172
2173 * configure.ac: Handle --with-ust. substitute ustlibs and ustinc.
2174 * mem-break.c (uninsert_all_breakpoints)
2175 (reinsert_all_breakpoints): New.
2176 * mem-break.h (reinsert_all_breakpoints, uninsert_all_breakpoints):
2177 * tracepoint.c (ust_loaded, helper_thread_id, cmd_buf): New.
2178 (gdb_agent_ust_loaded, helper_thread_id)
2179 (gdb_agent_helper_thread_id): New macros.
2180 (struct ipa_sym_addresses): Add addr_ust_loaded,
2181 addr_helper_thread_id, addr_cmd_buf.
2182 (symbol_list): Add ust_loaded, helper_thread_id, cmd_buf.
2183 (in_process_agent_loaded_ust): New.
2184 (write_e_ust_not_loaded): New.
2185 (maybe_write_ipa_ust_not_loaded): New.
2186 (struct collect_static_trace_data_action): New.
2187 (enum tracepoint_type) <static_tracepoint>: New.
2188 (struct tracepoint) <handle>: Mention static tracepoints.
2189 (struct static_tracepoint_ctx): New.
2190 (CMD_BUF_SIZE): New.
2191 (add_tracepoint_action): Handle static tracepoint actions.
2192 (unprobe_marker_at): New.
2193 (clear_installed_tracepoints): Handle static tracepoints.
2194 (cmd_qtdp): Handle static tracepoints.
2195 (probe_marker_at): New.
2196 (cmd_qtstart): Handle static tracepoints.
2197 (response_tracepoint): Handle static tracepoints.
2198 (cmd_qtfstm, cmd_qtsstm, cmd_qtstmat): New.
2199 (handle_tracepoint_query): Handle qTfSTM, qTsSTM and qTSTMat.
2200 (get_context_regcache): Handle static tracepoints.
2201 (do_action_at_tracepoint): Handle static tracepoint actions.
2202 (traceframe_find_block_type): Handle static trace data blocks.
2203 (traceframe_read_sdata): New.
2204 (download_tracepoints): Download static tracepoint actions.
2205 [HAVE_UST] Include ust/ust.h, dlfcn.h, sys/socket.h, and sys/un.h.
2206 (GDB_PROBE_NAME): New.
2207 (ust_ops): New.
2208 (GET_UST_SYM): New.
2209 (USTF): New.
2210 (dlsym_ust): New.
2211 (ust_marker_to_static_tracepoint): New.
2212 (gdb_probe): New.
2213 (collect_ust_data_at_tracepoint): New.
2214 (gdb_ust_probe): New.
2215 (UNIX_PATH_MAX, SOCK_DIR): New.
2216 (gdb_ust_connect_sync_socket): New.
2217 (resume_thread, stop_thread): New.
2218 (run_inferior_command): New.
2219 (init_named_socket): New.
2220 (gdb_ust_socket_init): New.
2221 (cstr_to_hexstr): New.
2222 (next_st): New.
2223 (first_marker, next_marker): New.
2224 (response_ust_marker): New.
2225 (cmd_qtfstm, cmd_qtsstm): New.
2226 (unprobe_marker_at, probe_marker_at): New.
2227 (cmd_qtstmat, gdb_ust_thread): New.
2228 (gdb_ust_init): New.
2229 (initialize_tracepoint_ftlib): Call gdb_ust_init.
2230 * linux-amd64-ipa.c [HAVE_UST]: Include ust/processor.h
2231 (ST_REGENTRY): New.
2232 (x86_64_st_collect_regmap): New.
2233 (X86_64_NUM_ST_COLLECT_GREGS): New.
2234 (AMD64_RIP_REGNUM): New.
2235 (supply_static_tracepoint_registers): New.
2236 * linux-i386-ipa.c [HAVE_UST]: Include ust/processor.h
2237 (ST_REGENTRY): New.
2238 (i386_st_collect_regmap): New.
2239 (i386_NUM_ST_COLLECT_GREGS): New.
2240 (supply_static_tracepoint_registers): New.
2241 * server.c (handle_query): Handle qXfer:statictrace:read.
2242 <qSupported>: Report support for StaticTracepoints, and
2243 qXfer:statictrace:read features.
2244 * server.h (traceframe_read_sdata)
2245 (supply_static_tracepoint_registers): Declare.
2246 * remote-utils.c (convert_int_to_ascii, hexchars, ishex, tohex)
2247 (unpack_varlen_hex): Include in IPA build.
2248 * Makefile.in (ustlibs, ustinc): New.
2249 (IPA_OBJS): Add remote-utils-ipa.o.
2250 ($(IPA_LIB)): Link -ldl and -lpthread.
2251 (UST_CFLAGS): New.
2252 (IPAGENT_CFLAGS): Add UST_CFLAGS.
2253 * config.in, configure: Regenerate.
2254
9e4344e5
PA
22552010-06-20 Ian Lance Taylor <iant@google.com>
2256 Pedro Alves <pedro@codesourcery.com>
2257
2258 * linux-x86-low.c (always_true): Delete.
2259 (EMIT_ASM, EMIT_ASM32): Use an uncondition asm jmp instead of
2260 trying to fool the compiler with always_true.
2261
c6beb2cb
PA
22622010-06-20 Pedro Alves <pedro@codesourcery.com>
2263
2264 * tracepoint.c (condition_true_at_tracepoint): Don't run compiled
2265 conditions in gdbserver.
2266
d2ed6730
UW
22672010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
2268
2269 * spu-low.c (spu_read_memory): Wrap around local store limit.
2270 (spu_write_memory): Likewise.
2271
4e29fb54
PA
22722010-06-15 Pedro Alves <pedro@codesourcery.com>
2273
2274 * linux-x86-low.c (amd64_emit_const, amd64_emit_void_call_2)
2275 (i386_emit_const, i386_emit_void_call_2): Replace int64_t uses with
2276 LONGEST uses.
2277 * server.h (struct emit_ops): Replace int64_t uses with LONGEST
2278 uses.
2279 * tracepoint.c (emit_const, emit_void_call_2): Replace int64_t
2280 uses with LONGEST uses.
2281
6a271cae
PA
22822010-06-14 Stan Shebs <stan@codesourcery.com>
2283 Pedro Alves <pedro@codesourcery.com>
2284
2285 Bytecode compiler.
2286
2287 * linux-x86-low.c: Include limits.h.
2288 (add_insns): New.
2289 (always_true): New.
2290 (EMIT_ASM): New.
2291 (EMIT_ASM32): New.
2292 (amd64_emit_prologue, amd64_emit_epilogue, amd64_emit_add)
2293 (amd64_emit_sub, amd64_emit_mul, amd64_emit_lsh)
2294 (amd64_emit_rsh_signed, amd64_emit_rsh_unsigned, amd64_emit_ext,
2295 (amd64_emit_log_not, amd64_emit_bit_and, amd64_emit_bit_or)
2296 (amd64_emit_bit_xor, amd64_emit_bit_not, amd64_emit_equal,
2297 (amd64_emit_less_signed, amd64_emit_less_unsigned, amd64_emit_ref,
2298 (amd64_emit_if_goto, amd64_emit_goto, amd64_write_goto_address)
2299 (amd64_emit_const, amd64_emit_call, amd64_emit_reg)
2300 (amd64_emit_pop, amd64_emit_stack_flush, amd64_emit_zero_ext)
2301 (amd64_emit_swap, amd64_emit_stack_adjust, amd64_emit_int_call_1)
2302 (amd64_emit_void_call_2): New.
2303 (amd64_emit_ops): New.
2304 (i386_emit_prologue, i386_emit_epilogue, i386_emit_add)
2305 (i386_emit_sub,i386_emit_mul, i386_emit_lsh, i386_emit_rsh_signed)
2306 (i386_emit_rsh_unsigned, i386_emit_ext, i386_emit_log_not)
2307 (i386_emit_bit_and, i386_emit_bit_or, i386_emit_bit_xor)
2308 (i386_emit_bit_not, i386_emit_equal, i386_emit_less_signed)
2309 (i386_emit_less_unsigned, i386_emit_ref, i386_emit_if_goto)
2310 (i386_emit_goto, i386_write_goto_address, i386_emit_const)
2311 (i386_emit_call, i386_emit_reg, i386_emit_pop)
2312 (i386_emit_stack_flush, i386_emit_zero_ext, i386_emit_swap)
2313 (i386_emit_stack_adjust, i386_emit_int_call_1)
2314 (i386_emit_void_call_2): New.
2315 (i386_emit_ops): New.
2316 (x86_emit_ops): New.
2317 (the_low_target): Install x86_emit_ops.
2318 * server.h (struct emit_ops): New.
2319 (get_raw_reg_func_addr): Declare.
2320 (current_insn_ptr, emit_error): Declare.
2321 * tracepoint.c (get_raw_reg, get_trace_state_variable_value)
2322 (set_trace_state_variable_value): New defines.
2323 (struct ipa_sym_addresses): New fields addr_get_raw_reg,
2324 addr_get_trace_state_variable_value and
2325 addr_set_trace_state_variable_value.
2326 (symbol_list): New fields for get_raw_reg,
2327 get_trace_state_variable_value and set_trace_state_variable_value.
2328 (condfn): New typedef.
2329 (struct tracepoint): New field `compiled_cond'.
2330 (do_action_at_tracepoint): Clear compiled_cond.
2331 (get_trace_state_variable_value, set_trace_state_variable_value):
2332 Export in the IPA.
2333 (condition_true_at_tracepoint): If there's a compiled condition,
2334 run that.
2335 (current_insn_ptr, emit_error): New globals.
2336 (struct bytecode_address): New.
2337 (get_raw_reg_func_addr): New.
2338 (emit_prologue, emit_epilogue, emit_add, emit_sub, emit_mul)
2339 (emit_lsh, emit_rsh_signed, emit_rsh_unsigned, emit_ext)
2340 (emit_log_not, emit_bit_and, emit_bit_or, emit_bit_xor)
2341 (emit_bit_not, emit_equal, emit_less_signed, emit_less_unsigned)
2342 (emit_ref, emit_if_goto, emit_goto, write_goto_address, emit_const)
2343 (emit_reg, emit_pop, emit_stack_flush, emit_zero_ext, emit_swap)
2344 (emit_stack_adjust, emit_int_call_1, emit_void_call_2): New.
2345 (compile_tracepoint_condition, compile_bytecodes): New.
2346 * target.h (emit_ops): Forward declare.
2347 (struct target_ops): New field emit_ops.
2348 (target_emit_ops): New.
2349 * linux-amd64-ipa.c (gdb_agent_get_raw_reg): New.
2350 * linux-i386-ipa.c (gdb_agent_get_raw_reg): New.
2351 * linux-low.c (linux_emit_ops): New.
2352 (linux_target_ops): Install it.
2353 * linux-low.h (struct linux_target_ops): New field emit_ops.
2354
92b72907
UW
23552010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
2356
2357 * linux-ppc-low.c (ppc_arch_setup): Use private regcache to test MSR.
2358 * linux-s390-low.c (ppc_arch_setup): Use private regcache to test PSW.
2359
fa593d66
PA
23602010-06-01 Pedro Alves <pedro@codesourcery.com>
2361 Stan Shebs <stan@codesourcery.com>
2362
2363 * Makefile.in (IPA_DEPFILES, extra_libraries): New.
2364 (all): Depend on $(extra_libraries).
2365 (install-only): Install the IPA.
2366 (IPA_OBJS, IPA_LIB): New.
2367 (clean): Remove the IPA lib.
2368 (IPAGENT_CFLAGS): New.
2369 (tracepoint-ipa.o, utils-ipa.o, remote-utils-ipa.o)
2370 (regcache-ipa.o, i386-linux-ipa.o, linux-i386-ipa.o)
2371 (linux-amd64-ipa.o, amd64-linux-ipa.o): New rules.
2372 * linux-amd64-ipa.c, linux-i386-ipa.c: New files.
2373 * configure.ac: Check for atomic builtins support in the compiler.
2374 (IPA_DEPFILES, extra_libraries): Define.
2375 * configure.srv (ipa_obj): Add description.
2376 (ipa_i386_linux_regobj, ipa_amd64_linux_regobj): Define.
2377 (i[34567]86-*-linux*): Set ipa_obj.
2378 (x86_64-*-linux*): Set ipa_obj.
2379 * linux-low.c (stabilizing_threads): New.
2380 (supports_fast_tracepoints): New.
2381 (linux_detach): Stabilize threads before detaching.
2382 (handle_tracepoints): Handle internal tracing breakpoints. Assert
2383 the lwp is either not stabilizing, or is moving out of a jump pad.
2384 (linux_fast_tracepoint_collecting): New.
2385 (maybe_move_out_of_jump_pad): New.
2386 (enqueue_one_deferred_signal): New.
2387 (dequeue_one_deferred_signal): New.
2388 (linux_wait_for_event_1): If moving out of a jump pad, defer
2389 pending signals to later.
2390 (linux_stabilize_threads): New.
2391 (linux_wait_1): Check if threads need moving out of jump pads, and
2392 do it if so.
2393 (stuck_in_jump_pad_callback): New.
2394 (move_out_of_jump_pad_callback): New.
2395 (lwp_running): New.
2396 (linux_resume_one_lwp): Handle moving out of jump pads.
2397 (linux_set_resume_request): Dequeue deferred signals.
2398 (need_step_over_p): Also step over fast tracepoint jumps.
2399 (start_step_over): Also uninsert fast tracepoint jumps.
2400 (finish_step_over): Also reinsert fast tracepoint jumps.
2401 (linux_install_fast_tracepoint_jump): New.
2402 (linux_target_ops): Install linux_stabilize_threads and
2403 linux_install_fast_tracepoint_jump_pad.
2404 * linux-low.h (linux_target_ops) <get_thread_area,
2405 install_fast_tracepoint_jump_pad>: New fields.
2406 (struct lwp_info) <collecting_fast_tracepoint,
2407 pending_signals_to_report, exit_jump_pad_bkpt>: New fields.
2408 (linux_get_thread_area): Declare.
2409 * linux-x86-low.c (jump_insn): New.
2410 (x86_get_thread_area): New.
2411 (append_insns): New.
2412 (push_opcode): New.
2413 (amd64_install_fast_tracepoint_jump_pad): New.
2414 (i386_install_fast_tracepoint_jump_pad): New.
2415 (x86_install_fast_tracepoint_jump_pad): New.
2416 (the_low_target): Install x86_get_thread_area and
2417 x86_install_fast_tracepoint_jump_pad.
2418 * mem-break.c (set_raw_breakpoint_at): Use read_inferior_memory.
2419 (struct fast_tracepoint_jump): New.
2420 (fast_tracepoint_jump_insn): New.
2421 (fast_tracepoint_jump_shadow): New.
2422 (find_fast_tracepoint_jump_at): New.
2423 (fast_tracepoint_jump_here): New.
2424 (delete_fast_tracepoint_jump): New.
2425 (set_fast_tracepoint_jump): New.
2426 (uninsert_fast_tracepoint_jumps_at): New.
2427 (reinsert_fast_tracepoint_jumps_at): New.
2428 (set_breakpoint_at): Use write_inferior_memory.
2429 (uninsert_raw_breakpoint): Use write_inferior_memory.
2430 (check_mem_read): Mask out fast tracepoint jumps.
2431 (check_mem_write): Mask out fast tracepoint jumps.
2432 * mem-break.h (struct fast_tracepoint_jump): Forward declare.
2433 (set_fast_tracepoint_jump): Declare.
2434 (delete_fast_tracepoint_jump)
2435 (fast_tracepoint_jump_here, uninsert_fast_tracepoint_jumps_at)
2436 (reinsert_fast_tracepoint_jumps_at): Declare.
2437 * regcache.c: Don't compile many functions when building the
2438 in-process agent library.
2439 (init_register_cache) [IN_PROCESS_AGENT]: Don't allow allocating
2440 the register buffer in the heap.
2441 (free_register_cache): If the register buffer isn't owned by the
2442 regcache, don't free it.
2443 (set_register_cache) [IN_PROCESS_AGENT]: Don't re-alocate
2444 pre-existing register caches.
2445 * remote-utils.c (convert_int_to_ascii): Constify `from' parameter
2446 type.
2447 (convert_ascii_to_int): : Constify `from' parameter type.
2448 (decode_M_packet, decode_X_packet): Replace the `to' parameter by
2449 a `to_p' pointer to pointer parameter. If TO_P is NULL, malloc
2450 the needed buffer in-place.
2451 (relocate_instruction): New.
2452 * server.c (handle_query) <qSymbols>: If the target supports
2453 tracepoints, give it a chance of looking up symbols. Report
2454 support for fast tracepoints.
2455 (handle_status): Stabilize threads.
2456 (process_serial_event): Adjust.
2457 * server.h (struct fast_tracepoint_jump): Forward declare.
2458 (struct process_info) <fast_tracepoint_jumps>: New field.
2459 (convert_ascii_to_int, convert_int_to_ascii): Adjust.
2460 (decode_X_packet, decode_M_packet): Adjust.
2461 (relocate_instruction): Declare.
2462 (in_process_agent_loaded): Declare.
2463 (tracepoint_look_up_symbols): Declare.
2464 (struct fast_tpoint_collect_status): Declare.
2465 (fast_tracepoint_collecting): Declare.
2466 (force_unlock_trace_buffer): Declare.
2467 (handle_tracepoint_bkpts): Declare.
2468 (initialize_low_tracepoint)
2469 (supply_fast_tracepoint_registers) [IN_PROCESS_AGENT]: Declare.
2470 * target.h (struct target_ops) <stabilize_threads,
2471 install_fast_tracepoint_jump_pad>: New fields.
2472 (stabilize_threads, install_fast_tracepoint_jump_pad): New.
2473 * tracepoint.c [HAVE_MALLOC_H]: Include malloc.h.
2474 [HAVE_STDINT_H]: Include stdint.h.
2475 (trace_debug_1): Rename to ...
2476 (trace_vdebug): ... this.
2477 (trace_debug): Rename to ...
2478 (trace_debug_1): ... this. Add `level' parameter.
2479 (trace_debug): New.
2480 (ATTR_USED, ATTR_NOINLINE): New.
2481 (IP_AGENT_EXPORT): New.
2482 (gdb_tp_heap_buffer, gdb_jump_pad_buffer, gdb_jump_pad_buffer_end)
2483 (collecting, gdb_collect, stop_tracing, flush_trace_buffer)
2484 (about_to_request_buffer_space, trace_buffer_is_full)
2485 (stopping_tracepoint, expr_eval_result, error_tracepoint)
2486 (tracepoints, tracing, trace_buffer_ctrl, trace_buffer_ctrl_curr)
2487 (trace_buffer_lo, trace_buffer_hi, traceframe_read_count)
2488 (traceframe_write_count, traceframes_created)
2489 (trace_state_variables)
2490 New renaming defines.
2491 (struct ipa_sym_addresses): New.
2492 (STRINGIZE_1, STRINGIZE, IPA_SYM): New.
2493 (symbol_list): New.
2494 (ipa_sym_addrs): New.
2495 (all_tracepoint_symbols_looked_up): New.
2496 (in_process_agent_loaded): New.
2497 (write_e_ipa_not_loaded): New.
2498 (maybe_write_ipa_not_loaded): New.
2499 (tracepoint_look_up_symbols): New.
2500 (debug_threads) [IN_PROCESS_AGENT]: New.
2501 (read_inferior_memory) [IN_PROCESS_AGENT]: New.
2502 (UNKNOWN_SIDE_EFFECTS): New.
2503 (stop_tracing): New.
2504 (flush_trace_buffer): New.
2505 (stop_tracing_bkpt): New.
2506 (flush_trace_buffer_bkpt): New.
2507 (read_inferior_integer): New.
2508 (read_inferior_uinteger): New.
2509 (read_inferior_data_pointer): New.
2510 (write_inferior_data_pointer): New.
2511 (write_inferior_integer): New.
2512 (write_inferior_uinteger): New.
2513 (struct collect_static_trace_data_action): Delete.
2514 (enum tracepoint_type): New.
2515 (struct tracepoint) <type>: New field `type'.
2516 <actions_str, step_actions, step_actions_str>: Only include in GDBserver.
2517 <orig_size, obj_addr_on_target, adjusted_insn_addr>
2518 <adjusted_insn_addr_end, jump_pad, jump_pad_end>: New fields.
2519 (tracepoints): Use IP_AGENT_EXPORT.
2520 (last_tracepoint): Don't include in the IPA.
2521 (stopping_tracepoint): Use IP_AGENT_EXPORT.
2522 (trace_buffer_is_full): Use IP_AGENT_EXPORT.
2523 (alloced_trace_state_variables): New.
2524 (trace_state_variables): Use IP_AGENT_EXPORT.
2525 (traceframe_t): Delete unused variable.
2526 (circular_trace_buffer): Don't include in the IPA.
2527 (trace_buffer_start): Delete.
2528 (struct trace_buffer_control): New.
2529 (trace_buffer_free): Delete.
2530 (struct ipa_trace_buffer_control): New.
2531 (GDBSERVER_FLUSH_COUNT_MASK, GDBSERVER_FLUSH_COUNT_MASK_PREV)
2532 (GDBSERVER_FLUSH_COUNT_MASK_CURR, GDBSERVER_UPDATED_FLUSH_COUNT_BIT):
2533 New.
2534 (trace_buffer_ctrl): New.
2535 (TRACE_BUFFER_CTRL_CURR): New.
2536 (trace_buffer_start, trace_buffer_free, trace_buffer_end_free):
2537 Reimplement as macros.
2538 (trace_buffer_wrap): Delete.
2539 (traceframe_write_count, traceframe_read_count)
2540 (traceframes_created, tracing): Use IP_AGENT_EXPORT.
2541 (struct tracepoint_hit_ctx) <type>: New field.
2542 (struct fast_tracepoint_ctx): New.
2543 (memory_barrier): New.
2544 (cmpxchg): New.
2545 (record_tracepoint_error): Update atomically in the IPA.
2546 (clear_inferior_trace_buffer): New.
2547 (about_to_request_buffer_space): New.
2548 (trace_buffer_alloc): Handle GDBserver and inferior simulatenous
2549 updating the same buffer.
2550 (add_tracepoint): Default the tracepoint's type to trap
2551 tracepoint, and orig_size to -1.
2552 (get_trace_state_variable) [IN_PROCESS_AGENT]: Handle allocated
2553 internal variables.
2554 (create_trace_state_variable): New parameter `gdb'. Handle it.
2555 (clear_installed_tracepoints): Clear fast tracepoint jumps.
2556 (cmd_qtdp): Handle fast tracepoints.
2557 (cmd_qtdv): Adjust.
2558 (max_jump_pad_size): New.
2559 (gdb_jump_pad_head): New.
2560 (get_jump_space_head): New.
2561 (claim_jump_space): New.
2562 (sort_tracepoints): New.
2563 (MAX_JUMP_SIZE): New.
2564 (cmd_qtstart): Handle fast tracepoints. Sync tracepoints with the
2565 IPA.
2566 (stop_tracing) [IN_PROCESS_AGENT]: Don't include the tdisconnected
2567 support. Upload fast traceframes, and delete internal IPA
2568 breakpoints.
2569 (stop_tracing_handler): New.
2570 (flush_trace_buffer_handler): New.
2571 (cmd_qtstop): Upload fast tracepoints.
2572 (response_tracepoint): Handle fast tracepoints.
2573 (tracepoint_finished_step): Upload fast traceframes. Set the
2574 tracepoint hit context's tracepoint type.
2575 (handle_tracepoint_bkpts): New.
2576 (tracepoint_was_hit): Set the tracepoint hit context's tracepoint
2577 type. Add comment about fast tracepoints.
2578 (collect_data_at_tracepoint) [IN_PROCESS_AGENT]: Don't access the
2579 non-existing action_str field.
2580 (get_context_regcache): Handle fast tracepoints.
2581 (do_action_at_tracepoint) [!IN_PROCESS_AGENT]: Don't write the PC
2582 to the regcache.
2583 (fast_tracepoint_from_jump_pad_address): New.
2584 (fast_tracepoint_from_ipa_tpoint_address): New.
2585 (collecting_t): New.
2586 (force_unlock_trace_buffer): New.
2587 (fast_tracepoint_collecting): New.
2588 (collecting): New.
2589 (gdb_collect): New.
2590 (write_inferior_data_ptr): New.
2591 (target_tp_heap): New.
2592 (target_malloc): New.
2593 (download_agent_expr): New.
2594 (UALIGN): New.
2595 (download_tracepoints): New.
2596 (download_trace_state_variables): New.
2597 (upload_fast_traceframes): New.
2598 (IPA_FIRST_TRACEFRAME): New.
2599 (IPA_NEXT_TRACEFRAME_1): New.
2600 (IPA_NEXT_TRACEFRAME): New.
2601 [IN_PROCESS_AGENT]: Include sys/mman.h and fcntl.h.
2602 [IN_PROCESS_AGENT] (gdb_tp_heap_buffer, gdb_jump_pad_buffer)
2603 (gdb_jump_pad_buffer_end): New.
2604 [IN_PROCESS_AGENT] (initialize_tracepoint_ftlib): New.
2605 (initialize_tracepoint): Adjust.
2606 [IN_PROCESS_AGENT]: Allocate the IPA heap, and jump pad scratch
2607 buffer. Initialize the low module.
2608 * utils.c (PREFIX, TOOLNAME): New.
2609 (malloc_failure): Use PREFIX.
2610 (error): In the IPA, an error causes an exit.
2611 (fatal, warning): Use PREFIX.
2612 (internal_error): Use TOOLNAME.
2613 (NUMCELLS): Increase to 10.
2614 * configure, config.in: Regenerate.
2615
d149dd1d
PA
26162010-06-01 Pedro Alves <pedro@codesourcery.com>
2617
2618 * server.c (handle_query) <qSupported>: Do two passes over the
2619 qSupported string to avoid nesting strtok.
2620
f6528abd
JK
26212010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2622
2623 * Makefile.in (SFILES): Add $(srcdir)/proc-service.list.
2624 (CDEPS): New.
2625 * configure.ac (RDYNAMIC): New AC_MSG_CHECKING wrapping. Test also
2626 -Wl,--dynamic-list.
2627 * configure: Regenerate.
2628 * proc-service.list: New.
2629
ca2a87a0
JK
26302010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2631
2632 * linux-low.c (linux_core_of_thread): Fix crash on invalid CONTENT.
2633 New comment.
2634
363a6e9f
OS
26352010-05-26 Ozkan Sezer <sezeroz@gmail.com>
2636
2637 * gdbreplay.c (remote_open): Check error return from socket() call by
2638 its equality to -1 not by it being negative.
2639 * remote-utils.c (remote_open): Likewise.
2640
d23b6cb1
PA
26412010-05-23 Pedro Alves <pedro@codesourcery.com>
2642
2643 * config.h: Regenerate.
2644
28d3cf85
MK
26452010-05-19 Maxim Kuvyrkov <maxim@codesourcery.com>
2646
2647 * linux-m68k-low.c (ps_get_thread_area): Don't define if kernel
2648 doesn't provide PTRACE_GET_THREAD_AREA.
2649
fea36a59
MK
26502010-05-19 Maxim Kuvyrkov <maxim@codesourcery.com>
2651
2652 * linux-m68k-low.c: Include <asm/ptrace.h>
2653 (ps_get_thread_area): Implement.
2654
24b066ba
DE
26552010-05-03 Doug Evans <dje@google.com>
2656
2657 * event-loop.c (struct callback_event): New struct.
2658 (callback_list): New global.
2659 (append_callback_event, delete_callback_event): New functions.
2660 (process_callback): New function.
2661 (start_event_loop): Call it.
2662 * remote-utils.c (NOT_SCHEDULED): Define.
2663 (readchar_buf, readchar_bufcnt, readchar_bufp): New static globals,
2664 moved out of readchar.
2665 (readchar): Rewrite. Call reschedule before returning.
2666 (reset_readchar): New function.
2667 (remote_close): Call it.
2668 (process_remaining, reschedule): New functions.
2669 * server.h (callback_handler_func): New typedef.
2670 (append_callback_event, delete_callback_event): Declare.
2671
9836d6ea
PA
26722010-05-03 Pedro Alves <pedro@codesourcery.com>
2673
2674 * proc-service.c (ps_pglobal_lookup): Use
2675 thread_db_look_up_one_symbol.
2676 * remote-utils.c (look_up_one_symbol): Add new `may_ask_gdb'
2677 parameter. Use it instead of all_symbols_looked_up.
2678 * server.h (struct process_info) <all_symbols_looked_up>: Delete
2679 field.
2680 (all_symbols_looked_up): Don't declare.
2681 (look_up_one_symbol): Add new `may_ask_gdb' parameter.
2682 * thread-db.c (struct thread_db) <all_symbols_looked_up>: New
2683 field.
2684 (thread_db_look_up_symbols): Adjust call to look_up_one_symbol.
2685 Set all_symbols_looked_up here.
2686 (thread_db_look_up_one_symbol): New.
2687 (thread_db_get_tls_address): Adjust.
2688 (thread_db_load_search, try_thread_db_load_1): Always allocate the
2689 thread_db object on the heap, and tentatively set it in the
2690 process structure.
2691 (thread_db_init): Don't set all_symbols_looked_up here.
2692 * linux-low.h (thread_db_look_up_one_symbol): Declare.
2693
7984d532
PA
26942010-05-03 Pedro Alves <pedro@codesourcery.com>
2695
2696 * linux-low.c (linux_kill, linux_detach): Adjust.
2697 (status_pending_p_callback): Remove redundant statement. Check
2698 for !TARGET_WAITIKIND_IGNORE, instead of
2699 TARGET_WAITKIND_STOPPED.
2700 (handle_tracepoints): Make sure LWP is locked. Adjust.
2701 (linux_wait_for_event_1): Adjust.
2702 (linux_cancel_breakpoints): New.
2703 (unsuspend_one_lwp): New.
2704 (unsuspend_all_lwps): New.
2705 (linux_wait_1): If finishing a step-over, unsuspend all lwps.
2706 (send_sigstop_callback): Change return type to int, add new
2707 `except' parameter and handle it.
2708 (suspend_and_send_sigstop_callback): New.
2709 (stop_all_lwps): Add new `suspend' and `expect' parameters, and
2710 pass them down. If SUSPEND, also increment the lwp's suspend
2711 count.
2712 (linux_resume_one_lwp): Add notice about resuming a suspended LWP.
2713 (need_step_over_p): Don't consider suspended LWPs.
2714 (start_step_over): Adjust.
2715 (proceed_one_lwp): Change return type to int, add new `except'
2716 parameter and handle it.
2717 (unsuspend_and_proceed_one_lwp): New.
2718 (proceed_all_lwps): Use find_inferior instead of
2719 for_each_inferior.
2720 (unstop_all_lwps): Add `unsuspend' parameter. If UNSUSPEND, them
2721 also decrement the suspend count of LWPs. Pass `except' down,
2722 instead of hacking its suspend count.
2723 (linux_pause_all): Add `freeze' parameter. Adjust.
2724 (linux_unpause_all): New.
2725 (linux_target_ops): Install linux_unpause_all.
2726 * server.c (handle_status): Adjust.
2727 * target.h (struct target_ops): New fields `unpause_all' and
2728 `cancel_breakpoints'. Add new parameter to `pause_all'.
2729 (pause_all): Add new `freeze' parameter.
2730 (unpause_all): New.
2731 (cancel_breakpoints): New.
2732 * tracepoint.c (clear_installed_tracepoints): Pause threads, and
2733 cancel breakpoints.
2734 (cmd_qtstart): Pause threads.
2735 (stop_tracing): Pause threads, and cancel breakpoints.
2736 * win32-low.c (win32_target_ops): Adjust.
2737
e471f25b
PA
27382010-05-03 Pedro Alves <pedro@codesourcery.com>
2739
2740 * linux-low.c (linux_wait_for_event_1): Move passing the signal to
2741 the inferior right away from here...
2742 (linux_wait_1): ... to here, and adjust to check the thread's
2743 last_resume_kind instead of the lwp's step or stop_expected flags.
2744
1915ef4f
PA
27452010-05-02 Pedro Alves <pedro@codesourcery.com>
2746
2747 * README: Use consistent `GDB' and `GDBserver' spellings.
2748
f9e39928
PA
27492010-05-02 Pedro Alves <pedro@codesourcery.com>
2750
2751 * linux-low.c (linux_kill_one_lwp): Assume the lwp is stopped.
2752 (linux_kill): Stop all lwps here. Don't delete the main lwp here.
2753 (linux_detach_one_lwp): Assume the lwp is stopped.
2754 (any_thread_of): Delete.
2755 (linux_detach): Stop all lwps here. Don't blindly delete all
2756 breakpoints.
2757 (delete_lwp_callback): New.
2758 (linux_mourn): Delete all lwps of the process that is gone.
2759 (linux_wait_1): Don't delete the last lwp of the process here.
2760 * mem-break.h (mark_breakpoints_out): Declare.
2761 * mem-break.c (mark_breakpoints_out): New.
2762 (free_all_breakpoints): Use it.
2763 * server.c (handle_target_event): If the process is gone, mark
2764 breakpoints out.
2765 * thread-db.c (struct thread_db) <create_bp>: New field.
2766 (thread_db_enable_reporting): Fix prototype. Store a thread event
2767 breakpoint reference in the thread_db struct.
2768 (thread_db_load_search): Clear the thread_db object.
2769 (try_thread_db_load_1): Ditto.
2770 (switch_to_process): New.
2771 (disable_thread_event_reporting): Use it.
2772 (remove_thread_event_breakpoints): New.
2773 (thread_db_detach, thread_db_mourn): Use it.
2774
1e7fc18c
PA
27752010-05-01 Pedro Alves <pedro@codesourcery.com>
2776
2777 * linux-low.c (linux_enable_event_reporting): New.
2778 (linux_wait_for_event_1, handle_extended_wait): Use it.
2779
02fc4de7
PA
27802010-04-30 Pedro Alves <pedro@codesourcery.com>
2781
2782 * linux-low.c (linux_kill_one_lwp, linux_kill)
2783 (linux_detach_one_lwp): Adjust to send_sigstop interface change.
2784 (send_sigstop): Take an lwp_info as parameter instead. Queue a
2785 SIGSTOP even if the LWP is stopped.
2786 (send_sigstop_callback): New.
2787 (stop_all_lwps): Use send_sigstop_callback instead.
2788 (linux_resume_one_thread): Adjust.
2789 (proceed_one_lwp): Still proceed an LWP that the client has
2790 requested to stop, if we haven't reported it as stopped yet. Make
2791 sure that LWPs the client want stopped, have a pending SIGSTOP.
2792
bc3b5632
DE
27932010-04-26 Doug Evans <dje@google.com>
2794
ae1ada35
DE
2795 * server.c (handle_general_set): Make static.
2796
bc3b5632
DE
2797 * remote-utils.c (putpkt_binary_1): Call readchar instead of read.
2798 Print received char after testing for error/eof instead of before.
2799 (input_interrupt): Tweak comment.
2800
65730243
DE
28012010-04-23 Doug Evans <dje@google.com>
2802
2803 * server.c (start_inferior): Print inferior argv if --debug.
2804
a8ae7dc0
AR
28052010-04-21 Aleksandar Ristovski <aristovski@qnx.com>
2806
2807 * Makefile.in (nto_low_h nto-low.o nto-x86-low.o): New dependency lists.
2808 * nto-x86-low.c: Include server.h
2809
1c07cc19
PM
28102010-04-20 Pierre Muller <muller@ics.u-strasbg.fr>
2811
2812 * win32-i386-low.c: Use __x86_64__ macro instead of __x86_64 to
2813 be consistent with other sources of this directory.
2814 (init_registers_amd64): Correct name of source file of this function
2815 in the comment.
2816
e0a61e09
PM
28172010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
2818
2819 * configure.srv (x86_64-*-mingw*): New configuration for Windows
2820 64-bit executables.
2821
54709339
PM
28222010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
2823
2824 * win32-i386-low.c: Add 64-bit support.
2825 (CONTEXT_EXTENDED_REGISTERS): Set macro to zero if not exisiting.
2826 (init_registers_amd64): Declare.
2827 (mappings): Add 64-bit version of array.
2828 (init_windows_x86): New function.
2829 (the_low_target): Change init_arch field to init_windows_x86.
2830
e8f0053d
PM
28312010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
2832
2833 * win32-low.c: Adapt to support also 64-bit architecture.
2834 (child_xfer_memory): Use uintptr_t type for local variable `addr'.
2835 (get_image_name): Use SIZE_T type for local variable `done'.
2836 (psapi_get_dll_name): Use LPVOID type for parameter `BaseAddress'.
2837 (toolhelp_get_dll_name): Idem.
2838 (handle_load_dll): Use CORE_ADDR type for local variable `load_addr'.
2839 Use uintptr_t typecast to avoid warning.
2840 (handle_unload_dll): Use uintptr_t typecast to avoid warning.
2841 (handle_exception): Use phex_nz to avoid warning.
2842 (win32_wait): Remove unused local variable `process'.
2843
c481e77e
PM
28442010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
2845
2846 * configure.srv (srv_amd64_regobj): Replace `x86-64-avx.o' by
2847 `amd64-avx.o'.
2848
12ea4b69
PM
28492010-04-17 Pierre Muller <muller@ics.u-strasbg.fr>
2850
2851 * configure.ac: Use `ws2_32' library for srv_mingw.
2852 * configure: Regenerate.
2853 * gdbreplay.c: Include winsock2.h instead of winsock.h.
2854 * remote-utils.c: Likewise.
2855
f6d1620c
L
28562010-04-17 H.J. Lu <hongjiu.lu@intel.com>
2857
2858 * linux-x86-low.c (xmltarget_amd64_linux_no_xml): Define only
2859 if __x86_64__ is defined.
2860
8e642873
PM
28612010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
2862
2863 * configure: Regenerate.
2864
711e434b
PM
28652010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
2866
2867 * server.c (handle_query): Handle 'qGetTIBAddr' query.
2868 * target.h (target_ops): New get_tib_address field.
2869 * win32-low.h (win32_thread_info): Add thread_local_base field.
2870 * win32-low.c (child_add_thread): Add tlb argument.
2871 Set thread_local_base field to TLB.
2872 (get_child_debug_event): Adapt to child_add_thread change.
2873 (win32_get_tib_address): New function.
2874 (win32_target_ops): Set get_tib_address field to
2875 win32_get_tib_address.
2876 * linux-low.c (linux_target_ops): Set get_tib_address field to NULL.
2877
505106cd
PA
28782010-04-12 Pedro Alves <pedro@codesourcery.com>
2879
505106cd
PA
2880 * linux-low.c (linux_mourn): Also remove the process.
2881 * server.c (handle_target_event): Don't remove the process here.
2882 * nto-low.c (nto_mourn): New.
2883 (nto_target_ops): Install it.
2884 * spu-low.c (spu_mourn): New.
2885 (spu_target_ops): Install it.
2886 * win32-low.c (win32_mourn): New.
2887 (win32_target_ops): Install it.
2888
e8470a06
PA
28892010-04-12 Pedro Alves <pedro@codesourcery.com>
2890
2891 * server.h (buffer_xml_printf): Remove redundant `;'.
2892
45ba0d02
PA
28932010-04-12 Pedro Alves <pedro@codesourcery.com>
2894
2895 * regcache.c (set_register_cache): Invalidate regcaches before
2896 changing the register cache layout.
2897 (regcache_invalidate_one): Allow a NULL regcache.
2898 * linux-x86-low.c (x86_linux_update_xmltarget): Invalidate
2899 regcaches before changing the register cache layout or the target
2900 regsets.
2901
59e04013
L
29022010-04-12 H.J. Lu <hongjiu.lu@intel.com>
2903
2904 * linux-x86-low.c (x86_linux_update_xmltarget): Avoid unused
2905 variable warning on Linux/x86-64.
2906
8336d594
PA
29072010-04-11 Pedro Alves <pedro@codesourcery.com>
2908
2909 GDBserver disconnected tracing support.
2910
2911 * linux-low.c (linux_remove_process): Delete.
2912 (add_lwp): Don't set last_resume_kind here.
2913 (linux_kill): Use `mourn'.
2914 (linux_detach): Use `thread_db_detach', and `mourn'.
2915 (linux_mourn): New.
2916 (linux_attach_lwp_1): Adjust comment.
2917 (linux_attach): last_resume_kind moved the thread_info; adjust.
2918 (status_pending_p_callback): Adjust.
2919 (linux_wait_for_event_1): Adjust.
2920 (count_events_callback, select_singlestep_lwp_callback)
2921 (select_event_lwp_callback, cancel_breakpoints_callback)
2922 (db_wants_lwp_stopped, linux_wait_1, need_step_over_p)
2923 (proceed_one_lwp): Adjust.
2924 (linux_async): Add debug output.
2925 (linux_thread_stopped): New.
2926 (linux_pause_all): New.
2927 (linux_target_ops): Install linux_mourn, linux_thread_stopped and
2928 linux_pause_all.
2929 * linux-low.h (struct lwp_info): Delete last_resume_kind field.
2930 (thread_db_free): Delete declaration.
2931 (thread_db_detach, thread_db_mourn): Declare.
2932 * thread-db.c (thread_db_init): Use thread_db_mourn.
2933 (thread_db_free): Delete, split in two.
2934 (disable_thread_event_reporting): New.
2935 (thread_db_detach): New.
2936 (thread_db_mourn): New.
2937
2938 * server.h (struct thread_info) <last_resume_kind>: New field.
2939 <attached>: Add comment.
2940 <gdb_detached>: New field.
2941 (handler_func): Change return type to int.
2942 (handle_serial_event, handle_target_event): Ditto.
2943 (gdb_connected): Declare.
2944 (tracing): Delete.
2945 (disconnected_tracing): Declare.
2946 (stop_tracing): Declare.
2947
2948 * server.c (handle_query) <qSupported>: Report support for
2949 disconnected tracing.
2950 (queue_stop_reply_callback): Account for running threads.
2951 (gdb_wants_thread_stopped): New.
2952 (gdb_wants_all_threads_stopped): New.
2953 (gdb_reattached_process): New.
2954 (handle_status): Clear the `gdb_detached' flag of all processes.
2955 In all-stop, stop all threads.
2956 (main): Be sure to leave tfind mode. Handle disconnected tracing.
2957 (process_serial_event): If the remote connection breaks, or if an
2958 exit was forced with "monitor exit", force an event loop exit.
2959 Handle disconnected tracing on detach.
2960 (handle_serial_event): Adjust.
2961 (handle_target_event): If GDB isn't connected, forward events back
2962 to the inferior, unless the last process exited, in which case,
2963 exit gdbserver. Adjust interface.
2964
2965 * remote-utils.c (remote_open): Don't block in accept. Instead
2966 register an event loop source on the listen socket file
2967 descriptor. Refactor bits into ...
2968 (listen_desc): ... this new global.
2969 (gdb_connected): ... this new function.
2970 (enable_async_notification): ... this new function.
2971 (handle_accept_event): ... this new function.
2972 (remote_close): Clear remote_desc.
2973
2974 * inferiors.c (add_thread): Set the new thread's last_resume_kind.
2975
2976 * target.h (struct target_ops) <mourn, thread_stopped, pause_all>:
2977 New fields.
2978 (mourn_inferior): Define.
2979 (target_process_qsupported): Avoid the dangling else problem.
2980 (thread_stopped): Define.
2981 (pause_all): Define.
2982 (target_waitstatus_to_string): Declare.
2983 * target.c (target_waitstatus_to_string): New.
2984
2985 * tracepoint.c (tracing): Make extern.
2986 (disconnected_tracing): New.
2987 (stop_tracing): Make extern. Handle tracing stops due to GDB
2988 disconnecting.
2989 (cmd_qtdisconnected): New.
2990 (cmd_qtstatus): Report disconnected tracing status in trace reply.
2991 (handle_tracepoint_general_set): Handle QTDisconnected.
2992
2993 * event-loop.c (event_handler_func): Change return type to int.
2994 (process_event): Bail out if the event handler wants the event
2995 loop to stop.
2996 (handle_file_event): Ditto.
2997 (start_event_loop): Bail out if the event handler wants the event
2998 loop to stop.
2999
3000 * nto-low.c (nto_target_ops): Adjust.
3001 * spu-low.c (spu_wait): Don't remove the process here.
3002 (spu_target_ops): Adjust.
3003 * win32-low.c (win32_wait): Don't remove the process here.
3004 (win32_target_ops): Adjust.
3005
5d267c4c
PA
30062010-04-11 Pedro Alves <pedro@codesourcery.com>
3007
3008 * regcache.c (realloc_register_cache): Invalidate inferior's
3009 regcache before recreating it.
3010
623ccd72
PA
30112010-04-09 Pedro Alves <pedro@codesourcery.com>
3012
3013 * tracepoint.c (cmd_qtstatus): Report trace buffer circularity.
3014
219f2f23
PA
30152010-04-09 Stan Shebs <stan@codesourcery.com>
3016 Pedro Alves <pedro@codesourcery.com>
3017
3018 * server.h (LONGEST): New.
3019 (struct thread_info) <while_stepping>: New field.
3020 (unpack_varlen_hex, xrealloc, pulongest, plongest, phex_nz):
3021 Declare.
3022 (initialize_tracepoint, handle_tracepoint_general_set)
3023 (handle_tracepoint_query, tracepoint_finished_step)
3024 (tracepoint_was_hit, release_while_stepping_state_list):
3025 (current_traceframe): Declare.
3026 * server.c (handle_general_set): Handle tracepoint packets.
3027 (read_memory): New.
3028 (write_memory): New.
3029 (handle_search_memory_1): Use read_memory.
3030 (handle_query): Report support for conditional tracepoints, trace
3031 state variables, and tracepoint sources. Handle tracepoint
3032 queries.
3033 (main): Initialize the tracepoints module.
3034 (process_serial_event): Handle traceframe reads/writes.
3035
3036 * linux-low.c (handle_tracepoints): New.
3037 (linux_wait_1): Call it.
3038 (linux_resume_one_lwp): Handle while-stepping.
3039 (linux_supports_tracepoints, linux_read_pc, linux_write_pc): New.
3040 (linux_target_ops): Install them.
3041 * linux-low.h (struct linux_target_ops) <supports_tracepoints>:
3042 New field.
3043 * linux-x86-low.c (x86_supports_tracepoints): New.
3044 (the_low_target). Install it.
3045
3046 * mem-break.h (delete_breakpoint): Declare.
3047 * mem-break.c (delete_breakpoint): Make external.
3048
3049 * target.h (struct target_ops): Add `supports_tracepoints',
3050 `read_pc', and `write_pc' fields.
3051 (target_supports_tracepoints): Define.
3052 * utils.c (xrealloc, decimal2str, pulongest, plongest, thirty_two)
3053 (phex_nz): New.
3054
3055 * regcache.h (struct regcache) <registers_owned>: New field.
3056 (init_register_cache, regcache_cpy): Declare.
3057 (regcache_read_pc, regcache_write_pc): Declare.
3058 (register_cache_size): Declare.
3059 (supply_regblock): Declare.
3060 * regcache.c (init_register_cache): New.
3061 (new_register_cache): Use it.
3062 (regcache_cpy): New.
3063 (register_cache_size): New.
3064 (supply_regblock): New.
3065 (regcache_read_pc, regcache_write_pc): New.
889bf7c5 3066
219f2f23
PA
3067 * tracepoint.c: New.
3068
3069 * Makefile.in (OBS): Add tracepoint.o.
3070 (tracepoint.o): New rule.
3071
3a13a53b
L
30722010-04-08 H.J. Lu <hongjiu.lu@intel.com>
3073
3074 * Makefile.in (clean): Also remove i386-mmx.c i386-mmx-linux.c.
3075 (i386-mmx.o): New.
3076 (i386-mmx.c): Likewise.
3077 (i386-mmx-linux.o): Likewise.
3078 (i386-mmx-linux.c): Likewise.
3079
3080 * configure.srv (srv_i386_regobj): Add i386-mmx.o.
3081 (srv_i386_linux_regobj): Add i386-mmx-linux.o.
3082 (srv_i386_xmlfiles): Add i386/i386-mmx.xml.
3083 (srv_i386_linux_xmlfiles): Add i386/i386-mmx-linux.xml.
3084
3085 * linux-x86-low.c (init_registers_i386_mmx_linux): New.
3086 (x86_linux_update_xmltarget): Call init_registers_i386_mmx_linux
3087 and return if ptrace PTRACE_GETFPXREGS failed in 32bit.
3088
1570b33e
L
30892010-04-07 H.J. Lu <hongjiu.lu@intel.com>
3090
3091 * Makefile.in (clean): Updated.
3092 (i386-avx.o): New.
3093 (i386-avx.c): Likewise.
3094 (i386-avx-linux.o): Likewise.
3095 (i386-avx-linux.c): Likewise.
3096 (amd64-avx.o): Likewise.
3097 (amd64-avx.c): Likewise.
3098 (amd64-avx-linux.o): Likewise.
3099 (amd64-avx-linux.c): Likewise.
3100
3101 * configure.srv (srv_i386_regobj): Add i386-avx.o.
3102 (srv_i386_linux_regobj): Add i386-avx-linux.o.
3103 (srv_amd64_regobj): Add amd64-avx.o.
3104 (srv_amd64_linux_regobj): Add amd64-avx-linux.o.
3105 (srv_i386_32bit_xmlfiles): Add i386/32bit-avx.xml.
3106 (srv_i386_64bit_xmlfiles): Add i386/64bit-avx.xml.
3107 (srv_i386_xmlfiles): Add i386/i386-avx.xml.
3108 (srv_amd64_xmlfiles): Add i386/amd64-avx.xml.
3109 (srv_i386_linux_xmlfiles): Add i386/i386-avx-linux.xml.
3110 (srv_amd64_linux_xmlfiles): Add i386/amd64-avx-linux.xml.
3111
3112 * i387-fp.c: Include "i386-xstate.h".
3113 (i387_xsave): New.
3114 (i387_cache_to_xsave): Likewise.
3115 (i387_xsave_to_cache): Likewise.
3116 (x86_xcr0): Likewise.
3117
3118 * i387-fp.h (i387_cache_to_xsave): Likewise.
3119 (i387_xsave_to_cache): Likewise.
3120 (x86_xcr0): Likewise.
3121
3122 * linux-arm-low.c (target_regsets): Initialize nt_type to 0.
3123 * linux-crisv32-low.c (target_regsets): Likewise.
3124 * linux-m68k-low.c (target_regsets): Likewise.
3125 * linux-mips-low.c (target_regsets): Likewise.
3126 * linux-ppc-low.c (target_regsets): Likewise.
3127 * linux-s390-low.c (target_regsets): Likewise.
3128 * linux-sh-low.c (target_regsets): Likewise.
3129 * linux-sparc-low.c (target_regsets): Likewise.
3130 * linux-xtensa-low.c (target_regsets): Likewise.
3131
3132 * linux-low.c: Include <sys/uio.h>.
3133 (regsets_fetch_inferior_registers): Support nt_type.
3134 (regsets_store_inferior_registers): Likewise.
3135 (linux_process_qsupported): New.
3136 (linux_target_ops): Add linux_process_qsupported.
3137
3138 * linux-low.h (regset_info): Add nt_type.
3139 (linux_target_ops): Add process_qsupported.
3140
3141 * linux-x86-low.c: Include "i386-xstate.h", "elf/common.h"
3142 and <sys/uio.h>.
3143 (init_registers_i386_avx_linux): New.
3144 (init_registers_amd64_avx_linux): Likewise.
3145 (xmltarget_i386_linux_no_xml): Likewise.
3146 (xmltarget_amd64_linux_no_xml): Likewise.
3147 (PTRACE_GETREGSET): Likewise.
3148 (PTRACE_SETREGSET): Likewise.
3149 (x86_fill_xstateregset): Likewise.
3150 (x86_store_xstateregset): Likewise.
3151 (use_xml): Likewise.
3152 (x86_linux_update_xmltarget): Likewise.
3153 (x86_linux_process_qsupported): Likewise.
3154 (target_regsets): Add NT_X86_XSTATE entry and Initialize nt_type.
3155 (x86_arch_setup): Don't call init_registers_amd64_linux nor
3156 init_registers_i386_linux here. Call
3157 x86_linux_update_xmltarget.
3158 (the_low_target): Add x86_linux_process_qsupported.
3159
3160 * server.c (handle_query): Call target_process_qsupported.
3161
3162 * target.h (target_ops): Add process_qsupported.
3163 (target_process_qsupported): New.
3164
fc7238bb
PA
31652010-04-03 Pedro Alves <pedro@codesourcery.com>
3166
3167 * inferiors.c (add_thread): Set last_status kind to
3168 TARGET_WAITKIND_IGNORE.
3169 * linux-low.c (cancel_breakpoint): Remove unnecessary regcache
3170 fetch. Use ptid_of. Avoid unnecessary get_lwp_thread calls.
3171 (linux_wait_1): Move `thread' local definition to block that uses
3172 it. Don't NULL initialize `event_child'.
3173 (linux_resume_one_thread): Avoid unnecessary get_lwp_thread calls.
3174 Alway set the thread's last_status to TARGET_WAITKIND_IGNORE.
3175 * linux-x86-low.c (x86_breakpoint_at): Read raw memory.
3176
bdabb078
PA
31772010-04-01 Pedro Alves <pedro@codesourcery.com>
3178
3179 * linux-low.c (get_stop_pc): Don't adjust the PC if stopped with
3180 an extended waitstatus, or by a watchpoint.
3181 (cancel_breakpoints_callback): Don't cancel a breakpoint if the
3182 thread was stepping or has been stopped by a watchpoint.
3183
d3bbe7a0
PA
31842010-04-01 Pedro Alves <pedro@codesourcery.com>
3185
3186 * mem-break.c (struct raw_breakpoint): New field shlib_disabled.
3187 (set_gdb_breakpoint_at): If GDB is inserting a breakpoint on top
3188 of another, then delete the previous, and validate all
3189 breakpoints.
3190 (validate_inserted_breakpoint): New.
3191 (delete_disabled_breakpoints): New.
3192 (validate_breakpoints): New.
3193 (check_mem_read): Validate breakpoints before trusting their
3194 shadow. Delete disabled breakpoints.
3195 (check_mem_write): Validate breakpoints before trusting they
3196 should be inserted. Delete disabled breakpoints.
3197 * mem-break.h (validate_breakpoints):
3198 * server.c (handle_query): Validate breakpoints when we see a
3199 qSymbol query.
3200
8b07ae33
PA
32012010-04-01 Pedro Alves <pedro@codesourcery.com>
3202
3203 * linux-low.c (linux_wait_1): Avoid setting need_step_over is
3204 there's a GDB breakpoint at stop_pc. Always report a trap to GDB
3205 if we could tell there's a GDB breakpoint at stop_pc.
3206 (need_step_over_p): Don't do a step over if we find a GDB
3207 breakpoint at the resume PC.
3208
3209 * mem-break.c (struct raw_breakpoint): New.
3210 (enum bkpt_type): New type `gdb_breakpoint'.
3211 (struct breakpoint): Delete the `PC', `old_data' and `inserted'
3212 fields. New field `raw'.
3213 (find_raw_breakpoint_at): New.
3214 (set_raw_breakpoint_at): Handle refcounting. Create a raw
3215 breakpoint instead.
3216 (set_breakpoint_at): Adjust.
3217 (delete_raw_breakpoint): New.
3218 (release_breakpoint): New.
3219 (delete_breakpoint): Rename to...
3220 (delete_breakpoint_1): ... this. Add proc parameter. Use
3221 release_breakpoint. Return ENOENT.
3222 (delete_breakpoint): Reimplement.
3223 (find_breakpoint_at): Delete.
3224 (find_gdb_breakpoint_at): New.
3225 (delete_breakpoint_at): Delete.
3226 (set_gdb_breakpoint_at): New.
3227 (delete_gdb_breakpoint_at): New.
3228 (gdb_breakpoint_here): New.
3229 (set_reinsert_breakpoint): Use release_breakpoint.
3230 (uninsert_breakpoint): Rename to ...
3231 (uninsert_raw_breakpoint): ... this.
3232 (uninsert_breakpoints_at): Adjust to handle raw breakpoints.
3233 (reinsert_raw_breakpoint): Change parameter type to
3234 raw_breakpoint.
3235 (reinsert_breakpoints_at): Adjust to handle raw breakpoints
3236 instead.
3237 (check_breakpoints): Adjust. Use release_breakpoint.
3238 (breakpoint_here): Rewrite using find_raw_breakpoint_at.
3239 (breakpoint_inserted_here): Ditto.
3240 (check_mem_read): Adjust to iterate over raw breakpoints instead.
3241 Don't trust the breakpoint's shadow if it is not inserted.
3242 (check_mem_write): Adjust to iterate over raw breakpoints instead.
3243 (delete_all_breakpoints): Adjust.
3244 (free_all_breakpoints): Mark all breakpoints as uninserted, and
3245 use delete_breakpoint_1.
3246
3247 * mem-break.h (breakpoints_supported): Delete declaration.
3248 (set_gdb_breakpoint_at): Declare.
3249 (gdb_breakpoint_here): Declare.
3250 (delete_breakpoint_at): Delete.
3251 (delete_gdb_breakpoint_at): Declare.
3252
3253 * server.h (struct raw_breakpoint): Forward declare.
3254 (struct process_info): New field `raw_breakpoints'.
3255
3256 * linux-x86-low.c (x86_insert_point, x86_remote_point): Handle Z0
3257 breakpoints.
3258
6bf5e0ba
PA
32592010-03-24 Pedro Alves <pedro@codesourcery.com>
3260
3261 * linux-low.c (status_pending_p_callback): Fix comment.
3262 (linux_wait_for_event_1): Move most of the internal breakpoint
3263 handling from here...
3264 (linux_wait_1): ... to here.
3265 (count_events_callback): New.
3266 (select_singlestep_lwp_callback): New.
3267 (select_event_lwp_callback): New.
3268 (cancel_breakpoints_callback): New.
3269 (select_event_lwp): New.
3270 (linux_wait_1): Simplify internal breakpoint handling. Give equal
3271 priority to all LWPs that have had events that should be reported
3272 to the client. Cancel breakpoints when about to reporting the
3273 event to the client, not while stopping lwps. No longer cancel
3274 finished single-steps here.
3275 (cancel_finished_single_step): Delete.
3276 (cancel_finished_single_steps): Delete.
3277
414a389f
PA
32782010-03-24 Pedro Alves <pedro@codesourcery.com>
3279
3280 * mem-break.c (enum bkpt_type): New.
3281 (struct breakpoint): New field `type'.
3282 (set_breakpoint_at): Change return type to struct breakpoint
3283 pointer. Set type to `other_breakpoint' by default.
3284 (delete_breakpoint): Rewrite, supporting more than one breakpoint
3285 in the breakpoint list.
3286 (delete_reinsert_breakpoints): Only delete reinsert breakpoints.
3287 (reinsert_breakpoint): Rename to ...
3288 (reinsert_raw_breakpoint): ... this.
3289 (reinsert_breakpoints_at): Adjust.
3290 * mem-break.h (struct breakpoint): Declare.
3291 (set_breakpoint_at): Change return type to struct breakpoint
3292 pointer.
3293
2280c721
PA
32942010-03-24 Pedro Alves <pedro@codesourcery.com>
3295
3296 * server.c (handle_query): Assign, not compare.
3297
d50171e4
PA
32982010-03-24 Pedro Alves <pedro@codesourcery.com>
3299
3300 Teach linux gdbserver to step-over-breakpoints.
3301
3302 * linux-low.c (can_hardware_single_step): New.
3303 (supports_breakpoints): New.
3304 (handle_extended_wait): If stopping threads, read the stop pc of
3305 the new cloned LWP.
3306 (get_pc): New.
3307 (get_stop_pc): Add `lwp' parameter. Handle it. Bail out if the
3308 low target doesn't support retrieving the PC.
3309 (add_lwp): Set last_resume_kind to resume_continue.
3310 (linux_attach_lwp_1): Adjust comments. Always set stop_expected.
3311 (linux_attach): Don't clear stop_expected. Set the lwp's
3312 last_resume_kind to resume_stop.
3313 (linux_detach_one_lwp): Don't check for removed breakpoints.
3314 (check_removed_breakpoint): Delete.
3315 (status_pending_p): Rename to ...
3316 (status_pending_p_callback): ... this. Don't check for removed
3317 breakpoints. Don't consider threads that are stopped from GDB's
3318 perspective.
3319 (linux_wait_for_lwp): Always read the stop_pc here.
3320 (cancel_breakpoint): New.
3321 (step_over_bkpt): New global.
3322 (linux_wait_for_event_1): Implement stepping over breakpoints.
3323 (gdb_wants_lwp_stopped): New.
3324 (gdb_wants_all_stopped): New.
3325 (linux_wait_1): Tag threads as gdb-wants-stopped. Cancel finished
3326 single-step traps here. Store the thread's last reported target
3327 wait status.
3328 (send_sigstop): Don't clear stop_expected. Always set it,
3329 instead.
3330 (mark_lwp_dead): Remove reference to pending_is_breakpoint.
3331 (cancel_finished_single_step): New.
3332 (cancel_finished_single_steps): New.
3333 (wait_for_sigstop): Don't cancel finished single-step traps here.
3334 (linux_resume_one_lwp): Don't check for removed breakpoints.
3335 Don't set `step' on non-hardware step archs.
3336 (linux_set_resume_request): Ignore resume_stop requests if already
3337 stopping or stopped. Set the lwp's last_resume_kind.
3338 (resume_status_pending_p): Don't check for removed breakpoints.
3339 (need_step_over_p): New.
3340 (start_step_over): New.
3341 (finish_step_over): New.
3342 (linux_resume_one_thread): Always queue a sigstop for resume_stop
3343 requests. Clear the thread's last reported target waitstatus.
3344 Don't use the `suspended' flag. Don't consider pending breakpoints.
3345 (linux_resume): Start a step-over if necessary.
3346 (proceed_one_lwp): New.
3347 (proceed_all_lwps): New.
3348 (unstop_all_lwps): New.
3349 * linux-low.h (struct lwp_info): Rewrite comment for the
3350 `suspended' flag. Add the `stop_pc' field. Delete the
3351 `pending_stop_pc' field. Tweak the `stepping' flag's comment.
3352 Add `'last_resume_kind' and `need_step_over' fields.
3353 * inferiors.c (struct thread_info): Delete, moved elsewhere.
3354 * mem-break.c (struct breakpoint): Delete `reinserting' flag.
3355 Delete `breakpoint_to_reinsert' field. New flag `inserted'.
3356 (set_raw_breakpoint_at): New.
3357 (set_breakpoint_at): Rewrite to use it.
3358 (reinsert_breakpoint_handler): Delete.
3359 (set_reinsert_breakpoint): New.
3360 (reinsert_breakpoint_by_bp): Delete.
3361 (delete_reinsert_breakpoints): New.
3362 (uninsert_breakpoint): Rewrite.
3363 (uninsert_breakpoints_at): New.
3364 (reinsert_breakpoint): Rewrite.
3365 (reinsert_breakpoints_at): New.
3366 (check_breakpoints): Rewrite.
3367 (breakpoint_here): New.
3368 (breakpoint_inserted_here): New.
3369 (check_mem_read): Adjust.
3370 * mem-break.h (breakpoints_supported, breakpoint_here)
3371 (breakpoint_inserted_here, set_reinsert_breakpoint): Declare.
3372 (reinsert_breakpoint_by_bp): Delete declaration.
3373 (delete_reinsert_breakpoints): Declare.
3374 (reinsert_breakpoint): Delete declaration.
3375 (reinsert_breakpoints_at): Declare.
3376 (uninsert_breakpoint): Delete declaration.
3377 (uninsert_breakpoints_at): Declare.
3378 (check_breakpoints): Adjust prototype.
3379 * server.h: Adjust include order.
3380 (struct thread_info): Declare here. Add a `last_status' field.
3381
30ba68cb
MS
33822010-03-23 Michael Snyder <msnyder@vmware.com>
3383
3384 * server.c (crc32): New function.
3385 (handle_query): Add handling for 'qCRC:' request.
3386
b9a881c2
PA
33872010-03-23 Pedro Alves <pedro@codesourcery.com>
3388
3389 * linux-x86-low.c (x86_linux_prepare_to_resume): Clear DR6 if the
3390 lwp had been stopped by a watchpoint.
3391
e92d13d5
PA
33922010-03-16 Pedro Alves <pedro@codesourcery.com>
3393
3394 * server.h (internal_error): Declare.
3395 (gdb_assert, ASSERT_FUNCTION, gdb_assert_fail): Define.
3396 * utils.c (internal_error): New function.
3397
64daa791
AS
33982010-03-15 Andreas Schwab <schwab@redhat.com>
3399
3400 * configure.srv: Fix typo setting srv_regobj.
3401
f52cd8cd
PA
34022010-03-15 Pedro Alves <pedro@codesourcery.com>
3403
3404 * linux-low.c (fetch_register): Avoid passing a non string literal
3405 format to `error'.
3406 (usr_store_inferior_registers): Ditto.
3407
93ae6fdc
PA
34082010-03-14 Pedro Alves <pedro@codesourcery.com>
3409
3410 * linux-low.c (linux_write_memory): Bail out early if peeking
3411 memory failed.
3412
c3adc08c
PA
34132010-03-14 Pedro Alves <pedro@codesourcery.com>
3414
3415 * linux-low.h (struct lwp_info): New fields
3416 `stopped_by_watchpoint' and `stopped_data_address'.
3417 * linux-low.c (linux_wait_for_lwp): Check for watchpoint triggers
3418 here, and cache them in the lwp object.
3419 (wait_for_sigstop): Check stopped_by_watchpoint lwp field
3420 directly.
3421 (linux_resume_one_lwp): Clear the lwp's stopped_by_watchpoint
3422 field.
3423 (linux_stopped_by_watchpoint): Rewrite.
3424 (linux_stopped_data_address): Rewrite.
3425
bce522a2
PA
34262010-03-06 Simo Melenius <simo.melenius@iki.fi>
3427
3428 * linux-low.c (linux_wait_for_lwp): Fetch the regcache after
3429 switching the current inferior, not before.
3430
90884b2b
L
34312010-03-01 H.J. Lu <hongjiu.lu@intel.com>
3432
3433 * Makefile.in (clean): Replace reg-i386.c, reg-x86-64.c,
3434 reg-i386-linux.c and reg-x86-64-linux.c with i386.c, amd64.c,
3435 i386-linux.c and amd64-linux.c.
3436 (reg-i386.o): Removed.
3437 (reg-i386.c): Likewise.
3438 (reg-i386-linux.o): Likewise.
3439 (reg-i386-linux.c): Likewise.
3440 (reg-x86-64.o): Likewise.
3441 (reg-x86-64.c): Likewise.
3442 (reg-x86-64-linux.o): Likewise.
3443 (reg-x86-64-linux.c): Likewise.
3444 (i386.o): New.
3445 (i386.c): Likewise.
3446 (i386-linux.o): Likewise.
3447 (i386-linux.c): Likewise.
3448 (amd64.o): Likewise.
3449 (amd64.c): Likewise.
3450 (amd64-linux.o): Likewise.
3451 (amd64-linux.c): Likewise.
3452
3453 * configure.srv (srv_i386_regobj): New.
3454 (srv_i386_linux_regobj): Likewise.
3455 (srv_amd64_regobj): Likewise.
3456 (srv_amd64_linux_regobj): Likewise.
3457 (srv_i386_32bit_xmlfiles): Likewise.
3458 (srv_i386_64bit_xmlfiles): Likewise.
3459 (srv_i386_xmlfiles): Likewise.
3460 (srv_amd64_xmlfiles): Likewise.
3461 (srv_i386_linux_xmlfiles): Likewise.
3462 (srv_amd64_linux_xmlfiles): Likewise.
3463 (i[34567]86-*-cygwin*): Set srv_regobj to $srv_i386_regobj. Set
3464 srv_xmlfiles to $srv_i386_xmlfiles.
3465 (i[34567]86-*-mingw32ce*): Likewise.
3466 (i[34567]86-*-mingw*): Likewise.
3467 (i[34567]86-*-nto*): Likewise.
3468 (i[34567]86-*-linux*): Set srv_regobj to $srv_i386_linux_regobj
3469 and $srv_amd64_linux_regobj. Set srv_xmlfiles to
3470 $srv_i386_linux_xmlfiles and $srv_amd64_linux_xmlfiles.
3471 (x86_64-*-linux*): Likewise.
3472
3473 * linux-x86-low.c (init_registers_x86_64_linux): Removed.
3474 (init_registers_amd64_linux): New.
3475 (x86_arch_setup): Replace init_registers_x86_64_linux with
3476 init_registers_amd64_linux.
3477
193f13e6
MK
34782010-02-23 Maxim Kuvyrkov <maxim@codesourcery.com>
3479
3480 * configure.ac: Check for libdl. If it is not available link against
3481 static libthread_db.
3482 * configure: Regenerate.
3483
85d721b8
PA
34842010-02-22 Pedro Alves <pedro@codesourcery.com>
3485
3486 PR9605
3487
3488 * i386-low.c (i386_length_and_rw_bits): Throw a fatal error if
3489 handing a read watchpoint.
3490 (i386_low_insert_watchpoint): Read watchpoints aren't supported.
3491
6076632b
DE
34922010-02-12 Doug Evans <dje@google.com>
3493
3494 * linux-low.c (linux_supports_tracefork_flag): Document.
3495 (linux_look_up_symbols): Add comment.
3496
3327ccf7
L
34972010-02-03 H.J. Lu <hongjiu.lu@intel.com>
3498
3499 * regcache.c (supply_register): Clear regcache if buf is NULL.
3500
0718675c 35012010-02-02 Nicolas Roche <roche@sourceware.org>
3327ccf7 3502 Joel Brobecker <brobecker@adacore.com>
0718675c
JB
3503
3504 * inferiors.c (find_inferior): Add function documentation.
3505 (unloaded_dll): Handle the case where the unloaded dll has not
3506 been previously registered in the dll list.
3507
177321bd
DJ
35082010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
3509
3510 * linux-arm-low.c (thumb_breakpoint_len): Delete.
3511 (thumb2_breakpoint): New.
3512 (arm_breakpoint_at): Check for Thumb-2 breakpoints.
3513
2b009048
DJ
35142010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
3515
3516 * linux-low.c (get_stop_pc): Check for SIGTRAP.
3517 (linux_wait_for_event_1): Handle SIGILL and SIGSEGV as possible
3518 breakpoints.
3519
3be029c7
PA
35202010-01-21 Pedro Alves <pedro@codesourcery.com>
3521
3522 * linux-ppc-low.c (ppc_arch_setup): Adjust to regcache changes.
3523
18f5de3b
JK
35242010-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
3525
3526 * linux-s390-low.c (s390_collect_ptrace_register)
3527 (s390_supply_ptrace_register): Adjust it for the new regcache parameter.
3528
3743bb4f
DE
35292010-01-21 Doug Evans <dje@google.com>
3530
14ce3065
DE
3531 * linux-low.c (PTRACE_ARG3_TYPE): Change from long to void*.
3532 (PTRACE_ARG4_TYPE): New macro.
3533 (handle_extended_wait): Cast ptrace arg4 to PTRACE_ARG4_TYPE.
3534 (linux_wait_for_event_1, linux_resume_one_lwp): Ditto.
3535 (fetch_register): Cast to uintptr_t before casting to PTRACE_ARG3_TYPE.
3536 (usr_store_inferior_registers): Ditto.
3537 (linux_read_memory, linux_write_memory): Ditto.
3538 (linux_test_for_tracefork): Ditto.
3539
3743bb4f
DE
3540 * linux-arm-low.c: Remove redundant include of gdb_proc_service.h.
3541 Only include elf.h if gdb_proc_service.h didn't include linux/elf.h.
3542
8b315be5
PA
35432010-01-21 Pedro Alves <pedro@codesourcery.com>
3544
3545 * proc-service.c (ps_lgetregs): Don't refetch registers from the
3546 target.
3547
85492558
PA
35482010-01-21 Pedro Alves <pedro@codesourcery.com>
3549
3550 * spu-low.c (spu_fetch_registers, spu_store_registers): Change
3551 prototype to take a regcache. Adjust.
3552
442ea881
PA
35532010-01-20 Pedro Alves <pedro@codesourcery.com>
3554
3555 * regcache.h (struct thread_info): Forward declare.
3556 (struct regcache): New.
3557 (new_register_cache): Adjust prototype.
3558 (get_thread_regcache): Declare.
3559 (free_register_cache): Adjust prototype.
3560 (registers_to_string, registers_from_string): Ditto.
3561 (supply_register, supply_register_by_name, collect_register)
3562 (collect_register_as_string, collect_register_by_name): Ditto.
3563 * regcache.c (struct inferior_regcache_data): Delete.
3564 (get_regcache): Rename to ...
3565 (get_thread_regcache): ... this. Adjust. Switch inferior before
3566 fetching registers.
3567 (regcache_invalidate_one): Adjust.
3568 (regcache_invalidate): Fix prototype.
3569 (new_register_cache): Return the new register cache.
3570 (free_register_cache): Change prototype.
3571 (realloc_register_cache): Adjust.
3572 (registers_to_string): Change prototype to take a regcache. Adjust.
3573 (registers_from_string): Ditto.
3574 (register_data): Ditto.
3575 (supply_register): Ditto.
3576 (supply_register_by_name): Ditto.
3577 (collect_register): Ditto.
3578 (collect_register_as_string): Ditto.
3579 (collect_register_by_name): Ditto.
3580 * server.c (process_serial_event): Adjust.
3581 * linux-low.h (regset_fill_func, regset_store_func): Change
3582 prototype.
3583 (get_pc, set_pc, collect_ptrace_register, supply_ptrace_register):
3584 Change prototype.
3585 * linux-low.c (get_stop_pc): Adjust.
3586 (check_removed_breakpoint): Adjust.
3587 (linux_wait_for_event): Adjust.
3588 (linux_resume_one_lwp): Adjust.
3589 (fetch_register): Add regcache parameter. Adjust.
3590 (usr_store_inferior_registers): Ditto.
3591 (regsets_fetch_inferior_registers): Ditto.
3592 (regsets_store_inferior_registers): Ditto.
3593 (linux_fetch_registers, linux_store_registers): Ditto.
3594 * i387-fp.c (i387_cache_to_fsave): Change prototype to take a
3595 regcache. Adjust.
3596 (i387_fsave_to_cache, i387_cache_to_fxsave, i387_fxsave_to_cache): Ditto.
3597 * i387-fp.h (i387_cache_to_fsave, i387_fsave_to_cache): Change
3598 prototype to take a regcache.
3599 (i387_cache_to_fxsave, i387_fxsave_to_cache): Ditto.
3600 * remote-utils.c (convert_ascii_to_int, outreg)
3601 (prepare_resume_reply): Change prototype to take a regcache.
3602 Adjust.
3603 * target.h (struct target_ops) <fetch_registers, store_registers>:
3604 Change prototype to take a regcache.
3605 (fetch_inferior_registers, store_inferior_registers): Change
3606 prototype to take a regcache. Adjust.
3607 * proc-service.c (ps_lgetregs): Adjust.
3608 * linux-x86-low.c (x86_fill_gregset, x86_store_gregset)
3609 (x86_fill_fpregset, x86_store_fpregset, x86_fill_fpxregset)
3610 (x86_store_fpxregset, x86_get_pc, x86_set_pc): Change prototype to
3611 take a regcache. Adjust.
3612 * linux-arm-low.c (arm_fill_gregset, arm_store_gregset)
3613 (arm_fill_wmmxregset, arm_store_wmmxregset, arm_fill_vfpregset)
3614 (arm_store_vfpregset, arm_get_pc, arm_set_pc):
3615 (arm_breakpoint_at): Change prototype to take a regcache. Adjust.
3616 * linux-cris-low.c (cris_get_pc, cris_set_pc)
3617 (cris_cannot_fetch_register):
3618 (cris_breakpoint_at): Change prototype to take a regcache.
3619 Adjust.
3620 * linux-crisv32-low.c (cris_get_pc, cris_set_pc,
3621 cris_reinsert_addr, cris_write_data_breakpoint): Change prototype
3622 to take a regcache. Adjust.
3623 (cris_breakpoint_at, cris_insert_point, cris_remove_point):
3624 Adjust.
3625 * linux-m32r-low.c (m32r_get_pc, m32r_set_pc): Change prototype to
3626 take a regcache. Adjust.
3627 * linux-m68k-low.c (m68k_fill_gregset, m68k_store_gregset)
3628 (m68k_fill_fpregset, m68k_store_fpregset, m68k_get_pc,
3629 (m68k_set_pc): Change prototype to take a regcache. Adjust.
3630 * linux-mips-low.c (mips_get_pc):
3631 (mips_set_pc): Change prototype to take a regcache. Adjust.
3632 (mips_reinsert_addr): Adjust.
3633 (mips_collect_register): Change prototype to take a regcache.
3634 Adjust.
3635 (mips_supply_register):
3636 (mips_collect_register_32bit, mips_supply_register_32bit)
3637 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
3638 (mips_store_fpregset): Ditto.
3639 * linux-ppc-low.c (ppc_supply_ptrace_register, ppc_supply_ptrace_register):
3640 Ditto.
3641 (parse_spufs_run): Adjust.
3642 (ppc_get_pc, ppc_set_pc, ppc_fill_gregset, ppc_fill_vsxregset)
3643 (ppc_store_vsxregset, ppc_fill_vrregset, ppc_store_vrregset)
3644 (ppc_fill_evrregset, ppc_store_evrregset): Change prototype to
3645 take a regcache. Adjust.
3646 * linux-s390-low.c (s390_collect_ptrace_register)
3647 (s390_supply_ptrace_register, s390_fill_gregset, s390_get_pc)
3648 (s390_set_pc): Change prototype to take a regcache. Adjust.
3649 (s390_arch_setup): Adjust.
3650 * linux-sh-low.c (sh_get_pc, sh_breakpoint_at)
3651 (sh_fill_gregset): Change prototype to take a regcache. Adjust.
3652 * linux-sparc-low.c (sparc_fill_gregset_to_stack)
3653 (sparc_fill_gregset, sparc_store_gregset_from_stack)
3654 (sparc_store_gregset, sparc_get_pc): Change prototype to take a
3655 regcache. Adjust.
3656 (sparc_breakpoint_at): Adjust.
3657 * linux-xtensa-low.c (xtensa_fill_gregset):
3658 (xtensa_store_gregset):
3659 (xtensa_fill_xtregset, xtensa_store_xtregset, xtensa_get_pc)
3660 (xtensa_set_pc): Change prototype to take a regcache. Adjust.
3661 * nto-low.c (nto_fetch_registers, nto_store_registers): Change
3662 prototype to take a regcache. Adjust.
3663 * win32-arm-low.c (arm_fetch_inferior_register)
3664 (arm_store_inferior_register): Change prototype to take a
3665 regcache. Adjust.
3666 * win32-i386-low.c (i386_fetch_inferior_register)
3667 (i386_store_inferior_register): Change prototype to take a
3668 regcache. Adjust.
3669 * win32-low.c (child_fetch_inferior_registers)
3670 (child_store_inferior_registers): Change prototype to take a
3671 regcache. Adjust.
3672 (win32_wait): Adjust.
3673 (win32_fetch_inferior_registers): Change prototype to take a
3674 regcache. Adjust.
3675 (win32_store_inferior_registers): Adjust.
3676 * win32-low.h (struct win32_target_ops) <fetch_inferior_register,
3677 store_inferior_register>: Change prototype to take a regcache.
3678
60c3d7b0
DE
36792010-01-20 Doug Evans <dje@google.com>
3680
3681 * linux-low.c (linux_create_inferior): Wrap use of __SIGRTMIN in
3682 #ifdef.
3683 (linux_wait_for_event1, linux_init_signals): Ditto.
ec8ebe72 3684 (W_STOPCODE): Provide definition if missing.
60c3d7b0 3685
dc146f7c
VP
36862010-01-13 Vladimir Prus <vladimir@codesourcery.com>
3687
3688 * linux-low.c (linux_core_of_thread): New.
3689 (compare_ints, show_process, list_threads): New.
3690 (linux_qxfer_osdata): Report threads and cores.
3691 (linux_target_op): Register linux_core_of_thread.
3692 * remote-utils.c (prepare_resume_reply): Report the core.
3693 (buffer_xml_printf): Support %d specifier.
3694 * server.c (handle_threads_qxfer_proper, handle_threads_qxfer):
3695 New.
3696 (handle_query): Handle qXfer:threads. Announce availability
3697 thereof.
3698 * target.h (struct target_ops): New field core_of_thread.
3699
7803799a
UW
37002010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
3701
3702 * Makefile.in (clean): Remove new generated files.
3703 (reg-s390.o, reg-s390.c): Remove rules.
3704 (reg-s390x.o, reg-s390x.c): Likewise.
3705 (s390-linux32.o, s390-linux32.c): Add rules.
3706 (s390-linux64.o, s390-linux64.c): Likewise.
3707 (s390x-linux64.o, s390x-linux64.c): Likewise.
3708 * configure.srv (s390*-*-linux*): Update srv_regobj and srv_xmlfiles.
3709 * linux-s390-low.c: Include <elf.h>.
3710 (HWCAP_S390_HIGH_GPRS): Define if undefined.
3711 (init_registers_s390): Remove prototype.
3712 (init_registers_s390x): Likewise.
3713 (init_registers_s390_linux32): Add prototype.
3714 (init_registers_s390_linux64): Likewise.
3715 (init_registers_s390x_linux64): Likewise.
3716 (s390_num_regs_3264): New define.
3717 (s390_regmap_3264): New global variable.
3718 (s390_cannot_fetch_register): Remove obsolete check.
3719 (s390_cannot_store_register): Likewise.
3720 (s390_collect_ptrace_register): Handle upper/lower register halves.
3721 (s390_supply_ptrace_register): Likewise.
3722 (s390_fill_gregset): Update to register number changes.
3723 (s390_get_hwcap): New routine.
3724 (s390_arch_setup): Detect 32-bit process running on 64-bit system.
3725 Install appropriate regmap and register set.
3726
6e7ffa39
JB
37272010-01-01 Joel Brobecker <brobecker@adacore.com>
3728
3729 * server.c (gdbserver_version): Update copyright year to 2010.
3730 * gdbreplay.c (gdbreplay_version): Likewise.
3731
957f3f49
DE
37322009-12-28 Doug Evans <dje@google.com>
3733
3734 * linux-low.c: Delete inclusion of ansidecl.h, elf/common.h,
3735 elf/external.h. Include <elf.h> instead but only if necessary.
3736
ca5c370d
PA
37372009-12-28 Pedro Alves <pedro@codesourcery.com>
3738
3739 * linux-low.c (linux_remove_process): Remove `detaching'
3740 parameter. Don't release/detach from thread_db here.
3741 (linux_kill): Release/detach from thread_db here, ...
3742 (linux_detach): ... and here, before actually detaching.
3743 (linux_wait_1): ... and here, when a process exits.
3744 * thread-db.c (any_thread_of): New.
3745 (thread_db_free): Switch the current inferior to a thread of the
3746 passed in process.
3747
4ee62156
DE
37482009-12-21 Doug Evans <dje@google.com>
3749
d90e6a88
DE
3750 * linux-x86-low.c: Delete outdated comment about Elf32_Phdr.
3751
c5f62d5f
DE
3752 * linux-low.c (kill_lwp): Use __NR_tkill instead of SYS_tkill.
3753 Move definition of tkill_failed to ifdef __NR_tkill to avoid gcc
3754 warning ifndef __NR_tkill. Move setting of errno there too.
3755 Delete unnecessary resetting of errno after syscall.
3756 Minor comment changes to match gdb/linux-nat.c:kill_lwp.
3757
10e86dd7
DE
3758 * configure.ac: Check for dladdr.
3759 * config.in: Regenerate.
3760 * configure: Regenerate.
3761 * thread-db.c (dladdr_to_soname): Only define ifdef HAVE_DLADDR.
3762 (try_thread_db_load): Update.
3763
4ee62156
DE
3764 * linux-low.c (my_waitpid): Delete unnecessary prototype.
3765
00f515da
DE
37662009-12-18 Doug Evans <dje@google.com>
3767
e9464885
DE
3768 * event-loop.c: Include unistd.h if it exists.
3769
07d4f67e
DE
3770 * linux-low.c (my_waitpid): Move definition away from being in
3771 between linux_tracefork_child/linux_test_for_tracefork.
3772
00f515da
DE
3773 * gdb_proc_service.h (psaddr_t): Fix type.
3774 * thread-db.c (thread_db_info.td_thr_tls_get_addr_p): Fix
3775 signature to match glibc.
3776
1de1badb
DE
37772009-12-16 Doug Evans <dje@google.com>
3778
3779 * linux-low.c (linux_read_memory): Fix argument to read.
3780
aeeb81d1
PA
37812009-11-26 Pedro Alves <pedro@codesourcery.com>
3782
3783 * win32-low.c (get_child_debug_event): On EXIT_THREAD_DEBUG_EVENT
3784 events, don't leave current_inferior pointing at null.
3785
10357975
PA
37862009-11-26 Pedro Alves <pedro@codesourcery.com>
3787
3788 * win32-low.c (LOG): Delete.
3789 (OUTMSG): Output to stderr.
3790 (OUTMSG2): Conditionalize on `debug_threads' variable, instead of
3791 on compile time LOG macro.
3792 (win32_wait): Fix debug output.
3793
cf6e3471
PA
37942009-11-26 Pedro Alves <pedro@codesourcery.com>
3795
3796 * win32-low.c (win32_add_one_solib): If the dll name is
3797 "ntdll.dll", prepend the system directory to the dll path.
3798
0c85e18e
MK
37992009-11-17 Daniel Jacobowitz <dan@codesourcery.com>
3800
3801 * m68k-tdep.c (m68k_gdbarch_init): Reuse previous initialization.
3802
9ac544ce 38032009-11-17 Nathan Sidwell <nathan@codesourcery.com>
889bf7c5 3804 Vladimir Prus <vladimir@codesourcery.com>
9ac544ce
MK
3805
3806 * Makefile.in (reg-cf.o, reg-cf.c): New targets.
3807 * configure.ac: Check for __mcoldfire__ and set
3808 gdb_cv_m68k_is_coldfire.
3809 * configure.srv: Use gdb_cv_m68k_is_coldfire to select between
3810 reg-cf.o and reg-m68k.o.
3811 * configure: Regenerated.
3812
fd7dd3e6
PA
38132009-11-16 Pedro Alves <pedro@codesourcery.com>
3814
3815 * linux-low.c (linux_remove_process): Add `detaching' parameter.
3816 Pass it to thread_db_free.
3817 (linux_kill, linux_detach, linux_wait_1): Adjust to pass the
3818 proper `detaching' argument to linux_remove_process.
3819 * linux-low.h (thread_db_free): Add `detaching' parameter.
3820 * thread-db.c (thread_db_init): Pass false as `detaching' argument
3821 to thread_db_free.
3822 (thread_db_free): Add `detaching' parameter. Only
3823 call td_ta_clear_event if detaching from process.
3824
75aa492e
MK
38252009-11-12 Maxim Kuvyrkov <maxim@codesourcery.com>
3826
3827 * thread-db.c (thread_db_free): Fix typo.
3828
21e1bee4
PP
38292009-11-11 Paul Pluzhnikov <ppluzhnikov@google.com>
3830
3831 PR gdb/10838
3832 * thread-db.c (thread_db_free): Call td_ta_clear_event.
3833
8838b45e
NS
38342009-11-03 Nathan Sidwell <nathan@codesourcery.com>
3835
3836 * configure.ac (i[34567]86-*): Check if we're targetting x86-64
3837 with an i686 compiler.
3838 * configure.srv (i[34567]86-*-linux*): Pull in x86-64 handling if
3839 needed.
3840 * configure: Rebuilt.
3841
8a35fb51
SL
38422009-10-29 Sandra Loosemore <sandra@codesourcery.com>
3843
3844 PR gdb/10783
3845
3846 * server.c (handle_search_memory_1): Correct read_addr initialization
3847 in loop for searching subsequent chunks.
3848
96f15937
PP
38492009-10-29 Paul Pluzhnikov <ppluzhnikov@google.com>
3850
3851 * configure.ac: New --with-libthread-db option.
3852 * thread-db.c: Allow direct dependence on libthread_db.
3853 (thread_db_free): Adjust.
3854 * config.in: Regenerate.
3855 * configure: Likewise.
889bf7c5 3856
5f7d1694
PP
38572009-10-28 Paul Pluzhnikov <ppluzhnikov@google.com>
3858
3859 PR gdb/10757
3860 * thread-db.c (attach_thread): New function.
3861 (maybe_attach_thread): Return success/failure.
3862 (find_new_threads_callback): Adjust.
889bf7c5
PA
3863 (thread_db_find_new_threads): Loop until no new threads.
3864
88e3b899
PA
38652009-10-13 Pedro Alves <pedro@codesourcery.com>
3866
3867 * proc-service.c (ps_lgetregs): Formatting.
3868
cdbfd419
PP
38692009-10-08 Paul Pluzhnikov <ppluzhnikov@google.com>
3870
3871 * acinclude.m4: (SRV_CHECK_THREAD_DB, SRV_CHECK_TLS_GET_ADDR): Remove.
3872 * configure.ac: Adjust.
3873 * linux-low.h (struct process_info_private): Move members to struct
3874 thread_db.
3875 (thread_db_free, thread_db_handle_monitor_command): New prototype.
3876 * linux-low.c (linux_remove_process): Adjust.
3877 (linux_wait_for_event_1, linux_look_up_symbols): Likewise.
3878 * server.c (handle_query): Move code ...
3879 (handle_monitor_command): ... here. New function.
3880 * target.h (struct target_ops): New member.
3881 * thread-db.c (struct thread_db): New.
3882 (libthread_db_search_path): New variable.
3883 (thread_db_create_event, thread_db_enable_reporting)
3884 (find_one_thread, maybe_attach_thread, find_new_threads_callback)
3885 (thread_db_find_new_threads, (thread_db_get_tls_address): Adjust.
3886 (try_thread_db_load_1, dladdr_to_soname): New functions.
3887 (try_thread_db_load, thread_db_load_search): New functions.
3888 (thread_db_init): Search for libthread_db.
3889 (thread_db_free): New function.
3890 (thread_db_handle_monitor_command): Likewise.
3891 * config.in: Regenerate.
3892 * configure: Regenerate.
889bf7c5 3893
4168d2d6
UW
38942009-09-27 Ulrich Weigand <uweigand@de.ibm.com>
3895
3896 * spu-low.c (spu_kill): Wait for inferior to terminate.
3897 Call clear_inferiors.
3898 (spu_detach): Call clear_inferiors.
3899
81ecdfbb
RW
39002009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3901
3902 * aclocal.m4: Regenerate.
3903 * config.in: Likewise.
3904 * configure: Likewise.
3905
0b9ff2c0
UW
39062009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
3907
3908 * linux-ppc-low.c (INSTR_SC, NR_spu_run): Define.
3909 (parse_spufs_run): New function.
3910 (ppc_get_pc, ppc_set_pc): Detect and handle SPU PC.
3911 (ppc_breakpoint_at): Handle SPU breakpoints.
3912
efcbbd14
UW
39132009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
3914
3915 * linux-low.c: Include <sys/stat.h> and <sys/vfs.h>.
3916 (SPUFS_MAGIC): Define.
3917 (spu_enumerate_spu_ids): New function.
3918 (linux_qxfer_spu): New function.
3919 (linux_target_ops): Install linux_qxfer_spu.
3920
f4d9bade
UW
39212009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
3922
3923 * configure.srv (powerpc*-*-linux*): Add powerpc-cell32l.o
3924 and powerpc-cell64l.o to srv_regobj. Add rs6000/powerpc-cell32l.xml
3925 and rs6000/powerpc-cell64l.xml to srv_xmlfiles.
3926 * Makefile.in (powerpc-cell32l.o, powerpc-cell32l.c): New rules.
3927 (powerpc-cell64l.o, powerpc-cell64l.c): Likewise.
3928 (clean): Handle powerpc-cell32l.c and powerpc-cell64l.c.
3929 * linux-ppc-low.c (PPC_FEATURE_CELL): Define.
3930 (init_registers_powerpc_cell32l): Add prototype.
3931 (init_registers_powerpc_cell64l): Likewise.
3932 (ppc_arch_setup): Detect Cell/B.E. architecture.
3933
96e946ca
RW
39342009-07-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3935
3936 * Makefile.in (datarootdir): New variable.
3937
58d6951d
DJ
39382009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
3939
3940 * linux-low.c (linux_write_memory): Update debugging output.
3941 * Makefile.in (clean): Add new descriptions.
3942 (arm-with-vfpv2.o, arm-with-vfpv2.c, arm-with-vfpv3.o)
3943 (arm-with-vfpv3.c, arm-with-neon.o, arm-with-neon.c): New rules.
3944 * configure.srv: Add new files for arm*-*-linux*.
3945 * linux-arm-low.c: Add new declarations.
3946 (PTRACE_GETVFPREGS, PTRACE_SETVFPREGS): Define if undefined.
3947 (arm_hwcap, HWCAP_VFP, HWCAP_IWMMXT, HWCAP_NEON, HWCAP_VFPv3)
3948 (HWCAP_VFPv3D16): New.
3949 (arm_fill_wmmxregset, arm_store_wmmxregset): Check HWCAP_IWMMXT
3950 instead of __IWMMXT__.
3951 (arm_fill_vfpregset, arm_store_vfpregset, arm_get_hwcap)
3952 (arm_arch_setup): New.
3953 (target_regsets): Remove #ifdef. Add VFP regset.
3954 (the_low_target): Use arm_arch_setup.
3955
12b42a12
DJ
39562009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
3957
3958 * linux-low.c (linux_kill_one_lwp): Adjust kernel workaround to skip
3959 the main thread again.
3960
ac8c974e
AR
39612009-07-06 Aleksandar Ristovski <aristovski@qnx.com>
3962
3963 Adding Neutrino gdbserver.
3964 * configure: Regenerated.
3965 * configure.ac: Add case for srv_qnx and set LIBS accordingly.
3966 * configure.srv (i[34567]86-*-nto*): New target.
3967 * nto-low.c, nto-low.h, nto-x86-low.c: New files.
3968 * remote-utils.c [__QNX__]: Include sys/iomgr.h
3969 (nto_comctrl) [__QNX__]: New function.
3970 (enable_async_io, disable_async_io) [__QNX__]: Call nto_comctrl.
3971
4424e0c3 39722009-07-05 Danny Backx <dannybackx@users.sourceforge.net>
7437790a
PA
3973
3974 * configure.srv (i[34567]86-*-mingw32ce*): Add i386-low.o to
3975 srv_tgtobj.
3976
912cf4ba
PA
39772009-07-04 Danny Backx <dannybackx@users.sourceforge.net>
3978 Pedro Alves <pedro@codesourcery.com>
3979
3980 * win32-i386-low.c (i386_get_thread_context): Handle systems that
3981 don't support CONTEXT_EXTENDED_REGISTERS.
3982 (i386_win32_breakpoint, i386_win32_breakpoint_len): New.
3983 (the_low_target): Install them.
3984 * win32-low.c (get_child_debug_event): Handle WaitForDebugEvent
3985 failing with ERROR_PIPE_NOT_CONNECTED.
3986
aa5ca48f
DE
39872009-06-30 Doug Evans <dje@google.com>
3988 Pierre Muller <muller@ics.u-strasbg.fr>
3989
3990 Add h/w watchpoint support to x86-linux, win32-i386.
3991 * Makefile.in (SFILES): Add i386-low.c
3992 (i386_low_h): Define.
3993 (i386-low.o): Add dependencies.
3994 (linux-x86-low.o): Add i386-low.h dependency.
3995 (win32-i386-low.o): Ditto.
3996 * i386-low.c: New file.
3997 * i386-low.h: New file.
3998 * configure.srv (i[34567]86-*-cygwin*): Add i386-low.o to srv_tgtobj.
3999 (i[34567]86-*-linux*, i[34567]86-*-mingw*, x86_64-*-linux*): Ditto.
4000 * linux-low.c (linux_add_process): Initialize arch_private.
4001 (linux_remove_process): Free arch_private.
4002 (add_lwp): Initialize arch_private.
4003 (delete_lwp): Free arch_private.
4004 (linux_resume_one_lwp): Call the_low_target.prepare_to_resume if
4005 provided.
4006 * linux-low.h (process_info_private): New member arch_private.
4007 (lwp_info): New member arch_private.
4008 (linux_target_ops): New members new_process, new_thread,
4009 prepare_to_resume.
4010 (ptid_of): New macro.
4011 * linux-x86-low.c: Include stddef.h, i386-low.h.
4012 (arch_process_info): New struct.
4013 (arch_lwp_info): New struct.
4014 (x86_linux_dr_get, x86_linux_dr_set): New functions.
4015 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
4016 (i386_dr_low_get_status): New function.
4017 (x86_insert_point, x86_remove_point): New functions.
4018 (x86_stopped_by_watchpoint): New function.
4019 (x86_stopped_data_address): New function.
4020 (x86_linux_new_process, x86_linux_new_thread): New functions.
4021 (x86_linux_prepare_to_resume): New function.
4022 (the_low_target): Add entries for insert_point, remove_point,
4023 stopped_by_watchpoint, stopped_data_address, new_process, new_thread,
4024 prepare_to_resume.
4025 * server.c (debug_hw_points): New global.
4026 (monitor_show_help): Document set debug-hw-points.
4027 (handle_query): Process "set debug-hw-points".
4028 * server.h (debug_hw_points): Declare.
4029 (paddress): Declare.
4030 * utils.c (NUMCELLS, CELLSIZE): New macros.
4031 (get_sell, xsnprintf, paddress): New functions.
4032 * win32-arm-low.c (the_low_target): Add entries for insert_point,
4033 remove_point, stopped_by_watchpoint, stopped_data_address.
4034 * win32-i386-low.c: Include i386-low.h.
4035 (debug_reg_state): Replaces dr.
4036 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
4037 (i386_dr_low_get_status): New function.
4038 (i386_insert_point, i386_remove_point): New functions.
4039 (i386_stopped_by_watchpoint): New function.
4040 (i386_stopped_data_address): New function.
4041 (i386_initial_stuff): Update.
4042 (get_thread_context,set_thread_context,i386_thread_added): Update.
4043 (the_low_target): Add entries for insert_point,
4044 remove_point, stopped_by_watchpoint, stopped_data_address.
4045 * win32-low.c (win32_insert_watchpoint): New function.
4046 (win32_remove_watchpoint): New function.
4047 (win32_stopped_by_watchpoint): New function.
4048 (win32_stopped_data_address): New function.
4049 (win32_target_ops): Add entries for insert_watchpoint,
4050 remove_watchpoint, stopped_by_watchpoint, stopped_data_address.
4051 * win32-low.h (win32_target_ops): New members insert_point,
4052 remove_point, stopped_by_watchpoint, stopped_data_address.
4053
d993e290
PA
40542009-06-25 Pedro Alves <pedro@codesourcery.com>
4055
4056 * server.c (process_serial_event): Re-return unsupported, not
4057 error, if the type isn't recognized. Re-allow supporting only
4058 insert or remove packets. Also call require_running for
4059 breakpoints. Add missing break statement to default case. Tidy.
4060 * target.h (struct target_ops): Rename insert_watchpoint to
4061 insert_point, and remove_watchpoint to remove_point.
4062
4063 * linux-low.h (struct linux_target_ops): Likewise.
4064 * linux-low.c (linux_insert_watchpoint): Rename to ...
4065 (linux_insert_point): ... this. Adjust.
4066 (linux_remove_watchpoint): Rename to ...
4067 (linux_remove_point): ... this. Adjust.
4068 (linux_target_ops): Adjust.
4069 * linux-crisv32-low.c (cris_insert_watchpoint): Rename to ...
4070 (cris_insert_point): ... this.
4071 (cris_remove_watchpoint): Rename to ...
4072 (cris_remove_point): ... this.
4073 (the_low_target): Adjust.
4074
0f54c268
PM
40752009-06-24 Pierre Muller <muller@ics.u-strasbg.fr>
4076
4077 * server.c (handle_v_kill): Pass signal_pid to
4078 kill_inferior if multi_process is zero.
4079
c6314022
AR
40802009-06-23 Aleksandar Ristovski <aristovski@qnx.com>
4081
4082 * server.c (process_serial_event): Add support for Z0 and Z1 packet.
4083 * target.h (target_ops): Comment for *_watchpoint to make it clear
4084 the functions can get types '0' and '1'.
4085
4463ce24
AR
40862009-06-22 Aleksandar Ristovski <aristovski@qnx.com>
4087
4088 * linux-low.c (usr_fetch_inferior_registers): Remove check for regno 0.
4089 * proc-service.c (ps_lgetregs): Pass -1 to fetch all registers.
4090 * regcache.c (get_regcache): Likewise.
4091 * spu-low.c (spu_fetch_registers): Remove 0 to -1 conversion.
4092 * win32-low.c (child_fetch_inferior_registers): Remove check for
4093 regno 0.
4094
cf8fd78b
PA
40952009-06-19 Aleksandar Ristovski <aristovski@qnx.com>
4096 Pedro Alves <pedro@codesourcery.com>
4097
4098 * target.h (struct target_ops) <supports_multi_process>: New
4099 callback.
4100 (target_supports_multi_process): New.
4101 * server.c (handle_query): Even if GDB reports support, only
4102 enable multi-process if the target also supports it. Report
4103 multi-process support only if the target backend supports it.
4104 * linux-low.c (linux_supports_multi_process): New function.
4105 (linux_target_ops): Install it as target_supports_multi_process
4106 callback.
4107
47c0c975
DE
41082009-05-24 Doug Evans <dje@google.com>
4109
e09875d4
DE
4110 Global renaming of find_thread_pid to find_thread_ptid.
4111 * server.h (find_thread_ptid): Renamed from find_thread_pid.
4112 * inferiors.c (find_thread_ptid): Renamed from find_thread_pid.
4113 All callers updated.
4114
e27d73f6
DE
4115 * linux-low.c (handle_extended_wait): Use linux_resume_one_lwp
4116 to resume the newly created thread, don't call ptrace (PTRACE_CONT)
4117 directly.
4118
47c0c975
DE
4119 * linux-low.c (get_stop_pc): Print pc if debug_threads.
4120 (check_removed_breakpoint, linux_wait_for_lwp): Ditto.
4121 (linux_resume_one_lwp): Ditto.
4122
2acc282a
DE
41232009-05-23 Doug Evans <dje@google.com>
4124
4125 * linux-low.c (linux_resume_one_lwp): Change type of first arg
4126 from struct inferior_list_entry * to struct lwp_info *.
4127 All callers updated.
4128
9f1036c1
DE
41292009-05-13 Doug Evans <dje@google.com>
4130
4131 * linux-x86-low.c: Don't include assert.h.
4132 (x86_siginfo_fixup): Use fatal, not assert.
4133 (x86_arch_setup): Fix comment.
4134
d0722149
DE
41352009-05-12 Doug Evans <dje@google.com>
4136
4137 Biarch support for i386/amd64 gdbserver.
4138 * Makefile.in (SFILES): Remove linux-i386-low.c, linux-x86-64-low.c.
4139 Add linux-x86-low.c.
4140 (linux-i386-low.o, linux-x86-64-low.o): Delete.
4141 (linux-x86-low.o): Add.
4142 * linux-x86-64-low.c: Delete.
4143 * linux-i386-low.c: Delete.
4144 * linux-x86-low.c: New file.
4145 * configure.srv (i?86-linux srv_tgtobj): Replace linux-i386-low.o with
4146 linux-x86-low.o.
4147 (x86_64-linux srv_tgtobj): Replace linux-x86-64-low.o with
4148 linux-x86-low.o.
4149 (x86_64-linux srv_regobj): Add reg-i386-linux.o.
4150 * linux-low.c: Include ansidecl.h, elf/common.h, elf/external.h.
4151 (linux_child_pid_to_exec_file): New function.
4152 (elf_64_header_p, elf_64_file_p): New functions.
4153 (siginfo_fixup): New function.
4154 (linux_xfer_siginfo): New local inf_siginfo. Call siginfo_fixup to
4155 give target a chance to convert layout.
4156 * linux-low.h (linux_target_ops): New member siginfo_fixup.
4157 (linux_child_pid_to_exec_file, elf_64_file_p): Declare.
4158
fdeb2a12
DE
41592009-05-07 Doug Evans <dje@google.com>
4160
4161 * linux-low.c (regsets_fetch_inferior_registers): Fix memory leak.
4162 (regsets_store_inferior_registers): Ditto.
4163
a6dbe5df
PA
41642009-05-06 Pedro Alves <pedro@codesourcery.com>
4165
4166 PR server/10048
4167
4168 * linux-low.c (must_set_ptrace_flags): Delete.
4169 (linux_create_inferior): Set `lwp->must_set_ptrace_flags' instead
4170 of the global.
4171 (linux_attach_lwp_1): Don't set PTRACE_SETOPTIONS here. Set
4172 `lwp->must_set_ptrace_flags' instead.
ba42693b 4173 (linux_wait_for_event_1): Set ptrace options here.
a6dbe5df
PA
4174 (linux_wait_1): ... not here.
4175
5091eb23
DE
41762009-04-30 Doug Evans <dje@google.com>
4177
9f767825
DE
4178 * inferiors.c (started_inferior_callback): New function.
4179 (attached_inferior_callback): New function.
4180 (have_started_inferiors_p, have_attached_inferiors_p): New functions.
4181 * server.c (print_started_pid, print_attached_pid): New functions.
4182 (detach_or_kill_for_exit): New function.
4183 (main): Call it instead of for_each_inferior (kill_inferior_callback).
4184 * server.h (have_started_inferiors_p): Declare.
4185 (have_attached_inferiors_p): Declare.
4186
5091eb23
DE
4187 * inferiors.c (remove_process): Fix memory leak, free process.
4188 * linux-low.c (linux_remove_process): New function.
4189 (linux_kill): Call it instead of remove_process.
4190 (linux_detach, linux_wait_1): Ditto.
4191
155c8968
PA
41922009-04-19 Danny Backx <dannybackx@users.sourceforge.net>
4193
4194 * configure.srv: Add x86 Windows CE target.
4195
7fe519cb
UW
41962009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
4197
4198 * inferiors.c (get_thread_process): Make global.
4199 * server.h (get_thread_process): Add prototype.
4200 * thread-db.c (find_one_thread): Use get_thread_process
4201 instead of current_process.
4202 (thread_db_get_tls_address): Do not crash if called when
4203 thread layer is not yet initialized.
4204
5472f405
UW
42052009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
4206
4207 * remote-utils.c (prepare_resume_reply): Null-terminate packet.
4208 * spu-low.c (current_tid): Rename to ...
4209 (current_ptid): ... this.
4210 (fetch_ppc_register, fetch_ppc_memory, store_ppc_memory,
4211 spu_proc_xfer_spu, spu_resume, spu_request_interrupt): Use
4212 ptid_get_lwp (current_ptid) instead of current_tid.
4213 (spu_kill, spu_detach, spu_join, spu_wait): Use pid argument
4214 instead of current_tid. Use find_process_pid to verify pid
4215 argument is valid. Pass proper argument to remove_process.
4216 (spu_thread_alive): Compare current_ptid instead of current_tid.
4217 (spu_resume): Likewise.
4218
55ac2b99
PA
42192009-04-02 Pedro Alves <pedro@codesourcery.com>
4220
4221 * linux-low.c (usr_store_inferior_registers): Declare local `pid'
4222 variable.
4223
95954743
PA
42242009-04-01 Pedro Alves <pedro@codesourcery.com>
4225
4226 Implement the multiprocess extensions, and add linux multiprocess
4227 support.
4228
4229 * server.h (ULONGEST): Declare.
4230 (struct ptid, ptid_t): New.
4231 (minus_one_ptid, null_ptid): Declare.
4232 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
4233 (ptid_get_tid, ptid_equal, ptid_is_pid): Declare.
4234 (struct inferior_list_entry): Change `id' type from unsigned from
4235 to ptid_t.
4236 (struct sym_cache, struct breakpoint, struct
4237 process_info_private): Forward declare.
4238 (struct process_info): Declare.
4239 (current_process): Declare.
4240 (all_processes): Declare.
4241 (initialize_inferiors): Declare.
4242 (add_thread): Adjust to use ptid_t.
4243 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): Ditto.
4244 (add_process, remove_process, find_thread_pid): Declare.
4245 (find_inferior_id): Adjust to use ptid_t.
4246 (cont_thread, general_thread, step_thread): Change type to ptid_t.
4247 (multi_process): Declare.
4248 (push_event): Adjust to use ptid_t.
4249 (read_ptid, write_ptid): Declare.
4250 (prepare_resume_reply): Adjust to use ptid_t.
4251 (clear_symbol_cache): Declare.
4252 * inferiors.c (all_processes): New.
4253 (null_ptid, minus_one_ptid): New.
4254 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
4255 (ptid_get_tid, ptid_equal, ptid_is_pid): New.
4256 (add_thread): Change unsigned long to ptid. Remove gdb_id
4257 parameter. Adjust.
4258 (thread_id_to_gdb_id, thread_to_gdb_id): Change unsigned long to ptid.
4259 (gdb_id_to_thread): Rename to ...
4260 (find_thread_pid): ... this. Change unsigned long to ptid.
4261 (gdb_id_to_thread_id, find_inferior_id): Change unsigned long to ptid.
4262 (loaded_dll, pull_pid_from_list): Adjust.
4263 (add_process, remove_process, find_process_pid)
4264 (get_thread_process, current_process, initialize_inferiors): New.
4265 * target.h (struct thread_resume) <thread>: Change type to ptid_t.
4266 (struct target_waitstatus) <related_pid>: Ditto.
4267 (struct target_ops) <kill, detach>: Add `pid' argument. Change
4268 return type to int.
4269 (struct target_ops) <join>: Add `pid' argument.
4270 (struct target_ops) <thread_alive>: Change pid's type to ptid_t.
4271 (struct target_ops) <wait>: Add `ptid' field. Change return type
4272 to ptid.
4273 (kill_inferior, detach_inferior, join_inferior): Add `pid' argument.
4274 (mywait): Add `ptid' argument. Change return type to ptid_t.
4275 (target_pid_to_str): Declare.
4276 * target.c (set_desired_inferior): Adjust to use ptids.
4277 (mywait): Add new `ptid' argument. Adjust.
4278 (target_pid_to_str): New.
4279 * mem-break.h (free_all_breakpoints): Declare.
4280 * mem-break.c (breakpoints): Delelete.
4281 (set_breakpoint_at, delete_breakpoint, find_breakpoint_at)
4282 (check_mem_read, check_mem_write, delete_all_breakpoints): Adjust
4283 to use per-process breakpoint list.
4284 (free_all_breakpoints): New.
4285 * remote-utils.c (struct sym_cache) <name>: Drop `const'.
4286 (symbol_cache, all_symbols_looked_up): Delete.
4287 (hexchars): New.
4288 (ishex, unpack_varlen_hex, write_ptid, hex_or_minus_one,
4289 read_ptid): New.
4290 (prepare_resume_reply): Change ptid argument's type from unsigned
4291 long to ptid_t. Adjust. Implement W;process and X;process.
4292 (free_sym_cache, clear_symbol_cache): New.
4293 (look_up_one_symbol): Adjust to per-process symbol cache. *
4294 * server.c (cont_thread, general_thread, step_thread): Change type
4295 to ptid_t.
4296 (attached): Delete.
4297 (multi_process): New.
4298 (last_ptid): Change type to ptid_t.
4299 (struct vstop_notif) <ptid>: Change type to ptid_t.
4300 (queue_stop_reply, push_event): Change `ptid' argument's type to
4301 ptid_t.
4302 (discard_queued_stop_replies): Add `pid' argument.
4303 (start_inferior): Adjust to use ptids. Adjust to mywait interface
4304 changes. Don't reference the `attached' global.
4305 (attach_inferior): Adjust to mywait interface changes.
4306 (handle_query): Adjust to use ptids. Parse GDB's qSupported
4307 features. Handle and report "multiprocess+". Handle
4308 "qAttached:PID".
4309 (handle_v_cont): Adjust to use ptids. Adjust to mywait interface
4310 changes.
4311 (handle_v_kill): New.
4312 (handle_v_stopped): Adjust to use target_pid_to_str.
4313 (handle_v_requests): Allow multiple attaches and runs when
4314 multiprocess extensions are in effect. Handle "vKill".
4315 (myresume): Adjust to use ptids.
4316 (queue_stop_reply_callback): Add `arg' parameter. Handle it.
4317 (handle_status): Adjust to discard_queued_stop_replies interface
4318 change.
4319 (first_thread_of, kill_inferior_callback)
4320 (detach_or_kill_inferior_callback, join_inferiors_callback): New.
4321 (main): Call initialize_inferiors. Adjust to use ptids, killing
4322 and detaching from all inferiors. Handle multiprocess packet
4323 variants.
4324 * linux-low.h: Include gdb_proc_service.h.
4325 (struct process_info_private): New.
4326 (struct linux_target_ops) <pid_of>: Use ptid_get_pid.
4327 <lwpid_of>: Use ptid_get_lwp.
4328 (get_lwp_thread): Adjust.
4329 (struct lwp_info): Add `dead' member.
4330 (find_lwp_pid): Declare.
4331 * linux-low.c (thread_db_active): Delete.
4332 (new_inferior): Adjust comment.
4333 (inferior_pid): Delete.
4334 (linux_add_process): New.
4335 (handle_extended_wait): Adjust.
4336 (add_lwp): Change unsigned long to ptid.
4337 (linux_create_inferior): Add process to processes table. Adjust
4338 to use ptids. Don't set new_inferior here.
4339 (linux_attach_lwp): Rename to ...
4340 (linux_attach_lwp_1): ... this. Add `initial' argument. Handle
4341 it. Adjust to use ptids.
4342 (linux_attach_lwp): New.
4343 (linux_attach): Add process to processes table. Don't set
4344 new_inferior here.
4345 (struct counter): New.
4346 (second_thread_of_pid_p, last_thread_of_process_p): New.
4347 (linux_kill_one_lwp): Add `args' parameter. Handle it. Adjust to
4348 multiple processes.
4349 (linux_kill): Add `pid' argument. Handle it. Adjust to multiple
4350 processes. Remove process from process table.
4351 (linux_detach_one_lwp): Add `args' parameter. Handle it. Adjust
4352 to multiple processes.
4353 (any_thread_of): New.
4354 (linux_detach): Add `pid' argument, and handle it. Remove process
4355 from processes table.
4356 (linux_join): Add `pid' argument. Handle it.
4357 (linux_thread_alive): Change unsighed long argument to ptid_t.
4358 Consider dead lwps as not being alive.
4359 (status_pending_p): Rename `dummy' argument to `arg'. Filter out
4360 threads we're not interested in.
4361 (same_lwp, find_lwp_pid): New.
4362 (linux_wait_for_lwp): Change `pid' argument's type from int to
4363 ptid_t. Adjust.
4364 (linux_wait_for_event): Rename to ...
4365 (linux_wait_for_event_1): ... this. Change `pid' argument's type
4366 from int to ptid_t. Adjust.
4367 (linux_wait_for_event): New.
4368 (linux_wait_1): Add `ptid' argument. Change return type to
4369 ptid_t. Adjust. Use last_thread_of_process_p. Remove processes
4370 that exit from the process table.
4371 (linux_wait): Add `ptid' argument. Change return type to ptid_t.
4372 Adjust.
4373 (mark_lwp_dead): New.
4374 (wait_for_sigstop): Adjust to use ptids. If a process exits while
4375 stopping all threads, mark its main lwp as dead.
4376 (linux_set_resume_request, linux_resume_one_thread): Adjust to use
4377 ptids.
4378 (fetch_register, usr_store_inferior_registers)
4379 (regsets_fetch_inferior_registers)
4380 (regsets_store_inferior_registers, linux_read_memory)
4381 (linux_write_memory): Inline `inferior_pid'.
4382 (linux_look_up_symbols): Adjust to use per-process
4383 `thread_db_active'.
4384 (linux_request_interrupt): Adjust to use ptids.
4385 (linux_read_auxv): Inline `inferior_pid'.
4386 (initialize_low): Don't reference thread_db_active.
4387 * gdb_proc_service.h (struct ps_prochandle) <pid>: Remove.
4388 * proc-service.c (ps_lgetregs): Use find_lwp_pid.
4389 (ps_getpid): Return the pid of the current inferior.
4390 * thread-db.c (proc_handle, thread_agent): Delete.
4391 (thread_db_create_event, thread_db_enable_reporting): Adjust to
4392 per-process data.
4393 (find_one_thread): Change argument type to ptid_t. Adjust to
4394 per-process data.
4395 (maybe_attach_thread): Adjust to per-process data and ptids.
4396 (thread_db_find_new_threads): Ditto.
4397 (thread_db_init): Ditto.
4398 * spu-low.c (spu_create_inferior, spu_attach): Add process to
4399 processes table. Adjust to use ptids.
4400 (spu_kill, spu_detach): Adjust interface. Remove process from
4401 processes table.
4402 (spu_join, spu_thread_alive): Adjust interface.
4403 (spu_wait): Adjust interface. Remove process from processes
4404 table. Adjust to use ptids.
4405 * win32-low.c (current_inferior_tid): Delete.
4406 (current_inferior_ptid): New.
4407 (debug_event_ptid): New.
4408 (thread_rec): Take a ptid. Adjust.
4409 (child_add_thread): Add `pid' argument. Adjust to use ptids.
4410 (child_delete_thread): Ditto.
4411 (do_initial_child_stuff): Add `attached' argument. Add process to
4412 processes table.
4413 (child_fetch_inferior_registers, child_store_inferior_registers):
4414 Adjust.
4415 (win32_create_inferior): Pass 0 to do_initial_child_stuff.
4416 (win32_attach): Pass 1 to do_initial_child_stuff.
4417 (win32_kill): Adjust interface. Remove process from processes
4418 table.
4419 (win32_detach): Ditto.
4420 (win32_join): Adjust interface.
4421 (win32_thread_alive): Take a ptid.
4422 (win32_resume): Adjust to use ptids.
4423 (get_child_debug_event): Ditto.
4424 (win32_wait): Adjust interface. Remove exiting process from
4425 processes table.
4426
bd99dc85
PA
44272009-04-01 Pedro Alves <pedro@codesourcery.com>
4428
4429 Non-stop mode support.
4430
4431 * server.h (non_stop): Declare.
4432 (gdb_client_data, handler_func): Declare.
4433 (delete_file_handler, add_file_handler, start_event_loop):
4434 Declare.
4435 (handle_serial_event, handle_target_event, push_event)
4436 (putpkt_notif): Declare.
4437 * target.h (enum resume_kind): New.
4438 (struct thread_resume): Replace `step' field by `kind' field.
4439 (TARGET_WNOHANG): Define.
4440 (struct target_ops) <wait>: Add `options' argument.
4441 <supports_non_stop, async, start_non_stop>: New fields.
4442 (target_supports_non_stop, target_async): New.
4443 (start_non_stop): Declare.
4444 (mywait): Add `options' argument.
4445 * target.c (mywait): Add `options' argument. Print child exit
4446 notifications here.
4447 (start_non_stop): New.
4448 * server.c (non_stop, own_buf, mem_buf): New globals.
4449 (struct vstop_notif): New.
4450 (notif_queue): New global.
4451 (queue_stop_reply, push_event, discard_queued_stop_replies)
4452 (send_next_stop_reply): New.
4453 (start_inferior): Adjust to use resume_kind. Adjust to mywait
4454 interface changes.
4455 (attach_inferior): In non-stop mode, don't wait for the target
4456 here.
4457 (handle_general_set): Handle QNonStop.
4458 (handle_query): When handling qC, return the current general
4459 thread, instead of the first thread of the list.
4460 (handle_query): If the backend supports non-stop mode, include
4461 QNonStop+ in the qSupported query response.
4462 (handle_v_cont): Adjust to use resume_kind. Handle resume_stop
4463 and non-stop mode.
4464 (handle_v_attach, handle_v_run): Handle non-stop mode.
4465 (handle_v_stopped): New.
4466 (handle_v_requests): Report support for vCont;t. Handle vStopped.
4467 (myresume): Adjust to use resume_kind. Handle non-stop.
4468 (queue_stop_reply_callback): New.
4469 (handle_status): Handle non-stop mode.
4470 (main): Clear non_stop flag on reconnection. Use the event-loop.
4471 Refactor serial protocol handling from here ...
4472 (process_serial_event): ... to this new function. When GDB
4473 selects any thread, select one here. In non-stop mode, wait until
4474 GDB acks all pending events before exiting.
4475 (handle_serial_event, handle_target_event): New.
4476 * remote-utils.c (remote_open): Install remote_desc in the event
4477 loop.
4478 (remote_close): Remove remote_desc from the event loop.
4479 (putpkt_binary): Rename to...
4480 (putpkt_binary_1): ... this. Add `is_notic' argument. Handle it.
4481 (putpkt_binary): New as wrapper around putpkt_binary_1.
4482 (putpkt_notif): New.
4483 (prepare_resume_reply): In non-stop mode, don't change the
4484 general_thread.
4485 * event-loop.c: New.
4486 * Makefile.in (OBJ): Add event-loop.o.
4487 (event-loop.o): New rule.
4488
4489 * linux-low.h (pid_of): Moved here.
4490 (lwpid_of): New.
4491 (get_lwp_thread): Use lwpid_of.
4492 (struct lwp_info): Delete `lwpid' field. Add `suspended' field.
4493 * linux-low.c (pid_of): Delete.
4494 (inferior_pid): Use lwpid_of.
4495 (linux_event_pipe): New.
4496 (target_is_async_p): New.
4497 (delete_lwp): New.
4498 (handle_extended_wait): Use lwpid_of.
4499 (add_lwp): Don't set lwpid field.
4500 (linux_attach_lwp): Adjust debug output. Use lwpid_of.
4501 (linux_kill_one_lwp): If killing a running lwp, stop it first.
4502 Use lwpid_of. Adjust to linux_wait_for_event interface changes.
4503 (linux_detach_one_lwp): If detaching from a running lwp, stop it
4504 first. Adjust to linux_wait_for_event interface changes. Use
4505 lwpid_of.
4506 (linux_detach): Don't delete the main lwp here.
4507 (linux_join): Use my_waitpid. Avoid signal_pid. Use lwpid_of.
4508 (status_pending_p): Don't consider explicitly suspended lwps.
4509 (linux_wait_for_lwp): Take an integer pid instead of a lwp_info
4510 pointer. Add OPTIONS argument. Change return type to int. Use
4511 my_waitpid instead of sleeping. Handle WNOHANG. Use lwpid_of.
4512 (linux_wait_for_event): Take an integer pid instead of a lwp_info
4513 pointer. Add status pointer argument. Return a pid instead of a
4514 status. Use lwpid_of. Adjust to linux_wait_for_lwp interface
4515 changes. In non-stop mode, don't switch to a random thread.
4516 (linux_wait): Rename to...
4517 (linux_wait_1): ... this. Add target_options argument, and handle
4518 it. Adjust to use resume_kind. Use lwpid_of. In non-stop mode,
4519 don't handle the continue thread. Handle TARGET_WNOHANG. Merge
4520 clean exit and signal exit code. Don't stop all threads in
4521 non-stop mode. In all-stop mode, only stop all threads when
4522 reporting a stop to GDB. Handle explicit thread stop requests.
4523 (async_file_flush, async_file_mark): New.
4524 (linux_wait): New.
4525 (send_sigstop): Use lwpid_of.
4526 (wait_for_sigstop): Use lwpid_of. Adjust to linux_wait_for_event
4527 interface changes. In non-stop mode, don't switch to a random
4528 thread.
4529 (linux_resume_one_lwp): Use lwpid_of.
4530 (linux_continue_one_thread, linux_queue_one_thread): Merge into ...
4531 (linux_resume_one_thread): ... this. Handle resume_stop. In
4532 non-stop mode, don't look for pending flag in all threads.
4533 (resume_status_pending_p): Don't consider explicitly suspended
4534 threads.
4535 (my_waitpid): Reimplement. Emulate __WALL.
4536 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
4537 Use lwpid_of.
4538 (sigchld_handler, linux_supports_non_stop, linux_async)
4539 (linux_start_non_stop): New.
4540 (linux_target_ops): Register linux_supports_non_stop, linux_async
4541 and linux_start_non_stop.
4542 (initialize_low): Install SIGCHLD handler.
4543 * thread-db.c (thread_db_create_event, find_one_thread)
4544 (thread_db_get_tls_address): Use lwpid_of.
4545 * win32-low.c (win32_detach): Adjust to use resume_kind.
4546 (win32_wait): Add `options' argument.
4547 * spu-low.c (spu_resume): Adjust to use resume_kind.
4548 (spu_wait): Add `options' argument.
4549
5b1c542e
PA
45502009-04-01 Pedro Alves <pedro@codesourcery.com>
4551
4552 Decouple target code from remote protocol.
4553
4554 * target.h (enum target_waitkind): New.
4555 (struct target_waitstatus): New.
4556 (struct target_ops) <wait>: Return an unsigned long. Take a
4557 target_waitstatus pointer instead of a char pointer.
4558 (mywait): Likewise.
4559 * target.c (mywait): Change prototype to return an unsigned long.
4560 Take a target_waitstatus pointer instead of a char pointer. Adjust.
4561 * server.h (thread_from_wait, old_thread_from_wait): Delete
4562 declarations.
4563 (prepare_resume_reply): Change prototype to take a
4564 target_waitstatus.
4565 * server.c (thread_from_wait, old_thread_from_wait): Delete.
4566 (last_status, last_ptid): New.
4567 (start_inferior): Remove "statusptr" argument. Adjust. Return a
4568 pid instead of a signal.
4569 (attach_inferior): Remove "status" and "signal" parameters.
4570 Adjust.
4571 (handle_query): For qGetTLSAddr, parse the thread id with strtol,
4572 not as an address.
4573 (handle_v_cont, handle_v_attach, handle_v_run, handle_v_kill)
4574 (handle_v_requests, myresume): Remove "status" and "signal"
4575 parameters. Adjust.
4576 (handle_status): New.
4577 (main): Delete local `status'. Adjust.
4578 * remote-utils.c: Include target.h.
4579 (prepare_resume_reply): Change prototype to take a
4580 target_waitstatus. Adjust.
4581
4582 * linux-low.c (linux_wait): Adjust to new target_ops->wait
4583 interface.
4584 * spu-low.c (spu_wait): Adjust.
4585 * win32-low.c (enum target_waitkind, struct target_waitstatus):
4586 Delete.
4587 (win32_wait): Adjust.
4588
2bd7c093
PA
45892009-04-01 Pedro Alves <pedro@codesourcery.com>
4590
4591 * target.h (struct thread_resume): Delete leave_stopped member.
4592 (struct target_ops): Add a `n' argument to the `resume' callback.
4593 * server.c (start_inferior): Adjust.
4594 (handle_v_cont, myresume): Adjust.
4595 * linux-low.c (check_removed_breakpoint): Adjust to resume
4596 interface change, and to removed leave_stopped field.
4597 (resume_ptr): Delete.
4598 (struct thread_resume_array): New.
4599 (linux_set_resume_request): Add new `arg' parameter. Adjust to
4600 resume interface change.
4601 (linux_continue_one_thread, linux_queue_one_thread)
4602 (resume_status_pending_p): Check if the resume field is NULL
4603 instead of checking the leave_stopped member.
4604 (linux_resume): Adjust to the target resume interface change.
4605 * spu-low.c (spu_resume): Adjust to the target resume interface
4606 change.
4607 * win32-low.c (win32_detach, win32_resume): Ditto.
4608
c35fafde
PA
46092009-04-01 Pedro Alves <pedro@codesourcery.com>
4610
4611 * linux-low.c (linux_wait_for_event): Don't clear the `stepping'
4612 flag.
4613 (wait_for_sigstop): Don't leave a finished single-step SIGTRAP
4614 pending.
4615 (linux_continue_one_thread): Only preserve the stepping flag if
4616 there's a pending breakpoint.
4617
0a59d50b
PA
46182009-03-31 Pedro Alves <pedro@codesourcery.com>
4619
4620 * server.c (main): After the inferior having exited, call
4621 remote_close before exiting gdbserver.
4622
f04c6d38
TJB
46232009-03-25 Thiago Jung Bauermann <bauerman@br.ibm.com>
4624
4625 Fix size of FPSCR in Power 7 processors.
4626 * linux-ppc-low.c (PPC_FEATURE_ARCH_2_05): Remove #define.
4627 (PPC_FEATURE_HAS_DFP): New #define.
4628 (ppc_arch_setup): Check for DFP feature instead of ISA 2.05 to decide on
4629 size of the FPSCR.
4630
78e5cee6
PA
46312009-03-23 Pedro Alves <pedro@codesourcery.com>
4632
4633 * server.c (handle_query) Whitespace and formatting.
4634
1b3f6016
PA
46352009-03-22 Pedro Alves <pedro@codesourcery.com>
4636
4637 * i387-fp.c, linux-arm-low.c, linux-cris-low.c,
4638 linux-crisv32-low.c, linux-i386-low.c, linux-low.c,
4639 linux-mips-low.c, linux-s390-low.c, linux-sparc-low.c,
4640 linux-x86-64-low.c, linux-xtensa-low.c, proc-service.c,
4641 regcache.c, remote-utils.c, server.c, spu-low.c, target.h,
4642 thread-db.c, win32-low.c, xtensa-xtregs.c, gdbreplay.c,
4643 Makefile.in, configure.ac: Fix whitespace throughout.
4644 * configure: Regenerate.
4645
a07b2135
PA
46462009-03-22 Pedro Alves <pedro@codesourcery.com>
4647
4648 * inferiors.c (find_inferior): Make it safe for the callback
4649 function to delete the currently iterated inferior.
4650
67cc2626
PA
46512009-03-22 Pedro Alves <pedro@codesourcery.com>
4652
4653 * Makefile.in (linuw_low_h): Move higher.
4654 (thread-db.o): Depend on $(linux_low_h).
4655
54a0b537
PA
46562009-03-17 Pedro Alves <pedro@codesourcery.com>
4657
4658 Rename "process" to "lwp" throughout.
4659
4660 * linux-low.c (all_processes): Rename to...
4661 (all_lwps): ... this.
4662 (inferior_pid, handle_extended_wait, get_stop_pc): Adjust.
4663 (add_process): Rename to ...
4664 (add_lwp): ... this. Adjust.
4665 (linux_create_inferior): Adjust.
4666 (linux_attach_lwp): Adjust.
4667 (linux_attach): Adjust.
4668 (linux_kill_one_process): Rename to ...
4669 (linux_kill_one_lwp): ... this. Adjust.
4670 (linux_kill): Adjust.
4671 (linux_detach_one_process): Rename to ...
4672 (linux_detach_one_lwp): ... this. Adjust.
4673 (linux_detach): Adjust.
4674 (check_removed_breakpoint): Adjust.
4675 (status_pending_p): Adjust.
4676 (linux_wait_for_process): Rename to ...
4677 (linux_wait_for_lwp): ... this. Adjust.
4678 (linux_wait_for_event): Adjust.
4679 (send_sigstop): Adjust.
4680 (wait_for_sigstop): Adjust.
4681 (stop_all_processes): Rename to ...
4682 (stop_all_lwps): ... this.
4683 (linux_resume_one_process): Rename to ...
4684 (linux_resume_one_lwp): ... this. Adjust.
4685 (linux_set_resume_request, linux_continue_one_thread)
4686 (linux_queue_one_thread, resume_status_pending_p)
4687 (usr_store_inferior_registers, regsets_store_inferior_registers)
4688 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
4689 Adjust.
4690 * linux-low.h (get_process): Rename to ...
4691 (get_lwp): ... this. Adjust.
4692 (get_thread_process): Rename to ...
4693 (get_thread_lwp): ... this. Adjust.
4694 (get_process_thread): Rename to ...
4695 (get_lwp_thread): ... this. Adjust.
4696 (struct process_info): Rename to ...
4697 (struct lwp_info): ... this.
4698 (all_processes): Rename to ...
4699 (all_lwps): ... this.
4700 * proc-service.c (ps_lgetregs): Adjust.
4701 * thread-db.c (thread_db_create_event, find_one_thread)
4702 (maybe_attach_thread, thread_db_get_tls_address): Adjust.
4703
0b16c5cf
PA
47042009-03-14 Pedro Alves <pedro@codesourcery.com>
4705
4706 * server.c (handle_query): Handle "qAttached".
4707
32de4b9d
NS
47082009-03-13 Nathan Sidwell <nathan@codesourcery.com>
4709
4710 * Makefile.in, hostio-errno.c, errno.c, xtensa-xtregs.c: Change to
4711 GPLv3, update license URL.
4712
2aecd87f
DE
47132009-03-01 Doug Evans <dje@google.com>
4714
93efd302 4715 * Makefile.in (INCLUDE_CFLAGS): Add -I$(srcdir)/../common.
2aecd87f
DE
4716 (server_h): Add gdb_signals.h.
4717 (signals.o): Update.
4718 * server.h (target_signal_from_host,target_signal_to_host_p)
4719 (target_signal_to_host,target_signal_to_name): Moved to gdb_signals.h.
4720
86b1f9c5
PM
47212009-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
4722
4723 * remote-utils.c (getpkt): Also generate remote-debug
4724 information if noack_mode is set.
4725
4aa995e1
PA
47262009-02-06 Pedro Alves <pedro@codesourcery.com>
4727
4728 * server.c (handle_query): Report qXfer:siginfo:read and
4729 qXfer:siginfo:write as supported and handle them.
4730 * target.h (struct target_ops) <qxfer_siginfo>: New field.
4731 * linux-low.c (linux_xfer_siginfo): New.
4732 (linux_target_ops): Set it.
4733
62709adf
PA
47342009-01-26 Pedro Alves <pedro@codesourcery.com>
4735
4736 * server.c (gdbserver_usage): Mention --remote-debug.
4737 (main): Accept '--remote-debug' switch.
4738
aef93bd7
DE
47392009-01-18 Doug Evans <dje@google.com>
4740
4741 * regcache.c (new_register_cache): No need to check result of xcalloc.
4742 * server.c (handle_search_memory): Back out calls to xmalloc,
4743 result is checked and error is returned to user upon failure.
4744 (handle_query): Ditto. Add more checks for result of malloc.
4745 (handle_v_cont): Check result of malloc, report error back to
4746 user upon failure.
4747 (handle_v_run): Ditto. Call freeargv.
4748 * server.h (freeargv): Declare.
4749 * utils.c (freeargv): New fn.
4750
54363045
DE
47512009-01-15 Doug Evans <dje@google.com>
4752
f626972c
DE
4753 * gdbreplay.c (perror_with_name): Make arg const char *.
4754 * server.h (target_signal_to_name): Make return type const char *.
0842e787 4755 * thread-db.c (thread_db_err_str): Make return type const char *.
f626972c 4756 * utils.c (perror_with_name): Make arg const char *.
54363045 4757
18aae699
PA
47582009-01-14 Pedro Alves <pedro@codesourcery.com>
4759
4760 * win32-low.c (get_child_debug_event): Issue a final DBG_CONTINUE
4761 when handling a EXIT_PROCESS_DEBUG_EVENT.
4762
ff703abe
JB
47632009-01-06 Joel Brobecker <brobecker@adacore.com>
4764
4765 * gdbreplay.c (gdbreplay_version): Update copyright year.
4766 * server.c (gdbserver_version): Likewise.
4767
f21cc1a2 47682009-01-05 Doug Evans <dje@google.com>
0e21c1ec
DE
4769
4770 * linux-low.c (linux_attach_lwp): Add some comments/fixmes.
f21cc1a2 4771 (handle_extended_wait): Improve comment.
0e21c1ec 4772
bca929d3
DE
47732008-12-13 Doug Evans <dje@google.com>
4774
4775 * utils.c (xmalloc,xcalloc,xstrdup): New fns.
4776 * server.h (ATTR_MALLOC): New macro.
4777 (xmalloc,xcalloc,xstrdup): Declare.
4778 * hostio.c: Replace malloc,calloc,strdup with xmalloc,xcalloc,xstrdup.
4779 * inferiors.c: Ditto.
4780 * linux-low.c: Ditto.
4781 * mem-break.c: Ditto.
4782 * regcache.c: Ditto.
4783 * remote-utils.c: Ditto.
4784 * server.c: Ditto.
4785 * target.c: Ditto.
4786 * win32-low.c: Ditto.
4787
97438e3f
DE
47882008-12-12 Doug Evans <dje@google.com>
4789
896c7fbb
DE
4790 * linux-low.c (linux_wait_for_process): Don't clobber current_inferior
4791 in debugging printf.
4792
97438e3f
DE
4793 * linux-low.c (handle_extended_wait): Simplify, use my_waitpid.
4794
e3b886f8
DE
47952008-12-09 Doug Evans <dje@google.com>
4796
4797 * linux-low.h (struct process_info): Delete member tid, unused.
4798 * thread-db.c (find_one_thread): Update.
4799 (maybe_attach_thread): Update.
4800
07e059b5
VP
48012008-12-02 Pedro Alves <pedro@codesourcery.com>
4802
889bf7c5
PA
4803 * target.h (struct target_ops): Add qxfer_osdata member.
4804 * linux-low.c: Include ctype.h and pwd.h and sys/types.h
4805 and dirent.h.
4806 (linux_qxfer_osdata): New functions.
4807 (linux_target_ops): Register linux_qxfer_osdata as qxfer_osdata
4808 callback.
4809 * server.c (handle_query): Handle "qXfer:osdata:read:".
4810 * remote-utils.c (buffer_grow, buffer_free, buffer_init, buffer_finish)
4811 (buffer_xml_printf): New functions.
4812 * server.h (struct buffer): New.
4813 (buffer_grow_str, buffer_grow_str0): New macros.
4814 (buffer_grow, buffer_free, buffer_init, buffer_finish)
4815 (buffer_xml_printf): Declare.
07e059b5 4816
4cab47ab
DE
48172008-11-24 Doug Evans <dje@google.com>
4818
4819 * Makefile.in (VERSION,DIST,LINT,LINTFLAGS): Delete, unused.
4820
f142445f
DJ
48212008-11-24 Daniel Jacobowitz <dan@codesourcery.com>
4822
4823 * server.c (handle_v_run): Always use the supplied argument list.
4824
d0107bb6 48252008-11-19 Bob Wilson <bob.wilson@acm.org>
889bf7c5 4826
d0107bb6
BW
4827 * xtensa-xtregs.c (XTENSA_ELF_XTREG_SIZE): Change to 4.
4828 (xtensa_regmap_table): Add entry for scompare1.
889bf7c5 4829
2c4ad781
TJB
48302008-11-18 Thiago Jung Bauermann <bauerman@br.ibm.com>
4831
4832 * Makefile.in (powerpc-isa205-32l.o, powerpc-isa205-32l.c,
4833 powerpc-isa205-altivec32l.o, powerpc-isa205-altivec32l.c,
4834 powerpc-isa205-vsx32l.o, powerpc-isa205-vsx32l.c,
4835 powerpc-isa205-64l.o, powerpc-isa205-64l.c,
4836 powerpc-isa205-altivec64l.o, powerpc-isa205-altivec64l.c,
4837 powerpc-isa205-vsx64l.o, powerpc-isa205-vsx64l.c): New targets.
4838 * configure.srv (powerpc*-*-linux*): Add ISA 2.05 object files and
4839 XML target descriptions.
4840 * linux-ppc-low.c (ppc_arch_setup): Init registers with 64-bit FPSCR
4841 when inferior is running on an ISA 2.05 or later processor. Add
4842 special case to return offset for full 64-bit slot of FPSCR when
4843 in 32-bits.
4844
dfb64f85
DJ
48452008-11-14 Daniel Gutson <dgutson@codesourcery.com>
4846
4847 * Makefile.in (SFILES, clean): Added sparc64 files.
4848 (reg-sparc64.o, reg-sparc64.c): New.
4849 * configure.srv (sparc*-*-linux*): New configuration.
4850 * linux-low.c (regsets_fetch_inferior_registers): Swap ptrace
4851 syscall arguments for SPARC.
4852 (regsets_store_inferior_registers): Likewise.
4853 * linux-sparc-low.c: New file.
4854
66b6e1dd
DE
48552008-10-21 Doug Evans <dje@google.com>
4856
4857 * Makefile.in (BFD_DIR,BFD,BFD_SRC,BFD_CFLAGS): Delete.
4858 (READLINE_DIR,READLINE_DEP): Delete.
4859 (INTERNAL_CFLAGS): Update.
4860 (LINTFLAGS): Update.
4861
9b710a42
PA
48622008-10-10 Pedro Alves <pedro@codesourcery.com>
4863
4864 * server.c (handle_v_run): If GDB didn't specify an argv, use the
4865 whole argv from the last run, not just argv[0].
4866
5822d809
PA
48672008-09-08 Pedro Alves <pedro@codesourcery.com>
4868
4869 * regcache.c (new_register_cache): Return NULL if the register
4870 cache size isn't known yet.
4871 (free_register_cache): Avoid dereferencing a NULL regcache.
4872
74aac56f
DJ
48732008-09-04 Daniel Jacobowitz <dan@codesourcery.com>
4874
4875 * configure.srv: Merge MIPS and MIPS64.
4876
400b20f5
MR
48772008-08-24 Maciej W. Rozycki <macro@linux-mips.org>
4878
4879 * Makefile.in (uninstall): Apply $(EXEEXT) too.
4880
677c5bb1
LM
48812008-08-18 Luis Machado <luisgpm@br.ibm.com>
4882
4883 * Makefile.in: Add required vsx dependencies.
4884
4885 * linux-ppc-low: Define PPC_FEATURE_HAS_VSX.
4886 Declare init_registers_powerpc_vsx32l.
4887 Declare init_registers_powerpc_vsx64l.
4888 Define PTRACE_GETVSXREGS and PTRACE_SETVSXREGS.
4889 (ppc_arch_setup): Check for VSX in hwcap.
4890 (ppc_fill_vsxregset): New function.
4891 (ppc_store_vsxregset): New function.
4892 Add new VSX entry in regset_info target_regsets.
4893
4894 * configure.srv: Add new VSX dependencies.
4895
a6f3e723
SL
48962008-08-12 Pedro Alves <pedro@codesourcery.com>
4897
4898 * remote-utils.c (noack_mode, transport_is_reliable): New globals.
4899 (remote_open): Set or clear transport_is_reliable.
4900 (putpkt_binary): Don't expect acks in noack mode.
4901 (getpkt): Don't send ack/nac in noack mode.
4902 * server.c (handle_general_set): Handle QStartNoAckMode.
4903 (handle_query): If connected by tcp pass QStartNoAckMode+ in
4904 qSupported.
4905 (main): Reset noack_mode on every connection.
4906 * server.h (noack_mode): Declare.
4907
a417dc56
RW
49082008-08-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4909
4910 * Makefile.in (GDBREPLAY_OBS): New variable.
4911 (gdbreplay$(EXEEXT)): Use it to avoid unportable $^.
4912
3221518c
UW
49132008-08-05 Ulrich Weigand <uweigand@de.ibm.com>
4914 Daniel Jacobowitz <dan@codesourcery.com>
4915
4916 * linux-low.c (linux_resume_one_process): Ignore ESRCH.
4917 (usr_store_inferior_registers): Likewise.
4918 (regsets_store_inferior_registers): Likewise.
4919
ec56be1b
PA
49202008-07-31 Rolf Jansen <rj@surtec.com>
4921 Pedro Alves <pedro@codesourcery.com>
4922
4923 * configure.ac: Check for memmem declaration.
4924 * server.c [HAVE_MALLOC_H]: Include malloc.h.
4925 (disable_packet_vCont, disable_packet_Tthread, disable_packet_qC)
4926 (disable_packet_qfThreadInfo): Unconditionally compile.
4927 * server.h [!HAVE_DECL_MEMMEM]: Declare memmem.
4928 * configure, config.in: Regenerate.
4929
2fe5e3ff
DE
49302008-07-28 Doug Kwan <dougkwan@google.com>
4931
4932 * linux-low.c (sys/dir.h, sys/user.h): Remove includes.
4933 (linux_write_memory): Remove declaration of errno.
4934
836acd6d
UW
49352008-07-12 Ulrich Weigand <uweigand@de.ibm.com>
4936
4937 * linux-low.c (handle_extended_wait): Do not use "status"
4938 variable uninitialized.
4939
aeba519e
PA
49402008-07-07 Pedro Alves <pedro@codesourcery.com>
4941
4942 * server.c (handle_v_attach): Inhibit reporting dll changes.
4943
db42f210
PA
49442008-06-27 Pedro Alves <pedro@codesourcery.com>
4945
4946 * remote-utils.c (prepare_resume_reply): If requested, don't
4947 output "thread:TID" in the T stop reply.
4948
4949 * server.c (disable_packet_vCont, disable_packet_Tthread)
4950 (disable_packet_qC, disable_packet_qfThreadInfo): New globals.
4951 (handle_query): If requested, disable support for qC, qfThreadInfo
4952 and qsThreadInfo.
4953 (handle_v_requests): If requested, disable support for vCont.
4954 (gdbserver_show_disableable): New.
4955 (main): Handle --disable-packet and --disable-packet=LIST.
4956
4957 * server.h (disable_packet_vCont, disable_packet_Tthread)
4958 (disable_packet_qC, disable_packet_qfThreadInfo): Declare.
4959
8e4c5421
CD
49602008-06-20 Carlos O'Donell <carlos@codesourcery.com>
4961
4962 * server.c (gdbserver_usage): Mention --version.
4963
6e23a804
DJ
49642008-06-06 Daniel Jacobowitz <dan@codesourcery.com>
4965
4966 * Makefile.in (gdbreplay.o): New rule.
4967
90aa6a40
JM
49682008-06-06 Joseph Myers <joseph@codesourcery.com>
4969
4970 * gdbreplay.c (gdbreplay_version): Say gdbreplay in version
4971 message, not gdbserver.
4972
c16158bc 49732008-06-05 Vladimir Prus <vladimir@codesourcery.com>
889bf7c5
PA
4974 Nathan Sidwell <nathan@codesourcery.com>
4975 Joseph Myers <joseph@codesourcery.com>
c16158bc
JM
4976
4977 * acinclude.m4: Include ../../config/acx.m4.
4978 * configure.ac: Use ACX_PKGVERSION and ACX_BUGURL.
4979 * configure, config.in: Regenerate.
4980 * Makefile.in (gdbreplay$(EXEEXT)): Add version.o.
4981 * server.c (gdbserver_version): Print PKGVERSION.
4982 (gdbsrever_usage): Add stream parameter. Print REPORT_BUGS_TO.
4983 (main): Adjust gdbserver_usage calls.
4984 * gdbreplay.c (version, host_name): Add declarations.
4985 (gdbreplay_version, gdbreplay_usage): New.
4986 (main): Accept --version and --help options.
4987
aeb75bf5
DJ
49882008-06-04 Daniel Jacobowitz <dan@codesourcery.com>
4989
4990 * linux-arm-low.c (thumb_breakpoint, thumb_breakpoint_len): New.
4991 (arm_breakpoint_at): Handle Thumb.
4992 (the_low_target): Add comment.
4993
76b233dd
UW
49942008-05-29 Ulrich Weigand <uweigand@de.ibm.com>
4995
4996 * linux-ppc-low.c (ppc_collect_ptrace_register): Clear buffer.
4997
08388c79
DE
49982008-05-09 Doug Evans <dje@google.com>
4999
a3c83fae
DE
5000 * server.h (decode_search_memory_packet): Declare.
5001 * remote-utils.c (decode_search_memory_packet): New fn.
5002 * server.c (handle_search_memory_1): New fn.
08388c79
DE
5003 (handle_search_memory): New fn.
5004 (handle_query): Process qSearch:memory packets.
5005
bb9c3d36
UW
50062008-05-08 Ulrich Weigand <uweigand@de.ibm.com>
5007
5008 * regcache.c (registers_length): Remove.
5009 (set_register_cache): Verify that PBUFSIZ is large enough to hold a
5010 full register packet.
5011 * regcache.h (registers_length): Remove prototype.
5012 * server.h (PBUFSIZ): Define to 16384.
5013
7284e1be
UW
50142008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
5015
5016 * configure.srv (powerpc*-*-linux*): Set srv_regobj to
5017 powerpc-32l.o, powerpc-altivec32l.o, powerpc-e500l.o,
5018 powerpc-64l.o, and powerpc-altivec64l.o.
5019 Remove rs6000/powerpc-32.xml, rs6000/powerpc-64.xml, and
5020 rs6000/powerpc-e500.xml; add rs6000/powerpc-32l.xml,
5021 rs6000/powerpc-altivec32l.xml, rs6000/powerpc-e500l.xml,
5022 rs6000/powerpc-64l.xml, rs6000/powerpc-altivec64l.xml,
5023 rs6000/power-linux.xml, and rs6000/power64-linux.xml
5024 to srv_xmlfiles.
5025
5026 * Makefile.in (reg-ppc.o, reg-ppc.c): Remove, replace by ...
5027 (powerpc-32l.o, powerpc-32l.c): ... these new rules.
5028 (powerpc-32.o, powerpc-32.c): Remove, replace by ...
5029 (powerpc-altivec32l.o, powerpc-altivec32l.c): ... these new rules.
5030 (powerpc-e500.o, powerpc-e500.c): Remove, replace by ...
5031 (powerpc-e500l.o, powerpc-e500l.c): ... these new rules.
5032 (reg-ppc64.o, reg-ppc64.c): Remove, replace by ...
5033 (powerpc-64l.o, powerpc-64l.c): ... these new rules.
5034 (powerpc-64.o, powerpc-64.c): Remove, replace by ...
5035 (powerpc-altivec64l.o, powerpc-altivec64l.c): ... these new rules.
5036 (clean): Update.
5037
5038 * linux-ppc-low.c (init_registers_ppc): Remove, replace by ...
5039 (init_registers_powerpc_32l): ... this new prototype.
5040 (init_registers_powerpc_32): Remove, replace by ...
5041 (init_registers_powerpc_altivec32l): ... this new prototype.
5042 (init_registers_powerpc_e500): Remove, replace by ...
5043 (init_registers_powerpc_e500l): ... this new prototype.
5044 (init_registers_ppc64): Remove, replace by ...
5045 (init_registers_powerpc_64l): ... this new prototype.
5046 (init_registers_powerpc_64): Remove, replace by ...
5047 (init_registers_powerpc_altivec64l): ... this new prototype.
5048 (ppc_num_regs): Set to 73.
5049 (PT_ORIG_R3, PT_TRAP): Define if necessary.
5050 (ppc_regmap, ppc_regmap_e500): Add values for orig_r3 and trap.
5051 (ppc_cannot_store_register): Handle orig_r3 and trap.
5052 (ppc_arch_setup): Update init_registers_... calls.
5053 (ppc_fill_gregset): Handle orig_r3 and trap.
5054
5055 * inferiors.c (clear_inferiors): Reset current_inferior.
5056
fdc59709
PB
50572008-04-23 Paolo Bonzini <bonzini@gnu.org>
5058
889bf7c5
PA
5059 * acinclude.m4: Add override.m4.
5060 * configure: Regenerate.
fdc59709 5061
c9b2f845
UW
50622008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
5063
5064 * linux-ppc-low.c (ppc_arch_setup): Reset ppc_hwcap after the
5065 initial call to init_register_ppc64.
5066
550512b8
UW
50672008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
5068
5069 * configure.srv (powerpc64-*-linux*, powerpc-*-linux*): Merge into single
5070 powerpc*-*-linux* case.
5071 (s390-*-linux*, s390x-*-linux*): Merge into single s390*-*-linux* case.
5072
b6430ec3
UW
50732008-04-17 Ulrich Weigand <uweigand@de.ibm.com>
5074
5075 * configure.srv [powerpc64-*-linux*]: Remove powerpc-e500.o from
889bf7c5 5076 srv_regobj. Remove rs6000/powerpc-e500.xml and rs6000/power-spe.xml
b6430ec3
UW
5077 from reg_xmlfiles.
5078 * linux-ppc-low.c: Include <elf.h>.
5079 (PPC_FEATURE_HAS_ALTIVEC, PPC_FEATURE_HAS_SPE): Define.
5080 (ppc_hwcap): New global variable.
5081 (ppc_regmap): Remove __SPE__ #ifdef sections.
5082 (ppc_regmap_e500): New global variable.
5083 (ppc_cannot_store_register): Update __SPE__ special case.
5084 (ppc_get_hwcap): New function.
5085 (ppc_arch_setup): Use it to determine whether inferior supports
5086 AltiVec or SPE registers. Set the_low_target.regmap if appropriate.
5087 (ppc_fill_vrregset, ppc_store_vrregset): Define unconditionally.
5088 Do not access registers if target does not support AltiVec.
5089 (ppc_fill_evrregset, ppc_store_evrregset): Define unconditionally.
5090 Do not access registers if target does not support SPE.
5091 (target_regsets): Unconditionally include AltiVec and SPE regsets.
5092
52fa2412
UW
50932008-04-17 Daniel Jacobowitz <dan@codesourcery.com>
5094
5095 * linux-low.c (disabled_regsets, num_regsets): New.
5096 (use_regsets_p): Delete.
5097 (linux_wait_for_process): Clear disabled_regsets.
5098 (regsets_fetch_inferior_registers): Check and set it.
5099 (regsets_store_inferior_registers): Likewise.
5100 (linux_fetch_registers, linux_store_registers): Do not use
5101 use_regsets_p.
5102 (initialize_low): Allocate disabled_regsets.
5103
e28b3332
DJ
51042008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
5105
5106 * Makefile.in (LIBOBJS): New.
5107 (OBS): Use LIBOBJS.
5108 (memmem.o): New rule.
5109 * configure.ac: Use AC_CONFIG_LIBOBJ_DIR and check for memmem.
5110 * configure: Regenerated.
5111
4536995d
UW
51122008-04-04 Ulrich Weigand <uweigand@de.ibm.com>
5113
5114 * server.c (handle_query): Never return "unsupported" for
5115 qXfer:features:read queries.
5116
221c031f
UW
51172008-03-27 Ulrich Weigand <uweigand@de.ibm.com>
5118
5119 * server.c (get_features_xml): Fix inverted condition.
5120 (handle_query): Always support qXfer:feature:read.
5121
ccd213ac
DJ
51222008-03-10 Daniel Jacobowitz <dan@codesourcery.com>
5123
5124 * server.c (wrapper_argv): New.
5125 (start_inferior): Handle wrapper_argv. If set, expect an extra
5126 trap.
5127 (gdbserver_usage): Document --wrapper.
5128 (main): Parse --wrapper.
5129
6fe305f7
UW
51302008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
5131
5132 * configure.srv [powerpc64-*-linux*]: Add all files mentioned for
5133 powerpc-*-linux* to srv_regobj and reg_xmlfiles.
5134 * linux-ppc-low.c (ppc_get_pc): Support bi-arch operation.
5135 (ppc_set_pc): Likewise.
5136 (ppc_arch_setup): New function.
5137 (ppc_fill_gregset): Call ppc_collect_ptrace_register instead
5138 of collect_register.
889bf7c5 5139 (the_low_target): Use ppc_arch_setup as arch_setup initializer.
6fe305f7 5140
5b0a002e
UW
51412008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
5142
5143 * configure.srv [powerpc64-*-linux*]: Use linux-ppc-low.o
5144 instead of linux-ppc64-low.o.
5145 * linux-ppc64-low.c: Remove file.
5146 * Makefile.in (SFILES): Remove linux-ppc64-low.c.
5147 (linux-ppc64-low.o): Remove rule.
5148
5149 * linux-ppc-low.c (init_registers_ppc64): Add prototype.
5150 (init_registers_powerpc_64): Likewise.
5151 (ppc_regmap): Conditionally define depending on __powerpc64__.
5152 (ppc_cannot_store_register): Do not special-case "fpscr" when
5153 compiled on __powerpc64__.
5154 (ppc_collect_ptrace_register): New function.
5155 (ppc_supply_ptrace_register): New function.
5156 (ppc_breakpoint): Change type to "unsigned int".
5157 (ppc_breakpoint_at): Change type of "insn" to "unsigned int".
5158 (the_low_target): Conditionally provide initializers for the
889bf7c5 5159 arch_setup member depending on __powerpc64__. Install
5b0a002e
UW
5160 collect_ptrace_register and supply_ptrace_register members.
5161
9b4b61c8
UW
51622008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
5163
5164 * regcache.h (gdbserver_xmltarget): Add extern declaration.
5165 * server.c (gdbserver_xmltarget): Define.
5166 (get_features_xml): Use it to replace "target.xml" and arch_string.
5167
5168 * configure.srv: Remove srv_xmltarget. Add XML files that were
5169 mentioned there to srv_xmlfiles instead. Remove conditional tests
5170 on gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe; set
5171 srv_xmlfiles and srv_regobj to include all possible choices.
5172 * configure.ac (srv_xmltarget): Remove.
5173 (srv_xmlfiles): Do not add "target.xml".
5174 (gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe): Remove
5175 checks for supplementary target information.
5176 * configure: Regenerate.
5177 * Makefile.in (XML_TARGET): Remove.
5178 (target.xml): Remove rule.
5179 (clean): Do not clean up target.xml.
5180 (.PRECIOUS): Do not mention target.xml.
5181
5182 * target.h (struct target_ops): Remove arch_string member.
5183 * linux-low.c (linux_arch_string): Remove.
5184 (linux_target_ops): Remove arch_string initializer.
5185 * linux-low.h (struct linux_target_ops): Remove arch_string member.
5186 * linux-i386-low.c (the_low_target): Remove arch_string initializer.
5187 * linux-x86-64-low.c (the_low_target): Remove arch_string initializer.
5188 * spu-low.c (spu_arch_string): Remove.
5189 (spu_target_ops): Remove arch_string initializer.
5190 * win32-low.c (win32_arch_string): Remove.
5191 (win32_target_ops): Remove arch_string initializer.
5192 * win32-low.h (struct win32_target_ops): Remove arch_string member.
5193 * win32-arm-low.c (the_low_target): Remove arch_string initializer.
5194 * win32-i368-low.c (the_low_target): Remove arch_string initializer.
5195
ee1a7ae4
UW
51962008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
5197
5198 * linux-low.h (struct linux_target_ops): Replace left_pad_xfer field
5199 by collect_ptrace_register and supply_ptrace_register hooks.
5200 * linux-low.c (fetch_register): Use supply_ptrace_register callback
5201 instead of checking for the_low_target.left_pad_xfer.
5202 (usr_store_inferior_registers): Use collect_ptrace_register callback
5203 instead of checking for the_low_target.left_pad_xfer.
5204
5205 * linux-s390-low.c (s390_collect_ptrace_register): New function.
5206 (s390_supply_ptrace_register): Likewise.
5207 (s390_fill_gregset): Call s390_collect_ptrace_register.
5208 (the_low_target): Update.
5209
5210 * linux-ppc64-low.c (ppc_collect_ptrace_register): New function.
5211 (ppc_supply_ptrace_register): Likewise.
5212 (the_low_target): Update.
5213
5214 * linux-i386-low.c (the_low_target): Update.
5215 * linux-x86-64-low.c (the_low_target): Update.
5216
d61ddec4
UW
52172008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
5218
5219 * configure.srv [s390x-*-linux*]: Set srv_regobj to include both
5220 reg-s390.o and reg-s390x.o.
5221
5222 * linux-low.c (new_inferior): New global variable.
5223 (linux_create_inferior, linux_attach): Set it.
5224 (linux_wait_for_process): Call the_low_target.arch_setup after the
5225 target has stopped for the first time.
5226 (initialize_low): Do not call the_low_target.arch_setup.
5227
5228 * linux-s390-low.c (s390_get_pc): Support bi-arch operation.
5229 (s390_set_pc): Likewise.
5230 (s390_arch_setup): New function.
5231 (the_low_target): Use s390_arch_setup as arch_setup routine.
5232
5233 * regcache.c (realloc_register_cache): New function.
5234 (set_register_cache): Call it for each existing regcache.
5235
d05b4ac3
UW
52362008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
5237
5238 * server.h (init_registers): Remove prototype.
5239
5240 * linux-low.h (struct linux_target_ops): Add arch_setup field.
5241 * linux-low.c (initialize_low): Call the_low_target.arch_setup ()
5242 instead of init_registers ().
5243 * linux-arm-low.c (init_registers_arm): Add prototype.
5244 (init_registers_arm_with_iwmmxt): Likewise.
5245 (the_low_target): Add initializer for arch_setup field.
5246 * linux-cris-low.c (init_registers_cris): Add prototype.
5247 (the_low_target): Add initializer for arch_setup field.
5248 * linux-crisv32-low.c (init_registers_crisv32): Add prototype.
5249 (the_low_target): Add initializer for arch_setup field.
5250 * linux-i386-low.c (init_registers_i386_linux): Add prototype.
5251 (the_low_target): Add initializer for arch_setup field.
5252 * linux-ia64-low.c (init_registers_ia64): Add prototype.
5253 (the_low_target): Add initializer for arch_setup field.
5254 * linux-m32r-low.c (init_registers_m32r): Add prototype.
5255 (the_low_target): Add initializer for arch_setup field.
5256 * linux-m68k-low.c (init_registers_m68k): Add prototype.
5257 (the_low_target): Add initializer for arch_setup field.
5258 * linux-mips-low.c (init_registers_mips_linux): Add prototype.
5259 (init_registers_mips64_linux): Likewise.
5260 (the_low_target): Add initializer for arch_setup field.
5261 * linux-ppc-low.c (init_registers_ppc): Add prototype.
5262 (init_registers_powerpc_32, init_registers_powerpc_e500): Likewise.
5263 (the_low_target): Add initializer for arch_setup field.
5264 * linux-ppc64-low.c (init_registers_ppc64): Add prototype.
5265 (init_registers_powerpc_64): Likewise.
5266 (the_low_target): Add initializer for arch_setup field.
5267 * linux-s390-low.c (init_registers_s390): Add prototype.
5268 (init_registers_s390x): Likewise.
5269 (the_low_target): Add initializer for arch_setup field.
5270 * linux-sh-low.c (init_registers_sh): Add prototype.
5271 (the_low_target): Add initializer for arch_setup field.
5272 * linux-x86-64-low.c (init_registers_x86_64_linux): Add prototype.
5273 (the_low_target): Add initializer for arch_setup field.
5274 * linux-xtensa-low.c (init_registers_xtensa): Add prototype.
5275 (the_low_target): Add initializer for arch_setup field.
5276
5277 * win32-low.h (struct win32_target_ops): Add arch_setup field.
5278 * win32-low.c (initialize_low): Call the_low_target.arch_setup ()
5279 instead of init_registers ().
5280 * win32-arm-low.c (init_registers_arm): Add prototype.
5281 (the_low_target): Add initializer for arch_setup field.
5282 * win32-i386-low.c (init_registers_i386): Add prototype.
5283 (the_low_target): Add initializer for arch_setup field.
5284
5285 * spu-low.c (init_registers_spu): Add prototype.
5286 (initialize_low): Call initialie_registers_spu () instead of
5287 initialize_registers ().
5288
fd96d250
PA
52892008-02-19 Pedro Alves <pedro@codesourcery.com>
5290
5291 * server.c (handle_v_requests): When handling the vRun and vAttach
5292 packets, if already debugging a process, don't kill it. Return an
5293 error instead.
5294
d41b6bb4
DJ
52952008-02-17 Daniel Jacobowitz <dan@codesourcery.com>
5296
5297 * server.c (handle_query): Correct length check.
5298
5ac588cf
PA
52992008-02-14 Pedro Alves <pedro_alves@portugalmail.pt>
5300
5301 * win32-low.c (do_initial_child_stuff): Add process handle
5302 parameter. Set current_process_handle and current_process_id from the
5303 parameters. Clear globals.
5304 (win32_create_inferior): Don't set current_process_handle and
5305 current_process_id here. Instead pass them on the call to
5306 do_initial_child_stuff.
5307 (win32_attach): Likewise.
5308 (win32_clear_inferiors): New.
5309 (win32_kill): Don't close the current process handle or the
5310 current thread handle here. Instead call win32_clear_inferiors.
5311 (win32_detach): Don't open a new handle to the process. Call
5312 win32_clear_inferiors.
5313 (win32_join): Don't rely on current_process_handle; open a new
5314 handle using the process id.
5315 (win32_wait): Call win32_clear_inferiors when the inferior process
5316 has exited.
5317
ecd7ecbc
DJ
53182008-02-14 Daniel Jacobowitz <dan@codesourcery.com>
5319
5320 * server.c (monitor_show_help): Add "exit".
5321
1525d545
MG
53222008-02-11 Maxim Grigoriev <maxim2405@gmail.com>
5323
ecd7ecbc 5324 * Makefile.in (SFILES): Add linux-xtensa-low.c.
1525d545
MG
5325 (clean): Add reg-xtensa.c.
5326 (linux-xtensa-low.o, reg-xtensa.o, reg-xtensa.c): New dependencies.
ecd7ecbc
DJ
5327 * configure.srv (xtensa*-*-linux*) New target.
5328 * linux-xtensa-low.c: New.
5329 * xtensa-xtregs.c: New.
1525d545 5330
59a016f0
PA
53312008-02-01 Pedro Alves <pedro_alves@portugalmail.pt>
5332
5333 * hostio.c: Don't include errno.h.
5334 (errno_to_fileio_errno): Move to hostio-errno.
5335 * hostio.c: (hostio_error): Remove the error parameter. Defer the
5336 error number outputting to the target->hostio_last_error callback.
5337 (hostio_packet_error): Use FILEIO_EINVAL directly.
5338 (handle_open, handle_pread, hostio_error, handle_unlink): Update
5339 calls to hostio_error.
5340 * hostio-errno.c: New.
5341 * server.h (hostio_last_error_from_errno): Declare.
5342 * target.h (target_ops): Add hostio_last_error member.
5343 * linux-low.c (linux_target_op): Register hostio_last_error_from_errno
5344 as hostio_last_error handler.
889bf7c5 5345 * spu-low.c (spu_target_ops): Likewise.
59a016f0
PA
5346 * win32-low.c [_WIN32_WCE] (win32_error_to_fileio_error)
5347 (wince_hostio_last_error): New functions.
5348 (win32_target_ops) [_WIN32_WCE]: Register wince_hostio_last_error
5349 as hostio_last_error handler.
5350 (win32_target_ops) [!_WIN32_WCE]: Register
5351 hostio_last_error_from_errno as hostio_last_error handler.
5352 * Makefile.in (SFILES): Add hostio.c and hostio-errno.c.
5353 (hostio-errno.o): New rule.
5354 * configure.ac (GDBSERVER_DEPFILES): Add $srv_hostio_err_objs.
5355 * configure.srv (srv_hostio_err_objs): New variable. Default to
5356 hostio-errno.o.
5357 (arm*-*-mingw32ce*): Set srv_hostio_err_objs to "".
5358 * configure: Regenerate.
5359
2d717e4f
DJ
53602008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
5361
5362 * linux-low.c (linux_attach_lwp): Do not _exit after errors.
5363 (linux_kill, linux_detach): Clean up the process list.
5364 * remote-utils.c (remote_open): Improve port number parsing.
5365 (putpkt_binary, input_interrupt): Only send interrupts if the target
5366 is running.
5367 * server.c (extended_protocol): Make static.
5368 (attached): Define earlier.
5369 (exit_requested, response_needed, program_argv): New variables.
5370 (target_running): New.
5371 (start_inferior): Clear attached here.
5372 (attach_inferior): Set attached here.
5373 (require_running): Define.
5374 (handle_query): Use require_running and target_running. Implement
5375 "monitor exit".
5376 (handle_v_attach, handle_v_run): New.
5377 (handle_v_requests): Use require_running. Handle vAttach and vRun.
5378 (gdbserver_usage): Update.
5379 (main): Redo argument parsing. Handle --debug and --multi. Handle
5380 --attach along with other options or after the port. Save
5381 program_argv. Support no initial program. Resynchronize
5382 communication with GDB after an error. Handle "monitor exit".
5383 Use require_running and target_running. Always allow the extended
5384 protocol. Do not error out for Hc0 or Hc-1. Do not automatically
5385 restart in extended mode.
5386 * README: Refer to the GDB manual. Update --attach usage.
5387
7407e2de
AS
53882007-12-20 Andreas Schwab <schwab@suse.de>
5389
5390 * linux-low.c (STACK_SIZE): Define.
5391 (linux_tracefork_child): Use it. Use __clone2 on ia64.
5392 (linux_test_for_tracefork): Likewise.
5393
b65d95c5
DJ
53942007-12-18 Daniel Jacobowitz <dan@codesourcery.com>
5395
5396 * linux-low.c (linux_wait_for_event): Update messages. Do not
5397 reinsert auto-delete breakpoints.
5398 * mem-break.c (struct breakpoint): Change return type of handler to
5399 int.
5400 (set_breakpoint_at): Update handler type.
5401 (reinsert_breakpoint_handler): Return 1 instead of calling
5402 delete_breakpoint.
5403 (reinsert_breakpoint_by_bp): Check for the original breakpoint before
5404 setting a new one.
5405 (check_breakpoints): Delete auto-delete breakpoints and return 2.
5406 * mem-break.h (set_breakpoint_at): Update handler type.
5407 * thread-db.c (thread_db_create_event, thread_db_create_event): Update.
5408 * win32-low.c (auto_delete_breakpoint): New.
5409 (get_child_debug_event): Use it.
5410
4e799345
DJ
54112007-12-16 Daniel Jacobowitz <dan@codesourcery.com>
5412
5413 * configure.ac: Check for pread and pwrite.
5414 * hostio.c (handle_pread): Fall back to lseek and read.
5415 (handle_pwrite): Fall back to lseek and write.
5416 * config.in, configure: Regenerated.
5417
27524b67
DJ
54182007-12-07 Daniel Jacobowitz <dan@codesourcery.com>
5419
5420 * server.c (myresume): Add own_buf argument.
5421 (main): Update calls.
5422
a20d5e98
DJ
54232007-12-06 Daniel Jacobowitz <dan@codesourcery.com>
5424
5425 * linux-low.c (linux_wait, linux_resume): Do not handle async I/O.
5426 * remote-utils.c (remote_open): Do not call disable_async_io.
5427 (block_async_io): Delete.
5428 (unblock_async_io): Make static.
5429 (initialize_async_io): New.
5430 * server.c (handle_v_cont): Handle async I/O here.
5431 (myresume): Likewise. Move other common resume tasks here...
5432 (main): ... from here. Call initialize_async_io. Disable async
5433 I/O before the main loop.
5434 * server.h (initialize_async_io): Declare.
5435 (block_async_io, unblock_async_io): Delete prototypes.
5436 * spu-low.c (spu_resume, spu_wait): Do not handle async I/O here.
5437
b79d787e
DJ
54382007-12-06 Mick Davis <mickd@goanna.iinet.net.au>
5439
5440 * remote-utils.c (readchar): Allow binary data in received messages.
5441
d97903b2
PA
54422007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
5443
5444 * win32-low.c (attaching): New global.
5445 (win32_create_inferior): Clear the `attaching' global.
5446 (win32_attach): Set the `attaching' global.
5447 (get_child_debug_event) [_WIN32_WCE]: Stop the inferior when
5448 attaching. Only set a breakpoint at the entry point if not
5449 attaching.
5450
311de423
PA
54512007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
5452
5453 * server.c (main): Don't report dll events on the initial
5454 connection on attaches.
5455
6c2d16d2
PA
54562007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
5457
5458 * server.c (main): Relax numerical bases supported for the pid of
5459 the --attach command line argument.
5460
5ca906e6
PA
54612007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
5462
5463 * win32-low.c (win32_attach): Call OpenProcess before
5464 DebugActiveProcess, not after. Add last error output to error
5465 call.
5466
9c6c8194
PA
54672007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
5468
5469 * win32-low.c (win32_get_thread_context)
5470 (win32_set_thread_context): New functions.
5471 (thread_rec): Use win32_get_thread_context.
5472 (continue_one_thread, win32_resume): Use win32_set_thread_context.
5473 * win32-low.h (win32_thread_info) [_WIN32_WCE]: Add `base_context'
5474 field.
5475
4d5d1aaa
PA
54762007-12-03 Leo Zayas
5477 Pedro Alves <pedro_alves@portugalmail.pt>
5478
5479 * win32-low.c (soft_interrupt_requested, faked_breakpoint): New
5480 global variables.
5481 (child_add_thread): Minor cleanup.
5482 (child_continue): Resume artificially suspended threads before
5483 calling ContinueDebugEvent.
5484 (suspend_one_thread): New.
5485 (fake_breakpoint_event): New.
5486 (get_child_debug_event): Change return type to int. Check here if
5487 gdb sent an interrupt request. If a soft interrupt was requested,
5488 fake a breakpoint event. Return 0 if there is no event to handle,
5489 and 1 otherwise.
5490 (win32_wait): Don't check here if gdb sent an interrupt request.
5491 Ensure there is a valid event to handle.
5492 (win32_request_interrupt): Add soft interruption method as last
5493 resort.
5494
c436e841
PA
54952007-12-03 Leo Zayas
5496 Pedro Alves <pedro_alves@portugalmail.pt>
5497
5498 * win32-low.h (win32_thread_info): Add descriptions to the
5499 structure members. Replace `suspend_count' counter by a
5500 `suspended' flag.
5501 * win32-low.c (thread_rec): Update condition of when to get the
5502 context from the inferior. Rely on ContextFlags being set if it
5503 has already been retrieved. Only suspend the inferior thread if
5504 we haven't already. Warn if that fails.
5505 (continue_one_thread): s/suspend_count/suspended/. Only call
5506 ResumeThread once. Warn if that fails.
5507
e7b5fa67
PA
55082007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
5509
5510 * win32-low.c (win32_wait): Don't read from the inferior when it
5511 has already exited.
5512
a385171d
PA
55132007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
5514
5515 * Makefile.in (win32_low_h): New variable.
5516 (win32-low.o): Add dependency on $(win32_low_h).
5517 (win32-arm-low.o, win32-i386-low.o): New rules.
5518
f80c84b3
DJ
55192007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
5520
5521 * hostio.c: Correct copyright year.
5522
a6b151f1
DJ
55232007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
5524
5525 * Makefile.in (OBS): Add hostio.o.
5526 (hostio.o): New rule.
5527 * server.h (handle_vFile): Declare.
5528 * hostio.c: New file.
5529 * server.c (handle_v_requests): Take packet_len and new_packet_len
5530 for binary packets. Call handle_vFile.
5531 (main): Update call to handle_v_requests.
5532
f9387fc3
DJ
55332007-11-05 Daniel Jacobowitz <dan@codesourcery.com>
5534
5535 * linux-low.c: Include <sched.h>.
5536
51c2684e
DJ
55372007-11-01 Daniel Jacobowitz <dan@codesourcery.com>
5538
5539 * linux-low.c (linux_tracefork_grandchild): New.
5540 (linux_tracefork_child): Use clone.
5541 (linux_test_for_tracefork): Use clone; allocate and free a stack.
5542
75f83163
JB
55432007-10-31 Joel Brobecker <brobecker@adacore.com>
5544
5545 * Makefile.in: Use $(SHELL) instead of "sh" to call regdat.sh.
5546
da5898ce
DJ
55472007-10-24 Daniel Jacobowitz <dan@codesourcery.com>
5548
5549 * linux-low.c (handle_extended_wait): Handle unexpected signals.
5550
24a09b5f
DJ
55512007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
5552
5553 * inferiors.c (change_inferior_id): Delete.
5554 (add_pid_to_list, pull_pid_from_list): New.
5555 * linux-low.c (PTRACE_SETOPTIONS, PTRACE_GETEVENTMSG)
5556 (PTRACE_O_TRACESYSGOOD, PTRACE_O_TRACEFORK, PTRACE_O_TRACEVFORK)
5557 (PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXEC, PTRACE_O_TRACEVFORKDONE)
5558 (PTRACE_O_TRACEEXIT, PTRACE_EVENT_FORK, PTRACE_EVENT_VFORK)
5559 (PTRACE_EVENT_CLONE, PTRACE_EVENT_EXEC, PTRACE_EVENT_VFORK_DONE)
5560 (PTRACE_EVENT_EXIT, __WALL): Provide default definitions.
5561 (stopped_pids, thread_db_active, must_set_ptrace_flags): New variables.
5562 (using_threads): Always set to 1.
5563 (handle_extended_wait): New.
5564 (add_process): Do not set TID.
5565 (linux_create_inferior): Set must_set_ptrace_flags.
5566 (linux_attach_lwp): Remove TID argument. Do not check using_threads.
5567 Use PTRACE_SETOPTIONS. Call new_thread_notify. Update all callers.
5568 (linux_thread_alive): Rename TID argument to LWPID.
5569 (linux_wait_for_process): Handle unknown processes. Do not use TID.
5570 (linux_wait_for_event): Do not use TID or check using_threads. Update
5571 call to dead_thread_notify. Call handle_extended_wait.
5572 (linux_create_inferior): Use PTRACE_SETOPTIONS.
5573 (send_sigstop): Delete sigstop_sent.
5574 (wait_for_sigstop): Avoid TID.
5575 (linux_supports_tracefork_flag, linux_tracefork_child, my_waitpid)
5576 (linux_test_for_tracefork): New.
5577 (linux_lookup_signals): Use thread_db_active and
5578 linux_supports_tracefork_flag.
5579 (initialize_low): Use thread_db_active and linux_test_for_tracefork.
5580 * linux-low.h (get_process_thread): Avoid TID.
5581 (struct process_ifo): Move thread_known and tid to the end. Remove
5582 sigstop_sent.
5583 (linux_attach_lwp, thread_db_init): Update prototypes.
5584 * server.h (change_inferior_id): Delete prototype.
5585 (add_pid_to_list, pull_pid_from_list): New prototypes.
5586 * thread-db.c (thread_db_use_events): New.
5587 (find_first_thread): Rename to...
5588 (find_one_thread): ...this. Update callers and messages. Do not
5589 call fatal. Check thread_db_use_events. Do not call
5590 change_inferior_id or new_thread_notify.
5591 (maybe_attach_thread): Update. Do not call new_thread_notify.
5592 (thread_db_init): Set thread_db_use_events. Check use_events.
5593 * utils.c (fatal, warning): Correct message prefix.
5594
30ed0a8f
DJ
55952007-10-15 Daniel Jacobowitz <dan@codesourcery.com>
5596
5597 * Makefile.in (clean): Remove new files.
5598 (powerpc-32.o, powerpc-32.c, powerpc-e500.o, powerpc-e500.c)
5599 (powerpc-64.o, powerpc-64.c): New rules.
5600 * configure.srv: Use alternate register sets for powerpc64-*-linux*
5601 with AltiVec, powerpc-*-linux* with AltiVec, and powerpc-*-linux*
5602 with SPE.
5603 * linux-ppc-low.c (ppc_regmap): Do not fetch the FP registers for
5604 SPE targets.
5605 (ppc_cannot_store_register): Do not check for FPSCR for SPE targets.
5606 (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS, ppc_fill_vrregset)
5607 (ppc_store_vrregset, PTRACE_GETEVRREGS, PTRACE_SETEVRREGS)
5608 (struct gdb_evrregset_t, ppc_fill_evrregset, ppc_store_evrregset): New.
5609 (target_regsets): Add AltiVec and SPE register sets.
5610 * configure.ac: Check for AltiVec and SPE.
5611 * linux-ppc64-low.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS)
5612 (ppc_fill_vrregset, ppc_store_vrregset): New.
5613 (target_regsets): Add AltiVec register set.
5614 * configure: Regenerated.
5615
fd462a61
DJ
56162007-09-19 Daniel Jacobowitz <dan@codesourcery.com>
5617
5618 * linux-low.c (O_LARGEFILE): Define.
5619 (linux_read_memory): Use /proc/PID/mem.
5620 * configure.ac: Use AC_GNU_SOURCE. Check for pread64.
5621 * configure, config.in: Regenerated.
5622
69f223ed
DJ
56232007-09-04 Daniel Jacobowitz <dan@codesourcery.com>
5624
5625 * linux-low.c (linux_wait_for_event): Do not pass signals while
5626 single-stepping.
5627
aec18585
PA
56282007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
5629
5630 * win32-low.c (create_process): New.
5631 (win32_create_inferior): Use create_process instead of
5632 CreateProcess. If create_process failed retry appending an ".exe"
5633 suffix. Store the GetLastError result immediatelly after
5634 create_process calls and use it on the call to error.
5635
34d86ddd
PA
56362007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
5637
5638 * win32-low.c (handle_load_dll): Don't use toolhelp when waiting.
5639
5a0e3bd0
JB
56402007-08-23 Joel Brobecker <brobecker@adacore.com>
5641
5642 * configure.ac: Switch license to GPLv3.
5643
f88c79e6
MS
56442007-08-01 Michael Snyder <msnyder@access-company.com>
5645
5646 * remote-utils.c (putpkt_binary): Memory leak, free buf2.
5647
6b3d9b83
PA
56482007-07-31 Pedro Alves <pedro_alves@portugalmail.pt>
5649
5650 * win32-low.c (winapi_CloseToolhelp32Snapshot) [_WIN32_WCE]: New
5651 typedef.
5652 (win32_CloseToolhelp32Snapshot) [_WIN32_WCE]: New global var.
5653 (load_toolhelp) [_WIN32_WCE]: Load TOOLHELP.DLL. Get
5654 CloseToolhelp32Snapshot.
5655 (toolhelp_get_dll_name) [_WIN32_WCE]: Close the snapshot with
5656 CloseToolhelp32Snapshot.
5657
c588c53c
MS
56582007-07-27 Michael Snyder <michael.snyder@access-company.com>
5659
5660 * server.c (main): Check for inferior exit before main loop.
5661
aa0403d9
PA
56622007-07-18 Pedro Alves <pedro_alves@portugalmail.pt>
5663
5664 * remote-utils.c (remote_open): Set SO_KEEPALIVE on remote_desc
5665 instead of on tmp_desc.
5666
255e7678
DJ
56672007-07-17 Pedro Alves <pedro_alves@portugalmail.pt>
5668 Daniel Jacobowitz <dan@codesourcery.com>
5669
5670 * inferiors.c (all_dlls, dlls_changed, get_dll): New.
5671 (add_thread): Minor cleanups.
5672 (clear_inferiors): Move lower in the file. Clear the DLL
5673 list.
5674 (free_one_dll, match_dll, loaded_dll, unloaded_dll, clear_list): New.
5675 * remote-utils.c (prepare_resume_reply): Check dlls_changed.
5676 (xml_escape_text): New.
5677 * server.c (handle_query): Handle qXfer:libraries:read. Report it
5678 for qSupported.
5679 (handle_v_cont): Report errors.
5680 (gdbserver_version): Update.
5681 (main): Correct size of own_buf. Do not report initial DLL events.
5682 * server.h (struct dll_info, all_dlls, dlls_changed, loaded_dll)
5683 (unloaded_dll, xml_escape_text): New.
5684 * win32-low.c (enum target_waitkind): Update comments.
5685 (win32_add_one_solib, get_image_name, winapi_EnumProcessModules)
5686 (winapi_GetModuleInformation, winapi_GetModuleFileNameExA)
5687 (win32_EnumProcessModules, win32_GetModuleInformation)
5688 (win32_GetModuleFileNameExA, load_psapi, psapi_get_dll_name)
5689 (winapi_CreateToolhelp32Snapshot, winapi_Module32First)
5690 (winapi_Module32Next, win32_CreateToolhelp32Snapshot)
5691 (win32_Module32First, win32_Module32Next, load_toolhelp)
5692 (toolhelp_get_dll_name, handle_load_dll, handle_unload_dll): New.
5693 (get_child_debug_event): Handle DLL events.
5694 (win32_wait): Likewise.
5695
0d37add9
DJ
56962007-07-12 Daniel Jacobowitz <dan@codesourcery.com>
5697
5698 * configure.srv: Set srv_linux_regsets for sh*-*-linux*.
5699 * linux-sh-low.c (sh_fill_gregset, target_regsets): New.
5700
45e2715e
PA
57012007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
5702
5703 * win32-low.c (handle_output_debug_string): Ignore event if not
5704 waiting.
5705
c5674cf1
PA
57062007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
5707
5708 * win32-arm-low.c (arm_wince_breakpoint): Fix typo.
5709
2bbe3cc1
DJ
57102007-07-03 Daniel Jacobowitz <dan@codesourcery.com>
5711
5712 * remote-utils.c (look_up_one_symbol): Handle 'm' packets.
5713
ae13219e
DJ
57142007-07-02 Daniel Jacobowitz <dan@codesourcery.com>
5715
5716 * inferiors.c (change_inferior_id): Add comment.
5717 * linux-low.c (check_removed_breakpoint): Add an early
5718 prototype. Improve debug output.
5719 (linux_attach): Doc update.
5720 (linux_detach_one_process, linux_detach): Clean up before releasing
5721 each process.
5722 (send_sigstop, wait_for_sigstop): Improve comments and debug output.
5723 * linux-low.h (struct process_info): Doc improvement.
5724 * mem-break.c (delete_all_breakpoints): New.
5725 * mem-break.h (delete_all_breakpoints): New prototype.
5726 * thread-db.c (find_first_thread): New.
5727 (thread_db_create_event): Call it instead of
5728 thread_db_find_new_threads. Clean up unused variables.
5729 (maybe_attach_thread): Remove first thread handling.
5730 (thread_db_find_new_threads): Use find_first_thread.
5731 (thread_db_get_tls_address): Likewise.
5732
4105de34
DJ
57332007-06-27 Daniel Jacobowitz <dan@codesourcery.com>
5734
5735 * thread-db.c (thread_db_find_new_threads): Add prototype.
5736 (thread_db_create_event): Check for the main thread before adding
5737 a new thread.
5738 (maybe_attach_thread): Only enable event reporting if TID == 0.
5739 (thread_db_get_tls_address): Check for new threads.
5740
2b876972
DJ
57412007-06-20 Daniel Jacobowitz <dan@codesourcery.com>
5742
5743 * linux-low.c (linux_create_inferior): Try execv before execvp.
5744 * spu-low.c (spu_create_inferior): Likewise.
5745
7a245884
DJ
57462007-06-13 Mike Frysinger <vapier@gentoo.org>
5747
5748 * linux-low.c (linux_create_inferior): Change execv to execvp.
5749 * spu-low.c (spu_create_inferior): Likewies.
5750
117ce543
DJ
57512007-06-13 Daniel Jacobowitz <dan@codesourcery.com>
5752
5753 * Makefile.in (clean): Clean new files instead of deleted ones.
5754 (reg-mips.o, reg-mips.c, reg-mips64.o, reg-mips64.c): Delete.
5755 (mips-linux.o, mips-linux.c, mips64-linux.o, mips64-linux.c): New
5756 rules.
5757 * configure.srv: Specify XML files and new regformats for MIPS and
5758 MIPS64 GNU/Linux.
5759 * linux-mips-low.c (mips_num_regs): Set to only used registers.
5760 (mips_regmap): Do not fetch $0. Remove unused registers. Add
5761 an entry for the restart register.
5762 (mips_cannot_fetch_register, mips_cannot_store_register)
5763 (mips_reinsert_addr, mips_fill_fpregset, mips_store_fpregset): Update
5764 register names to match the XML descriptions.
5765 (mips_fill_gregset, mips_store_gregset): Likewise. Handle the
5766 restart register instead of $0.
5767
0e7f50da
UW
57682007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
5769 Markus Deuling <deuling@de.ibm.com>
5770
5771 * remote-utils.c (decode_xfer_write): New function.
5772 * server.h (decode_xfer_write): Add prototype.
5773 * server.c (handle_query): Add PACKET_LEN argument. Support
5774 qXfer:spu:read and qXfer:spu:write packets.
5775 (main): Pass packet_len to handle_query.
5776 * spu-low.c (spu_target_ops): Add spu_proc_xfer_spu.
5777 * target.h (target_ops): Add qxfer_spu.
5778
374c1d38
UW
57792007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
5780
5781 * spu-low.c (spu_proc_xfer_spu): Do not return failure when
5782 accessing non-seekable spufs files.
5783
bb63802a
UW
57842007-05-16 Markus Deuling <deuling@de.ibm.com>
5785
889bf7c5 5786 * server.c (handle_query): Add reply for qC packet.
bb63802a 5787
7390519e
PA
57882007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
5789 Leo Zayas <lerele@champenstudios@com>
5790
5791 * server.h (check_remote_input_interrupt_request): New function.
5792 * remote_utils.c (INVALID_DESCRIPTOR): New define.
5793 (remote_desc): Initialize with INVALID_DESCRIPTOR.
5794 (input_interrupt): Expose on USE_WIN32API too. Fix whitespace.
5795 (check_remote_input_interrupt_request): New function.
5796 * server.h (check_remote_input_interrupt_request): Declare.
3ecf0694 5797 * win32-low.c (winapi_DebugBreakProcess,
7390519e
PA
5798 winapi_GenerateConsoleCtrlEvent): New typedefs.
5799 (get_child_debug_event): Lower Win32 debug event polling from 1 sec
5800 to 250 ms.
5801 (win32_wait): Check for remote interrupt request
5802 with check_remote_input_interrupt_request.
5803 (win32_request_interrupt): New function.
5804 (win32_target_op): Set request_interrupt to win32_request_interrupt.
5805
34b34921
PA
58062007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
5807
5808 * win32-low.c (debug_registers_changed,
5809 debug_registers_used, CONTEXT_EXTENDED_REGISTERS,
5810 CONTEXT_FLOATING_POINT, CONTEXT_DEBUG_REGISTERS,
5811 CONTEXT_DEBUGGER, CONTEXT_DEBUGGER_DR): Delete.
5812 (thread_rec): Get context using the low target.
5813 (child_add_thread): Call thread_added on the low target,
5814 which does the same thing.
5815 (regptr): Delete.
5816 (do_initial_child_stuff): Remove debug registers references.
5817 Set context using the low target. Resume threads after
5818 setting the contexts.
5819 (child_continue): Remove dead variable. Remove debug
5820 registers references.
5821 (child_fetch_inferior_registers): Go through the low target.
5822 (do_child_store_inferior_registers): Remove.
5823 (child_store_inferior_registers): Go through the low target.
5824 (win32_resume): Remove debug registers references.
5825 Set context using the low target.
5826 (handle_exception): Change return type to void. Don't record
5827 context here. Set status to TARGET_WAITKIND_SPURIOUS on a
5828 first chance exception.
889bf7c5 5829 (get_child_debug_event): Change return type to void. Remove
34b34921
PA
5830 goto loop. Always return after waiting for debug event.
5831 (win32_wait): Convert to switch statement. Handle spurious
5832 events.
5833
5834 * win32-i386-low.c (debug_registers_changed,
5835 debug_registers_used): New.
5836 (initial_stuff): Rename to ...
5837 (i386_initial_stuff): ... this. Clear debug registers
5838 state variables.
5839 (store_debug_registers): Delete.
5840 (i386_get_thread_context): New.
5841 (load_debug_registers): Delete.
5842 (i386_set_thread_context): New.
5843 (i386_thread_added): New.
5844 (single_step): Rename to ...
5845 (i386_single_step): ... this.
5846 (do_fetch_inferior_registers): Rename to ...
5847 (i386_fetch_inferior_register): ... this.
5848 (i386_store_inferior_register): New.
5849 (the_low_target): Adapt to new interface.
5850
5851 * win32-arm-low.c (CONTEXT_FLOATING_POINT): Define.
5852 (arm_get_thread_context): New.
5853 (arm_set_thread_context): New.
5854 (regptr): New.
5855 (do_fetch_inferior_registers): Rename to ...
5856 (arm_fetch_inferior_register): ... this.
5857 (arm_store_inferior_register): New.
5858 (arm_wince_breakpoint): Reimplement as unsigned long.
5859 (arm_wince_breakpoint_len): Define.
5860 (the_low_target): Adapt to new interface.
5861
5862 * win32-low.h (target_ops): Remove regmap, store_debug_registers and
5863 load_debug_registers. Add get_thread_context, set_thread_context,
5864 thread_added and store_inferior_register. Rename
5865 fetch_inferior_registers to fetch_inferior_register.
5866 (regptr): Remove declaration.
5867
dd6953e1
PA
58682007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
5869
5870 * linux-low.c (linux_detach): Change return type to int. Return 0.
5871 * spu-low.c (spu_detach): Likewise.
5872
444d6139
PA
58732007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
5874
5875 * target.h (target_ops): Change return type of detach to int.
5876 Add join.
5877 (join_inferior): New.
5878 * server.c (main): Don't skip detach support on mingw32.
5879 If the inferior doesn't support detaching return error.
5880 Call join_inferior instead of using waitpid.
5881 * linux-low.c (linux_join): New.
5882 (linux_target_op): Add linux_join.
5883 * spu-low.c (spu_join): New.
5884 (spu_target_ops): Add spu_join.
5885 * win32-low.c (win32_detach): Adapt to new interface.
5886 Reopen current_process_handle before detaching. Issue a child
5887 resume before detaching.
5888 (win32_join): New.
5889 (win32_target_op): Add win32_join.
5890
1d5315fe
PA
58912007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
5892
5893 * win32-low.c (win32-attach): Fix return value.
5894 * target.h (target_ops): Describe ATTACH return values.
5895
bf914831
PA
58962007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
5897
5898 * win32-low.c (GETPROCADDRESS): Define.
5899 (winapi_DebugActiveProcessStop): Add WINAPI. typedef as pointer.
5900 (winapi_DebugSetProcessKillOnExit): Likewise.
5901 (win32_create_inferior): Force usage of ansi CreateProcessA.
5902 (win32_attach): Use GETPROCADDRESS.
5903 (win32_detach): Likewise.
5904
f72f3e60
PA
59052007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
5906
5907 * win32-low.c (win32_wait): Don't use WSTOPSIG.
5908
ed50f18f
PA
59092007-03-30 Pedro Alves <pedro_alves@portugalmail.pt>
5910
5911 * win32-low.c: Commit leftover changes from 2007-03-29.
5912
0c2ead7e
DJ
59132007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
5914
5915 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Make 16-bit
5916 fields short instead of int. Add explicit padding.
5917 (i387_cache_to_fsave): Remove unnecessary casts.
5918 (i387_fsave_to_cache): Doc fix.
5919 (i387_cache_to_fxsave): Remove unnecessary casts and masking.
5920
73725ff3
DJ
59212007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
5922
5923 * i387-fp.c (i387_cache_to_fxsave): Reinitialize val2 before use.
5924 (i387_fxsave_to_cache): Check fp->ftag while building ftag value.
5925
d99f33d8
PA
59262007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
5927
5928 * configure.srv (arm*-*-mingw32ce*): Move near the other
5929 arm targets.
5930
68070c10
PA
59312007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
5932
2482afc6 5933 * configure.ac: Add errno checking.
68070c10
PA
5934 (AC_CHECK_HEADERS): Add errno.h, fcntl.h, signal.h,
5935 sys/file.h and malloc.h.
5936 (AC_CHECK_DECLS): Add perror.
5937 (srv_mingwce): Handle.
2482afc6 5938 * configure.srv (i[34567]86-*-cygwin*): Add
68070c10
PA
5939 win32-i386-low.o to srv_tgtobj.
5940 (i[34567]86-*-mingw*): Likewise.
5941 (arm*-*-mingw32ce*): Add case.
5942 * gdbreplay.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
5943 HAVE_FCNTL_H, HAVE_ERRNO_H, HAVE_MALLOC_H]: Check.
5944 [__MINGW32CE__] (strerror): New function.
5945 [__MINGW32CE__] (errno): Define to GetLastError.
5946 [__MINGW32CE__] (COUNTOF): New macro.
5947 (remote_open): Remove extra close call.
5948 * mem-break.c (delete_breakpoint_at): New function.
5949 * mem-break.h (delete_breakpoint_at): Declare.
5950 * remote-utils.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
5951 HAVE_FCNTL_H, HAVE_UNISTD_H, HAVE_ERRNO_H]: Check.
5952 [USE_WIN32API] (read, write): Add char* casts.
5953 * server.c [HAVE_UNISTD_H, HAVE_SIGNAL_H]: Check.
5954 * server.h: Include wincecompat.h on Windows CE.
5955 [HAVE_ERRNO_H]: Check.
5956 (perror): Declare if not declared.
5957 * utils.c: Add stdlib.h, errno.h and malloc.h includes.
5958 (perror_with_name): Remove errno declaration.
5959 * wincecompat.h: New.
5960 * wincecompat.c: New.
5961 * win32-low.h: New.
5962 * win32-arm-low.c: New.
5963 * win32-i386-low.c: New.
5964 (win32-low.c): Include mem-break.h and win32-low.h, and winnt.h.
5965 (OUTMSG2): Make it safe.
5966 (_T): New macro.
5967 (COUNTOF): New macro.
5968 (NUM_REGS): Get it from the low target.
5969 (CONTEXT_EXTENDED_REGISTERS, CONTEXT_FLOATING_POINT,
5970 CONTEXT_DEBUG_REGISTERS): Add fallbacks to 0.
5971 (thread_rec): Let low target handle debug registers.
5972 (child_add_thread): Likewise.
5973 (child_init_thread_list): Likewise.
5974 (continue_one_thread): Likewise.
5975 (regptr): New.
5976 (do_child_fetch_inferior_registers): Move to ...
5977 * win32-i386-low.c: ... here, and rename to ...
5978 (do_fetch_inferior_registers): ... this.
889bf7c5 5979 * win32-low.c (child_fetch_inferior_registers):
68070c10
PA
5980 Go through the low target.
5981 (do_child_store_inferior_registers): Use regptr.
5982 (strwinerror): New function.
5983 (win32_create_inferior): Handle Windows CE.
5984 Use strwinerror instead of strerror on Windows error
5985 codes. Add program to the error output.
5986 Don't close the main thread handle on Windows CE.
5987 (win32_attach): Use coredll.dll on Windows CE.
5988 (win32_kill): Close current process and current
5989 thread handles.
5990 (win32_detach): Use coredll.dll on Windows CE.
5991 (win32_resume): Let low target handle debug registers, and
5992 step request.
5993 (handle_exception): Add/Remove initial breakpoint. Avoid
5994 non-existant WSTOPSIG on Windows CE.
5995 (win32_read_inferior_memory): Cast to remove warning.
5996 (win32_arch_string): Go through the low target.
5997 (initialize_low): Call set_breakpoint_data with the low
5998 target's breakpoint.
5999 * win32-low.c (dr, FLAG_TRACE_BIT, FCS_REGNUM,
6000 FOP_REGNUM, mappings): Move to ...
6001 * win32-i386-low.c: ... here.
6002 * win32-low.c (win32_thread_info): Move to ...
6003 * win32-low.h: ... here.
6004 * Makefile.in (SFILES): Add win32-low.c, win32-i386-low.c,
6005 win32-arm-low.c and wincecompat.c.
6006 (all:): Add $EXEEXT.
6007 (install-only:): Likewise.
6008 (gdbserver:): Likewise.
6009 (gdbreplay:): Likewise.
6010 * config.in: Regenerate.
6011 * configure: Regenerate.
6012
41093d81
PA
60132007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
6014
6015 * win32-low.c: Rename typedef thread_info to
6016 win32_thread_info throughout.
6017
544afa54
PA
60182007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
6019
6020 * win32-i386-low.c: Rename to ...
6021 * win32-low.c: ... this.
6022 * configure.srv: Replace win32-i386-low.o with win32-low.o.
6023 * Makefile.in: Likewise.
6024
bce7165d
PA
60252007-03-27 Pedro Alves <pedro_alves@portugalmail.pt>
6026
6027 * remote-utils.c (monitor_output): Constify msg parameter.
6028 * server.h (monitor_output): Likewise.
6029 * win32-i386-low.c (handle_output_debug_string): New.
6030 (win32_kill): Handle OUTPUT_DEBUG_STRING_EVENT events using
6031 handle_output_debug_string.
6032 (get_child_debug_event): Likewise.
6033
506c7aa0
DJ
60342007-03-27 Mat Hostetter <mat@lcs.mit.edu>
6035
6036 * server.c (main): Correct strtoul check.
6037
42c81e2a
DJ
60382007-03-27 Jon Ringle <jon@ringle.org>
6039
6040 * linux-low.c: Check __ARCH_HAS_MMU__ also.
6041
9453113a
DJ
60422007-03-27 Brooks Moses <brooks.moses@codesourcery.com>
6043
6044 * Makefile.in: Add dummy "pdf" and "install-pdf" targets.
6045
64a69107
DJ
60462007-02-27 Daniel Jacobowitz <dan@codesourcery.com>
6047
6048 * terminal.h: Check HAVE_SGTTY_H.
6049
60502007-02-27 Mat Hostetter <mat@lcs.mit.edu>
6f8486da
DJ
6051
6052 * remote-utils.c (remote_open): Print out the assigned port number.
6053
c74d0ad8
DJ
60542007-02-26 Daniel Jacobowitz <dan@codesourcery.com>
6055
6056 * remote-utils.c (monitor_output): New function.
6057 * server.c (debug_threads): Define here.
6058 (monitor_show_help): New function.
6059 (handle_query): Handle qRcmd.
6060 (main): Do not handle 'd' packet.
6061 * server.h (debug_threads, remote_debug, monitor_output): Declare.
6062 * linux-low.c, spu-low.c, win32-i386-low.c: Remove definitions
6063 of debug_threads.
6064
de7c3b4a
PA
60652007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
6066
6067 * Makefile.in (EXEEXT): New.
6068 (clean): Use $(EXEEXT).
6069
ef57601b
PA
60702007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
6071
6072 * target.h (target_ops): Rename send_signal to request_interrupt,
6073 and remove enum target_signal parameter.
6074 * linux-low.c (linux_request_interrupt): Rename from
6075 linux_send_signal, and always send SIGINT.
6076 * spu-low.c (spu_request_interrupt): Rename from spu_send_signal,
6077 and always send SIGINT.
6078 * remote-utils.c (putpkt_binary): Call request_interrupt, instead
6079 of send_signal.
6080 (input_interrupt): Likewise.
6081
820f2bda
PA
60822007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
6083
6084 * server.c (get_features_xml): Check if target implemented
6085 arch_string.
6086 * win32-i386-low.c (win32_arch_string): New.
6087 (win32_target_ops): Add win32_arch_string as arch_string member.
6088
ab39bf24
UW
60892007-02-22 Markus Deuling <deuling@de.ibm.com>
6090
6091 * spu-low.c (spu_arch_string): New.
6092 (spu_target_ops): Add spu_arch_string.
6093
61ff6e04
DJ
60942007-02-16 Daniel Jacobowitz <dan@codesourcery.com>
6095
6096 * remote-utils.c: Remove HAVE_TERMINAL_H check.
6097 * configure.ac: Do not check for terminal.h.
6098 * configure, config.in: Regenerated.
6099
fb1e4ffc
DJ
61002007-02-08 Daniel Jacobowitz <dan@codesourcery.com>
6101
6102 * Makefile.in (OBS): Add $(XML_BUILTIN).
6103 (XML_DIR, XML_TARGET, XML_FILES, XML_BUILTIN): New.
6104 (clean): Update.
6105 (target.xml, xml-builtin.c, stamp-xml, arm-with-iwmmxt.o)
6106 (arm-with-iwmmxt.c): New.
6107 * config.in, configure: Regenerate.
6108 * configure.ac: Check for iWMMXt. Handle srv_xmltarget,
6109 srv_xmlbuiltin, and srv_xmlfiles. Define USE_XML.
6110 * configure.srv: Mention srv_xmltarget and srv_xmlfiles.
6111 (arm*-*-linux*): Add iWMMXt and regset support.
6112 * linux-arm-low.c (PTRACE_GETWMMXREGS, PTRACE_SETWMMXREGS): Define.
6113 (arm_fill_gregset, arm_store_gregset, arm_fill_wmmxregset)
6114 (arm_store_wmmxregset, target_regsets): New.
6115 * server.c (get_features_xml): Take annex argument. Check builtin
6116 XML documents.
6117 (handle_query): Handle multiple annexes.
6118
0f48aa01
DJ
61192007-01-29 Daniel Jacobowitz <dan@codesourcery.com>
6120
6121 * remote-utils.c [USE_WIN32API] (read, write): Define.
6122 (putpkt_binary, input_interrupt, readchar, getpkt): Use read and
6123 write.
6124
23181151
DJ
61252007-01-09 Daniel Jacobowitz <dan@codesourcery.com>
6126
6127 * linux-i386-low.c (the_low_target): Set arch_string.
6128 * linux-x86-64-low.c (the_low_target): Likewise.
6129 * linux-low.c (linux_arch_string): New.
6130 (linux_target_ops): Add it.
6131 * linux-low.h (struct linux_target_ops): Add arch_string.
6132 * server.c (write_qxfer_response): Use const void * for DATA.
6133 (get_features_xml): New.
6134 (handle_query): Handle qXfer:features:read. Report it for qSupported.
6135 * target.h (struct target_ops): Add arch_string method.
6136
9d606399
DJ
61372007-01-03 Denis Pilat <denis.pilat@st.com>
6138 Daniel Jacobowitz <dan@codesourcery.com>
6139
6140 * linux-low.c (linux_kill): Handle being called with no threads.
6141 * win32-i386-low.c (win32_kill): Likewise.
6142 (get_child_debug_event): Clear current_process_handle.
6143
61442006-12-30 Denis PILAT <denis.pilat@st.com>
8264bb58
DJ
6145 Daniel Jacobowitz <dan@codesourcery.com>
6146
6147 * remote-utils.c (remote_open): Check the type of specified
6148 serial port devices before opening them.
6149 * server.c (main): Kill the inferior if an error occurs during
6150 the first remote_open.
6151
a5e13d24
DJ
61522006-12-05 Markus Deuling <deuling@de.ibm.com>
6153
6154 * README: Update supported targets.
6155
186947f7
DJ
61562006-11-28 Daniel Jacobowitz <dan@codesourcery.com>
6157
6158 * Makefile.in (clean): Remove reg-mips64.c.
6159 (reg-mips64.c, reg-mips64.o): New rules.
6160 * configure.srv: Handle mips64. Include regset support for mips.
6161 * linux-mips-low.c (union mips_register): New.
6162 (mips_get_pc, mips_set_pc, mips_reinsert_addr): Use it.
6163 (mips_breakpoint, mips_breakpoint_at): Use int.
6164 (mips_collect_register, mips_supply_register)
6165 (mips_collect_register_32bit, mips_supply_register_32bit)
6166 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
6167 (mips_store_fpregset, target_regsets): New.
6168 * thread-db.c (thread_db_get_tls_address): Use uintptr_t.
6169
a13e2c95
UW
61702006-11-22 Ulrich Weigand <uweigand@de.ibm.com>
6171
6172 * configure.srv: Add target "spu*-*-*".
6173 * Makefile.in (clean): Remove reg-spu.c.
6174 (reg-spu.c, reg-spu.o, spu-low.o): Add dependencies.
6175 * spu-low.c: New file.
6176
cb7283db
DJ
61772006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
6178
6179 * configure.ac: Correct td_thr_tls_get_addr test.
6180 * configure: Regenerated.
6181
89be2091
DJ
61822006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
6183
6184 * linux-low.c (linux_wait_for_event): Reformat. Use the
6185 pass_signals array.
6186 * remote-utils.c (decode_address_to_semicolon): New.
6187 * server.c (pass_signals, handle_general_set): New.
6188 (handle_query): Mention QPassSignals for qSupported.
6189 (main): Call handle_general_set.
6190 * server.h (pass_signals, decode_address_to_semicolon): New.
6191
000ef4f0
DJ
61922006-11-06 Daniel Jacobowitz <dan@codesourcery.com>
6193
6194 * server.c (handle_query): Correct error handling for read_auxv.
6195
b7149293
UW
61962005-10-19 Ulrich Weigand <uweigand@de.ibm.com>
6197
6198 * configure.srv [s390-*-linux*, s390x-*-linux*]: Set srv_linux_regsets
6199 and srv_linux_thread_db to yes.
6200 * linux-s390-low.c (s390_fill_gregset): New function.
6201 (target_regsets): Define data structure.
6202
dae5f5cf
DJ
62032006-10-17 Daniel Jacobowitz <dan@codesourcery.com>
6204
6205 * acinclude.m4 (SRV_CHECK_TLS_GET_ADDR): New.
6206 * configure.ac: Use it. Define HAVE_TD_THR_TLS_GET_ADDR.
6207 * config.in, configure: Regenerated.
6208 * inferiors.c (gdb_id_to_thread): New function.
6209 (gdb_id_to_thread_id): Use it.
6210 * linux-low.c (linux_target_ops): Use thread_db_get_tls_address.
6211 * linux-low.h (struct process_info): Add th member.
6212 (thread_db_get_tls_address): New prototype.
6213 * remote-utils.c (decode_address): Make non-static.
6214 * server.c (handle_query): Handle qGetTLSAddr.
6215 * server.h (gdb_id_to_thread, decode_address): New prototypes.
6216 * target.h (struct target_ops): Add get_tls_address.
6217 * thread-db.c (maybe_attach_thread): Save the thread handle.
6218 (thread_db_get_tls_address): New.
6219
32ca6d61
DJ
62202006-09-28 Daniel Jacobowitz <dan@codesourcery.com>
6221
6222 * linux-low.c (PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
6223 (linux_resume_one_process): Take a siginfo_t *. Update all
6224 callers. Queue it if necessary. Use PTRACE_SETSIGINFO.
6225 (struct pending_signals): Add a siginfo_t.
6226 (linux_wait_for_process): Always set last_status.
6227 (linux_wait_for_event): Use PTRACE_GETSIGINFO.
6228 (linux_queue_one_thread): Use PTRACE_GETSIGINFO.
6229 * linux-low.h (struct process_info): Add last_status.
6230
5ffff7c1
DJ
62312006-09-21 Daniel Jacobowitz <dan@codesourcery.com>
6232
6233 * remote-utils.c (try_rle): New function.
6234 (putpkt_binary): Use it.
6235
8695c747
DJ
62362006-08-19 Daniel Jacobowitz <dan@codesourcery.com>
6237
6238 * Makefile.in (clean): Clean reg-x86-64-linux.c.
6239 (reg-x86-64-linux.o, reg-x86-64-linux.c): New.
6240 * configure.srv (x86_64-*-linux*): Use reg-x86-64-linux.o.
6241 * linux-x86-64-low.c (x86_64_regmap): Include ORIG_RAX.
6242 (x86_64_fill_gregset, x86_64_store_gregset): Skip floating
6243 point registers.
6244
290fadea
RS
62452006-08-08 Richard Sandiford <richard@codesourcery.com>
6246
6247 * server.c (terminal_fd): New variable.
6248 (old_foreground_pgrp): Likewise.
6249 (restore_old_foreground_pgrp): New function.
6250 (start_inferior): Record the terminal file descriptor in terminal_fd
6251 and its original foreground group in old_foreground_pgrp. Register
6252 restore_old_foreground_pgrp with atexit().
6253
9f2e1e63
DJ
62542006-07-26 Daniel Jacobowitz <dan@codesourcery.com>
6255
6256 * server.c (handle_query): Correct qPart to qXfer.
6257
b80864fb
DJ
62582006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
6259
6260 * configure.ac: Check for more headers which are missing on
6261 Windows. Automatically supply -lwsock32 and USE_WIN32API.
6262 * configure.srv: Add Cygwin and mingw32.
6263 * remote-utils.c: Don't include headers unconditionally which
6264 are missing on mingw32. Include <winsock.h> for mingw32.
6265 (remote_open): Adjust for mingw32 support. Flush
6266 standard error after writing to it.
6267 (remote_close, putpkt_binary, input_interrupt, block_async_io)
6268 (unblock_async_io, enable_async_io, disable_async_io)
6269 (readchar, getpkt): Update for Winsock support.
6270 (prepare_resume_reply): Expect a protocol signal number.
6271 * server.c: Disable <sys/wait.h> on mingw32.
6272 (start_inferior): Adjust for mingw32 support. Flush
6273 standard error after writing to it.
6274 (attach_inferior): Likewise. Use protocol signal
6275 numbers.
6276 (main): Skip 'D' packet on mingw32. Use protocol signal numbers
6277 and names.
6278 * win32-i386-low.c: New file.
6279 * Makefile.in (XM_CLIBS): Set.
6280 (gdbserver, gdbreplay): Use $(INTERNAL_CFLAGS).
6281 (win32-i386-low.o): New dependency rule.
6282 * linux-low.c (linux_wait): Use target signal numbers.
6283 * target.h (struct target_ops): Doc fix.
6284 * server.h (target_signal_to_name): New prototype.
6285 * gdbreplay.c: Don't include headers unconditionally which
6286 are missing on mingw32. Include <winsock.h> for mingw32.
6287 (remote_close, remote_open): Adjust for Winsock support.
6288 * configure, config.in: Regenerated.
6289
0876f84a
DJ
62902006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
6291
6292 * server.c (decode_xfer_read, write_qxfer_response): New.
6293 (handle_query): Take a packet length argument. Handle
6294 qXfer:auxv:read instead of qPart:auxv:read. Mention it in
6295 the qSupported response.
6296 (main): Update call to handle_query.
6297
01f9e8fa
DJ
62982006-06-22 Daniel Jacobowitz <dan@codesourcery.com>
6299
6300 * remote-utils.c (remote_escape_output, remote_unescape_input): New.
6301 (putpkt_binary): Renamed from putpkt and adjusted for binary
6302 data.
6303 (putpkt): New wrapper for putpkt_binary.
6304 (readchar): Don't mask off the high bit.
6305 (decode_X_packet): New function.
6306 * server.c (main): Call putpkt_binary if a handler sets the packet
6307 length. Save the length of the incoming packet. Handle 'X'.
6308 * server.h (gdb_byte, remote_escape_output, decode_X_packet): New.
6309
be2a5f71
DJ
63102006-06-21 Daniel Jacobowitz <dan@codesourcery.com>
6311
6312 * server.c (handle_query): Handle qSupported.
6313
ea025f5f
DJ
63142006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
6315
6316 * remote-utils.c (all_symbols_looked_up): New variable.
6317 (look_up_one_symbol): Check it.
6318 * server.h (look_up_one_symbol): New declaration.
6319 * thread-db.c (thread_db_init): Set all_symbols_looked_up.
6320
9308fc88
DJ
63212006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
6322
6323 * Makefile.in (linux-arm-low.o): Update dependencies.
66f338c7 6324 * linux-arm-low.c: Include "gdb_proc_service.h".
9308fc88
DJ
6325 (PTRACE_GET_THREAD_AREA): Define.
6326 (ps_get_thread_area): New function.
6327
52fb6437
NS
63282006-05-09 Nathan Sidwell <nathan@codesourcery.com>
6329
6330 * configure.srv (m68k*-*-uclinux*): New target.
6331 * linux-low.c (linux_create_inferior): Use vfork on mmuless systems.
6332 (linux_resume_one_process): Remove extraneous cast.
6333 (linux_read_offsets): New.
6334 (linux_target_op): Add linux_read_offsets on mmuless systems.
6335 * server.c (handle_query): Add qOffsets logic.
6336 * target.h (struct target_ops): Add read_offsets.
6337
21b0f40c
DJ
63382006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
6339
6340 * linux-mips-low.c: Include <sys/ptrace.h> and "gdb_proc_service.h".
6341 (PTRACE_GET_THREAD_AREA): Define.
6342 (ps_get_thread_area): New function.
6343 * Makefile.in (linux-i386-low.o, linux-mips-low.o)
6344 (linux-x86-64-low.o): Update.
6345
0050a760
DJ
63462006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
6347
6348 * configure.ac: Remove checks for prfpregset_t.
6349 * gdb_proc_service.h: New file.
6350 * linux-i386-low.c, linux-x86-64-low.c, thread-db.c: Use the
6351 new "gdb_proc_service.h".
6352 * proc-service.c: Likewise.
6353 (ps_pglobal_lookup, ps_pdread, ps_pdwrite): Use psaddr_t.
6354 (ps_lgetfpregs, ps_lsetfpregs): Use a void* argument.
6355 * Makefile.in (gdb_proc_service_h): Updated.
6356 * configure, config.in: Regenerated.
6357
b92a518e
DJ
63582006-03-03 Daniel Jacobowitz <dan@codesourcery.com>
6359
6360 * remote-utils.c (prepare_resume_reply): Move declaration
6361 of gdb_id_from_wait to the top of the block.
6362
545587ee
DJ
63632006-02-15 Daniel Jacobowitz <dan@codesourcery.com>
6364
6365 * linux-low.c (regsets_store_inferior_registers): Read the regset
6366 from the target before filling it.
6367
9db87ebd
DJ
63682006-02-08 Daniel Jacobowitz <dan@codesourcery.com>
6369
6370 * server.c (attach_inferior): Return SIGTRAP for a successful
6371 attach.
6372
dd24457d
DJ
63732006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
6374
6375 * Makefile.in (OBS): Add version.o.
6376 (STAGESTUFF): Delete.
6377 (version.o): Add dependencies.
6378 (version.c): Replace rule.
6379 (clean): Remove version.c.
6380 * server.c (gdbserver_version): New.
6381 (gdbserver_usage): Use printf.
6382 (main): Handle --version and --help.
6383 * server.h (version, host_name): Add declarations.
6384
6f0f660e
EZ
63852005-12-23 Eli Zaretskii <eliz@gnu.org>
6386
889bf7c5
PA
6387 * linux-arm-low.c:
6388 * linux-arm-low.c:
6389 * inferiors.c:
6390 * i387-fp.h:
6391 * i387-fp.c:
6392 * gdbreplay.c:
6393 * regcache.c:
6394 * proc-service.c:
6395 * mem-break.h:
6396 * mem-break.c:
6397 * linux-x86-64-low.c:
6398 * linux-sh-low.c:
6399 * linux-s390-low.c:
6400 * linux-ppc64-low.c:
6401 * linux-ppc-low.c:
6402 * linux-mips-low.c:
6403 * linux-m68k-low.c:
6404 * linux-m32r-low.c:
6405 * linux-low.h:
6406 * linux-low.c:
6407 * linux-ia64-low.c:
6408 * linux-i386-low.c:
6409 * linux-crisv32-low.c:
6410 * thread-db.c:
6411 * terminal.h:
6412 * target.h:
6413 * target.c:
6414 * server.h:
6415 * server.c:
6416 * remote-utils.c:
6417 * regcache.h:
6418 * utils.c:
6419 * Makefile.in:
6420 * configure.ac:
6f0f660e
EZ
6421 * gdbserver.1: Add (C) after Copyright. Update the FSF
6422 address.
6423
9d1fb177
DJ
64242005-11-13 Daniel Jacobowitz <dan@codesourcery.com>
6425
6426 * linux-arm-low.c (arm_eabi_breakpoint): New variable.
6427 (arm_breakpoint_at): Recognize both breakpoints.
6428 (the_low_target): Use the correct breakpoint instruction.
6429
011a70c2
DJ
64302005-11-02 Daniel Jacobowitz <dan@codesourcery.com>
6431
6432 * configure.srv (x86_64-*-linux*): Turn on thread_db support.
6433 * linux-x86-64-low.c (x86_64_breakpoint, x86_64_breakpoint_len)
6434 (x86_64_get_pc, x86_64_set_pc, x86_64_breakpoint_at): New.
6435 (the_low_target): Update.
6436
7fb85e41
AS
64372005-10-25 Andreas Schwab <schwab@suse.de>
6438
6439 * server.c (main): Allocate mem_buf with PBUFSIZ bytes.
6440
6441 * linux-ia64-low.c (ia64_regmap): Remove NAT registers.
6442 (ia64_num_regs): Reduce to 462.
6443
3db0444b
DJ
64442005-09-17 Daniel Jacobowitz <dan@codesourcery.com>
6445
6446 * acinclude.m4: Correct quoting.
6447 * aclocal.m4: Regenerated.
6448
6449 Suggested by SZOKOVACS Robert <szo@ies.hu>:
6450 * thread-db.c (thread_db_err_str): Handle TD_VERSION.
6451 (thread_db_init): Call thread_db_err_str.
6452 * configure.ac: Check for TD_VERSION.
6453 * config.in, configure: Regenerated.
6454
bee0189a
DJ
64552005-07-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6456
6457 * server.h (error, fatal, warning): Add ATTR_FORMAT.
6458
e9d25b98
DJ
64592005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
6460
6461 * configure.ac: Define HAVE_LINUX_REGSETS even if PTRACE_GETREGS
6462 is not available. Define HAVE_PTRACE_GETREGS if it is.
6463 * config.in, configure: Regenerated.
6464 * configure.srv: Set srv_linux_regsets for PowerPC and PowerPC64.
6465 * linux-i386-low.c, linux-m68k-low.c: Update to use
6466 HAVE_PTRACE_GETREGS.
6467 * linux-low.c (regsets_fetch_inferior_registers)
6468 (regsets_store_inferior_registers): Only return 0 if we processed
6469 GENERAL_REGS.
6470 * linux-ppc-low.c (ppc_fill_gregset, target_regsets): New.
6471 * linux-ppc64-low.c (ppc_fill_gregset, target_regsets): New.
6472
a06660f7
DJ
64732005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
6474
6475 * inferiors.c (struct thread_info): Add gdb_id.
6476 (add_thread): Add gdb_id argument.
6477 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New.
6478 * linux-low.c (linux_create_inferior, linux_attach_lwp): Update
6479 calls to add_thread.
6480 * remote-utils.c (prepare_resume_reply: Use thread_to_gdb_id.
6481 * server.c (handle_query): Use thread_to_gdb_id.
6482 (handle_v_cont, main): Use gdb_id_to_thread_id.
6483 * server.h (add_thread): Update prototype.
6484 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New
6485 prototypes.
6486
5a1f5858
DJ
64872005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
6488
6489 * linux-low.c (fetch_register, usr_store_inferior_registers): Handle
6490 left-padded registers.
6491 * linux-low.h (struct linux_target_ops): Add left_pad_xfer.
6492 * linux-ppc64-low.c (the_low_target): Set left_pad_xfer.
6493
e122f1f5
SE
64942005-07-01 Steve Ellcey <sje@cup.hp.com>
6495
6496 * configure.ac (BFD_NEED_DECLARATION): Replace with AC_CHECK_DECLS.
6497 * configure: Regenerate.
6498 * config.in: Regenerate.
6499 * server.h (NEED_DECLARATION_STRERROR):
6500 Replace with !HAVE_DECL_STRERROR.
6501
d592fa2f
DJ
65022005-06-16 Daniel Jacobowitz <dan@codesourcery.com>
6503
6504 * linux-low.c (linux_wait, linux_send_signal): Don't test
6505 an unsigned long variable for > 0 if it could be MAX_ULONG.
6506 * server.c (myresume): Likewise.
6507 * target.c (set_desired_inferior): Likewise.
6508
ccbd4912
MK
65092005-06-13 Mark Kettenis <kettenis@gnu.org>
6510
6511 * configure.ac: Simplify and improve check for socklen_t.
6512 * configure, config.in: Regenerate.
6513
f450004a
DJ
65142005-06-12 Daniel Jacobowitz <dan@codesourcery.com>
6515
6516 * acconfig.h: Remove.
6517 * configure.ac: Add a test for socklen_t. Use three-argument
6518 AC_DEFINE throughout.
6519 * config.in: Regenerated using autoheader 2.59.
6520 * configure: Regenerated.
6521
6522 * gdbreplay.c (socklen_t): Provide a default.
6523 (remote_open): Use socklen_t.
6524 * remote-utils.c (socklen_t): Provide a default.
6525 (remote_open): Use socklen_t.
6526 (convert_int_to_ascii, convert_ascii_to_int, decode_M_packet): Use
6527 unsigned char.
6528
6529 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Use unsigned
6530 char for buffers.
6531 * linux-low.c (linux_read_memory, linux_write_memory)
6532 (linux_read_auxv): Likewise.
6533 * mem-break.c (breakpoint_data, set_breakpoint_data, check_mem_read)
6534 (check_mem_write): Likewise.
6535 * mem-break.h (set_breakpoint_data, check_mem_read, check_mem_write):
6536 Likewise.
6537 * regcache.c (struct inferior_rgcache_data, registers_to_string)
6538 (registers_from_string, register_data): Likewise.
6539 * server.c (handle_query, main): Likewise.
6540 * server.h (convert_ascii_to_int, convert_int_to_ascii)
6541 (decode_M_packet): Likewise.
6542 * target.c (read_inferior_memory, write_inferior_memory): Likewise.
6543 * target.h (struct target_ops): Update read_memory, write_memory,
6544 and read_auxv.
6545 (read_inferior_memory, write_inferior_memory): Update.
6546 * linux-low.h (struct linux_target_ops): Change type of breakpoint
6547 to unsigned char *.
6548 * linux-arm-low.c, linux-cris-low.c, linux-crisv32-low.c,
6549 linux-i386-low.c, linux-m32r-low.c, linux-m68k-low.c,
6550 linux-mips-low.c, linux-ppc-low.c, linux-ppc64-low.c,
6551 linux-s390-low.c, linux-sh-low.c: Update for changes in
6552 read_inferior_memory and the_low_target->breakpoint.
6553
eee84df1
DJ
65542005-05-28 Daniel Jacobowitz <dan@codesourcery.com>
6555
6556 * Makefile.in (SFILES): Add linux-ppc64-low.c.
6557 (linux-ppc64-low.o, reg-ppc64.c, reg-ppc64.o): New targets.
6558 * configure.srv: Add powerpc64-*-linux*.
6559 * linux-ppc64-low.c: New file.
6560
45b134e5
OF
65612005-05-23 Orjan Friberg <orjanf@axis.com>
6562
6563 * linux-cris-low.c: New file with support for CRIS.
6564 * linux-crisv32-low.c: Ditto for CRISv32.
6565 * Makefile.in (SFILES): Add linux-cris-low.c, linux-crisv32-low.c.
6566 (clean): Add reg-cris.c and reg-crisv32.c.
889bf7c5 6567 Add linux-cris-low.o, linux-crisv32-low.o, reg-cris.o, reg-cris.c,
45b134e5
OF
6568 reg-crisv32.o, and reg-crisv32.c to make rules.
6569 * configure.srv: Add cris-*-linux* and crisv32-*-linux* to list of
6570 recognized targets.
6571
48d93c75
UW
65722005-05-16 Ulrich Weigand <uweigand@de.ibm.com>
6573
6574 * linux-low.c (fetch_register): Ensure buffer size is a multiple
6575 of sizeof (PTRACE_XFER_TYPE).
6576 (usr_store_inferior_registers): Likewise. Zero out excess bytes.
6577
e013ee27
OF
65782005-05-12 Orjan Friberg <orjanf@axis.com>
6579
889bf7c5 6580 * target.h (struct target_ops): Add insert_watchpoint,
e013ee27
OF
6581 remove_watchpoint, stopped_by_watchpoint, stopped_data_address function
6582 pointers for hardware watchpoint support.
6583 * linux-low.h (struct linux_target_ops): Ditto.
6584 * linux-low.c (linux_insert_watchpoint, linux_remove_watchpoint)
6585 (linux_stopped_by_watchpoint, linux_stopped_data_address): New. Add
6586 to linux_target_ops.
6587 * remote-utils.c (prepare_resume_reply): Add watchpoint information to
6588 reply packet.
6589 * server.c (main): Recognize 'Z' and 'z' packets.
6590
b0ded00b
UW
65912005-05-10 Ulrich Weigand <uweigand@de.ibm.com>
6592
6593 * linux-s390-low.c (s390_breakpoint, s390_breakpoint_len): Define.
6594 (s390_get_pc, s390_set_pc, s390_breakpoint_at): New functions.
6595 (the_low_target): Add new members.
6596
8643e2ad
DJ
65972005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
6598
6599 * proc-service.c (ps_lgetregs): Search all_processes instead of
6600 all_threads.
6601
fc620387
DJ
66022005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
6603
6604 * server.c (start_inferior): Change return type to int.
6605 (attach_inferior): Change sigptr to int *.
6606 (handle_v_cont, handle_v_requests): Change signal to int *.
6607 (main): Change signal to int.
6608
66092005-04-15 Kei Sakamoto <sakamoto.kei@renesas.com>
7cfbc4a0
KI
6610
6611 * Makefile.in: Add linux-m32r-low.o, reg-m32r.c and reg-m32r.o.
6612 * configure.srv: Add m32r*-*-linux*.
6613 * linux-m32r-low.c: New file.
6614
e0e76420
DJ
66152005-03-04 Daniel Jacobowitz <dan@codesourcery.com>
6616
6617 * Makefile.in (stamp-h): Set CONFIG_HEADERS explicitly.
6618
a1928bad
DJ
66192005-03-03 Daniel Jacobowitz <dan@codesourcery.com>
6620
6621 * inferiors.c (change_inferior_id, add_thread, find_inferior_id):
6622 Take unsigned long arguments for PIDs.
6623 * linux-low.c (add_process, linux_attach_lwp, linux_attach)
6624 (linux_thread_alive, linux_wait_for_event, kill_lwp, send_sigstop)
6625 (wait_for_sigstop, linux_resume_one_process)
6626 (regsets_fetch_inferior_registers, linux_send_signal)
6627 (linux_read_auxv): Likewise. Update the types of variables holding
6628 PIDs. Update format string specifiers.
6629 * linux-low.h (struct process_info, linux_attach_lwp): Likewise.
6630 * remote-utils.c (prepare_resume_reply): Likewise.
6631 * server.c (cont_thread, general_thread, step_thread)
6632 (thread_from_wait, old_thread_from_wait, signal_pid): Change type to
6633 unsigned long.
6634 (handle_query): Update format specifiers.
6635 (handle_v_cont, main): Use strtoul for thread IDs.
6636 * server.h (struct inferior_list_entry): Use unsigned long for ID.
6637 (add_thread, find_inferior_id, change_inferior_id, cont_thread)
6638 (general_thread, step_thread, thread_from_wait)
6639 (old_thread_from_wait): Update.
6640 * target.h (struct thread_resume): Use unsigned long for THREAD.
6641 (struct target_ops): Use unsigned long for arguments to attach and
6642 thread_alive.
6643
dcdb98d2
DJ
66442005-02-24 Daniel Jacobowitz <dan@codesourcery.com>
6645
6646 * acinclude.m4: Include bfd/bfd.m4 directly.
6647 * configure.ac: Use AC_ARG_PROGRAM. Suggested by Aron Griffis
6648 <agriffis@toolchain.org>.
6649 * aclocal.m4, configure: Regenerated.
6650
bec39cab
AC
66512005-01-07 Andrew Cagney <cagney@gnu.org>
6652
6653 * configure.ac: Rename configure.in, require autoconf 2.59.
6654 * configure: Re-generate.
6655
434c4c77
DJ
66562004-12-08 Daniel Jacobowitz <dan@debian.org>
6657
6658 * acinclude.m4 (SRV_CHECK_THREAD_DB): Add ps_get_thread_area. Reset
6659 LIBS when finished.
6660 * aclocal.m4: Regenerated.
6661 * configure: Regenerated.
6662
db1d3e1b
AS
66632004-11-21 Andreas Schwab <schwab@suse.de>
6664
6665 * linux-m68k-low.c (m68k_num_gregs): Define.
6666 (m68k_fill_gregset, m68k_store_gregset, m68k_fill_fpregset)
6667 (m68k_store_fpregset, target_regsets) [HAVE_LINUX_REGSETS]: New.
6668 (m68k_breakpoint, m68k_breakpoint_len, m68k_get_pc, m68k_set_pc)
6669 (m68k_breakpoint_at): New. Add to the_low_target.
6670
6671 * configure.srv (m68*-*-linux*): Set srv_linux_regsets and
6672 srv_linux_thread_db to yes.
6673
43360365
JB
66742004-10-20 Joel Brobecker <brobecker@gnat.com>
6675
6676 * linux-x86-64-low.c (ARCH_SET_GS): Add definition if missing.
6677 (ARCH_SET_FS): Likewise.
6678 (ARCH_GET_FS): Likewise.
6679 (ARCH_GET_GS): Likewise.
6680
fd500816
DJ
66812004-10-16 Daniel Jacobowitz <dan@debian.org>
6682
6683 * linux-i386-low.c (ps_get_thread_area): New.
6684 * linux-x86-64-low.c (ps_get_thread_area): New.
6685 * linux-low.c: Include <sys/syscall.h>.
6686 (linux_kill_one_process): Don't kill the first thread here.
6687 (linux_kill): Kill the first thread here.
6688 (kill_lwp): New function.
6689 (send_sigstop, linux_send_signal): Use it.
6690 * proc-service.c: Clean up #ifdefs.
6691 (fpregset_info): Delete.
6692 (ps_lgetregs): Update and enable implementation.
6693 (ps_lsetregs, ps_lgetfpregs, ps_lsetfpregs): Remove disabled
6694 implementations.
6695 * remote-utils.c (struct sym_cache, symbol_cache): New.
6696 (input_interrupt): Print a clearer message.
6697 (async_io_enabled): New variable.
6698 (enable_async_io, disable_async_io): Use it. Update comments.
6699 (look_up_one_symbol): Use the symbol cache.
6700 * thread-db.c (thread_db_look_up_symbols): New function.
6701 (thread_db_init): Update comments. Call thread_db_look_up_symbols.
6702
f6de3c42
DJ
67032004-10-16 Daniel Jacobowitz <dan@debian.org>
6704
6705 * configure.in: Test for -rdynamic.
6706 * configure: Regenerated.
6707 * Makefile (INTERNAL_LDFLAGS): New.
6708 (gdbserver, gdbreplay): Use it.
6709
2c0fc042
AC
67102004-09-02 Andrew Cagney <cagney@gnu.org>
6711
6712 * Makefile.in (TAGS): Replace TM_FILE with DEPRECATED_TM_FILE.
6713
075b3282
DJ
67142004-03-23 Daniel Jacobowitz <drow@mvista.com>
6715
6716 * linux-low.c (linux_wait): Clear all_processes list also.
6717
fa6a77dc
DJ
67182004-03-12 Daniel Jacobowitz <drow@mvista.com>
6719
6720 * linux-low.c: Include <errno.h>. Remove extern declaration of
6721 errno.
6722
6d782a97
DJ
67232004-03-12 Daniel Jacobowitz <drow@mvista.com>
6724
6725 * gdbreplay.c, server.h, utils.c: Update copyright years.
6726
3a7fb99b
DJ
67272004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
6728
6729 * server.c (main): Print child status or termination signal from
6730 variable 'signal', not 'sig'.
6731
c3e735a6
DJ
67322004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
6733
6734 * linux-low.c (linux_read_memory): Change return type to
6735 int. Check for and return error from ptrace().
6736 * target.c (read_inferior_memory): Change return type to int. Pass
6737 back return status from the_target->read_memory().
6738 * target.h (struct target_ops): Adapt *read_memory() prototype.
6739 Update comment.
6740 (read_inferior_memory): Adapt prototype.
6741 * server.c (main): Return an error packet if
6742 read_inferior_memory() returns an error.
6743
a59d1c82
DJ
67442004-03-04 Daniel Jacobowitz <drow@mvista.com>
6745
6746 * Makefile.in (distclean): Remove config.h, stamp-h, and config.log.
6747 Unify with other clean targets.
6748
dc3f8883
DJ
67492004-02-29 Daniel Jacobowitz <drow@mvista.com>
6750
6751 * server.c (handle_v_cont): Call set_desired_inferior.
6752
89a208da
DJ
67532004-02-29 Daniel Jacobowitz <drow@mvista.com>
6754
6755 * remote-utils.c (prepare_resume_reply): Always supply "thread:".
6756
62ea82f5
DJ
67572004-02-29 Daniel Jacobowitz <drow@mvista.com>
6758
6759 * linux-low.c (linux_wait): Unblock async I/O.
6760 (linux_resume): Block and enable async I/O.
6761 * remote-utils.c (block_async_io, unblock_async_io): New functions.
6762 * server.h (block_async_io, unblock_async_io): Add prototypes.
6763
6910d122
DJ
67642004-02-29 Daniel Jacobowitz <drow@mvista.com>
6765
6766 * remote-utils.c (remote_open): Print a status notice after
6767 opening a TCP port.
6768 * server.c (attach_inferior): Print a status notice after
6769 attaching.
6770
67712004-02-29 Daniel Jacobowitz <drow@mvista.com>
d677d77d
DJ
6772
6773 * linux-arm-low.c (arm_get_pc): Print out stop PC in debug mode.
6774
c89dc5d4
DJ
67752004-02-26 Daniel Jacobowitz <drow@mvista.com>
6776
6777 * remote-utils.c (write_enn): Use "E01" instead of "ENN" for the
6778 error packet.
6779 * server.c, target.h: Update copyright years.
6780
4b8dad4a
RM
67812004-02-25 Roland McGrath <roland@redhat.com>
6782
6783 * target.h (struct target_ops): New member `read_auxv'.
6784 * server.c (handle_query): Handle qPart:auxv:read: query using that.
6785 * linux-low.c (linux_read_auxv): New function.
6786 (linux_target_ops): Initialize `read_auxv' member to that.
6787
d7446758
JB
67882004-02-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
6789
6790 Committed by Jim Blandy <jimb@redhat.com>.
6791
6792 * linux-s390-low.c (s390_num_regs): Update.
4b8dad4a 6793 (s390_regmap): Remove control registers. Use __s390x__ predefine
d7446758
JB
6794 instead of GPR_SIZE to distiguish s390 and s390x targets.
6795
5544ad89
DJ
67962004-01-31 Daniel Jacobowitz <drow@mvista.com>
6797
6798 * linux-low.c: Update copyright year.
6799 (check_removed_breakpoint): Clear pending_is_breakpoint.
6800 (linux_set_resume_request, linux_queue_one_thread)
6801 (resume_status_pending_p): New functions.
6802 (linux_continue_one_thread): Use process->resume.
6803 (linux_resume): Only resume threads if there are no pending events.
6804 * linux-low.h (struct process_info): Add resume request
6805 pointer.
6806
2a68b70e
DJ
68072004-01-30 Daniel Jacobowitz <drow@mvista.com>
6808
6809 * regcache.c (new_register_cache): Clear the allocated register
6810 buffer. Suggested by Atsushi Nemoto <anemo@mba.ocn.ne.jp>.
6811
64386c31
DJ
68122003-10-13 Daniel Jacobowitz <drow@mvista.com>
6813
6814 * linux-low.c (linux_resume): Take a struct thread_resume *
6815 argument.
6816 (linux_wait): Update call.
6817 (resume_ptr): New static variable.
6818 (linux_continue_one_thread): Renamed from
6819 linux_continue_one_process. Use resume_ptr.
6820 (linux_resume): Use linux_continue_one_thread.
6821 * server.c (handle_v_cont, handle_v_requests): New functions.
6822 (myresume): New function.
6823 (main): Handle 'v' case.
6824 * target.h (struct thread_resume): New type.
6825 (struct target_ops): Change argument of "resume" to struct
6826 thread_resume *.
6827 (myresume): Delete macro.
6828
c938e9b0
L
68292003-08-08 H.J. Lu <hongjiu.lu@intel.com>
6830
6831 * Makefile.in (install-only): Create dest dir. Support DESTDIR.
6832 (uninstall): Support DESTDIR.
6833
7f313d07
BC
6834Mon Jul 21 20:09:34 UTC 2003 Brendan Conoboy <blc@redhat.com>
6835
6836 * configure.srv: Add xscale*linux copy of arm*linux entry.
6837
3b2fc2ea
DJ
68382003-07-24 Daniel Jacobowitz <drow@mvista.com>
6839
6840 * linux-arm-low.c (arm_reinsert_addr): New function.
6841 (the_low_target): Add arm_reinsert_addr.
6842
1c0a559e
MK
68432003-07-08 Mark Kettenis <kettenis@gnu.org>
6844
6845 * mem-break.c: Remove whitespace at end of file.
6846
43d5792c
DJ
68472003-06-28 Daniel Jacobowitz <drow@mvista.com>
6848
6849 * configure.in: Check whether we need to prototype strerror.
6850 * server.h: Optionally prototype strerror.
6851 * gdbreplay.c (perror_with_name): Use strerror.
6852 * linux-low.c (linux_attach_lwp): Use strerror.
6853 * utils.c (perror_with_name): Use strerror.
6854 * config.in, configure: Regenerated.
6855
c8a86edf
DJ
68562003-06-28 Daniel Jacobowitz <drow@mvista.com>
6857
6858 * linux-sh-low.c (sh_regmap): Fix FP register offsets, reported by
6859 SUGIOKA Toshinobu <sugioka@itonet.co.jp>.
6860
73d37363
DJ
68612003-06-20 Daniel Jacobowitz <drow@mvista.com>
6862
6863 * Makefile.in (SFILES): Update.
6864 * low-hppabsd.c, low-lynx.c, low-nbsd.c, low-sim.c, low-sparc.c,
6865 low-sun3.c: Remove files.
6866
6ad8ae5c
DJ
68672003-06-17 Daniel Jacobowitz <drow@mvista.com>
6868
6869 * linux-low.c: Move comment to linux_thread_alive where it belonged.
6870 (linux_detach_one_process, linux_detach): New functions.
6871 (linux_target_ops): Add linux_detach.
6872 * server.c (main): Handle 'D' packet.
6873 * target.h (struct target_ops): Add "detach" member.
6874 (detach_inferior): Define.
6875
1581182a
MK
68762003-06-13 Mark Kettenis <kettenis@gnu.org>
6877
6878 From Kelley Cook <kelleycook@wideopenwest.com>:
6879 * configure.srv: Accept i[34567]86 variants.
6880
e5379b03
DJ
68812003-06-05 Daniel Jacobowitz <drow@mvista.com>
6882
6883 * linux-low.c (linux_wait_for_event): Correct comment typos.
6884 (linux_resume_one_process): Call check_removed_breakpoint.
6885 (linux_send_signal): New function.
6886 (linux_target_ops): Add linux_send_signal.
6887 * remote-utils.c (putpkt, input_interrupt): Use send_signal instead
6888 of kill.
6889 * target.h (struct target_ops): Add send_signal.
6890
2ff29de4
JB
68912003-05-29 Jim Blandy <jimb@redhat.com>
6892
6893 * linux-low.c (usr_store_inferior_registers): Transfer buf in
6894 PTRACE_XFER_TYPE-sized chunks, not int-sized chunks. Otherwise,
6895 if 'int' is smaller than PTRACE_XFER_TYPE, you end up throwing
6896 away part of the register's value.
6897
254787d4
DJ
68982003-03-26 Daniel Jacobowitz <drow@mvista.com>
6899
6900 * linux-low.c (linux_create_inferior): Use __SIGRTMIN.
6901 (linux_wait_for_event, linux_init_signals): Likewise.
6902
94e10508
DJ
69032003-03-17 Daniel Jacobowitz <drow@mvista.com>
6904
6905 * configure.in: Check for stdlib.h.
6906 * configure: Regenerated.
6907 * config.in: Regenerated.
6908
4c0711e0
DJ
69092003-01-04 Andreas Schwab <schwab@suse.de>
6910
6911 * linux-m68k-low.c (m68k_num_regs): Define to 29 instead of 31.
6912
ef66e766
AC
69132003-01-02 Andrew Cagney <ac131313@redhat.com>
6914
6915 * Makefile.in: Remove obsolete code.
6916
a1358604
DJ
69172002-11-20 Daniel Jacobowitz <drow@mvista.com>
6918
6919 * linux-s390-low.c (s390_regmap): Check GPR_SIZE instead of
6920 defined(PT_FPR0_HI).
6921
23ce3b1c
DJ
69222002-11-17 Stuart Hughes <seh@zee2.com>
6923
6924 * linux-arm-low.c (arm_num_regs): Increase.
6925 (arm_regmap): Include status register.
6926
69272002-11-17 Daniel Jacobowitz <drow@mvista.com>
6928
6929 * linux-low.c (register_addr): Remove incorrect -1 check.
6930
a9fa9f7d
DJ
69312002-08-29 Daniel Jacobowitz <drow@mvista.com>
6932
6933 * linux-low.c (linux_create_inferior): Call setpgid. Return
6934 the new PID.
6935 (unstopped_p, linux_signal_pid): Remove.
6936 (linux_target_ops): Remove linux_signal_pid.
6937 * remote-utils.c (putpkt, input_interrupt): Use signal_pid
6938 global instead of target method.
6939 * target.h (struct target_ops): Remove signal_pid. Update comment
6940 for create_inferior.
6941 * server.c (signal_pid): New variable.
6942 (create_inferior): Set signal_pid. Block SIGTTOU and SIGTTIN in
4b8dad4a 6943 gdbserver. Set the child to be the foreground process group.
a9fa9f7d
DJ
6944 (attach_inferior): Set signal_pid.
6945
17574093
DJ
69462002-08-23 Daniel Jacobowitz <drow@mvista.com>
6947
6948 * ChangeLog: New file, with entries from gdb/ChangeLog after GDB 5.2.
6949
69502002-08-20 Jim Blandy <jimb@redhat.com>
6951
6952 * Makefile.in (LDFLAGS): Allow the configure script to establish a
6953 default for this.
6954
69552002-08-01 Andrew Cagney <cagney@redhat.com>
6956
6957 * Makefile.in: Make chill references obsolete.
6958
69592002-07-24 Kevin Buettner <kevinb@redhat.com>
6960
6961 * configure.in (unistd.h): Add to AC_CHECK_HEADERS list.
6962 * configure: Regenerate.
6963 * config.in: Regenerate.
6964
69652002-07-09 David O'Brien <obrien@FreeBSD.org>
6966
6967 * gdbreplay.c (stdlib.h, unistd.h): Conditionaly include.
6968 (perror_with_name, remote_close, remote_open, expect, play): Static.
6969
69702002-07-04 Michal Ludvig <mludvig@suse.cz>
6971
4b8dad4a 6972 * linux-x86-64-low.c (x86_64_regmap): Make it an array of
17574093
DJ
6973 byte offsets instead of an array of indexes.
6974 (x86_64_store_gregset, x86_64_store_fpregset): Parameter made const.
6975
69762002-06-13 Daniel Jacobowitz <drow@mvista.com>
6977
6978 * regcache.c: Add comment.
6979
69802002-06-11 Daniel Jacobowitz <drow@mvista.com>
6981
6982 * thread-db.c: New file.
6983 * proc-service.c: New file.
6984 * acinclude.m4: New file.
6985 * Makefile.in: Add GDBSERVER_LIBS, gdb_proc_service_h,
6986 proc-service.o, and thread-db.o.
6987 (linux-low.o): Add USE_THREAD_DB.
6988 * acconfig.h: Add HAVE_PRGREGSET_T, HAVE_PRFPREGSET_T,
6989 HAVE_LWPID_T, HAVE_PSADDR_T, and PRFPREGSET_T_BROKEN.
6990 * aclocal.m4: Regenerated.
6991 * config.in: Regenerated.
6992 * configure: Regenerated.
6993 * configure.in: Check for proc_service.h, sys/procfs.h,
6994 thread_db.h, and linux/elf.h headrs.
6995 Check for lwpid_t, psaddr_t, prgregset_t, prfpregset_t, and
6996 PRFPREGSET_T_BROKEN. Introduce srv_thread_depfiles and USE_THREAD_DB.
6997 Check for -lthread_db and thread support.
6998 * configure.srv: Enable thread_db support for ARM, i386, MIPS,
6999 PowerPC, and SuperH.
7000 * i387-fp.c: Constify arguments.
7001 * i387-fp.h: Likewise.
7002 * inferiors.c: (struct thread_info): Renamed from
7003 `struct inferior_info'. Remove PID member. Use generic inferior
7004 list header. All uses updated.
7005 (inferiors, signal_pid): Removed.
7006 (all_threads): New variable.
7007 (get_thread): Define.
7008 (add_inferior_to_list): New function.
7009 (for_each_inferior): New function.
7010 (change_inferior_id): New function.
7011 (add_inferior): Removed.
7012 (remove_inferior): New function.
7013 (add_thread): New function.
7014 (free_one_thread): New function.
7015 (remove_thread): New function.
7016 (clear_inferiors): Use for_each_inferior and free_one_thread.
7017 (find_inferior): New function.
7018 (find_inferior_id): New function.
7019 (inferior_target_data): Update argument type.
7020 (set_inferior_target_data): Likewise.
7021 (inferior_regcache_data): Likewise.
7022 (set_inferior_regcache_data): Likewise.
7023 * linux-low.c (linux_bp_reinsert): Remove.
7024 (all_processes, stopping_threads, using_thrads)
7025 (struct pending_signals, debug_threads, pid_of): New.
7026 (inferior_pid): Replace with macro.
7027 (struct inferior_linux_data): Remove.
7028 (get_stop_pc, add_process): New functions.
7029 (linux_create_inferior): Restore SIGRTMIN+1 before calling exec.
7030 Use add_process and add_thread.
7031 (linux_attach_lwp): New function, based on old linux_attach. Use
7032 add_process and add_thread. Set stop_expected for new threads.
7033 (linux_attach): New function.
7034 (linux_kill_one_process): New function.
7035 (linux_kill): Kill all LWPs.
7036 (linux_thread_alive): Use find_inferior_id.
7037 (check_removed_breakpoints, status_pending_p): New functions.
7038 (linux_wait_for_process): Renamed from linux_wait_for_one_inferior.
7039 Update. Use WNOHANG. Wait for cloned processes also. Update process
7040 struct for the found process.
7041 (linux_wait_for_event): New function.
7042 (linux_wait): Use it. Support LWPs.
7043 (send_sigstop, wait_for_sigstop, stop_all_processes)
7044 (linux_resume_one_process, linux_continue_one_process): New functions.
7045 (linux_resume): Support LWPs.
7046 (REGISTER_RAW_SIZE): Remove.
7047 (fetch_register): Use register_size instead. Call supply_register.
7048 (usr_store_inferior_registers): Likewise. Call collect_register.
7049 Fix recursive case.
7050 (regsets_fetch_inferior_registers): Improve error message.
7051 (regsets_store_inferior_registers): Add debugging.
7052 (linux_look_up_symbols): Call thread_db_init if USE_THREAD_DB.
7053 (unstopped_p, linux_signal_pid): New functions.
7054 (linux_target_ops): Add linux_signal_pid.
7055 (linux_init_signals): New function.
7056 (initialize_low): Call it. Initialize using_threads.
7057 * regcache.c (inferior_regcache_data): Add valid
7058 flag.
7059 (get_regcache): Fetch registers lazily. Add fetch argument
7060 and update all callers.
7061 (regcache_invalidate_one, regcache_invalidate): New
7062 functions.
7063 (new_register_cache): Renamed from create_register_cache.
7064 Return the new regcache.
7065 (free_register_cache): Change argument to a void *.
7066 (registers_to_string, registers_from_string): Call get_regcache
7067 with fetch flag set.
7068 (register_data): Make static. Pass fetch flag to get_regcache.
7069 (supply_register): Call get_regcache with fetch flag clear.
7070 (collect_register): Call get_regcache with fetch flag set.
7071 (collect_register_as_string): New function.
7072 * regcache.h: Update.
7073 * remote-utils.c (putpkt): Flush after debug output and use
7074 stderr.
7075 Handle input interrupts while waiting for an ACK.
7076 (input_interrupt): Use signal_pid method.
7077 (getpkt): Flush after debug output and use stderr.
7078 (outreg): Use collect_register_as_string.
7079 (new_thread_notify, dead_thread_notify): New functions.
7080 (prepare_resume_reply): Check using_threads. Set thread_from_wait
7081 and general_thread.
7082 (look_up_one_symbol): Flush after debug output.
7083 * server.c (step_thread, server_waiting): New variables.
7084 (start_inferior): Don't use signal_pid. Update call to mywait.
7085 (attach_inferior): Update call to mywait.
7086 (handle_query): Handle qfThreadInfo and qsThreadInfo.
7087 (main): Don't fetch/store registers explicitly. Use
7088 set_desired_inferior. Support proposed ``Hs'' packet. Update
7089 calls to mywait.
7090 * server.h: Update.
7091 (struct inferior_list, struct_inferior_list_entry): New.
7092 * target.c (set_desired_inferior): New.
7093 (write_inferior_memory): Constify.
7094 (mywait): New function.
7095 * target.h: Update.
7096 (struct target_ops): New signal_pid method.
7097 (mywait): Removed macro, added prototype.
7098
7099 * linux-low.h (regset_func): Removed.
7100 (regset_fill_func, regset_store_func): New.
7101 (enum regset_type): New.
7102 (struct regset_info): Add type field. Use new operation types.
7103 (struct linux_target_ops): stop_pc renamed to get_pc.
7104 Add decr_pc_after_break and breakpoint_at.
7105 (get_process, get_thread_proess, get_process_thread)
7106 (strut process_info, all_processes, linux_attach_lwp)
7107 (thread_db_init): New.
7108
7109 * linux-arm-low.c (arm_get_pc, arm_set_pc,
7110 arm_breakpoint, arm_breakpoint_len, arm_breakpoint_at): New.
7111 (the_low_target): Add new members.
7112 * linux-i386-low.c (i386_store_gregset, i386_store_fpregset)
7113 (i386_store_fpxregset): Constify.
7114 (target_regsets): Add new kind identifier.
7115 (i386_get_pc): Renamed from i386_stop_pc. Simplify.
7116 (i386_set_pc): Add debugging.
7117 (i386_breakpoint_at): New function.
7118 (the_low_target): Add new members.
7119 * linux-mips-low.c (mips_get_pc, mips_set_pc)
7120 (mips_breakpoint, mips_breakpoint_len, mips_reinsert_addr)
7121 (mips_breakpoint_at): New.
7122 (the_low_target): Add new members.
7123 * linux-ppc-low.c (ppc_get_pc, ppc_set_pc)
7124 (ppc_breakpoint, ppc_breakpoint_len, ppc_breakpoint_at): New.
7125 (the_low_target): Add new members.
7126 * linux-sh-low.c (sh_get_pc, sh_set_pc)
7127 (sh_breakpoint, sh_breakpoint_len, sh_breakpoint_at): New.
7128 (the_low_target): Add new members.
7129 * linux-x86-64-low.c (target_regsets): Add new kind
7130 identifier.
7131
71322002-05-15 Daniel Jacobowitz <drow@mvista.com>
7133
7134 From Martin Pool <mbp@samba.org>:
7135 * server.c (gdbserver_usage): New function.
7136 (main): Call it.
7137
71382002-05-14 Daniel Jacobowitz <drow@mvista.com>
7139
7140 * mem-break.c (reinsert_breakpoint_by_bp): Correct typo
7141 stop_at -> stop_pc.
7142
71432002-05-04 Andrew Cagney <ac131313@redhat.com>
7144
7145 * Makefile.in: Remove obsolete code.
7146
71472002-04-24 Michal Ludvig <mludvig@suse.cz>
7148
7149 * linux-low.c (regsets_fetch_inferior_registers),
7150 (regsets_store_inferior_registers): Removed cast to int from
7151 ptrace() calls.
7152 * regcache.h: Added declaration of struct inferior_info.
7153
71542002-04-20 Daniel Jacobowitz <drow@mvista.com>
7155
7156 * inferiors.c (struct inferior_info): Add regcache_data.
7157 (add_inferior): Call create_register_cache.
7158 (clear_inferiors): Call free_register_cache.
7159 (inferior_regcache_data, set_inferior_regcache_data): New functions.
7160 * regcache.c (struct inferior_regcache_data): New.
7161 (registers): Remove.
7162 (get_regcache): New function.
7163 (create_register_cache, free_register_cache): New functions.
7164 (set_register_cache): Don't initialize the register cache here.
7165 (registers_to_string, registers_from_string, register_data): Call
7166 get_regcache.
7167 * regcache.h: Add prototypes.
7168 * server.h: Likewise.
7169
71702002-04-20 Daniel Jacobowitz <drow@mvista.com>
7171
7172 * mem-break.c: New file.
7173 * mem-break.h: New file.
7174 * Makefile.in: Add mem-break.o rule; update server.h
7175 dependencies.
7176 * inferiors.c (struct inferior_info): Add target_data
7177 member.
7178 (clear_inferiors): Free target_data member if set.
7179 (inferior_target_data, set_inferior_target_data): New functions.
7180 * linux-i386-low.c (i386_breakpoint, i386_breakpoint_len)
7181 (i386_stop_pc, i386_set_pc): New. Add to the_low_target.
7182 * linux-low.c (linux_bp_reinsert): New variable.
7183 (struct inferior_linux_data): New.
7184 (linux_create_inferior): Use set_inferior_target_data.
7185 (linux_attach): Likewise. Call add_inferior.
7186 (linux_wait_for_one_inferior): New function.
7187 (linux_wait): Call it.
7188 (linux_write_memory): Add const.
7189 (initialize_low): Call set_breakpoint_data.
7190 * linux-low.h (struct linux_target_ops): Add breakpoint
7191 handling members.
7192 * server.c (attach_inferior): Remove extra add_inferior
7193 call.
7194 * server.h: Include mem-break.h. Update inferior.c
7195 prototypes.
7196 * target.c (read_inferior_memory)
7197 (write_inferior_memory): New functions.
7198 * target.h (read_inferior_memory)
7199 (write_inferior_memory): Change macros to prototypes.
7200 (struct target_ops): Update comments. Add const to write_memory
7201 definition.
7202
72032002-04-11 Daniel Jacobowitz <drow@mvista.com>
7204
7205 * linux-low.c (usr_store_inferior_registers): Support
7206 registers which are allowed to fail to store.
7207 * linux-low.h (linux_target_ops): Likewise.
7208 * linux-ppc-low.c (ppc_regmap): Support FPSCR.
7209 (ppc_cannot_store_register): FPSCR may not be storable.
7210
72112002-04-09 Daniel Jacobowitz <drow@mvista.com>
7212
7213 * server.h: Include <string.h> if HAVE_STRING_H.
7214 * ChangeLog: Correct paths in last ChangeLog entry.
7215
72162002-04-09 Daniel Jacobowitz <drow@mvista.com>
7217
7218 * linux-low.h: Remove obsolete prototypes.
7219 (struct linux_target_ops): New.
7220 (extern the_low_target): New.
7221 * linux-low.c (num_regs, regmap): Remove declarations.
7222 (register_addr): Use the_low_target explicitly.
7223 (fetch_register): Likewise.
7224 (usr_fetch_inferior_registers): Likewise.
7225 (usr_store_inferior_registers): Likewise.
7226 * linux-arm-low.c (num_regs): Remove.
7227 (arm_num_regs): Define.
7228 (arm_regmap): Renamed from regmap, made static.
7229 (arm_cannot_fetch_register): Renamed from cannot_fetch_register,
7230 made static.
7231 (arm_cannot_store_register): Renamed from cannot_store_register,
7232 made static.
7233 (the_low_target): New.
7234 * linux-i386-low.c (num_regs): Remove.
7235 (i386_num_regs): Define.
7236 (i386_regmap): Renamed from regmap, made static.
7237 (i386_cannot_fetch_register): Renamed from cannot_fetch_register,
7238 made static.
7239 (i386_cannot_store_register): Renamed from cannot_store_register,
7240 made static.
7241 (the_low_target): New.
7242 * linux-ia64-low.c (num_regs): Remove.
7243 (ia64_num_regs): Define.
7244 (ia64_regmap): Renamed from regmap, made static.
7245 (ia64_cannot_fetch_register): Renamed from cannot_fetch_register,
7246 made static.
7247 (ia64_cannot_store_register): Renamed from cannot_store_register,
7248 made static.
7249 (the_low_target): New.
7250 * linux-m68k-low.c (num_regs): Remove.
7251 (m68k_num_regs): Define.
7252 (m68k_regmap): Renamed from regmap, made static.
7253 (m68k_cannot_fetch_register): Renamed from cannot_fetch_register,
7254 made static.
7255 (m68k_cannot_store_register): Renamed from cannot_store_register,
7256 made static.
7257 (the_low_target): New.
7258 * linux-mips-low.c (num_regs): Remove.
7259 (mips_num_regs): Define.
7260 (mips_regmap): Renamed from regmap, made static.
7261 (mips_cannot_fetch_register): Renamed from cannot_fetch_register,
7262 made static.
7263 (mips_cannot_store_register): Renamed from cannot_store_register,
7264 made static.
7265 (the_low_target): New.
7266 * linux-ppc-low.c (num_regs): Remove.
7267 (ppc_num_regs): Define.
7268 (ppc_regmap): Renamed from regmap, made static.
7269 (ppc_cannot_fetch_register): Renamed from cannot_fetch_register,
7270 made static.
7271 (ppc_cannot_store_register): Renamed from cannot_store_register,
7272 made static.
7273 (the_low_target): New.
7274 * linux-s390-low.c (num_regs): Remove.
7275 (s390_num_regs): Define.
7276 (s390_regmap): Renamed from regmap, made static.
7277 (s390_cannot_fetch_register): Renamed from cannot_fetch_register,
7278 made static.
7279 (s390_cannot_store_register): Renamed from cannot_store_register,
7280 made static.
7281 (the_low_target): New.
7282 * linux-sh-low.c (num_regs): Remove.
7283 (sh_num_regs): Define.
7284 (sh_regmap): Renamed from regmap, made static.
7285 (sh_cannot_fetch_register): Renamed from cannot_fetch_register,
7286 made static.
7287 (sh_cannot_store_register): Renamed from cannot_store_register,
7288 made static.
7289 (the_low_target): New.
7290 * linux-x86-64-low.c (x86_64_regmap): Renamed from regmap.
7291 (the_low_target): New.
7292
72932002-04-09 Daniel Jacobowitz <drow@mvista.com>
7294
7295 * Makefile.in: Add stamp-h target.
7296 * configure.in: Create stamp-h.
7297 * configure: Regenerated.
7298
72992002-04-09 Daniel Jacobowitz <drow@mvista.com>
7300
7301 * inferiors.c: New file.
7302 * target.c: New file.
7303 * target.h: New file.
7304 * Makefile.in: Add target.o and inferiors.o. Update
7305 dependencies.
7306 * linux-low.c (inferior_pid): New static variable,
7307 moved from server.c.
7308 (linux_create_inferior): Renamed from create_inferior.
7309 Call add_inferior. Return 0 on success instead of a PID.
7310 (linux_attach): Renamed from myattach.
7311 (linux_kill): Renamed from kill_inferior. Call clear_inferiors ().
7312 (linux_thread_alive): Renamed from mythread_alive.
7313 (linux_wait): Renamed from mywait. Call clear_inferiors () if the
7314 child dies.
7315 (linux_resume): Renamed from myresume. Add missing ``return 0''.
7316 (regsets_store_inferior_registers): Correct error message.
7317 Add missing ``return 0''.
7318 (linux_fetch_registers): Renamed from fetch_inferior_registers.
7319 (linux_store_registers): Renamed from store_inferior_registers.
7320 (linux_read_memory): Renamed from read_inferior_memory.
7321 (linux_write_memory): Renamed from write_inferior_memory.
7322 (linux_target_ops): New structure.
7323 (initialize_low): Call set_target_ops ().
7324 * remote-utils.c (unhexify): New function.
7325 (hexify): New function.
7326 (input_interrupt): Send signals to ``signal_pid''.
7327 * server.c (inferior_pid): Remove.
7328 (start_inferior): Update create_inferior call.
7329 (attach_inferior): Call add_inferior.
7330 (handle_query): New function.
7331 (main): Call handle_query for `q' packets.
7332 * server.h: Include "target.h". Remove obsolete prototypes.
7333 Add prototypes for "inferiors.c", "target.c", hexify, and unhexify.
7334
73352002-04-09 Daniel Jacobowitz <drow@mvista.com>
7336
7337 * Makefile.in: Add WARN_CFLAGS. Update configury
7338 dependencies.
7339 * configure.in: Check for <string.h>
7340 * configure: Regenerate.
7341 * config.in: Regenerate.
7342 * gdbreplay.c: Include needed system headers.
7343 (remote_open): Remove strchr prototype.
7344 * linux-low.h: Correct #ifdef to HAVE_LINUX_USRREGS.
7345 * regcache.c (supply_register): Change buf argument to const void *.
7346 (supply_register_by_name): Likewise.
7347 (collect_register): Change buf argument to void *.
7348 (collect_register_by_name): Likewise.
7349 * regcache.h: Add missing prototypes.
7350 * remote-utils.c: Include <arpa/inet.h> for inet_ntoa.
7351 * server.c (handle_query): New function.
7352 (attached): New static variable, moved out of main.
7353 (main): Quiet longjmp clobber warnings.
7354 * server.h: Add ATTR_NORETURN and ATTR_FORMAT. Update prototypes.
7355 * utils.c (error): Remove NORETURN.
7356 (fatal): Likewise.