]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/gdbserver/ChangeLog
Move pagination_enabled declaration to a proper place.
[thirdparty/binutils-gdb.git] / gdb / gdbserver / ChangeLog
CommitLineData
257b6bec
MG
12013-06-28 Mircea Gherzan <mircea.gherzan@intel.com>
2
3 * configure.ac (version_host, version_target): Set and AC_SUBST them.
4 * configure: Rebuild.
5 * Makefile.in (version_host, version_target): Get from configure.
6 (version.c): Use $(version_host) and $(version_target).
7
86ebe149
DK
82013-06-10 Dmitry Kozlov <ddk@codesourcery.com>
9
10 Fix trace-status to output user name without trailing colon.
11 * tracepoint.c (cmd_qtstatus): Remove unnecessary colon from user name.
12
f30aa5af
DK
132013-06-10 Dmitry Kozlov <ddk@codesourcery.com>
14
15 Fix trace-status to output proper start-time and stop-time.
16 * tracepoint.c (cmd_qtstatus): Modify trace-status output to
17 output start time and stop time in hex as gdb expects.
18
28a93511
YQ
192013-06-26 Pedro Alves <pedro@codesourcery.com>
20
21 * tracepoint.c (build_traceframe_info_xml): Output trace state
22 variables present in the trace buffer.
23
01208463
TT
242013-06-24 Tom Tromey <tromey@redhat.com>
25
26 * Makefile.in (version.c): Use bfd/version.h, common/version.in,
27 create-version.sh.
28 (version.o): Remove.
29 * gdbreplay.c: Include version.h.
30 (version, host_name): Don't declare.
31 * server.h: Include version.h.
32 (version, host_name): Don't declare.
33
760256f9
PA
342013-06-12 Pedro Alves <palves@redhat.com>
35
36 * linux-x86-low.c (linux_is_elf64): Delete global.
37 (x86_siginfo_fixup): Replace reference to `linux_is_elf64' global
38 with local linux_pid_exe_is_elf_64_file use.
39
030031ee
PA
402013-06-11 Pedro Alves <palves@redhat.com>
41
42 * linux-low.c (regset_disabled, disable_regset): New functions.
43 (regsets_fetch_inferior_registers)
44 (regsets_store_inferior_registers): Use them.
45 (initialize_regsets_info); Don't allocate the disabled_regsets
46 array here.
47 * linux-low.h (struct regsets_info) <disabled_regsets>: Extend
48 comment.
49
5da6eb0a
PA
502013-06-11 Pedro Alves <palves@redhat.com>
51
52 * linux-low.c (initialize_regsets_info): Use xcalloc instead of
53 xmalloc.
54
7e5aaa09
PA
552013-06-11 Pedro Alves <palves@redhat.com>
56
57 * linux-x86-low.c (initialize_low_arch): Call
58 init_registers_x32_avx_linux.
59
d878444c
JK
602013-06-09 Jan Kratochvil <jan.kratochvil@redhat.com>
61
62 Fix compatibility with Android Bionic.
63 * linux-low.c (linux_qxfer_libraries_svr4): Ignore first entry even if
64 it is not empty.
65
3aee8918
PA
662013-06-07 Pedro Alves <palves@redhat.com>
67
5f2b57b5 68 PR server/14823
3aee8918
PA
69 * Makefile.in (OBS): Add tdesc.o.
70 (IPA_OBJS): Add tdesc-ipa.o.
71 (tdesc-ipa.o): New rule.
72 * ax.c (gdb_eval_agent_expr): Adjust register_size call to new
73 interface.
74 * linux-low.c (new_inferior): Delete.
75 (disabled_regsets, num_regsets): Delete.
76 (linux_add_process): Adjust to set the new per-process
77 new_inferior flag.
78 (linux_detach_one_lwp): Adjust to call regcache_invalidate_thread.
79 (linux_wait_for_lwp): Adjust. Only call arch_setup if the event
80 was a stop. When calling arch_setup, switch the current inferior
81 to the thread that got an event.
82 (linux_resume_one_lwp): Adjust to call regcache_invalidate_thread.
83 (regsets_fetch_inferior_registers)
84 (regsets_store_inferior_registers): New regsets_info parameter.
85 Adjust to use it.
86 (linux_register_in_regsets): New regs_info parameter. Adjust to
87 use it.
88 (register_addr, fetch_register, store_register): New usrregs_info
89 parameter. Adjust to use it.
90 (usr_fetch_inferior_registers, usr_store_inferior_registers): New
91 parameter regs_info. Adjust to use it.
92 (linux_fetch_registers): Get the current inferior's regs_info, and
93 adjust to use it.
94 (linux_store_registers): Ditto.
95 [HAVE_LINUX_REGSETS] (initialize_regsets_info): New.
96 (initialize_low): Don't initialize the target_regsets here. Call
97 initialize_low_arch.
98 * linux-low.h (target_regsets): Delete declaration.
99 (struct regsets_info): New.
100 (struct usrregs_info): New.
101 (struct regs_info): New.
102 (struct process_info_private) <new_inferior>: New field.
103 (struct linux_target_ops): Delete the num_regs, regmap, and
104 regset_bitmap fields. New field regs_info.
105 [HAVE_LINUX_REGSETS] (initialize_regsets_info): Declare.
106 * i387-fp.c (num_xmm_registers): Delete.
107 (i387_cache_to_fsave, i387_fsave_to_cache): Adjust find_regno
108 calls to new interface.
109 (i387_cache_to_fxsave, i387_cache_to_xsave, i387_fxsave_to_cache)
110 (i387_xsave_to_cache): Adjust find_regno calls to new interface.
111 Infer the number of xmm registers from the regcache's target
112 description.
113 * i387-fp.h (num_xmm_registers): Delete.
114 * inferiors.c (add_thread): Don't install the thread's regcache
115 here.
116 * proc-service.c (gregset_info): Fetch the current inferior's
117 regs_info. Adjust to use it.
118 * regcache.c: Include tdesc.h.
119 (register_bytes, reg_defs, num_registers)
120 (gdbserver_expedite_regs): Delete.
121 (get_thread_regcache): If the thread doesn't have a regcache yet,
122 create one, instead of aborting gdbserver.
123 (regcache_invalidate_one): Rename to ...
124 (regcache_invalidate_thread): ... this.
125 (regcache_invalidate_one): New.
126 (regcache_invalidate): Only invalidate registers of the current
127 process.
128 (init_register_cache): Add target_desc parameter, and use it.
129 (new_register_cache): Ditto. Assert the target description has a
130 non zero registers_size.
131 (regcache_cpy): Add assertions. Adjust.
132 (realloc_register_cache, set_register_cache): Delete.
133 (registers_to_string, registers_from_string): Adjust.
134 (find_register_by_name, find_regno, find_register_by_number)
135 (register_cache_size): Add target_desc parameter, and use it.
136 (free_register_cache_thread, free_register_cache_thread_one)
137 (regcache_release, register_cache_size): New.
138 (register_size): Add target_desc parameter, and use it.
139 (register_data, supply_register, supply_register_zeroed)
140 (supply_regblock, supply_register_by_name, collect_register)
141 (collect_register_as_string, collect_register_by_name): Adjust.
142 * regcache.h (struct target_desc): Forward declare.
143 (struct regcache) <tdesc>: New field.
144 (init_register_cache, new_register_cache): Add target_desc
145 parameter.
146 (regcache_invalidate_thread): Declare.
147 (regcache_invalidate_one): Delete declaration.
148 (regcache_release): Declare.
149 (find_register_by_number, register_cache_size, register_size)
150 (find_regno): Add target_desc parameter.
151 (gdbserver_expedite_regs, gdbserver_xmltarget): Delete
152 declarations.
153 * remote-utils.c: Include tdesc.h.
154 (outreg, prepare_resume_reply): Adjust.
155 * server.c: Include tdesc.h.
156 (gdbserver_xmltarget): Delete declaration.
157 (get_features_xml, process_serial_event): Adjust.
158 * server.h [IN_PROCESS_AGENT] (struct target_desc): Forward
159 declare.
160 (struct process_info) <tdesc>: New field.
161 (ipa_tdesc): Declare.
162 * tdesc.c: New file.
163 * tdesc.h: New file.
164 * tracepoint.c: Include tdesc.h.
165 [IN_PROCESS_AGENT] (ipa_tdesc): Define.
166 (get_context_regcache): Adjust to pass ipa_tdesc down.
167 (do_action_at_tracepoint): Adjust to get the register cache size
168 from the context regcache's description.
169 (traceframe_walk_blocks): Adjust to get the register cache size
170 from the current trace frame's description.
171 (traceframe_get_pc): Adjust to get current trace frame's
172 description and pass it down.
173 (gdb_collect): Adjust to get the register cache size from the
174 IPA's description.
175 * linux-amd64-ipa.c (tdesc_amd64_linux): Declare.
176 (gdbserver_xmltarget): Delete.
177 (initialize_low_tracepoint): Set the ipa's target description.
178 * linux-i386-ipa.c (tdesc_i386_linux): Declare.
179 (initialize_low_tracepoint): Set the ipa's target description.
180 * linux-x86-low.c: Include tdesc.h.
181 [__x86_64__] (is_64bit_tdesc): New.
182 (ps_get_thread_area, x86_get_thread_area): Use it.
183 (i386_cannot_store_register): Rename to ...
184 (x86_cannot_store_register): ... this. Use is_64bit_tdesc.
185 (i386_cannot_fetch_register): Rename to ...
186 (x86_cannot_fetch_register): ... this. Use is_64bit_tdesc.
187 (x86_fill_gregset, x86_store_gregset): Adjust register_size calls
188 to new interface.
189 (target_regsets): Rename to ...
190 (x86_regsets): ... this.
191 (x86_get_pc, x86_set_pc): Adjust register_size calls to new
192 interface.
193 (x86_siginfo_fixup): Use is_64bit_tdesc.
194 [__x86_64__] (tdesc_amd64_linux, tdesc_amd64_avx_linux)
195 (tdesc_x32_avx_linux, tdesc_x32_linux)
196 (tdesc_i386_linux, tdesc_i386_mmx_linux, tdesc_i386_avx_linux):
197 Declare.
198 (x86_linux_update_xmltarget): Delete.
199 (I386_LINUX_XSAVE_XCR0_OFFSET): Define.
200 (have_ptrace_getfpxregs, have_ptrace_getregset): New.
201 (AMD64_LINUX_USER64_CS): New.
202 (x86_linux_read_description): New, based on
203 x86_linux_update_xmltarget.
204 (same_process_callback): New.
205 (x86_arch_setup_process_callback): New.
206 (x86_linux_update_xmltarget): New.
207 (x86_regsets_info): New.
208 (amd64_linux_regs_info): New.
209 (i386_linux_usrregs_info): New.
210 (i386_linux_regs_info): New.
211 (x86_linux_regs_info): New.
212 (x86_arch_setup): Reimplement.
213 (x86_install_fast_tracepoint_jump_pad): Use is_64bit_tdesc.
214 (x86_emit_ops): Ditto.
215 (the_low_target): Adjust. Install x86_linux_regs_info,
216 x86_cannot_fetch_register, and x86_cannot_store_register.
217 (initialize_low_arch): New.
218 * linux-ia64-low.c (tdesc_ia64): Declare.
219 (ia64_fetch_register): Adjust.
220 (ia64_usrregs_info, regs_info): New globals.
221 (ia64_regs_info): New function.
222 (the_low_target): Adjust.
223 (initialize_low_arch): New function.
224 * linux-sparc-low.c (tdesc_sparc64): Declare.
225 (sparc_fill_gregset_to_stack, sparc_store_gregset_from_stack):
226 Adjust.
227 (sparc_arch_setup): New function.
228 (sparc_regsets_info, sparc_usrregs_info, regs_info): New globals.
229 (the_low_target): Adjust.
230 (initialize_low_arch): New function.
231 * linux-ppc-low.c (tdesc_powerpc_32l, tdesc_powerpc_altivec32l)
232 (tdesc_powerpc_cell32l, tdesc_powerpc_vsx32l)
233 (tdesc_powerpc_isa205_32l, tdesc_powerpc_isa205_altivec32l)
234 (tdesc_powerpc_isa205_vsx32l, tdesc_powerpc_e500l)
235 (tdesc_powerpc_64l, tdesc_powerpc_altivec64l)
236 (tdesc_powerpc_cell64l, tdesc_powerpc_vsx64l)
237 (tdesc_powerpc_isa205_64l, tdesc_powerpc_isa205_altivec64l)
238 (tdesc_powerpc_isa205_vsx64l): Declare.
239 (ppc_cannot_store_register, ppc_collect_ptrace_register)
240 (ppc_supply_ptrace_register, parse_spufs_run, ppc_get_pc)
241 (ppc_set_pc, ppc_get_hwcap): Adjust.
242 (ppc_usrregs_info): Forward declare.
243 (!__powerpc64__) ppc_regmap_adjusted: New global.
244 (ppc_arch_setup): Adjust to the current process'es target
245 description.
246 (ppc_fill_vsxregset, ppc_store_vsxregset, ppc_fill_vrregset)
247 (ppc_store_vrregset, ppc_fill_evrregset, ppc_store_evrregse)
248 (ppc_store_evrregset): Adjust.
249 (target_regsets): Rename to ...
250 (ppc_regsets): ... this, and make static.
251 (ppc_usrregs_info, ppc_regsets_info, regs_info): New globals.
252 (ppc_regs_info): New function.
253 (the_low_target): Adjust.
254 (initialize_low_arch): New function.
255 * linux-s390-low.c (tdesc_s390_linux32, tdesc_s390_linux32v1)
256 (tdesc_s390_linux32v2, tdesc_s390_linux64, tdesc_s390_linux64v1)
257 (tdesc_s390_linux64v2, tdesc_s390x_linux64, tdesc_s390x_linux64v1)
258 (tdesc_s390x_linux64v2): Declare.
259 (s390_collect_ptrace_register, s390_supply_ptrace_register)
260 (s390_fill_gregset, s390_store_last_break): Adjust.
261 (target_regsets): Rename to ...
262 (s390_regsets): ... this, and make static.
263 (s390_get_pc, s390_set_pc): Adjust.
264 (s390_get_hwcap): New target_desc parameter, and use it.
265 [__s390x__] (have_hwcap_s390_high_gprs): New global.
266 (s390_arch_setup): Adjust to set the current process'es target
267 description. Don't adjust the regmap.
268 (s390_usrregs_info, s390_regsets_info, regs_info): New globals.
269 [__s390x__] (s390_usrregs_info_3264, s390_regsets_info_3264)
270 (regs_info_3264): New globals.
271 (s390_regs_info): New function.
272 (the_low_target): Adjust.
273 (initialize_low_arch): New function.
274 * linux-mips-low.c (tdesc_mips_linux, tdesc_mips_dsp_linux)
275 (tdesc_mips64_linux, tdesc_mips64_dsp_linux): Declare.
276 [__mips64] (init_registers_mips_linux)
277 (init_registers_mips_dsp_linux): Delete defines.
278 [__mips64] (tdesc_mips_linux, tdesc_mips_dsp_linux): New defines.
279 (have_dsp): New global.
280 (mips_read_description): New, based on mips_arch_setup.
281 (mips_arch_setup): Reimplement.
282 (get_usrregs_info): New function.
283 (mips_cannot_fetch_register, mips_cannot_store_register)
284 (mips_get_pc, mips_set_pc, mips_fill_gregset, mips_store_gregset)
285 (mips_fill_fpregset, mips_store_fpregset): Adjust.
286 (target_regsets): Rename to ...
287 (mips_regsets): ... this, and make static.
288 (mips_regsets_info, mips_dsp_usrregs_info, mips_usrregs_info)
289 (dsp_regs_info, regs_info): New globals.
290 (mips_regs_info): New function.
291 (the_low_target): Adjust.
292 (initialize_low_arch): New function.
293 * linux-arm-low.c (tdesc_arm, tdesc_arm_with_iwmmxt)
294 (tdesc_arm_with_vfpv2, tdesc_arm_with_vfpv3, tdesc_arm_with_neon):
295 Declare.
296 (arm_fill_vfpregset, arm_store_vfpregset): Adjust.
297 (arm_read_description): New, with bits factored from
298 arm_arch_setup.
299 (arm_arch_setup): Reimplement.
300 (target_regsets): Rename to ...
301 (arm_regsets): ... this, and make static.
302 (arm_regsets_info, arm_usrregs_info, regs_info): New globals.
303 (arm_regs_info): New function.
304 (the_low_target): Adjust.
305 (initialize_low_arch): New function.
306 * linux-m68k-low.c (tdesc_m68k): Declare.
307 (target_regsets): Rename to ...
308 (m68k_regsets): ... this, and make static.
309 (m68k_regsets_info, m68k_usrregs_info, regs_info): New globals.
310 (m68k_regs_info): New function.
311 (m68k_arch_setup): New function.
312 (the_low_target): Adjust.
313 (initialize_low_arch): New function.
314 * linux-sh-low.c (tdesc_sharch): Declare.
315 (target_regsets): Rename to ...
316 (sh_regsets): ... this, and make static.
317 (sh_regsets_info, sh_usrregs_info, regs_info): New globals.
318 (sh_regs_info, sh_arch_setup): New functions.
319 (the_low_target): Adjust.
320 (initialize_low_arch): New function.
321 * linux-bfin-low.c (tdesc_bfin): Declare.
322 (bfin_arch_setup): New function.
323 (bfin_usrregs_info, regs_info): New globals.
324 (bfin_regs_info): New function.
325 (the_low_target): Adjust.
326 (initialize_low_arch): New function.
327 * linux-cris-low.c (tdesc_cris): Declare.
328 (cris_arch_setup): New function.
329 (cris_usrregs_info, regs_info): New globals.
330 (cris_regs_info): New function.
331 (the_low_target): Adjust.
332 (initialize_low_arch): New function.
333 * linux-cris-low.c (tdesc_crisv32): Declare.
334 (cris_arch_setup): New function.
335 (cris_regsets_info, cris_usrregs_info, regs_info): New globals.
336 (cris_regs_info): New function.
337 (the_low_target): Adjust.
338 (initialize_low_arch): New function.
339 * linux-m32r-low.c (tdesc_m32r): Declare.
340 (m32r_arch_setup): New function.
341 (m32r_usrregs_info, regs_info): New globals.
342 (m32r_regs_info): Adjust.
343 (initialize_low_arch): New function.
344 * linux-tic6x-low.c (tdesc_tic6x_c64xp_linux)
345 (tdesc_tic6x_c64x_linux, tdesc_tic6x_c62x_linux): Declare.
346 (tic6x_usrregs_info): Forward declare.
347 (tic6x_read_description): New function, based on ...
348 (tic6x_arch_setup): ... this. Reimplement.
349 (target_regsets): Rename to ...
350 (tic6x_regsets): ... this, and make static.
351 (tic6x_regsets_info, tic6x_usrregs_info, regs_info): New globals.
352 (tic6x_regs_info): New function.
353 (the_low_target): Adjust.
354 (initialize_low_arch): New function.
355 * linux-xtensa-low.c (tdesc_xtensa): Declare.
356 (xtensa_fill_gregset, xtensa_store_gregset): Adjust.
357 (target_regsets): Rename to ...
358 (xtensa_regsets): ... this, and make static.
359 (xtensa_regsets_info, xtensa_usrregs_info, regs_info): New
360 globals.
361 (xtensa_arch_setup, xtensa_regs_info): New functions.
362 (the_low_target): Adjust.
363 (initialize_low_arch): New function.
364 * linux-nios2-low.c (tdesc_nios2_linux): Declare.
365 (nios2_arch_setup): Set the current process'es tdesc.
366 (target_regsets): Rename to ...
367 (nios2_regsets): ... this.
368 (nios2_regsets_info, nios2_usrregs_info, regs_info): New globals.
369 (nios2_regs_info): New function.
370 (the_low_target): Adjust.
371 (initialize_low_arch): New function.
372 * linux-aarch64-low.c (tdesc_aarch64): Declare.
373 (aarch64_arch_setup): Set the current process'es tdesc.
374 (target_regsets): Rename to ...
375 (aarch64_regsets): ... this.
376 (aarch64_regsets_info, aarch64_usrregs_info, regs_info): New globals.
377 (aarch64_regs_info): New function.
378 (the_low_target): Adjust.
379 (initialize_low_arch): New function.
380 * linux-tile-low.c (tdesc_tilegx, tdesc_tilegx32): Declare
381 globals.
382 (target_regsets): Rename to ...
383 (tile_regsets): ... this.
384 (tile_regsets_info, tile_usrregs_info, regs_info): New globals.
385 (tile_regs_info): New function.
386 (tile_arch_setup): Set the current process'es tdesc.
387 (the_low_target): Adjust.
388 (initialize_low_arch): New function.
389 * spu-low.c (tdesc_spu): Declare.
390 (spu_create_inferior, spu_attach): Set the new process'es tdesc.
391 * win32-arm-low.c (tdesc_arm): Declare.
392 (arm_arch_setup): New function.
393 (the_low_target): Install arm_arch_setup instead of
394 init_registers_arm.
395 * win32-i386-low.c (tdesc_i386, tdesc_amd64): Declare.
396 (init_windows_x86): Rename to ...
397 (i386_arch_setup): ... this. Set `win32_tdesc'.
398 (the_low_target): Adjust.
399 * win32-low.c (win32_tdesc): New global.
400 (child_add_thread): Don't create the thread cache here.
401 (do_initial_child_stuff): Set the new process'es tdesc.
402 * win32-low.h (struct target_desc): Forward declare.
403 (win32_tdesc): Declare.
404 * lynx-i386-low.c (tdesc_i386): Declare global.
405 (lynx_i386_arch_setup): Set `lynx_tdesc'.
406 * lynx-low.c (lynx_tdesc): New global.
407 (lynx_add_process): Set the new process'es tdesc.
408 * lynx-low.h (struct target_desc): Forward declare.
409 (lynx_tdesc): Declare global.
410 * lynx-ppc-low.c (tdesc_powerpc_32): Declare global.
411 (lynx_ppc_arch_setup): Set `lynx_tdesc'.
412 * nto-low.c (nto_tdesc): New global.
413 (do_attach): Set the new process'es tdesc.
414 * nto-low.h (struct target_desc): Forward declare.
415 (nto_tdesc): Declare.
416 * nto-x86-low.c (tdesc_i386): Declare.
417 (nto_x86_arch_setup): Set `nto_tdesc'.
418
b1fbec62
GB
4192013-06-04 Gary Benson <gbenson@redhat.com>
420
421 * server.c (handle_query): Add "augmented-libraries-svr4-read+"
422 to qSupported response when appropriate.
423 (handle_qxfer_libraries_svr4): Allow qXfer:libraries-svr4:read
424 with nonzero-length annex.
425 * linux-low.c (linux_qxfer_libraries_svr4): Parse and handle
426 arguments supplied in annex.
427
d1ec4ce7
DE
4282013-05-31 Doug Evans <dje@google.com>
429
ac44adcb 430 PR server/15594
d1ec4ce7
DE
431 * linux-x86-low.c (ps_get_thread_area): Properly extend address to
432 64 bits in 64-cross-32 environment.
433
9b25f2d3
PA
4342013-05-28 Pedro Alves <palves@redhat.com>
435
436 * Makefile.in (clean): Remove reference to aarch64-without-fpu.c.
437 (aarch64-without-fpu.c): Delete rule.
438 * configure.srv (aarch64*-*-linux*): Remove references to
439 aarch64-without-fpu.o and aarch64-without-fpu.xml.
440 * linux-aarch64-low.c (init_registers_aarch64_without_fpu): Remove
441 declaration.
442
6740dc9c
PA
4432013-05-24 Pedro Alves <palves@redhat.com>
444
445 * server.c (handle_v_cont) <vCont;r>: Use unpack_varlen_hex
446 instead of strchr/decode_address. Error if the range isn't split
447 with a ','. Don't assume there's be a ':' in the action.
448
c2d6af84
PA
4492013-05-23 Yao Qi <yao@codesourcery.com>
450 Pedro Alves <palves@redhat.com>
451
452 * linux-low.c (lwp_in_step_range): New function.
453 (linux_wait_1): If the thread was range stepping and stopped
454 outside the stepping range, report the stop to GDB. Otherwise,
455 continue stepping. Add range stepping debug output.
456 (linux_set_resume_request): Copy the step range from the resume
457 request to the lwp.
458 (linux_supports_range_stepping): New.
459 (linux_target_ops) <supports_range_stepping>: Set to
460 linux_supports_range_stepping.
461 * linux-low.h (struct linux_target_ops)
462 <supports_range_stepping>: New field.
463 (struct lwp_info) <step_range_start, step_range_end>: New fields.
464 * linux-x86-low.c (x86_supports_range_stepping): New.
465 (the_low_target) <supports_range_stepping>: Set to
466 x86_supports_range_stepping.
467 * server.c (handle_v_cont): Handle 'r' action.
468 (handle_v_requests): Append ";r" if the target supports range
469 stepping.
470 * target.h (struct thread_resume) <step_range_start,
471 step_range_end>: New fields.
472 (struct target_ops) <supports_range_stepping>:
473 New field.
474 (target_supports_range_stepping): New macro.
475
58794e1a
JB
4762013-05-17 Joel Brobecker <brobecker@adacore.com>
477
478 * lynx-low.c (lynx_resume): Fix null_ptid/minus_one_ptid
479 confusion in comment.
480
d631c5a7
JB
4812013-05-17 Joel Brobecker <brobecker@adacore.com>
482
483 * lynx-low.c (struct process_info_private): New type.
484 (lynx_add_process): New function.
485 (lynx_create_inferior, lynx_attach): Replace calls to
486 add_process by calls to lynx_add_process.
487 (lynx_resume): If PTID is null, then try using
488 current_process()->private->last_wait_event_ptid.
489 Add comments.
490 (lynx_clear_inferiors): Delete. The contents of that function
491 has been inlined in lynx_mourn;
492 (lynx_wait_1): Save the ptid in the process's private data.
493 (lynx_mourn): Free the process' private data. Replace call
494 to lynx_clear_inferiors by call to clear_inferiors.
495
96f7a20f
YQ
4962013-05-17 Yao Qi <yao@codesourcery.com>
497
498 * i386-low.c (i386_length_and_rw_bits): Move the comment to
499 the right place.
500
db0dfaa0
LM
5012013-05-16 Luis Machado <lgustavo@codesourcery.com>
502
503 * linux-low.c: Move definition checks upwards for PT_TEXT_ADDR,
504 PT_DATA_ADDR and PT_TEXT_END_ADDR. Update comments.
505 (linux_read_offsets): Remove PT_TEXT_ADDR, PT_DATA_ADDR and
506 PT_TEXT_END_ADDR guards. Update comments.
507 (linux_target_op) <read_offsets>: Conditionally define to
508 linux_read_offsets if the target is UCLIBC and if it defines
509 PT_TEXT_ADDR, PT_DATA_ADDR and PT_TEXT_END_ADDR.
510
68f5f838
SL
5112013-05-06 Sandra Loosemore <sandra@codesourcery.com>
512 Andrew Jenner <andrew@codesourcery.com>
513
514 * Makefile.in (SFILES): Add linux-nios2-low.c.
515 (clean): Add action to delete nios2-linux.c.
516 (nios2-linux.c): New rule.
517 * configure.srv: Add nios2*-*-linux*.
518 * linux-nios2-low.c: New.
519
1ebff1fd
HAQ
5202013-05-03 Hafiz Abid Qadeer <abidh@codesourcery.com>
521
522 * tracepoint.c (cmd_qtinit): Call 'stop_tracing'.
523
f6150862
HZ
5242013-04-25 Hui Zhu <hui@codesourcery.com>
525
526 PR gdb/15186
f6150862
HZ
527 * ax.c (ax_printf): Add fflush.
528
614c279d
TT
5292013-04-22 Tom Tromey <tromey@redhat.com>
530
531 * Makefile.in (SFILES): Add filestuff.c.
532 (OBS): Add filestuff.o.
533 (filestuff.o): New target.
534 * config.in, configure: Rebuild.
535 * configure.ac: Check for fdwalk, pipe2.
536
7d4e5717
PA
5372013-04-17 Pedro Alves <palves@redhat.com>
538
539 * configure.ac (USE_THREAD_DB): Delete variable.
540 (if test "$srv_linux_thread_db" = "yes"): AC_DEFINE USE_THREAD_DB.
541 Don't AC_SUBST USE_THREAD_DB.
542 * Makefile.in (INTERNAL_CFLAGS): Remove @USE_THREAD_DB@.
543 * config.in, configure: Regenerate.
544
d5c93e41
PA
5452013-04-16 Pedro Alves <palves@redhat.com>
546
547 * linux-low.h (struct lwp_info) <thread_known>: Move under
548 the USE_THREAD_DB #ifdef.
549
04f5fe89
PA
5502013-04-16 Pedro Alves <palves@redhat.com>
551
552 * Makefile.in (INTERNAL_CFLAGS): Add @USE_THREAD_DB@.
553 (linux-low.o): Delete rule.
554 * linux-low.h: Always include "gdb_thread_db.h" instead of
555 conditionally including thread_db.h.
556 (struct lwp_info) <th>: Guard with #ifdef USE_THREAD_DB instead of
557 HAVE_THREAD_DB_H.
558
480b27bf
JK
5592013-04-07 Jan Kratochvil <jan.kratochvil@redhat.com>
560
561 * Makefile.in (install-only): Fix make install regression.
562
43662968
JK
5632013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
564
565 Convert man pages to texinfo, new gdbinit.5 texinfo page.
566 * Makefile.in (install-only): Remove $(man1dir) and gdbserver.1
567 installation.
568 * gdbserver.1: Remove.
569
3e74e146
PA
5702013-03-22 Pedro Alves <palves@redhat.com>
571
572 * linux-low.c (handle_extended_wait): Don't call
573 linux_enable_event_reporting.
574
a8347a2a
TT
5752013-03-15 Tony Theodore <tonyt@logyst.com>
576
577 PR build/9098:
578 * Makefile.in (SHELL): Use @SHELL@.
579
eeb56fa7
SDJ
5802013-03-14 Sergio Durigan Junior <sergiodj@redhat.com>
581
582 * tracepoint.c (cmd_qtv): Initialize `val' with zero, silencing
583 compiler warning.
584
4fa7e2ff
JB
5852013-03-13 Joel Brobecker <brobecker@adacore.com>
586
587 * linux-low.c (linux_target_ops) [!HAVE_LINUX_BTRACE]:
588 Remove extraneous NULL element.
589
8ddb1965
YQ
5902013-03-13 Yao Qi <yao@codesourcery.com>
591
592 * tracepoint.c (traceframe_read_tsv): Look for the last matched
593 'V' block in trace frame.
594
9accd112
MM
5952013-03-11 Markus Metzger <markus.t.metzger@intel.com>
596
597 * target.h (struct target_ops): Add btrace ops.
598 (target_supports_btrace): New macro.
599 (target_enable_btrace): New macro.
600 (target_disable_btrace): New macro.
601 (target_read_btrace): New macro.
602 * gdbthread.h (struct thread_info): Add btrace field.
603 * server.c: Include btrace-common.h.
604 (handle_btrace_general_set): New function.
605 (handle_btrace_enable): New function.
606 (handle_btrace_disable): New function.
607 (handle_general_set): Call handle_btrace_general_set.
608 (handle_qxfer_btrace): New function.
609 (struct qxfer qxfer_packets[]): Add btrace entry.
610 * inferiors.c (remove_thread): Disable btrace.
611 * linux-low: Include linux-btrace.h.
612 (linux_low_enable_btrace): New function.
613 (linux_low_read_btrace): New function.
614 (linux_target_ops): Add btrace ops.
615 * configure.srv (i[34567]86-*-linux*): Add linux-btrace.o.
616 Add srv_linux_btrace=yes.
617 (x86_64-*-linux*): Add linux-btrace.o.
618 Add srv_linux_btrace=yes.
619 * configure.ac: Define HAVE_LINUX_BTRACE.
620 * config.in: Regenerated.
621 * configure: Regenerated.
622
5cc22e4c
MM
6232013-03-11 Markus Metzger <markus.t.metzger@intel.com>
624
625 * server.c (handle_qxfer): Preserve error message if -3 is
626 returned.
627 (qxfer): Document the -3 return value.
628
7c97f91e
MM
6292013-03-11 Markus Metzger <markus.t.metzger@intel.com>
630
631 * Makefile.in (SFILES): Add $(srcdir)/common/linux-btrace.c.
632 (linux_btrace_h): New variable.
633 (linux-btrace.o): New rule.
634
be9a119c 6352013-03-08 Stan Shebs <stan@codesourcery.com>
f6f899bf
HAQ
636 Hafiz Abid Qadeer <abidh@codesourcery.com>
637
638 * tracepoint.c (trace_buffer_size): New global.
639 (DEFAULT_TRACE_BUFFER_SIZE): New define.
640 (init_trace_buffer): Change to one-argument function. Allocate
641 trace buffer memory.
642 (handle_tracepoint_general_set): Call cmd_bigqtbuffer_size to
643 handle QTBuffer:size packet.
644 (cmd_bigqtbuffer_size): New function.
645 (initialize_tracepoint): Call init_trace_buffer with
646 DEFAULT_TRACE_BUFFER_SIZE.
647 * server.c (handle_query): Add QTBuffer:size in the
648 supported packets.
649
e64f7499
YQ
6502013-03-07 Yao Qi <yao@codesourcery.com>
651
652 * tracepoint.c (cur_action, cur_step_action): Make them unsigned.
653 (cmd_qtfp): Initialize cur_action and cur_step_action 0 instead
654 of -1.
655 (cmd_qtsp): Adjust condition. Do post increment.
656 Set cur_action and cur_step_action back to 0.
657
f0ae6fc3
PA
6582013-03-07 Jeremy Bennett <jeremy.bennett@embecosm.com>
659
660 PR server/15236
661 * linux-low.c (linux_write_memory): Return early success if LEN is
662 zero.
663
b5b0b0af
CV
6642013-03-05 Corinna Vinschen <vinschen@redhat.de>
665
334ad4a8 666 * configure.srv: Add x86_64-*-cygwin* as target.
b5b0b0af 667
589bc927
TT
6682013-02-28 Tom Tromey <tromey@redhat.com>
669
670 * configure.ac: Invoke AC_SYS_LARGEFILE.
671 * configure, config.in: Rebuild.
672
dfe07582
CV
6732013-02-28 Corinna Vinschen <vinschen@redhat.com>
674
675 * win32-low.c: Throughout, fix format strings and casts of
676 printf-like functions to avoid type related warnings on all
677 platforms.
678 (get_child_debug_event): Print dwDebugEventCode as hex since
679 that's how it's usually documented.
680
736cd585
YQ
6812013-02-28 Yao Qi <yao@codesourcery.com>
682
683 * tracepoint.c (cmd_qtbuffer): Call phex_nz instead of
684 pulongest.
685
e1f58301
JW
6862013-02-27 Jiong Wang <jiwang@tilera.com>
687
688 * Makefile.in (clean): Remove reg-tilegx.c, reg-tilegx32.c.
689 (reg-tilegx32.c): New rule.
690 * configure.srv (tilegx-*-linux*): Add reg-tilegx32.o to srv_regobj.
691 * linux-tile-low.c (tile_arch_setup): New function. Invoke
692 different register info initializer according to elf class.
693 (init_registers_tilgx32): New function. The tilegx32 register info
694 initializer.
695 (tile_fill_gregset): Use "uint_reg_t" to represent register size.
696 (tile_store_gregset): Likewise.
697
d171ca78
YQ
6982013-02-27 Yao Qi <yao@codesourcery.com>
699
700 * server.c (process_point_options): Print debug message when
701 debug_threads is true.
702
282bbdf3
YQ
7032013-02-26 Yao Qi <yao@codesourcery.com>
704
705 * tracepoint.c (cmd_qtbuffer): Don't set '\0' in OWN_BUF.
706
aca22551
PA
7072013-02-19 Pedro Alves <palves@redhat.com>
708 Kai Tietz <ktietz@redhat.com>
709
710 PR gdb/15161
711
712 * server.c (handle_query) <CRC check>: Use unpack_varlen_hex
713 instead of strtoul to extract address from packet.
714 (process_serial_event) <'z'>: Likewise.
715
4f3cee1c
YQ
7162013-02-18 Yao Qi <yao@codesourcery.com>
717
718 * linux-bfin-low.c (the_low_target): Use NULL instead of 0.
719
8e1d55a3
PA
7202013-02-14 Pedro Alves <palves@redhat.com>
721
722 Plug memory leak.
723
724 * tracepoint.c (cmd_qtnotes): Free TRACING_USER_NAME,
725 TRACING_NOTES and TRACING_STOP_NOTE before clobbering.
726
458820da
PA
7272013-02-14 Pedro Alves <palves@redhat.com>
728
729 * tracepoint.c (cmd_qtdpsrc): Use savestring.
730
baea0dae
PA
7312013-02-14 Pedro Alves <palves@redhat.com>
732
733 * tracepoint.c (save_string): Delete.
734 (add_tracepoint_action): Use savestring instead of save_string.
735
0b1afbb3
PA
7362013-02-12 Pedro Alves <palves@redhat.com>
737
738 * linux-xtensa-low.c: Ditto.
739 * xtensa-xtregs.c: Ditto.
740
8a4ac37e
PA
7412013-02-12 Sanimir Agovic <sanimir.agovic@intel.com>
742
743 * thread-db.c (thread_db_get_tls_address): NULL pointer check
744 thread_db.
745
148de6bb
MS
7462013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
747
748 * linux-aarch64-low.c (aarch64_arch_setup): Clamp
749 aarch64_num_wp_regs and aarch64_num_bp_regs to
750 AARCH64_HWP_MAX_NUM and AARCH64_HBP_MAX_NUM respectively.
751
55fac6e0
MS
7522013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
753
754 * linux-aarch64-low.c (ps_get_thread_area): Replace
755 PTRACE_GET_THREAD_AREA with PTRACE_GETREGSET.
756
176eb98c
MS
7572013-02-04 Jim MacArthur <jim.macarthur@arm.com>
758 Marcus Shawcroft <marcus.shawcroft@arm.com>
759 Nigel Stephens <nigel.stephens@arm.com>
760 Yufeng Zhang <yufeng.zhang@arm.com>
761
762 * Makefile.in (clean): Remove aarch64.c and aarch64-without-fpu.c.
763 (aarch64.c, aarch64-without-fpu.c): New targets.
764 * configure.srv (aarch64*-*-linux*): New.
765 * linux-aarch64-low.c: New file.
766
56f7af9c
MS
7672013-02-04 Marcus Shawcroft <marcus.shawcroft@arm.com>
768
43aaf8b6 769 * linux-low.c (handle_extended_wait, linux_create_inferior)
56f7af9c
MS
770 (linux_attach_lwp_1, linux_kill_one_lwp, linux_attach_one_lwp)
771 (dequeue_one_deferred_signal, linux_resume_one_thread)
772 (fetch_register, linux_write_memory, linux_enable_event_reporting)
773 (linux_tracefork_grandchild, linux_test_for_tracefork)
774 (linux_read_offsets, linux_xfer_siginfo, linux_xfer_siginfo): Add
775 PTRACE_ARG3_TYPE and PTRACE_ARG4_TYPE cast to ptrace arguments
776 where the argument is 0.
777
60f662b0
YQ
7782013-01-25 Yao Qi <yao@codesourcery.com>
779
780 * event-loop.c: Include "queue.h".
781 (gdb_event_p): New typedef.
782 (struct gdb_event) <next_event>: Remove.
783 (event_queue): Change to QUEUE(gdb_event_p).
784 (async_queue_event): Remove.
785 (gdb_event_xfree): New.
786 (initialize_event_loop): New.
787 (process_event): Use API from QUEUE.
788 (wait_for_event): Likewise.
789 * server.c (main): Call initialize_event_loop.
790 * server.h (initialize_event_loop): Declare.
791
5ae4861a
YQ
7922013-01-18 Yao Qi <yao@codesourcery.com>
793
794 * ax.h (struct eval_agent_expr_context): New.
795 (gdb_eval_agent_expr): Update declaration.
796 * ax.c (gdb_eval_agent_expr): Remove argument REGCACHE and
797 TFRAME. Add new argument CTX.
798 * server.h (struct eval_agent_expr_context): Declare.
799 (agent_mem_read, agent_tsv_read): Update declaration.
800 (agent_mem_read_string): Likewise.
801 * tracepoint.c (eval_tracepoint_agent_expr): Remove.
802 (add_traceframe_block): Add new argument TPOINT.
803 Increase TPOINT->traceframe_usage.
804 (do_action_at_tracepoint): Call gdb_eval_agent_expr instead of
805 eval_tracepoint_agent_expr.
806 (condition_true_at_tracepoint): Likewise.
807 (agent_mem_read): Remove argument TFRAME. Add argument CTX.
808 (agent_mem_read_string, agent_tsv_read): Likewise.
809
85e00e85
YQ
8102013-01-16 Yao Qi <yao@codesourcery.com>
811
812 * linux-low.c (linux_resume_one_lwp): Don't check
813 'lwp->bp_reinsert != 0'.
814
4039cf45
JB
8152013-01-07 Joel Brobecker <brobecker@adacore.com>
816 Pedro Alves <palves@redhat.com>
817
818 * lynx-low.c (ptrace_request_to_str): Define a temporary
819 macro and use it to simplify this function's implementation.
820
9044dee2
JB
8212013-01-07 Joel Brobecker <brobecker@adacore.com>
822
823 * lynx-low.c (lynx_resume): Call perror_with_name if lynx_ptrace
824 sets errno.
825
e6352c8f
JB
8262013-01-07 Joel Brobecker <brobecker@adacore.com>
827
828 * configure.srv (i[34567]86-*-lynxos*): Set srv_xmlfiles.
829
50681a27
JB
8302013-01-07 Joel Brobecker <brobecker@adacore.com>
831
832 * configure.srv (powerpc-*-lynxos*): Set srv_xmlfiles.
833
3f6e77ef
JB
8342013-01-07 Joel Brobecker <brobecker@adacore.com>
835
836 * lynx-low.c (lynx_resume): Use the resume_info parameter
837 to determine the ptid for the lynx_ptrace call, unless
838 it is equal to minus_one_ptid, in which case we use the
839 ptid of the current_inferior.
840 (lynx_wait_1): After having received a thread create/exit
841 event, resume the inferior's execution using the signaling
842 thread's ptid, rather than the old ptid.
843
7fda33ae
JB
8442013-01-07 Joel Brobecker <brobecker@adacore.com>
845
846 * lynx-low.c (lynx_resume): Delete variable ret.
847
b9786c74
JB
8482013-01-01 Joel Brobecker <brobecker@adacore.com>
849
850 * gdbreplay.c (gdbreplay_version): Update copyright year.
851 * server.c (gdbserver_version): Likewise.
852
8b93d60f
JB
8532012-12-17 Joel Brobecker <brobecker@adacore.com>
854
855 * lynx-low.c (lynx_wait_1): Add debug trace before adding
856 new thread.
857
037335a7
JB
8582012-12-17 Joel Brobecker <brobecker@adacore.com>
859
860 * lynx-low.c (ptrace_request_to_str): Add handling for
861 PTRACE_GETTRACESIG.
862
52d4cbd8
JB
8632012-12-17 Joel Brobecker <brobecker@adacore.com>
864
865 * lynx-low.c (lynx_attach): Delete variable new_process.
866
ab8f6ca9
JB
8672012-12-17 Joel Brobecker <brobecker@adacore.com>
868
869 * lynx-low.c (lynx_create_inferior): Delete variable
870 new_process.
871
78cbc024
JB
8722012-12-17 Joel Brobecker <brobecker@adacore.com>
873
874 * lynx-low.c (ptrace_request_to_str): Do not handle
875 PTRACE_GETTHREADLIST if this macro does not exist.
876
14a00470
YQ
8772012-12-15 Yao Qi <yao@codesourcery.com>
878
879 * Makefile.in (OBS): Add notif.o.
880 * notif.c, notif.h: New.
881 * server.c: Include "notif.h".
882 (struct vstop_notif) <next>: Remove.
883 <base>: New field.
884 (queue_stop_reply): Update.
885 (push_event, send_next_stop_reply): Remove.
886 (discard_queued_stop_replies): Update.
887 (notif_stop): New variable.
888 (handle_v_stopped): Remove.
889 (handle_v_requests): Don't call handle_v_stopped. Call
890 handle_ack_notif instead.
891 (queue_stop_reply_callback): Call notif_event_enque instead
892 of queue_stop_reply.
893 (handle_status): Don't call send_next_stop_reply, call
894 notif_write_event instead.
895 (kill_inferior_callback): Likewise.
896 (detach_or_kill_inferior_callback): Likewise.
897 (main): Call initialize_notif.
898 (process_serial_event): Call QUEUE_is_empty.
899 (handle_target_event): Call notif_push instead of push event.
900 * server.h (push_event): Remove declaration.
901
61c125b9
TT
9022012-12-10 Tom Tromey <tromey@redhat.com>
903
904 * Makefile.in (DEPMODE, DEPDIR, depcomp, COMPILE.pre)
905 (COMPILE.post, COMPILE, POSTCOMPILE, IPAGENT_COMPILE): New
906 macros.
907 (.c.o): Rewrite.
908 (ax-ipa.o, tracepoint-ipa.o, utils-ipa.o, format-ipa.o)
909 (common-utils-ipa.o, remote-utils-ipa.o, regcache-ipa.o)
910 (i386-linux-ipa.o, linux-i386-ipa.o, linux-amd64-ipa.o)
911 (amd64-linux-ipa.o, ax.o): Rewrite.
912 (event-loop.o, hostio.o, hostio-errno.o, inferiors.o, mem-break.o)
913 (proc-service.o, regcache.o, remote-utils.o, server.o, target.o)
914 (thread-db.o, tracepoint.o, utils.o, gdbreplay.o, dll.o): Remove.
915 (signals.o, linux-procfs.o, linux-ptrace.o, common-utils.o, vec.o)
916 (gdb_vecs.o, xml-utils.o, linux-osdata.o, ptid.o, buffer.o)
917 (format.o, agent.o, vasprintf.o, vsnprintf.o): Rewrite.
918 (i386-low.o, i387-fp.o, linux-low.o, linux-arm-low.o)
919 (linux-bfin-low.o, linux-cris-low.o, linux-crisv32-low.o)
920 (linux-ia64-low.o, linux-m32r-low.o, linux-mips-low.o)
921 (linux-ppc-low.o, linux-s390-low.o, linux-sh-low.o)
922 (linux-tic6x-low.o, linux-x86-low.o, linux-xtensa-low.o)
923 (linux-tile-low.o, lynx-low.o, lynx-ppc-low.o, nto-low.o)
924 (nto-x86-low.o, linux-low.o, win32-low.o, win32-arm-low.o)
925 (win32-i386-low.o, spu-low.o, reg-arm.o, arm-with-iwmmxt.o)
926 (arm-with-vfpv2.o, arm-with-vfpv3.o, arm-with-neon.o, reg-bfin.o)
927 (reg-cris.o, reg-crisv32.o, i386.o, i386-linux.o, i386-avx.o)
928 (i386-avx-linux.o, i386-mmx.o, i386-mmx-linux.o, reg-ia64.o)
929 (reg-m32r.o, reg-m68k.o, reg-cf.o, mips-linux.o, mips-dsp-linux.o)
930 (mips64-linux.o, mips64-dsp-linux.o, powerpc-32.o, powerpc-32l.o)
931 (powerpc-altivec32l.o, powerpc-cell32l.o, powerpc-vsx32l.o)
932 (powerpc-isa205-32l.o, powerpc-isa205-altivec32l.o)
933 (powerpc-isa205-vsx32l.o, powerpc-e500l.o, powerpc-64l.o)
934 (powerpc-altivec64l.o, powerpc-cell64l.o, powerpc-vsx64l.o)
935 (powerpc-isa205-64l.o, powerpc-isa205-altivec64l.o)
936 (powerpc-isa205-vsx64l.o, s390-linux32.o, s390-linux32v1.o)
937 (s390-linux32v2.o, s390-linux64.o, s390-linux64v1.o)
938 (s390-linux64v2.o, s390x-linux64.o, s390x-linux64v1.o)
939 (s390x-linux64v2.o, tic6x-c64xp-linux.o, tic6x-c64x-linux.o)
940 (tic6x-c62x-linux.o, reg-sh.o, reg-sparc64.o, reg-spu.o, amd64.o)
941 (amd64-linux.o, amd64-avx.o, amd64-avx-linux.o, x32.o)
942 (x32-linux.o, x32-avx.o, x32-avx-linux.o, reg-xtensa.o)
943 (reg-tilegx.o): Remove.
944 (all_object_files): New macro.
945 Include .deps files.
946 * aclocal.m4, configure: Rebuild.
947 * acinclude.m4: Include depstand.m4, lead-dot.m4.
948 * configure.ac: Invoke ZW_CREATE_DEPDIR,
949 ZW_PROG_COMPILER_DEPENDENCIES. Compute GMAKE condition.
950
e90e9ad9
TT
9512012-12-05 Tom Tromey <tromey@redhat.com>
952
953 PR gdb/14917:
954 * server.h (current_insn_ptr, emit_error): Declare 'extern'.
955
02d403bf 9562012-11-28 Markus Metzger <markus.t.metzger@intel.com>
945bf713
MM
957
958 * configure.ac: Check for linux/perf_event.h.
959 * config.in: Regenerated.
960 * configure: Regenerated.
961
0270a750
PA
9622012-11-26 Maxime Villard <rustyBSD@gmx.fr>
963
964 * hostio.c (handle_readlink): Decrease buffer size
965 parameter passed to readlink by one byte.
966
8c29b58e
YQ
9672012-11-26 Yao Qi <yao@codesourcery.com>
968
969 * configure.ac (build_warnings): Append '-Wempty-body'.
970 * configure: Regenerated.
971 * linux-low.c (linux_create_inferior): Use braces for empty 'if'
972 body.
973
8bdce1ff
PM
9742012-11-15 Pierre Muller <muller@sourceware.org>
975
976 * configure.ac (AC_CHECK_HEADERS): Add wait.h header.
977 * config.in: Regenerate.
978 * configure: Regenerate.
979 * linux-low.c: Use "gdb_stat.h" header instead of <sys/stat.h> header.
980 Use "gdb_wait.h" header instead of <sys/wait.h> header.
981 * lynx-low.c: Use "gdb_wait.h" header instead of <sys/wait.h> header.
982 * remote-utils.c: Use "gdb_stat.h" header instead of <sys/stat.h>
983 header.
984 * server.c: Remove HAVE_WAIT_H conditional. Use "gdb_wait.h" header
985 instead of <sys/wait.h> header.
986 * spu-low.c: Use "gdb_wait.h" header instead of <sys/wait.h> header.
987
02d403bf 9882012-11-13 Markus Metzger <markus.t.metzger@intel.com>
3ba6ad0f
MM
989
990 * Makefile.in: (INTERNAL_CFLAGS): Add -DGDBSERVER
991 (various make rules): Remove -DGDBSERVER
992
fbd5db48
YQ
9932012-11-09 Yao Qi <yao@codesourcery.com>
994
995 * spu-low.c (current_ptid): Move it to ..
996 * gdbthread.h: ... here. New.
997 * remote-utils.c (read_ptid): Use macro 'current_ptid'.
998 * server.c (myresume, process_serial_event): Likewise.
999 * thread-db.c (thread_db_find_new_threads): Likewise.
1000 * tracepoint.c (run_inferior_command): Likewise.
1001
b3dc46ff
AB
10022012-10-01 Andrew Burgess <aburgess@broadcom.com>
1003
1004 * server.c (handle_search_memory_1): Include access length in
1005 warning message.
1006
07c04788
HPN
10072012-09-05 Michael Brandt <michael.brandt@axis.com>
1008
1009 * linux-crisv32-low.c: Fix compile errors.
1010
918d227b
YQ
10112012-09-04 Yao Qi <yao@codesourcery.com>
1012
1013 * tracepoint.c (cmd_qtsv): Adjust debug message.
1014 Don't check CUR_TPOINT.
1015
18c1b81a
YQ
10162012-08-28 Yao Qi <yao@codesourcery.com>
1017
1018 * ax.c, tracepoint.c: Replace ATTR_FORMAT with ATTRIBUTE_PRINTF.
1019 * server.h: Include 'libiberty.h' and 'ansidecl.h'.
1020 (ATTR_NORETURN, ATTR_FORMAT, ATTR_MALLOC): Remove.
1021 Remove declarations of xmalloc, xreallloc, xstrdup and
1022 freeargv.
1023 * Makefile.in (libiberty_h): New.
1024 (server_h): Append dependencies 'libiberty.h' and 'ansidecl.h'.
1025 (linux-bfin-low.o): Append dependency 'libiberty.h'.
1026
dc82f37b
YQ
10272012-08-23 Yao Qi <yao@codesourcery.com>
1028
1029 * server.h: Remove declaration of 'xsnprintf'.
1030
406b1477
KS
10312012-08-22 Keith Seitz <keiths@redhat.com>
1032
1033 * server.h: Include build-gnulib-gbserver/config.h.
1034 * gdbreplay.c: Likewise.
1035
e6712ff1
DE
10362012-08-08 Doug Evans <dje@google.com>
1037
1038 * Makefile.in (SFILES): Add gdb_vecs.c.
1039 (OBS): Add gdb_vecs.o.
1040 (gdb_vecs_h, host_defs_h): New variables.
1041 (thread-db.o): Add $(gdb_vecs_h) dependency.
1042 (gdb_vecs.o): New rule.
1043 * thread-db.c: #include "gdb_vecs.h".
1044 (thread_db_load_search): Use a vector to iterate over path elements.
1045 Handle text appearing after "$pdir".
1046
1047 * configure.ac: Add check for strstr.
1048 * config.in: Regenerate.
1049 * configure: Regenerate.
1050
7c3270ae
UW
10512012-08-02 Ulrich Weigand <ulrich.weigand@linaro.org>
1052
1053 * hostio.c (handle_pread): If pread fails, fall back to attempting
1054 lseek/read.
1055 (handle_pwrite): Likewise for pwrite.
1056
b62e2b27
UW
10572012-08-01 Ulrich Weigand <ulrich.weigand@linaro.org>
1058
1059 * linux-arm-low.c (arm_linux_hw_point_initialize): Distinguish
1060 between unsupported TYPE and unimplementable ADDR/LEN combination.
1061 (arm_insert_point): Act on new return value.
1062
78a99e91
PA
10632012-07-31 Pedro Alves <palves@redhat.com>
1064
1065 * server.c (process_point_options): Only skip tokens if we find
1066 one that is unrecognized. Don't treat 'X' specially while
1067 skipping unrecognized tokens.
1068
fcf303ab
UW
10692012-07-30 Ulrich Weigand <ulrich.weigand@linaro.org>
1070
1071 * linux-arm-low.c (arm_linux_hw_point_initialize): Do not attempt
1072 to 4-byte-align HW breakpoint addresses for Thumb.
1073
7255706c
YQ
10742012-07-27 Yao Qi <yao@codesourcery.com>
1075
1076 PR remote/14161.
1077
1078 * server.h: Declare gdb_agent_about_to_close.
1079 * target.c (kill_inferior): Include "agent.h".
1080 New. Send command 'kill'.
1081 * target.h (kill_inferior): Removed macro.
1082 * tracepoint.c (gdb_agent_about_to_close): New.
1083 (gdb_agent_helper_thread): Handle command 'close'.
1084 Wait endlessly until the inferior stops.
1085 Install gdb_agent_remove_socket to atexit hook.
1086 (agent_socket_name): New static variable.
1087 (gdb_agent_socket_init): Replace local variable 'name' with
1088 'agent_socket_name'.
1089 (gdb_agent_remove_socket): New.
1090
5a3f286f
YQ
10912012-07-27 Yao Qi <yao@codesourcery.com>
1092
1093 * server.c (process_point_options): Stop at 'X' when parsing.
1094
961bd387
ME
10952012-07-19 Michael Eager <eager@eagercon.com>
1096
1097 * i386-low.c (Z_packet_to_hw_type): Add Z_PACKET_HW_BP, translate
1098 to hw_execute.
1099 * linux-x86-low.c (x86_insert_point, x86_remove_point):
1100 Call i386_low_insert_watchpoint, i386_low_remove_watchpoint to add/del
1101 hardware breakpoint.
1102
aa7c7447
JK
11032012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
1104
1105 * gdbserver/linux-low.c (initialize_low): Call
1106 linux_ptrace_init_warnings.
1107
7f216e7c
DE
11082012-07-02 Doug Evans <dje@google.com>
1109
1110 * mem-break.c (gdb_no_commands_at_breakpoint): Fix cast from
1111 pointer to int.
1112
d3ce09f5
SS
11132012-07-02 Stan Shebs <stan@codesourcery.com>
1114
1115 * Makefile.in (WARN_CFLAGS_NO_FORMAT): Define.
1116 (ax.o): Add it to build rule.
1117 (ax-ipa.o): Ditto.
1118 (OBS): Add format.o.
1119 (IPA_OBS): Add format.o.
1120 * server.c (handle_query): Claim support for breakpoint commands.
1121 (process_point_options): Add command case.
1122 (process_serial_event): Leave running if there are printfs in
1123 effect.
1124 * mem-break.h (any_persistent_commands): Declare.
1125 (add_breakpoint_commands): Declare.
1126 (gdb_no_commands_at_breakpoint): Declare.
1127 (run_breakpoint_commands): Declare.
1128 * mem-break.c (struct point_command_list): New struct.
1129 (struct breakpoint): New field command_list.
1130 (any_persistent_commands): New function.
1131 (add_commands_to_breakpoint): New function.
1132 (add_breakpoint_commands): New function.
1133 (gdb_no_commands_at_breakpoint): New function.
1134 (run_breakpoint_commands): New function.
1135 * linux-low.c (linux_wait_1): Test for and run breakpoint commands
1136 locally.
1137 * ax.c: Include format.h.
1138 (ax_printf): New function.
1139 (gdb_eval_agent_expr): Add printf opcode.
1140
2f8f6aed
YQ
11412012-06-13 Yao Qi <yao@codesourcery.com>
1142
1143 * server.c (start_inferior): Remove duplicated writes to fields
1144 'last_resume_kind' and 'last_status' of 'current_inferior'.
1145
0c9070b3
YQ
11462012-06-12 Yao Qi <yao@codesourcery.com>
1147 Pedro Alves <palves@redhat.com>
1148
1149 * linux-low.c (linux_set_resume_request): Simplify predicate. Add
1150 comment.
1151 * server.c (handle_v_cont): Extend comment.
1152
c52daf70
YQ
11532012-06-11 Yao Qi <yao@codesourcery.com>
1154
1155 * linux-low.c (linux_attach): Add 'static'.
1156
d38bbb0a
YQ
11572012-06-06 Yao Qi <yao@codesourcery.com>
1158
1159 * ax.c (gdb_eval_agent_expr): Print `top' in hex.
1160
89dc0afd
JK
11612012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
1162
1163 Fix gcc -flto compilation warning.
1164 * server.c (main): Make variable multi_mode and attach volatile.
1165
75f62ce7
TJB
11662012-05-30 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
1167
1168 * linux-low.c (get_r_debug): Disable code using DT_MIPS_RLD_MAP
1169 if the platform doesn't know about it.
1170
65f479b6
PA
11712012-05-30 Jeff Kenton <jkenton@tilera.com>
1172
1173 * Makefile.in (SFILES): Add linux-tile-low.c.
1174 (linux-tile-low.o, reg-tilegx.o, reg-tilegx.c): New rules.
1175 * configure.srv: Handle tilegx-*-linux*.
1176 * linux-tile-low.c: New file.
1177
0c5bf5a9
JK
11782012-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1179
1180 * linux-low.c (linux_qxfer_libraries_svr4): Return -1 if R_DEBUG is -1.
1181
a493e3e2
PA
11822012-05-24 Pedro Alves <palves@redhat.com>
1183
1184 PR gdb/7205
1185
43aaf8b6 1186 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
a493e3e2 1187
2ea28649
PA
11882012-05-24 Pedro Alves <palves@redhat.com>
1189
1190 PR gdb/7205
1191
1192 Replace target_signal with gdb_signal throughout.
1193
8d409d16
MR
11942012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
1195
1196 * linux-low.c (linux_store_registers): Avoid the copying sequence
1197 when no data has been retrieved by ptrace.
1198
23512c01
MGD
11992012-05-22 Will Deacon <will.deacon@arm.com>
1200
1201 * linux-low (__UCLIBC__ && !(__UCLIBC_HAS_MMU__ || __ARCH_HAS_MMU__)):
1202 Include asm/ptrace.h.
1203 (PT_TEXT_ADDR, PT_DATA_ADDR, PT_TEXT_END_ADDR): Define only if not
1204 already defined.
1205
4934b29e
MR
12062012-05-21 Maciej W. Rozycki <macro@codesourcery.com>
1207
1208 * linux-low.c (linux_store_registers): Don't re-retrieve data
1209 with ptrace that has already been obtained from /proc. Always
1210 copy any data retrieved with ptrace to the buffer supplied.
1211
bde24c0a
PA
12122012-05-11 Yao Qi <yao@codesourcery.com>
1213 Pedro Alves <palves@redhat.com>
1214
1215 * linux-low.c (enum stopping_threads_kind): New.
1216 (stopping_threads): Change type to `enum stopping_threads_kind'.
1217 (handle_extended_wait): If stopping and suspending threads, leave
1218 the new_lwp suspended too.
1219 (linux_wait_for_event): Adjust.
1220 (stop_all_lwps): Set `stopping_threads' to
1221 STOPPING_AND_SUSPENDING_THREADS or STOPPING_THREADS depending on
1222 whether we're suspending threads or just stopping them. Assert no
1223 recursion happens.
1224
623b6bdf
YQ
12252012-04-29 Yao Qi <yao@codesourcery.com>
1226
1227 * server.h: Move some code to ...
1228 * gdbthread.h: ... here. New.
1229 * Makefile.in (inferiors.o, regcache.o): Depends on gdbthread.h
1230 (remote-utils.o, server.o, target.o tracepoint.o): Likewise.
1231 (nto-low.o, win32-low.o): Likewise.
1232 * inferiors.c, linux-low.h, nto-low.c: Include gdbthread.h.
1233 * regcache.c, remote-utils.c, server.c: Likewise.
1234 * target.c, tracepoint.c, win32-low.c: Likewise.
1235
f15f9948
TJB
12362012-04-24 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
1237
1238 * linux-low.h (PTRACE_ARG3_TYPE): Move macro from linux-low.c.
1239 (PTRACE_ARG4_TYPE): Likewise.
1240 (PTRACE_XFER_TYPE): Likewise.
1241 * linux-arm-low.c (arm_prepare_to_resume): Cast third argument of
1242 ptrace to PTRACE_ARG3_TYPE.
1243 * linux-low.c (PTRACE_ARG3_TYPE): Move macro to linux-low.h.
1244 (PTRACE_ARG4_TYPE): Likewise.
1245 (PTRACE_XFER_TYPE): Likewise.
1246 (linux_detach_one_lwp): Cast fourth argument of
1247 ptrace to long then PTRACE_ARG4_TYPE.
1248 (regsets_fetch_inferior_registers): Cast third argument of
1249 ptrace to long then PTRACE_ARG3_TYPE.
1250 (regsets_store_inferior_registers): Likewise.
1251
38ea300a
PA
12522012-04-20 Pedro Alves <palves@redhat.com>
1253
1254 * configure: Regenerate.
1255
c971b7fa
PA
12562012-04-19 Pedro Alves <palves@redhat.com>
1257
43aaf8b6 1258 * Makefile.in (GNULIB_BUILDDIR): New.
c971b7fa 1259 (LIBGNU, INCGNU, GNULIB_H): Adjust.
43aaf8b6
PA
1260 (SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
1261 (all, install-only, uninstall, clean-info, all-lib, clean): No
1262 longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
1263 (maintainer-clean realclean distclean): Use subdir_do.
1264 (subdir_do): New.
1265 (gnulib/import/Makefile): Adjust. Replace gnulib/import with
c971b7fa 1266 $(GNULIB_BUILDDIR). Don't pass argument to config.status.
43aaf8b6
PA
1267 * acinclude.m4: Include acx_configure_dir.m4.
1268 * configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
1269 calls. Call AC_PROG_RANLIB. Configure gnulib using
1270 ACX_CONFIGURE_DIR.
1271 (GNULIB): New.
1272 (GNULIB_STDINT_H): Adjust.
1273 (AC_OUTPUT): Don't output gnulib/Makefile anymore.
1274 * gdbreplay.c: Include build-gnulib/config.h.
1275 * server.h: Likewise.
1276 * aclocal.m4: Regenerate.
1277 * config.in: Regenerate.
1278 * configure: Regenerate.
c971b7fa 1279
809277f8
PA
12802012-04-19 Pedro Alves <palves@redhat.com>
1281
1282 * Makefile.in (LIBGNU, INCGNU): Adjust.
1283 (GNULIB_FLAGS_TO_PASS, GNULIB_H): Adjust.
1284 (all, install-only, uninstall, clean-info, all-lib, clean)
1285 (maintainer-clean, Makefile, gnulib/Makefile): Adjust.
1286 * configure.ac: Adjust AC_OUTPUT output.
1287 * aclocal.m4: Regenerate.
1288 * configure: Regenerate.
1289
fd9bb8b8
PA
12902012-04-19 Pedro Alves <palves@redhat.com>
1291
1292 * Makefile.in (generated_files): New.
1293 (server_h): Remove the explicit dependency on config.h, and depend
1294 on $generated_files.
1295
1c298c66
PA
12962012-04-19 Pedro Alves <palves@redhat.com>
1297
1298 * Makefile.in (INCGNU): Add -Ignulib.
1299
57c4b50b
PA
13002012-04-19 Pedro Alves <palves@redhat.com>
1301
1302 * Makefile.in (GNULIB_INCLUDE_DIR): Rename to ...
1303 (INCGNU): ... this, and spell out -I here.
1304 (GNULIB_LIB): Rename to ...
1305 (LIBGNU): ... this.
1306 (INCLUDE_CFLAGS, gdbserver$(EXEEXT), $(GNULIB_LIB) rule): Adjust.
1307
1030e047
PA
13082012-04-19 Pedro Alves <palves@redhat.com>
1309
1310 * config.in: Regenerate.
1311
447d4319
PA
13122012-04-19 Pedro Alves <palves@redhat.com>
1313
1314 * configure.ac: Remove AC_CHECK_DECLS check for memmem.
1315 * server.h (memmem): Remove declaration.
1316 * config.in: Regenerate.
1317 * configure: Regenerate.
1318
aad9eab9
YQ
13192012-04-19 Yao Qi <yao@codesourcery.com>
1320
1321 * Makefile.in (SFILES): Add common/vec.c.
1322 (OBS): Add vec.o.
1323 (vec.o): New rule.
1324
3e10640f
YQ
13252012-04-19 Yao Qi <yao@codesourcery.com>
1326
1327 * remote-utils.c (prepare_resume_reply): Replace with macro
1328 target_core_of_thread.
1329 * server.c (handle_qxfer_threads_proper): Likewise.
1330 * target.h (traget_core_of_thread): New macro.
1331
71622373
PA
13322012-04-18 Pedro Alves <palves@redhat.com>
1333
1334 * aclocal.m4: Regenerate.
1335 * configure: Regenerate.
1336
80d26939
YQ
13372012-04-16 Yao Qi <yao@codesourcery.com>
1338
1339 * tracepoint.c (cmd_qtstart): Download tracepoints even when they are
1340 duplicated on address.
1341
42476b70
YQ
13422012-04-16 Yao Qi <yao@codesourcery.com>
1343
1344 * tracepoint.c (COPY_FIELD_TO_BUF): New macro.
1345 (struct tracepoint_action_ops) <send>: New field.
1346 (m_tracepoint_action_send, r_tracepoint_action_send): New.
1347 (agent_expr_send, x_tracepoint_action_send): New.
1348 (l_tracepoint_action_send): New.
1349 (cmd_qtdp): Download and install tracepoint
1350 according to `use_agent'.
1351 (run_inferior_command): Add one more parameter `len'.
1352 Update callers.
1353 (tracepoint_send_agent): New.
1354 (cmd_qtdp, cmd_qtstart): Call tracepoint_send_agent.
1355
7bc83639
YQ
13562012-04-16 Yao Qi <yao@codesourcery.com>
1357
1358 * tracepoint.c (download_tracepoints): Moved to ...
1359 (cmd_qtstart): ... here.
1360
5f18041e
YQ
13612012-04-14 Yao Qi <yao@codesourcery.com>
1362
1363 * tracepoint.c: Include inttypes.h.
1364 (struct collect_memory_action): Use sized types.
1365 (struct tracepoint): Likewise.
1366 (cmd_qtdp, stop_tracing): Update print specifiers.
1367 (cmd_qtp, response_tracepoint): Likewise.
1368 (collect_data_at_tracepoint): Likewise.
1369 (collect_data_at_step): Likewise.
1370
55a8c076
YQ
13712012-04-14 Yao Qi <yao@codesourcery.com>
1372
1373 Import gnulib module inttypes.
1374 * aclocal.m4, config.in, configure: Regenerated.
1375
dc750257
YQ
13762012-04-14 Yao Qi <yao@codesourcery.com>
1377
1378 * Makefile.in (maintainer-clean, realclean, distclean): Remove
1379 Makefile and config.status at last.
1380
0ab5faf9
YQ
13812012-04-13 Yao Qi <yao@codesourcery.com>
1382
1383 * tracepoint.c: Include stdint.h unconditionally.
1384
18f5fd81
TJB
13852012-04-13 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
1386
1387 * acinclude.m4 (GDBSERVER_HAVE_THREAD_DB_TYPE): New macro based
1388 on BFD_HAVE_SYS_PROCFS_TYPE.
1389 * configure.ac: Look for lwpid_t and psaddr_t in libthread_db.h.
1390 * configure: Regenerate.
1391 * config.in: Likewise.
1392
4d47af5c
L
13932012-04-13 H.J. Lu <hongjiu.lu@intel.com>
1394
1395 * Makefile.in (clean): Also remove x32.c x32-linux.c
1396 x32-avx.c x32-avx-linux.c.
1397 (x32.o): New target.
1398 (x32.c): Likewise.
1399 (x32-linux.o): Likewise.
1400 (x32-linux.c): Likewise.
1401 (x32-avx.o): Likewise.
1402 (x32-avx.c): Likewise.
1403 (x32-avx-linux.o): Likewise.
1404 (x32-avx-linux.c): Likewise.
1405
1406 * configure.srv (srv_amd64_regobj): Add x32.o x32-avx.o.
1407 (srv_amd64_linux_regobj): Add x32-linux.o x32-avx-linux.o.
1408 (srv_i386_64bit_xmlfiles): Add i386/x32-core.xml.
1409 (srv_amd64_xmlfiles): Add i386/x32.xml i386/x32-avx.xml.
1410 (srv_amd64_linux_xmlfiles): Add i386/x32-linux.xml
1411 i386/x32-avx-linux.xml.
1412
1413 * linux-x86-low.c (init_registers_x32_linux): New prototype.
1414 (init_registers_x32_avx_linux): Likwise.
1415 (x86_linux_update_xmltarget): Call init_registers_x32_linux
1416 or init_registers_x32_avx_linux if linux_is_elf64 is false.
1417
ecedbe58
PA
14182012-04-13 Pedro Alves <palves@redhat.com>
1419
1420 * Makefile.in (GNULIB_FLAGS_TO_PASS): New.
1421 (FLAGS_TO_PASS): Don't change or set $top_srcdir, $srcdir and VPATH.
1422 (all, uninstall, clean-info, all-lib, clean, maintainer-clean)
1423 (realclean, distclean): Explicitly pass $GNULIB_FLAGS_TO_PASS to
1424 the sub-make.
1425
c92b5177
L
14262012-04-12 H.J. Lu <hongjiu.lu@intel.com>
1427
1428 * linux-x86-low.c (compat_x32_clock_t): New.
1429 (compat_x32_siginfo_t): Likewise.
1430 (compat_x32_siginfo_from_siginfo): Likewise.
1431 (siginfo_from_compat_x32_siginfo): Likewise.
1432 (linux_is_elf64): Likewise.
1433 (x86_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
1434 and siginfo_from_compat_x32_siginfo for x32.
1435 (x86_arch_setup): Set linux_is_elf64.
1436
214d508e
L
14372012-04-12 H.J. Lu <hongjiu.lu@intel.com>
1438
1439 PR gdb/13969
1440 * linux-low.c (linux_pid_exe_is_elf_64_file): Also return the
1441 e_machine field.
1442 (linux_qxfer_libraries_svr4): Update call to elf_64_file_p.
1443 * linux-low.h (linux_pid_exe_is_elf_64_file): Updated.
1444 * linux-x86-low.c (x86_arch_setup): Check if GDBserver is
1445 compatible with process.
1446
c9a1864a
YQ
14472012-04-12 Yao Qi <yao@codesourcery.com>
1448
1449 * Makefile.in: Define abs_top_srcdir and abs_srcdir.
1450 (INCLUDE_CFLAGS): Append GNULIB_INCLUDE_DIR.
1451 (install-only, install-info, clean): Handle sub dir gnulib.
1452 (all-lib, am--refresh): New targets.
1453 (memmem.o): Remove target.
1454 * configure.ac: Remove AC_CONFIG_LIBOBJ_DIR.
1455 Invoke gl_EARLY. Invoke AC_CHECK_PROGS for make.
1456 (AC_REPLACE_FUNCS): Remove memmem.
1457 Invoke gl_INIT and AM_INIT_AUTOMAKE.
1458 (AC_OUTPUT): Generate Makefile in gnulib/.
1459 * aclocal.m4, config.in, configure: Regenerated.
1460
367ba2c2
MR
14612012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
1462
1463 * linux-low.c (get_r_debug): Handle DT_MIPS_RLD_MAP.
1464
9d236627
PA
14652012-04-05 Pedro Alves <palves@redhat.com>
1466
1467 -Werror=strict-aliasing
1468
1469 * spu-low.c (parse_spufs_run): Avoid dereferencing type-punned
1470 pointer.
1471
111217b3
PA
14722012-04-04 Pedro Alves <palves@redhat.com>
1473
1474 * linux-sparc-low.c (sparc_fill_gregset_to_stack)
1475 (sparc_store_gregset_from_stack, sparc_store_gregset)
1476 (sparc_breakpoint_at): Fix formatting.
1477
8365dcf5
TJB
14782012-03-30 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
1479
1480 * configure.ac: Check whether Elf32_auxv_t and Elf64_auxv_t
1481 are available.
1482 * linux-low.c [HAVE_ELF32_AUXV_T] (Elf32_auxv_t): Add typedef.
1483 [HAVE_ELF64_AUXV_T] (Elf64_auxv_t): Likewise.
1484 * config.in: Regenerate.
1485 * configure: Likewise.
1486
689cc2ae
PA
14872012-03-29 Pedro Alves <palves@redhat.com>
1488
1489 * linux-low.c (regsets_store_inferior_registers) [__sparc__]:
1490 Correct ptrace arguments.
1491
c14dfd32
PA
14922012-03-28 Pedro Alves <palves@redhat.com>
1493
1494 * linux-ia64-low.c (ia64_regmap): Map IA64_EC_REGNUM to PT_AR_EC.
1495 (IA64_GR0_REGNUM, IA64_FR0_REGNUM)
1496 (IA64_FR1_REGNUM): New defines.
1497 (ia64_fetch_register): New.
1498 (the_low_target): Install it.
1499 * linux-low.h (struct linux_target_ops) <fetch_register>: New
1500 field.
1501 * linux-low.c (linux_fetch_registers): Try the
1502 the_low_target.fetch_register hook first.
1503
1504 * linux-arm-low.c (the_low_target): Adjust.
1505 * linux-bfin-low.c (the_low_target): Adjust.
1506 * linux-cris-low.c (the_low_target): Adjust.
1507 * linux-crisv32-low.c (the_low_target): Adjust.
1508 * linux-m32r-low.c (the_low_target): Adjust.
1509 * linux-m68k-low.c (the_low_target): Adjust.
1510 * linux-mips-low.c (the_low_target): Adjust.
1511 * linux-ppc-low.c (the_low_target): Adjust.
1512 * linux-s390-low.c (the_low_target): Adjust.
1513 * linux-sh-low.c (the_low_target): Adjust.
1514 * linux-sparc-low.c (the_low_target): Adjust.
1515 * linux-tic6x-low.c (the_low_target): Adjust.
1516 * linux-x86-low.c (the_low_target): Adjust.
1517 * linux-xtensa-low.c (the_low_target): Adjust.
1518
63c88e13
PA
15192012-03-26 Pedro Alves <palves@redhat.com>
1520
1521 * server.c (handle_qxfer_libraries): Don't bail early if
1522 the_target->qxfer_libraries_svr4 is not NULL.
1523
fb723180
PA
15242012-03-26 Pedro Alves <palves@redhat.com>
1525
1526 * linux-low.c (linux_qxfer_libraries_svr4): Fix pasto in comment.
1527
0afae3cf
PA
15282012-03-23 Pedro Alves <palves@redhat.com>
1529
1530 * linux-low.c (linux_qxfer_libraries_svr4): Terminate the
1531 "library-list-svr4" element's start tag when the the DSO list is
1532 empty.
1533
485f1ee4
PA
15342012-03-23 Pedro Alves <palves@redhat.com>
1535
1536 * linux-low.c (read_one_ptr): Read the inferior's pointer through
1537 a variable whose type size is the same as the inferior's pointer
1538 size.
1539
a5362b9a
TS
15402012-03-21 Thomas Schwinge <thomas@codesourcery.com>
1541
1542 * linux-arm-low.c (arm_stopped_by_watchpoint): Use siginfo_t instead of
1543 struct siginfo.
1544 * linux-low.c (siginfo_fixup, linux_xfer_siginfo): Likewise.
1545 * linux-x86-low.c (x86_siginfo_fixup): Likewise.
1546 * linux-low.h: Include <signal.h>.
1547 (struct siginfo): Remove forward declaration.
1548 (struct linux_target_ops) <siginfo_fixup>: Use siginfo_t instead of
1549 struct siginfo.
1550
d226c142
MF
15512012-03-21 Mike Frysinger <vapier@gentoo.org>
1552
1553 * .gitignore: Ignore more files.
1554
122f36ef
PA
15552012-03-19 Pedro Alves <palves@redhat.com>
1556 Jan Kratochvil <jan.kratochvil@redhat.com>
1557
1558 * server.c (cont_thread, general_thread): Add describing comments.
1559 (start_inferior): Clear `cont_thread'.
1560 (handle_v_cont): Don't set `cont_thread' if resuming all threads
1561 of a process.
1562
fc3e5175
YQ
15632012-03-15 Yao Qi <yao@codesourcery.com>
1564
1565 * tracepoint.c (install_tracepoint): Move duplicated tracepoint
1566 handling to ...
1567 (cmd_qtdp): ... here.
1568
8d0d92cd
YQ
15692012-03-15 Yao Qi <yao@codesourcery.com>
1570
1571 * tracepoint.c (struct tracepoint_action_ops): New.
1572 (struct tracepoint_action) [!IN_PROCESS_AGENT] <ops>: New field.
1573 (m_tracepoint_action_download): New.
1574 (r_tracepoint_action_download): New.
1575 (x_tracepoint_action_download): New.
1576 (l_tracepoint_action_download): New.
1577 (add_tracepoint_action): Install `action->ops' according type.
1578 (download_tracepoint_1): Move code `download' function pointer
1579 of various tracepoint_action_ops.
1580
87b0bb13
JK
15812012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1582
1583 * linux-low.c (linux_attach_lwp_1): New variable buffer. Call
1584 linux_ptrace_attach_warnings.
1585
5f572dec
JK
15862012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1587
1588 * Makefile.in (linux-ptrace.o): New.
1589 * configure.srv (arm*-*-linux*, bfin-*-*linux*, crisv32-*-linux*)
1590 (cris-*-linux*, i[34567]86-*-linux*, ia64-*-linux*, m32r*-*-linux*)
1591 (m68*-*-linux*, m68*-*-uclinux*, mips*-*-linux*, powerpc*-*-linux*)
1592 (s390*-*-linux*, sh*-*-linux*, sparc*-*-linux*, tic6x-*-uclinux)
1593 (x86_64-*-linux*, xtensa*-*-linux*): Add linux-ptrace.o to SRV_TGTOBJ
1594 of these targets.
1595 * linux-low.c (linux_attach_lwp_1): Remove redundent else clause.
1596
f4647387
YQ
15972012-03-08 Yao Qi <yao@codesourcery.com>
1598 Pedro Alves <palves@redhat.com>
1599
1600 Fix PR server/13392.
1601 * linux-x86-low.c (amd64_install_fast_tracepoint_jump_pad): Check
1602 offset of JMP insn.
1603 * tracepoint.c (remove_tracepoint): New.
1604 (cmd_qtdp): Call remove_tracepoint when failed to install.
1605
9b224c5e
PA
16062012-03-07 Pedro Alves <palves@redhat.com>
1607
1608 * linux-low.c (get_detach_signal): New.
1609 (linux_detach_one_lwp): Get rid of a pending SIGSTOP with SIGCONT.
1610 Pass on pending signals to PTRACE_DETACH. Check the result of the
1611 ptrace call.
1612 * server.c (program_signals, program_signals_p): New.
1613 (handle_general_set): Handle QProgramSignals.
1614 * server.h (program_signals, program_signals_p): Declare.
1615
e237a7e2
JK
16162012-03-05 Pedro Alves <palves@redhat.com>
1617 Jan Kratochvil <jan.kratochvil@redhat.com>
1618
1619 * linux-low.c (get_dynamic): Don't warn when PT_PHDR isn't found.
1620 New comment why.
1621
5808517f
YQ
16222012-03-03 Yao Qi <yao@codesourcery.com>
1623
1624 * tracepoint.c (tracepoint_look_up_symbols): Update call to
1625 agent_look_up_symbols.
1626
58b4daa5
YQ
16272012-03-03 Yao Qi <yao@codesourcery.com>
1628
1629 * Makefile.in (linux-low.o): Keep dependence on agent.h.
1630 (linux-x86-low.o): Likewise.
1631 * server.h: Remove in_process_agent_loaded.
1632 * tracepoint.c (in_process_agent_loaded): Removed. Moved it
1633 common/agent.c.
1634 Update callers.
1635
8ffcbaaf
YQ
16362012-03-03 Yao Qi <yao@codesourcery.com>
1637
1638 * tracepoint.c (gdb_agent_capability): New global.
1639 (in_process_agent_loaded_ust): Renamed to
1640 `in_process_agent_supports_ust'.
1641 Update callers.
1642 (in_process_agent_supports_ust): Call agent_capability_check.
1643 (clear_installed_tracepoints): Assert that agent supports
1644 agent.
1645
d1feda86
YQ
16462012-03-03 Yao Qi <yao@codesourcery.com>
1647
1648 * linux-low.c (linux_supports_agent): New.
1649 (linux_target_ops): Initialize field `supports_agent' with
1650 linux_supports_agent.
1651 * target.h (struct target_ops) <supports_agent>: New.
1652 (target_supports_agent): New macro.
1653 * server.c (handle_general_set): Handle packet 'QAgent'.
1654 (handle_query): Send `QAgent+'.
1655 * Makefile.in (server.o): Depends on agent.h.
1656
2fa291ac
YQ
16572012-03-03 Yao Qi <yao@codesourcery.com>
1658
1659 * Makefile.in (OBS): Add agent.o.
1660 Add new rule for agent.o.
1661 Track dependence of tracepoint.c on agent.h.
1662 * tracepoint.c (run_inferior_command_1):
1663 (run_inferior_command): Call agent_run_command.
1664 (gdb_ust_connect_sync_socket): Deleted. Move it to
1665 common/agent.c.
1666 (resume_thread, stop_thread): Likewise.
1667 (gdb_ust_socket_init): Renamed to ...
1668 (gdb_agent_socket_init): ... New.
1669 (gdb_ust_thread): Renamed to ...
1670 (gdb_agent_helper_thread): ... New.
1671 (gdb_ust_init): Move some code to ...
1672 (gdb_agent_init): ... here. New.
1673 [HAVE_UST]: Call gdb_ust_init.
1674 (initialize_tracepoint_ftlib): Call gdb_agent_init.
1675 * configure.ac: Add `sys/un.h' to AC_CHECK_HEADERS.
1676 * config.in, configure: Regenerated.
1677
05044653
PA
16782012-03-02 Pedro Alves <palves@redhat.com>
1679
1680 * inferiors.c (add_pid_to_list, pull_pid_from_list): Delete.
1681 * linux-low.c (struct simple_pid_list): New.
1682 (stopped_pids): New a struct simple_pid_list pointer.
1683 (add_to_pid_list, pull_pid_from_list): New.
1684 (handle_extended_wait): Don't assume the first signal new children
1685 report is SIGSTOP. Adjust call to pull_pid_from_list.
1686 (linux_wait_for_lwp): Adjust.
1687
8d00225b
YQ
16882012-03-02 Yao Qi <yao@codesourcery.com>
1689
1690 * tracepoint.c (do_action_at_tracepoint): Write `stop_pc' in
1691 debug log.
1692
19560ba5
YQ
16932012-03-02 Yao Qi <yao@codesourcery.com>
1694
1695 * tracepoint.c (collect_ust_data_at_tracepoint): Remove parameters
1696 `stop_pc' and `tpoint'. Update caller.
1697
1faeff08
MR
16982012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
1699
1700 * linux-low.h (linux_target_ops): Add regset_bitmap member.
1701 * linux-low.c (use_linux_regsets): New macro.
1702 [!HAVE_LINUX_REGSETS] (regsets_fetch_inferior_registers): Likewise.
1703 [!HAVE_LINUX_REGSETS] (regsets_store_inferior_registers): Likewise.
1704 (linux_register_in_regsets): New function.
1705 (usr_fetch_inferior_registers): Skip registers covered by
1706 regsets.
1707 (usr_store_inferior_registers): Likewise.
1708 (usr_fetch_inferior_registers): New macro.
1709 (usr_store_inferior_registers): Likewise.
1710 (linux_fetch_registers): Handle mixed regset/non-regset targets.
1711 (linux_store_registers): Likewise.
1712 * linux-mips-low.c (init_registers_mips_dsp_linux): New
1713 prototype.
1714 (init_registers_mips64_dsp_linux): Likewise.
1715 (init_registers_mips_linux): New macro.
1716 (init_registers_mips_dsp_linux): Likewise.
1717 (mips_dsp_num_regs): Likewise.
1718 (DSP_BASE, DSP_CONTROL): New fallback macros.
1719 (mips_base_regs): New macro.
1720 (mips_regmap): Use it. Fix the size.
1721 (mips_dsp_regmap): New variable.
1722 (mips_dsp_regset_bitmap): Likewise.
1723 (mips_arch_setup): New function.
1724 (mips_cannot_fetch_register): Use the_low_target.regmap rather
1725 than mips_regmap.
1726 (mips_cannot_store_register): Likewise.
1727 (the_low_target): Update .arch_setup, .num_regs and .regmap
1728 initializers. Add .regset_bitmap initializer.
1729 * linux-arm-low.c (the_low_target): Add .regset_bitmap
1730 initializer.
1731 * linux-bfin-low.c (the_low_target): Likewise.
1732 * linux-cris-low.c (the_low_target): Likewise.
1733 * linux-crisv32-low.c (the_low_target): Likewise.
1734 * linux-ia64-low.c (the_low_target): Likewise.
1735 * linux-m32r-low.c (the_low_target): Likewise.
1736 * linux-m68k-low.c (the_low_target): Likewise.
1737 * linux-ppc-low.c (the_low_target): Likewise.
1738 * linux-s390-low.c (the_low_target): Likewise.
1739 * linux-sh-low.c (the_low_target): Likewise.
1740 * linux-sparc-low.c (the_low_target): Likewise.
1741 * linux-tic6x-low.c (the_low_target): Likewise.
1742 * linux-x86-low.c (the_low_target): Likewise.
1743 * linux-xtensa-low.c (the_low_target): Likewise.
1744 * configure.srv <mips*-*-linux*>: Add mips-dsp-linux.o and
1745 mips64-dsp-linux.o to srv_regobj. Add mips-dsp-linux.xml,
1746 mips64-dsp-linux.xml, mips-dsp.xml and mips64-dsp.xml to
1747 srv_xmlfiles.
1748 * Makefile.in (mips-dsp-linux.o, mips-dsp-linux.c): New targets.
1749 (mips64-dsp-linux.o, mips64-dsp-linux.c): Likewise.
1750
c03e6ccc
YQ
17512012-02-29 Yao Qi <yao@codesourcery.com>
1752 Pedro Alves <palves@redhat.com>
1753
1754 * linux-low.c: (linux_wait_1): Call unsuspend_all_lwps when
1755 `step_over_finished' is true.
1756
644cebc9
PA
17572012-02-27 Pedro Alves <palves@redhat.com>
1758
1759 * linux-low.c (pid_is_stopped): Delete, moved to common/.
1760 (linux_attach_lwp_1): Adjust to use linux_proc_pid_is_stopped.
1761
c14d7ab2
PA
17622012-02-27 Pedro Alves <palves@redhat.com>
1763
1764 PR server/9684
1765 * linux-low.c (pid_is_stopped): New.
1766 (linux_attach_lwp_1): Handle attaching to 'T (stopped)' processes.
1767
412c89dd
LM
17682012-02-25 Luis Machado <lgustavo@codesourcery.com>
1769
1770 * mem-break.c (clear_gdb_breakpoint_conditions): Fix de-allocation
1771 of conditions.
1772
b745defe
MR
17732012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
1774
1775 * linux-mips-low.c (mips_regmap): Correct the index of $f9.
1776
9f3a5c85
LM
17772012-02-24 Luis Machado <lgustavo@codesourcery>
1778
1779 * server.c (handle_query): Advertise support for target-side
1780 breakpoint condition evaluation.
1781 (process_point_options): New function.
1782 (process_serial_event): When inserting a breakpoint, check for
1783 a target-side condition that should be evaluated.
1784
1785 * mem-break.c: Include regcache.h and ax.h.
1786 (point_cond_list_t): New data structure.
1787 (breakpoint) <cond_list>: New field.
1788 (find_gdb_breakpoint_at): Make non-static.
1789 (delete_gdb_breakpoint_at): Clear any target-side
1790 conditions.
1791 (clear_gdb_breakpoint_conditions): New function.
1792 (add_condition_to_breakpoint): Likewise.
1793 (add_breakpoint_condition): Likewise.
1794 (gdb_condition_true_at_breakpoint): Likewise.
1795 (gdb_breakpoint_here): Return result directly instead
1796 of going through a local variable.
1797
1798 * mem-break.h (find_gdb_breakpoint_at): New prototype.
1799 (clear_gdb_breakpoint_conditions): Likewise.
1800 (add_breakpoint_condition): Likewise.
1801 (gdb_condition_true_at_breakpoint): Likewise.
1802
1803 * linux-low.c (linux_wait_1): Evaluate target-side breakpoint condition.
1804 (need_step_over_p): Take target-side breakpoint condition into
1805 consideration.
1806
5e1dc496
LM
18072012-02-24 Luis Machado <lgustavo@codesourcery>
1808
1809 * server.h: Include tracepoint.h.
1810 (agent_mem_read, agent_get_trace_state_variable_value,
1811 agent_set_trace_state_variable_value,
1812 agent_tsv_read, agent_mem_read_string, get_get_tsv_func_addr,
1813 get_set_tsv_func_addr): New prototypes.
1814
1815 * ax.h: New include file.
1816 * ax.c: New source file.
1817
1818 * tracepoint.c: Include ax.h.
1819 (gdb_agent_op, gdb_agent_op_names, gdb_agent_op_sizes,
1820 agent_expr, eval_result_type): Move to ax.h.
1821 (parse_agent_expr): Rename to ...
1822 (gdb_parse_agent_expr): ... this, make it non-static and move
1823 to ax.h.
1824 (unparse_agent_expr) Rename to ...
1825 (gdb_unparse_agent_expr): ... this, make it non-static and move
1826 to ax.h.
1827 (eval_agent_expr): Rename to ...
1828 (eval_tracepoint_agent_expr): ... this.
1829 (agent_mem_read, agent_mem_read_string, agent_tsv_read): Remove
1830 forward declarations.
1831 (add_tracepoint_action): Call gdb_parse_agent_expr (...).
1832 (agent_get_trace_state_variable_value): New function.
1833 (agent_set_trace_state_variable_value): New function.
1834 (cmd_qtdp): Call gdb_parse_agent_expr (...).
1835 (response_tracepoint): Call gdb_unparse_agent_expr (...).
1836 (do_action_at_tracepoint): Call eval_tracepoint_agent_expr (...).
1837 (condition_true_at_tracepoint): Likewise.
1838 (parse_agent_expr): Rename to ...
1839 (gdb_parse_agent_expr): ... this and move to ax.c.
1840 (unparse_agent_expr): Rename to ...
1841 (gdb_unparse_agent_expr): ... this and move to ax.c.
1842 (gdb_agent_op_name): Move to ax.c.
1843 (eval_agent_expr): Rename to ...
1844 (gdb_eval_agent_expr): ... this, use regcache passed as parameter
1845 and move to ax.c.
1846 (eval_tracepoint_agent_expr): New function.
1847 (agent_mem_read, agent_mem_read_string, agent_tsv_read): Make
43aaf8b6 1848 non-static.
5e1dc496
LM
1849 (current_insn_ptr, emit_error, struct bytecode_address): Move to
1850 ax.c.
1851 (emit_prologue, emit_epilogue, emit_add, emit_sub, emit_mul, emit_lsh,
1852 emit_rsh_signed, emit_rsh_unsigned, emit_ext, emit_log_not,
1853 emit_bit_and, emit_bit_or, emit_bit_xor, emit_bit_not, emit_equal,
1854 emit_less_signed, emit_less_unsigned, emit_ref, emit_if_goto,
1855 emit_goto, write_goto_address, emit_const, emit_reg, emit_pop,
1856 emit_stack, emit_zero_ext, emit_swap, emit_stack_adjust,
1857 emit_int_call_1, emit_void_call_2, emit_eq_goto, emit_ne_goto,
1858 emit_lt_goto, emit_ge_goto, emit_gt_goto, emit_le_goto): Move to ax.c.
1859 (get_get_tsv_func_addr, get_set_tsv_func_addr): New functions.
1860 (compile_bytecodes): Remove forward declaration.
1861 (is_goto_target): Move to ax.c.
1862 (compile_bytecodes): Move to ax.c and call
1863 agent_get_trace_state_variable_value (...) and
1864 agent_set_trace_state_variable_value (...).
1865
1866 * Makefile.in: Update ax.c and IPA dependencies.
1867
277e4e52
PA
18682012-02-24 Pedro Alves <palves@redhat.com>
1869
1870 * tracepoint.c (cmd_bigqtbuffer): Rename as ...
1871 (cmd_bigqtbuffer_circular): ... this. Only handle
1872 'QTBuffer:circular:'.
1873 (handle_tracepoint_general_set): Adjust.
1874
bf4c19f7
YQ
18752012-02-16 Yao Qi <yao@codesourcery.com>
1876
1877 * inferiors.c: Move code to ...
1878 * dll.c: .... here. New.
1879 * server.h: Declare clear_dlls.
1880 * Makefile.in (SFILES): Add dll.c.
1881 (OBS): Add dll.o
1882 (dll.o): New rule.
1883
d73f2619
YQ
18842012-02-11 Yao Qi <yao@codesourcery.com>
1885
1886 * server.c: (handle_monitor_command): Add a new parameter
1887 `own_buf'.
1888 (handle_query): Update caller.
1889
f8255c2a
JB
18902012-02-09 Joel Brobecker <brobecker@adacore.com>
1891
1892 * configure.ac: Add readlink to AC_CHECK_FUNCS list.
1893 * configure, config.in: Regenerate.
1894 * hostio.c: Provide an alternate implementation if HAVE_READLINK
1895 is not defined.
1896
da84f473
PA
18972012-02-02 Pedro Alves <palves@redhat.com>
1898
1899 Try SIGKILL first, then PTRACE_KILL.
1900 * linux-low.c (linux_kill_one_lwp): New.
1901 (linux_kill_one_lwp): Rename to ...
1902 (kill_one_lwp_callback): ... this. Use the new
1903 linux_kill_one_lwp.
1904
e886a173
PA
19052012-02-02 Pedro Alves <palves@redhat.com>
1906
1907 * tracepoint.c (cmd_qtminftpilen): Return 0 if there's no current
1908 inferior.
1909
be07f1a2
PA
19102012-01-27 Pedro Alves <palves@redhat.com>
1911
1912 * linux-low.c (linux_child_pid_to_exec_file): Delete.
1913 (elf_64_file_p): Make static.
1914 (linux_pid_exe_is_elf_64_file): New.
1915 * linux-low.h (linux_child_pid_to_exec_file, elf_64_file_p):
1916 Delete declarations.
1917 (linux_pid_exe_is_elf_64_file): Declare.
1918 * linux-x86-low.c (x86_arch_setup): Use
1919 linux_pid_exe_is_elf_64_file.
1920
d8301ad1
JK
19212012-01-25 Jan Kratochvil <jan.kratochvil@redhat.com>
1922
1923 * linux-low.c (linux_wait_for_event_1): Rename to ...
1924 (linux_wait_for_event): ... here and merge it with former
1925 linux_wait_for_event - new variable wait_ptid, use it.
1926 (linux_wait_for_event): Remove - merge it to linux_wait_for_event_1.
1927
01b17894
PA
19282012-01-23 Pedro Alves <palves@redhat.com>
1929
1930 * server.c (main): Avoid yet another case of infinite loop while
1931 detaching/killing after a longjmp.
1932
e825046f
JK
19332012-01-20 Jan Kratochvil <jan.kratochvil@redhat.com>
1934
1935 Code cleanup.
1936 * linux-low.c (linux_wait_for_event_1): Use ptid_is_pid.
1937
b9e7b9c3
UW
19382012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
1939
1940 * hostio.c (handle_readlink): New function.
1941 (handle_vFile): Call it to handle "vFile:readlink" packets.
1942
901f9912
UW
19432012-01-20 Pedro Alves <palves@redhat.com>
1944 Ulrich Weigand <ulrich.weigand@linaro.org>
1945
1946 * server.c (handle_v_requests): Only support vAttach and vRun to
1947 start multiple processes when in extended protocol mode.
1948
fc1ab1a0
PA
19492012-01-17 Pedro Alves <palves@redhat.com>
1950
1951 * tracepoint.c (initialize_tracepoint): Use mmap instead of
1952 memalign plus mprotect to allocate the scratch buffer.
1953
7d5d4e98
PA
19542012-01-13 Pedro Alves <palves@redhat.com>
1955
1956 * server.c (attach_inferior): Clear `cont_thread'.
1957
f128d5e9
PA
19582012-01-13 Pedro Alves <palves@redhat.com>
1959
1960 * server.c (main): Avoid infinite loop while detaching/killing
1961 after a longjmp.
1962
06db92f0
DE
19632012-01-09 Doug Evans <dje@google.com>
1964
1965 * server.c (start_inferior): Set last_ptid in --wrapper case.
1966
32d92999
YQ
19672012-01-06 Yao Qi <yao@codesourcery.com>
1968
1969 * tracepoint.c [IN_PROCESS_AGENT] (debug_threads): Macro
1970 defined.
1971 [IN_PROCESS_AGENT] (debug_agent): New global variable.
1972
5e0a92a9
YQ
19732012-01-04 Yao Qi <yao@codesourcery.com>
1974
1975 * tracepoint.c (cmd_qtdp): Print debug message
1976 for static tracepoint.
1977
ae639e8c
YQ
19782012-01-04 Yao Qi <yao@codesourcery.com>
1979
1980 * tracepoint.c (trace_vdebug): Differentiate debug message
1981 between gdbserver and IPA.
1982
f72429c5
YQ
19832012-01-03 Yao Qi <yao@codesourcery.com>
1984
1985 * tracepoint.c (tracepoint_was_hit): Don't collect for
1986 static tracepoint.
1987
12c3e59c
JB
19882012-01-02 Joel Brobecker <brobecker@adacore.com>
1989
1990 * terminal.h: Reformat copyright header.
1991
67827812
JB
19922012-01-02 Joel Brobecker <brobecker@adacore.com>
1993
1994 * server.c (gdbserver_version): Update copyright year.
1995 * gdbreplay.c (gdbreplay_version): Likewise.
1996
3e52c33d
JK
19972011-12-18 Jan Kratochvil <jan.kratochvil@redhat.com>
1998
1999 * linux-low.c (linux_create_inferior): Put empty if clause for write.
2000
2001 Revert:
2002 2011-12-18 Hui Zhu <teawater@gmail.com>
2003 * linux-low.c (linux_create_inferior): Save return value to ret.
2004
66f1260e
HZ
20052011-12-18 Hui Zhu <teawater@gmail.com>
2006
2007 * linux-low.c (linux_create_inferior): Save return value to ret.
2008
e77616d7
DE
20092011-12-16 Doug Evans <dje@google.com>
2010
e7b06c57
DE
2011 * linux-low.c (linux_create_inferior): If stdio connection,
2012 redirect stdin from /dev/null, stdout to stderr.
2013 * remote-utils.c (remote_is_stdio): New static global.
2014 (remote_connection_is_stdio): New function.
2015 (remote_prepare): Handle stdio connection.
2016 (remote_open): Ditto.
2017 (remote_close): Don't close stdin for stdio connections.
2018 (read_prim,write_prim): New functions. Replace all calls to
2019 read/write to these.
2020 * server.c (main): Watch for "-" argument. Move call to
2021 remote_prepare before start_inferior.
2022 * server.h (STDIO_CONNECTION_NAME): New macro.
2023 (remote_connection_is_stdio): Declare.
2024
e77616d7
DE
2025 * remote-utils.c (prepare_resume_reply): Remove extraneous \n
2026 in debugging output.
2027
82067193
YQ
20282011-12-15 Yao Qi <yao@codesourcery.com>
2029
2030 * tracepoint.c: Include sys/syscall.h.
2031 (gdb_ust_thread): Remove preprocessor conditional.
2032
82bfbe7e
PA
20332011-12-14 Pedro Alves <pedro@codesourcery.com>
2034
2035 * linux-low.c (linux_detach_one_lwp): Call
2036 the_low_target.prepare_to_resume before detaching.
2037
712c6575
YQ
20382011-12-14 Yao Qi <yao@codesourcery.com>
2039
2040 * tracepoint.c (gdb_ust_thread): Don't ignore return value
2041 of write.
2042
d54d1edf
YQ
20432011-12-14 Yao Qi <yao@codesourcery.com>
2044
2045 * i386-low.c (i386_low_stopped_data_address): Initialize local
2046 variable `control'.
2047
6210a125
PA
20482011-12-13 Pedro Alves <pedro@codesourcery.com>
2049
2050 PR remote/13492
2051
2052 * i386-low.c (i386_low_stopped_data_address): Avoid fetching
2053 DR_CONTROL unless necessary. Extend comments.
2054 * linux-x86-low.c (x86_linux_prepare_to_resume): Don't write to
2055 DR0-3 if not used. If any watchpoint was set, clear DR_STATUS.
2056
2ece8244
YQ
20572011-12-13 Yao Qi <yao@codesourcery.com>
2058
2059 * tracepoint.c (trace_buffer_alloc): Replace magic numbers with
2060 macros.
2061 (upload_fast_traceframes, upload_fast_traceframes): Likewise.
2062
784867a5
JK
20632011-12-08 Jan Kratochvil <jan.kratochvil@redhat.com>
2064
2065 * linux-low.c (linux_kill): Skip PTRACE_KILL if LWP does not exist.
2066 Print new debug message for such case.
2067
6bf36717
JK
20682011-12-06 Jan Kratochvil <jan.kratochvil@redhat.com>
2069
2070 Fix overlapping memcpy.
2071 * mem-break.c (set_raw_breakpoint_at): New variable buf. Use it for
2072 the read_inferior_memory transfer.
2073 (delete_fast_tracepoint_jump): New variable buf. Use it for the
2074 write_inferior_memory transfer.
2075 (set_fast_tracepoint_jump): New variable buf. Use it for the
2076 read_inferior_memory and write_inferior_memory transfers.
2077 (uninsert_fast_tracepoint_jumps_at, reinsert_fast_tracepoint_jumps_at)
2078 (delete_raw_breakpoint, uninsert_raw_breakpoint): New variable buf.
2079 Use it for the write_inferior_memory transfer.
2080 (check_mem_read, check_mem_write): New gdb_asserts for overlapping
2081 buffers.
2082
50275556
MR
20832011-12-06 Maciej W. Rozycki <macro@codesourcery.com>
2084
2085 * linux-low.c (fetch_register, store_register): Make code
2086 consistent, fix formatting.
2087
7325beb4
MR
20882011-12-06 Maciej W. Rozycki <macro@codesourcery.com>
2089
2090 * linux-low.c (usr_store_inferior_registers): Factor out code
2091 to handle individual registers into...
2092 (store_register): ... this new function.
2093
c642a434
UW
20942011-12-06 Ulrich Weigand <uweigand@de.ibm.com>
2095
2096 * Makefile.in (s390-linux32v1.o, s390-linux32v1.c): New rules.
2097 (s390-linux32v2.o, s390-linux32v2.c): Likewise.
2098 (s390-linux64v1.o, s390-linux64v1.c): Likewise.
2099 (s390-linux64v2.o, s390-linux64v2.c): Likewise.
2100 (s390x-linux64v1.o, s390x-linux64v1.c): Likewise.
2101 (s390x-linux64v2.o, s390x-linux64v2.c): Likewise.
2102 * configure.srv [s390*-*-linux*] (srv_regobj): Add new objects.
2103 (srv_xmlfiles): Add new XML files.
2104
2105 * linux-s390-low.c: Include "elf/common.h", <sys/ptrace.h>,
2106 and <sys/uio.h>.
2107 (PTRACE_GETREGSET, PTRACE_SETREGSET): Define if undefined.
2108 (init_registers_s390_linux32v1): Add prototype.
2109 (init_registers_s390_linux32v2): Likewise.
2110 (init_registers_s390_linux64v1): Likewise.
2111 (init_registers_s390_linux64v2): Likewise.
2112 (init_registers_s390x_linux64v1): Likewise.
2113 (init_registers_s390x_linux64v2): Likewise.
2114 (s390_num_regs): Increment to 52.
2115 (s390_regmap): Add orig_r2 register.
2116 (s390_num_regs_3264): Increment to 68.
2117 (s390_regmap_3264): Add orig_r2 register.
2118 (s390_collect_ptrace_register): Handle orig_r2 register.
2119 (s390_supply_ptrace_register): Likewise.
2120 (s390_fill_last_break): New function.
2121 (s390_store_last_break): Likewise.
2122 (s390_fill_system_call): New function.
2123 (s390_store_system_call): Likewise.
2124 (target_regsets): Handle NT_S390_LAST_BREAK and NT_S390_SYSTEM_CALL
2125 register sets.
2126 (s390_check_regset): New function.
2127 (s390_arch_setup): Check for presence of NT_S390_LAST_BREAK and
2128 NT_S390_SYSTEM_CALL regsets and use appropriate description.
2129 Update target_regsets for available register sets.
2130
2268b414
JK
21312011-12-02 Paul Pluzhnikov <ppluzhnikov@google.com>
2132 Jan Kratochvil <jan.kratochvil@redhat.com>
2133
2134 * linux-low.c (get_phdr_phnum_from_proc_auxv, get_dynamic, get_r_debug)
2135 (read_one_ptr, struct link_map_offsets, linux_qxfer_libraries_svr4):
2136 New.
2137 (struct linux_target_ops): Install linux_qxfer_libraries_svr4.
2138 * linux-low.h (struct process_info_private): New member r_debug.
2139 * server.c (handle_qxfer_libraries): Call
2140 the_target->qxfer_libraries_svr4.
2141 (handle_qxfer_libraries_svr4): New function.
2142 (qxfer_packets): New entry "libraries-svr4".
2143 (handle_query): Check QXFER_LIBRARIES_SVR4 and report libraries-svr4.
2144 * target.h (struct target_ops): New member qxfer_libraries_svr4.
2145 * remote.c (remote_xfer_partial): Call add_packet_config_cmd for
2146 PACKET_qXfer_libraries_svr4.
2147
d6db1fab
UW
21482011-11-30 Ulrich Weigand <uweigand@de.ibm.com>
2149
2150 * linux-s390-low.c (s390_collect_ptrace_register): Fully convert
2151 PSW address/mask between 8-byte and 16-byte formats.
2152 (s390_supply_ptrace_register): Likewise.
2153 (s390_get_pc, s390_set_pc): 4-byte PSW address always includes
2154 basic addressing mode bit.
2155
242f5f1c
SS
21562011-11-24 Stan Shebs <stan@codesourcery.com>
2157
2158 * tracepoint.c (cmd_qtstatus): Use plongest instead of %llx.
2159
f196051f
SS
21602011-11-17 Stan Shebs <stan@codesourcery.com>
2161
2162 * tracepoint.c (struct tracepoint): New field traceframe_usage.
2163 (tracing_start_time): New global.
2164 (tracing_stop_time): New global.
2165 (tracing_user_name): New global.
2166 (tracing_notes): New global.
2167 (tracing_stop_note): New global.
2168 (cmd_qtstart): Set traceframe_usage, start_time.
2169 (stop_tracing): Set stop_time.
2170 (cmd_qtstatus): Report additional status.
2171 (cmd_qtp): New function.
2172 (handle_tracepoint_query): Call it.
2173 (cmd_qtnotes): New function.
2174 (handle_tracepoint_general_set): Call it.
2175 (get_timestamp): Rename from tsv_get_timestamp.
2176
405f8e94
SS
21772011-11-14 Stan Shebs <stan@codesourcery.com>
2178 Kwok Cheung Yeung <kcy@codesourcery.com>
2179
2180 * linux-x86-low.c (small_jump_insn): New.
2181 (i386_install_fast_tracepoint_jump_pad): Add arguments for
2182 trampoline and error message, build a trampoline and issue a small
2183 jump instruction to it.
2184 (x86_install_fast_tracepoint_jump_pad): Add arguments for
2185 trampoline and error message.
2186 (x86_get_min_fast_tracepoint_insn_len): New.
2187 (the_low_target): Add call to x86_get_min_fast_tracepoint_insn_len.
2188 * linux-low.h (struct linux_target_ops): Add arguments to
2189 install_fast_tracepoint_jump_pad operation, add new operation.
2190 * linux-low.c (linux_install_fast_tracepoint_jump_pad): Add
2191 arguments.
2192 (linux_get_min_fast_tracepoint_insn_len): New function.
2193 (linux_target_op): Add new operation.
2194 * tracepoint.c (gdb_trampoline_buffer): New IPA variable.
2195 (gdb_trampoline_buffer_end): Ditto.
2196 (gdb_trampoline_buffer_error): Ditto.
2197 (struct ipa_sym_addresses): Add fields for new IPA variables.
2198 (symbol_list): Add entries for new IPA variables.
2199 (struct tracepoint): Add fields to hold the address range of the
2200 trampoline used by the tracepoint.
2201 (trampoline_buffer_head): New static variable.
2202 (trampoline_buffer_tail): Ditto.
2203 (claim_trampoline_space): New function.
2204 (have_fast_tracepoint_trampoline_buffer): New function.
2205 (clone_fast_tracepoint): Fill in trampoline fields of tracepoint
2206 structure.
2207 (install_fast_tracepoint): Ditto, also add error buffer argument.
2208 (cmd_qtminftpilen): New function.
2209 (handle_tracepoint_query): Add response to qTMinFTPILen packet.
2210 (fast_tracepoint_from_trampoline_address): New function.
2211 (fast_tracepoint_collecting): Handle trampoline as part of jump
2212 pad space.
2213 (set_trampoline_buffer_space): New function.
2214 (initialize_tracepoint): Initialize new IPA variables.
2215 * target.h (struct target_ops): Add arguments to
2216 install_fast_tracepoint_jump_pad operation, add new
2217 get_min_fast_tracepoint_insn_len operation.
2218 (target_get_min_fast_tracepoint_insn_len): New.
2219 (install_fast_tracepoint_jump_pad): Add arguments.
2220 * server.h (IPA_BUFSIZ): Define.
2221 * linux-i386-ipa.c: Include extra header files.
2222 (initialize_fast_tracepoint_trampoline_buffer): New function.
2223 (initialize_low_tracepoint): Call it.
2224 * server.h (set_trampoline_buffer_space): Declare.
2225 (claim_trampoline_space): Ditto.
2226 (have_fast_tracepoint_trampoline_buffer): Ditto.
2227
1e4d1764
YQ
22282011-11-14 Yao Qi <yao@codesourcery.com>
2229
2230 * server.c (handle_query): Handle InstallInTrace for qSupported.
2231 * tracepoint.c (add_tracepoint): Sort list.
2232 (install_tracepoint, download_tracepoint): New.
2233 (cmd_qtdp): Call them to install and download tracepoints.
2234 (sort_tracepoints): Removed.
2235 (cmd_qtstart): Update.
2236
5c73ff4e
YQ
22372011-11-14 Yao Qi <yao@codesourcery.com>
2238
2239 * mem-break.c (inc_ref_fast_tracepoint_jump): New.
2240 * mem-break.h: Declare.
2241 * tracepoint.c (cmd_qtstart): Move some code to ...
2242 (clone_fast_tracepoint, install_fast_tracepoint): ... here.
2243 New.
2244 (download_tracepoints): Move some code to ...
2245 (download_tracepoint_1): ... here. New.
2246
86a30030
YQ
22472011-11-08 Yao Qi <yao@codesourcery.com>
2248
2249 * remote-utils.c (relocate_instruction): A comment fix.
2250
8d26e50c
JB
22512011-11-07 Joel Brobecker <brobecker@adacore.com>
2252
2253 * win32-i386-low.c (dr_status_mirror, dr_control_mirror): Delete.
2254 (i386_dr_low_get_control, i386_dr_low_get_status): Use
2255 dr_status_mirror and dr_control_mirror from debug_reg_state.
2256 (i386_dr_low_get_status): Use debug_reg_state.dr_status_mirror
2257 (i386_initial_stuff): Remove use of deleted globals.
2258 (i386_get_thread_context, i386_set_thread_context,
2259 i386_thread_added): Use dr_status_mirror and dr_control_mirror
2260 from debug_reg_state.
2261
a59306a3
YQ
22622011-11-05 Yao Qi <yao@codesourcery.com>
2263
2264 * tracepoint.c (gdb_collect): Loop over tracepoints of same
2265 address as TPOINT's.
2266
3065dfb6
SS
22672011-11-02 Stan Shebs <stan@codesourcery.com>
2268
2269 * tracepoint.c (agent_mem_read_string): New function.
2270 (eval_agent_expr): Call it for tracenz.
2271 * server.c (handle_query): Report support for tracenz.
2272
fd0d8c7c
YQ
22732011-11-02 Yao Qi <yao@codesourcery.com>
2274
2275 * tracepoint.c (cmd_qtstart): Remove unused local variables.
2276
609086b1
YQ
22772011-11-02 Yao Qi <yao@codesourcery.com>
2278
2279 * target.h: Fix a typo in comment.
2280
b9fd1791
PA
22812011-10-31 Pedro Alves <pedro@codesourcery.com>
2282
2283 * mem-break.c (check_mem_write): Add `myaddr' parameter. Don't
2284 clobber the breakpoints' shadows with fast tracepoint jumps.
2285 * mem-break.h (check_mem_write): Add `myaddr' parameter.
2286 * target.c (write_inferior_memory): Also pass MYADDR down to
2287 check_mem_write.
2288
03583c20
UW
22892011-10-07 Ulrich Weigand <ulrich.weigand@linaro.org>
2290
2291 * configure.ac: Check support for personality routine.
2292 * configure: Regenerate.
2293 * config.in: Likewise.
2294 * linux-low.c: Include <sys/personality.h>.
2295 Define ADDR_NO_RANDOMIZE if necessary.
2296 (linux_create_inferior): Disable address space randomization when
2297 forking inferior, if requested.
2298 (linux_supports_disable_randomization): New function.
2299 (linux_target_ops): Install it.
2300 * server.h (disable_randomization): Declare.
2301 * server.c (disable_randomization): New global variable.
2302 (handle_general_set): Handle QDisableRandomization.
2303 (handle_query): Likewise for qSupported.
2304 (main): Support --disable-randomization and --no-disable-randomization
2305 command line arguments.
2306 * target.h (struct target_ops): Add supports_disable_randomization.
2307 (target_supports_disable_randomization): New macro.
2308
723b724b
MF
23092011-09-29 Mike Frysinger <vapier@gentoo.org>
2310
2311 * linux-low.c (target_loadseg): Add defined PTRACE_GETFDPIC to the
2312 ifdef check.
2313 [PT_GETDSBT] (target_loadmap): Wrap in a defined PT_GETDSBT check.
2314 [!PT_GETDSBT] (target_loadmap): New definition.
2315 (LINUX_LOADMAP, LINUX_LOADMAP_EXEC, LINUX_LOADMAP_INTERP): Define.
2316 (linux_read_loadmap): Change PTRACE_GETDSBT_EXEC to
2317 LINUX_LOADMAP_EXEC, PTRACE_GETDSBT_INTERP to LINUX_LOADMAP_INTERP,
2318 and PT_GETDSBT to LINUX_LOADMAP.
2319 [!PT_GETDSBT] (linux_read_loadmap): Define to NULL.
2320 (linux_target_ops): Delete unnecessary ifdef PT_GETDSBT check.
2321
55329a5c 23222011-09-21 Ulrich Weigand <ulrich.weigand@linaro.org>
71487fd7
UW
2323
2324 * linux-arm-low.c (struct arm_linux_hwbp_cap): Remove.
2325 (arm_linux_hwbp_cap): New static variable.
2326 (arm_linux_get_hwbp_cap): Replace by ...
2327 (arm_linux_init_hwbp_cap): ... this new function.
2328 (arm_linux_get_hw_breakpoint_count): Use arm_linux_hwbp_cap.
2329 (arm_linux_get_hw_watchpoint_count): Likewise.
2330 (arm_linux_get_hw_watchpoint_max_length): Likewise.
2331 (arm_arch_setup): Call arm_linux_init_hwbp_cap.
2332 (arm_prepare_to_resume): Use perror_with_name instead of error.
2333
55329a5c 23342011-09-21 Ulrich Weigand <ulrich.weigand@linaro.org>
09b4ad9f
UW
2335
2336 * linux-arm-low.c: Include <signal.h>.
2337 (PTRACE_GETHBPREGS, PTRACE_SETHBPREGS): Define if necessary.
2338 (struct arm_linux_hwbp_cap): New data type.
2339 (arm_hwbp_type, arm_hwbp_control_t): New typedefs.
2340 (struct arm_linux_hw_breakpoint): New data type.
2341 (MAX_BPTS, MAX_WPTS): Define.
2342 (struct arch_process_info, struct arch_lwp_info): New data types.
2343 (arm_linux_get_hwbp_cap): New function.
2344 (arm_linux_get_hw_breakpoint_count): Likewise.
2345 (arm_linux_get_hw_watchpoint_count): Likewise.
2346 (arm_linux_get_hw_watchpoint_max_length): Likewise.
2347 (arm_hwbp_control_initialize): Likewise.
2348 (arm_hwbp_control_is_enabled): Likewise.
2349 (arm_hwbp_control_is_initialized): Likewise.
2350 (arm_hwbp_control_disable): Likewise.
2351 (arm_linux_hw_breakpoint_equal): Likewise.
2352 (arm_linux_hw_point_initialize): Likewise.
2353 (struct update_registers_data): New data structure.
2354 (update_registers_callback: New function.
2355 (arm_insert_point): Likewise.
2356 (arm_remove_point): Likewise.
2357 (arm_stopped_by_watchpoint): Likewise.
2358 (arm_stopped_data_address): Likewise.
2359 (arm_new_process): Likewise.
2360 (arm_new_thread): Likewise.
2361 (arm_prepare_to_resume): Likewise.
2362 (the_low_target): Register arm_insert_point, arm_remove_point,
2363 arm_stopped_by_watchpoint, arm_stopped_data_address, arm_new_process,
2364 arm_new_thread, and arm_prepare_to_resume.
2365
6b9801d4
SS
23662011-09-15 Stan Shebs <stan@codesourcery.com>
2367
2368 * server.h (struct emit_ops): Add compare-goto fields.
2369 * tracepoint.c (gdb_agent_op_sizes): New table.
2370 (emit_eq_goto): New function.
2371 (emit_ne_goto): New function.
2372 (emit_lt_goto): New function.
2373 (emit_le_goto): New function.
2374 (emit_gt_goto): New function.
2375 (emit_ge_goto): New function.
2376 (is_goto_target): New function.
2377 (compile_bytecodes): Recognize special cases of compare-goto
2378 combinations and call specialized emitters for them.
2379 * linux-x86-low.c (amd64_emit_eq_goto): New function.
2380 (amd64_emit_ne_goto): New function.
2381 (amd64_emit_lt_goto): New function.
2382 (amd64_emit_le_goto): New function.
2383 (amd64_emit_gt_goto): New function.
2384 (amd64_emit_ge_goto): New function.
2385 (amd64_emit_ops): Add the new functions.
2386 (i386_emit_eq_goto): New function.
2387 (i386_emit_ne_goto): New function.
2388 (i386_emit_lt_goto): New function.
2389 (i386_emit_le_goto): New function.
2390 (i386_emit_gt_goto): New function.
2391 (i386_emit_ge_goto): New function.
2392 (i386_emit_ops): Add the new functions.
2393
bf15cbda
SS
23942011-09-08 Stan Shebs <stan@codesourcery.com>
2395
2396 * linux-x86-low.c (i386_emit_prologue): Save %ebx.
2397 (i386_emit_epilogue): Restore %ebx.
2398
943ca1dd
JZ
23992011-08-31 Jie Zhang <jzhang918@gmail.com>
2400
2401 * server.c (step_thread): Remove definition.
2402 (process_serial_event): Don't handle Hs.
2403 * server.h (step_thread): Remove declaration.
2404 * target.c (set_desired_inferior): Remove use of step_thread.
2405
e3deef73
LM
24062011-08-24 Luis Machado <lgustavo@codesourcery.com>
2407
2408 * linux-low.c: Include linux-procfs.h.
2409 (linux_attach_lwp_1): Update comments.
2410 (linux_attach): Scan for existing threads when attaching to a
2411 process that is the tgid.
2412 * Makefile.in: Update dependencies.
2413
13da1c97
LM
24142011-08-24 Luis Machado <lgustavo@codesourcery.com>
2415
2416 * configure.srv: Add linux-procfs.o dependencies.
2417
881127c9
YQ
24182011-08-14 Yao Qi <yao@codesourcery.com>
2419
2420 * target.h (struct target_ops): Fix indent.
2421 * win32-low.c (win32_target_ops): Fix comment.
2422
58dbd541
YQ
24232011-08-14 Andrew Jenner <andrew@codesourcery.com>
2424 Yao Qi <yao@codesourcery.com>
2425
2426 * Makefile.in (clean): Remove tic6x-*.c files.
2427 (linux-tic6x-low.o, tic6x-c62x-linux.o, tic6x-c64x-linux.o): New rules.
2428 (tic6x-c64xp-linux.o, tic6x-c62x-linux.c, tic6x-c64x-linux.c): Likewise.
2429 (tic6x-c64xp-linux.c): Likewise.
2430 * configure.srv: Add support for tic6x-*-uclinux.
2431 * linux-tic6x-low.c: New.
2432 * linux-low.c (PT_TEXT_ADDR, PT_DATA_ADDR, PT_TEXT_END_ADDR): Define.
2433
78d85199
YQ
24342011-08-14 Andrew Stubbs <ams@codesourcery.com>
2435 Yao Qi <yao@codesourcery.com>
2436
2437 * target.h (struct target_ops): Add read_loadmap.
2438 * linux-low.c (struct target_loadseg): New type.
2439 (struct target_loadmap): New type.
2440 (linux_read_loadmap): New function.
2441 (linux_target_ops): Add linux_read_loadmap.
2442 * server.c (handle_query): Support qXfer:fdpic:read packet.
43aaf8b6
PA
2443 * win32-low.c (win32_target_ops): Initialize field `read_loadmap'
2444 to NULL.
78d85199 2445
a959a88d
EZ
24462011-08-05 Eli Zaretskii <eliz@gnu.org>
2447
2448 * win32-low.c: Include <stdint.h>.
2449
1ced966e
PA
24502011-07-22 Pedro Alves <pedro@codesourcery.com>
2451
2452 * i386-low.c (i386_insert_aligned_watchpoint): Don't pass the info
2453 to the inferior here.
2454 (i386_remove_aligned_watchpoint): Ditto.
2455 (i386_handle_nonaligned_watchpoint): Return immediate on fail to
2456 fit part of the watchpoint in the debug registers.
2457 (i386_update_inferior_debug_regs): New.
2458 (i386_low_insert_watchpoint): Work on a local mirror of the debug
2459 registers, and only update the inferior on success.
2460 (i386_low_remove_watchpoint): Ditto.
2461
d26e3629
KY
24622011-07-22 Kwok Cheung Yeung <kcy@codesourcery.com>
2463
2464 * linux-low.c (compare_ints, unique, list_threads, show_process,
2465 linux_core_of_thread): Delete.
2466 (linux_target_ops): Change linux_core_of_thread to
2467 linux_common_core_of_thread.
2468 (linux_qxfer_osdata): Defer to linux_common_xfer_osdata.
2469 * utils.c (malloc_failure): Change type of argument.
2470 (xmalloc, xrealloc, xcalloc, xsnprintf): Delete.
2471 * Makefile.in (SFILES): Add common/common-utils.c, common/xml-utils.c,
2472 common/linux-osdata.c, common/ptid.c and common/buffer.c.
2473 (OBS): Add xml-utils.o, common-utils.o, ptid.o and buffer.o.
2474 (IPA_OBJS): Add common-utils-ipa.o.
2475 (ptid_h, linux_osdata_h): New macros.
2476 (server_h): Add common/common-utils.h, common/xml-utils.h,
2477 common/buffer.h, common/gdb_assert.h, common/gdb_locale.h and
2478 common/ptid.h.
2479 (common-utils-ipa.o, common-utils.o, xml-utils.o, linux-osdata.o,
2480 ptid.o, buffer.o): New rules.
2481 (linux-low.o): Add common/linux-osdata.h as a dependency.
2482 * configure.srv (srv_tgtobj): Add linux-osdata.o to Linux targets.
2483 * configure.ac: Add AC_HEADER_DIRENT check.
2484 * config.in: Regenerate.
2485 * configure: Regenerate.
2486 * remote-utils.c (xml_escape_text): Delete.
2487 (buffer_grow, buffer_free, buffer_init, buffer_finish,
2488 buffer_xml_printf): Move to common/buffer.c.
2489 * server.c (main): Remove call to initialize_inferiors.
2490 * server.h (struct ptid, ptid_t, minus_one_ptid, null_ptid,
2491 ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid,
2492 ptid_equal, ptid_is_pid, initialize_inferiors, xml_escape_text,
2493 internal_error, gdb_assert, gdb_assert_fail): Delete.
2494 (struct buffer, buffer_grow, buffer_free, buffer_init, buffer_finish,
2495 buffer_xml_printf, buffer_grow_str, buffer_grow_str0): Move to
2496 common/buffer.h.
2497 * inferiors.c (null_ptid, minus_one_ptid, ptid_build, pid_to_ptid,
2498 ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid,
2499 initialize_inferiors): Delete.
2500
2275a1a7
PA
25012011-07-20 Pedro Alves <pedro@codesourcery.com>
2502
2503 * tracepoint.c (tracepoint_look_up_symbols): Return upon the first
2504 symbol error.
2505
0a5b1e09
PA
25062011-05-31 Pedro Alves <pedro@codesourcery.com>
2507
2508 * linux-x86-low.c (i386_dr_low_get_addr): Fix off by one in
2509 assertion.
2510 * win32-i386-low.c (i386_dr_low_get_addr): Ditto.
2511
6938fd34
YQ
25122011-05-26 Yao Qi <yao@codesourcery.com>
2513
2514 * Makefile.in (thread-db.o): Track dependence to
2515 common/gdb_thread_db.h.
2516 * thread-db.c: include gdb_thread_db.h from right place.
2517
b481f9e0
TT
25182011-05-16 Adrian Cornish <gnu@bluedreamer.com>
2519
2520 * linux-i386-ipa.c (supply_static_tracepoint_registers): Pass
2521 __FILE__ and __LINE__ to internal_error.
2522
98a5dd13
DE
25232011-05-13 Doug Evans <dje@google.com>
2524
2525 * thread-db.c (try_thread_db_load_from_sdir): New function.
2526 (try_thread_db_load_from_dir): New function.
2527 (thread_db_load_search): Handle $sdir, ignore $pdir.
2528 Remove trying of system directories if search of
2529 libthread-db-search-path fails, that is now done via $sdir.
2530
d248b706
KY
25312011-05-12 Kwok Cheung Yeung <kcy@codesourcery.com>
2532
2533 * server.c (handle_query): Add EnableDisableTracepoints to the list
2534 of supported features.
43aaf8b6 2535 * tracepoint.c (clear_installed_tracepoints): Uninstall disabled
d248b706 2536 tracepoints.
43aaf8b6
PA
2537 (cmd_qtenable_disable): New.
2538 (cmd_qtstart): Install tracepoints even if disabled.
2539 (handle_tracepoint_general_set): Add call to cmd_qtenable_disable on
2540 receiving a QTEnable or QTDisable packet.
2541 (gdb_collect): Skip data collection if fast tracepoint is disabled.
2542 (ust_marker_to_static_tracepoint): Do not ignore disabled static
2543 tracepoints.
2544 (gdb_probe): Skip data collection if static tracepoint is disabled.
d248b706 2545
84e578fb
DE
25462011-05-10 Doug Evans <dje@google.com>
2547
2548 * thread-db.c (thread_db_handle_monitor_command): Handle elided path.
2549
71f55dd8
DE
25502011-05-04 Doug Evans <dje@google.com>
2551
2552 * linux-low.c (linux_join): Skip process lookup.
2553 * spu-low.c (spu_join): Ditto.
2554 * server.c (join_inferiors_callback): Delete.
2555 (process_serial_event): For 'D' packet (detach) call join_inferior
2556 directly.
2557
4d393d60
JM
25582011-05-04 Joseph Myers <joseph@codesourcery.com>
2559
2560 * README: Don't mention xscale*-*-linux*.
2561 * configure.srv (xscale*-*-linux*): Don't handle target.
2562
b00ad6ff
NF
25632011-04-27 Nathan Froyd <froydnj@codesourcery.com>
2564
2565 * linux-x86-low.c (amd64_emit_const): Call memcpy instead of
2566 casting pointers.
2567 (amd64_emit_reg, amd64_emit_int_call_1, amd64_emit_void_call_2):
2568 (i386_emit_const, i386_emit_reg, i386_emit_int_call_1):
2569 (i386_emit_void_call_2): Likewise.
2570
af96c192
YQ
25712011-04-26 Yao Qi <yao@codesourcery.com>
2572
43aaf8b6
PA
2573 * linux-low.c: Move common macros to linux-ptrace.h.
2574 Include linux-ptrace.h.
af96c192
YQ
2575 * Makefile.in (linux_ptrace_h): New.
2576 (linux-low.o): Depends on linux-ptrace.h.
2577
03f2bd59
JK
25782011-04-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2579
2580 * remote-utils.c (handle_accept_event): Close LISTEN_DESC only if
2581 RUN_ONCE. Comment for the LISTEN_DESC delete_file_handler call.
2582 (remote_prepare): New function with most of the TCP code from ...
2583 (remote_open): ... here. Detect PORT here unconditionally. Move also
2584 setting transport_is_reliable.
2585 * server.c (run_once): New variable.
2586 (gdbserver_usage): Document it.
2587 (main): Set run_once for `--once'. Call remote_prepare. Exit after
2588 the first run if RUN_ONCE.
2589 * server.h (run_once, remote_prepare): New declarations.
2590
7a9dd1b2
TT
25912011-04-19 Tom Tromey <tromey@redhat.com>
2592
2593 * win32-low.c (handle_load_dll): Remove duplicate "the".
2594
81239425
PM
25952011-04-07 Pierre Muller <muller@ics.u-strasbg.fr>
2596
2597 Remove support for old Cygwin 1.5 versions.
2598 * win32-low.c (win32_create_inferior): Use new cygwin_path_list
2599 function to avoid warning.
2600 (win32_add_one_solib): Use cygwin_conv_path function to avoid
2601 warning.
2602
9e0627f1
PM
26032011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
2604
2605 * gdbserver/server.h (Macro _): Define it if not available.
2606
588eebee
MS
26072011-03-14 Michael Snyder <msnyder@vmware.com>
2608
348af9f7 2609 * hostio.c (handle_close): Remove unnecessary null test.
588eebee 2610
43f70d4c
JB
26112011-03-10 Joel Brobecker <brobecker@adacore.com>
2612
2613 * Makefile.in (maintainer-clean realclean distclean): Remove
2614 "make ... subdir_do" command.
2615
348af9f7
MS
26162011-03-10 Michael Snyder <msnyder@vmware.com>
2617
2618 * tracepoint.c (tracepoint_finish_step): Fix loop variable.
2619
2620 * server.c (handle_v_run): Free alloced buffer on early return.
2621
e637a4f5
YQ
26222011-03-09 Yao Qi <yao@codesourcery.com>
2623
2624 Revert:
2625 2011-03-04 Yao Qi <yao@codesourcery.com>
2626
2627 * Makefile.in: Remove GNU make feature --directory.
2628
2629 2011-03-05 Yao Qi <yao@codesourcery.com>
2630
2631 * Makefile.in (CLEANDIRS, REQUIRED_SUBDIRS): New variable.
2632 (subdir_do): New make target. Copied from gdb/Makefile.
2633 (maintainer-clean, realclean, distclean, clean): Call corresponding
2634 make targets in common/Makefile.
2635
2636 2011-02-11 Yao Qi <yao@codesourcery.com>
2637
2638 * configure.ac: Call AC_PROG_RANLIB.
2639 * Makefile.in: Remove signals.o from OBS. Link libcommon.a.
2640 * configure: Regenerate.
2641
e6edda56
JK
26422011-03-07 Jan Kratochvil <jan.kratochvil@redhat.com>
2643
2644 * remote-utils.c (putpkt_binary_1): Calculate BUF2 size dynamically.
2645
e5141119
JB
26462011-03-06 Yao Qi <yao@codesourcery.com>
2647
2648 * Makefile.in (REQUIRED_SUBDIRS): Remove $(LIBCOMMON_DIR).
2649
64794aa4
JB
26502011-03-05 Yao Qi <yao@codesourcery.com>
2651
2652 * Makefile.in (CLEANDIRS, REQUIRED_SUBDIRS): New variable.
2653 (subdir_do): New make target. Copied from gdb/Makefile.
2654 (maintainer-clean, realclean, distclean, clean): Call corresponding
2655 make targets in common/Makefile.
2656
7a762829
YQ
26572011-03-04 Yao Qi <yao@codesourcery.com>
2658
2659 * Makefile.in: Remove GNU make feature --directory.
2660
348af9f7
MS
26612011-03-04 Michael Snyder <msnyder@vmware.com>
2662
2663 * server.c (queue_stop_reply): Call xmalloc not malloc.
2664
26652011-03-02 Michael Snyder <msnyder@vmware.com>
2666
2667 * linux-arm-low.c (arm_arch_setup): Replace malloc with xmalloc.
2668
9f72fee2
MS
26692011-02-28 Michael Snyder <msnyder@vmware.com>
2670
588eebee
MS
2671 * tracepoint.c (cmd_qtv): Discard unused value 'packet'.
2672 (cmd_qtframe): Ditto.
2673 (cmd_qtbuffer): Ditto.
2674 (cmd_bigqtbuffer): Ditto.
2675
9f72fee2
MS
2676 * utils.c (decimal2str): Initialize 'width' to nine, then
2677 don't mess with it.
2678
8040bd49
UW
26792011-02-28 Ulrich Weigand <uweigand@de.ibm.com>
2680
2681 * hostio.c (require_data): Free *data, not data.
2682
7e52cbd0
JK
26832011-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2684
2685 * hostio.c (require_data): Use free, not xfree.
2686
9130f83e
MS
26872011-02-27 Michael Snyder <msnyder@vmware.com>
2688
4b812f4e
MS
2689 * server.c (handle_query): Discard unused value.
2690
9130f83e
MS
2691 * hostio.c (require_data): Free malloc memory before returning
2692 error.
2693
69d37113
MS
26942011-02-26 Michael Snyder <msnyder@vmware.com>
2695
2696 * linux-low.c (list_threads): Call closedir for dirent.
2697
35f5825a
MS
26982011-02-27 Michael Snyder <msnyder@vmware.com>
2699
2a589cef
MS
2700 * i386-low.c (i386-length_and_rw_bits): Comment the fact that
2701 a case statement falls through.
2702
0adea5f7
MS
2703 * linux-low.c (linux_xfer_siginfo): Fix fencepost error.
2704
35f5825a
MS
2705 * linux-amd64-ipa.c (gdb_agent_get_raw_reg): Fix fencepost error
2706 in comparison.
2707
238f1c74
MS
27082011-02-26 Michael Snyder <msnyder@vmware.com>
2709
2710 * utils.c (decimal2str): Eliminate dead code and dead param.
2711 (pulongest): Drop dead param from call to decimal2str.
2712 (plongest): Ditto.
2713
633ff500
JB
27142011-02-24 Joel Brobecker <brobecker@adacore.com>
2715
2716 Revert the following patch (not approved yet):
2717 2011-02-21 Hui Zhu <teawater@gmail.com>
2718 * tracepoint.c (tp_printf): New function.
2719 (eval_agent_expr): Handle gdb_agent_op_printf.
2720
f9c6ff72
HZ
27212011-02-21 Hui Zhu <teawater@gmail.com>
2722
2723 * tracepoint.c (tp_printf): New function.
2724 (eval_agent_expr): Handle gdb_agent_op_printf.
2725
94d5e490
TT
27262011-02-18 Tom Tromey <tromey@redhat.com>
2727
2728 * Makefile.in (tracepoint-ipa.o): Depend on ax.def.
2729 (tracepoint.o): Likewise.
2730 * tracepoint.c (enum gdb_agent_op): Use ax.def.
2731 (gdb_agent_op_names): Likewise.
2732
c7f96d2b
TT
27332011-02-18 Tom Tromey <tromey@redhat.com>
2734
2735 * tracepoint.c (enum gdb_agent_op) <gdb_agent_op_pick,
2736 gdb_agent_op_rot>: New constants.
2737 (gdb_agent_op_names): Add pick and roll.
2738 (eval_agent_expr) <gdb_agent_op_pick, gdb_agent_op_rot>: New
2739 cases.
2740
0feedb2c
JK
27412011-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2742
2743 * aclocal.m4: Regenerated with aclocal-1.11.1.
2744
b3b9301e
PA
27452011-02-14 Pedro Alves <pedro@codesourcery.com>
2746
2747 * server.c (handle_qxfer_traceframe_info): New.
2748 (qxfer_packets): Register "traceframe-info".
2749 (handle_query): Report support for qXfer:traceframe-info:read+.
2750 * tracepoint.c (match_blocktype): New.
2751 (traceframe_find_block_type): Rename to ...
2752 (traceframe_walk_blocks): ... this. Add callback filter argument,
2753 and use it.
2754 (traceframe_find_block_type): New, reimplemented on top of
2755 traceframe_walk_blocks.
2756 (build_traceframe_info_xml): New.
2757 (traceframe_read_info): New.
2758 * server.h (traceframe_read_info): Declare.
2759
4f3e6fb7
YQ
27602011-02-11 Yao Qi <yao@codesourcery.com>
2761
2762 * configure.ac: Call AC_PROG_RANLIB.
2763 * Makefile.in: Remove signals.o from OBS. Link libcommon.a.
2764 * configure: Regenerate.
2765
764880b7
PA
27662011-02-07 Pedro Alves <pedro@codesourcery.com>
2767
2768 * server.c (gdb_read_memory): Change return semantics to allow
2769 partial transfers.
2770 (handle_search_memory_1): Adjust.
2771 (process_serial_event) <'m' packet>: Handle partial transfers.
2772 * tracepoint.c (traceframe_read_mem): Handle partial transfers.
2773
1c79eb8a
PA
27742011-01-28 Pedro Alves <pedro@codesourcery.com>
2775
2776 * regcache.c (init_register_cache): Initialize
2777 regcache->register_status.
2778 (free_register_cache): Release regcache->register_status.
2779 (regcache_cpy): Copy register_status.
2780 (registers_to_string): Print 'x's for unavailable registers.
2781 (supply_register): Mark the register's status valid or
2782 unavailable, depending on whether a buffer was passed in or not.
2783 (supply_register_zeroed): New.
2784 (supply_regblock): Mark the registers' status valid or
2785 unavailable, depending on whether a buffer was passed in or not.
2786 * regcache.h (REG_UNAVAILABLE, REG_VALID): New defines.
2787 (struct regcache): New `register_status' field.
2788 (supply_register_zeroed): Declare.
2789 * i387-fp.c (i387_xsave_to_cache): Zero out registers using
2790 supply_register_zeroed, rather than passing a NULL buffer to
2791 supply_register.
2792 * tracepoint.c (fetch_traceframe_registers): Update comment.
2793
85724a0e
PA
27942011-01-28 Pedro Alves <pedro@codesourcery.com>
2795
2796 * i387-fp.c (i387_xsave_to_cache): Make passing NULL as register
2797 buffer explicit.
2798
d08aafef
PA
27992011-01-25 Pedro Alves <pedro@codesourcery.com>
2800
2801 * server.h (decode_xfer_write): Change prototype.
2802 * remote-utils.c (decode_xfer_write): Remove `annex' parameter,
2803 and don't extract the annex here.
2804 * server.c (decode_xfer_read): Remove `annex' parameter,
2805 and don't extract the annex here.
2806 (decode_xfer): New.
2807 (struct qxfer): New.
2808 (handle_qxfer_auxv, handle_qxfer_features, handle_qxfer_libraries)
2809 (handle_qxfer_osdata, handle_qxfer_siginfo, handle_qxfer_spu)
2810 (handle_qxfer_statictrace): New functions, abstracted out from
2811 handle_query, and made to use the struct qxfer interface.
2812 (handle_threads_qxfer_proper): Rename to ...
2813 (handle_qxfer_threads_proper): ... this.
2814 (handle_threads_qxfer): Rename to ...
2815 (handle_qxfer_threads): ... this. Adjust.
2816 (qxfer_packets): New array.
2817 (handle_qxfer): New function.
2818 (handle_query): Use handle_qxfer.
2819
493e2a69
MS
28202011-01-05 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
2821
2822 * gdbreplay.c: Shorten lines of >= 80 columns.
2823 * linux-low.c: Ditto.
2824 * linux-ppc-low.c: Ditto.
2825 * linux-s390-low.c: Ditto.
2826 * linux-sparc-low.c: Ditto.
2827 * linux-x86-low.c: Ditto.
2828 * linux-xtensa-low.c: Ditto.
2829 * mem-break.c: Ditto.
2830 * nto-low.c: Ditto.
2831 * regcache.h: Ditto.
2832 * remote-utils.c: Ditto.
2833 * server.c: Ditto.
2834 * server.h: Ditto.
2835 * thread-db.c: Ditto.
2836 * tracepoint.c: Ditto.
2837 * utils.c: Ditto.
2838 * win32-low.h: Ditto.
2839
44944448
JB
28402011-01-05 Joel Brobecker <brobecker@adacore.com>
2841
2842 * gdbserver/configure.ac, gdbserver/gdbserver.1: Copyright year
2843 update.
2844
71ce852c
JB
28452011-01-01 Joel Brobecker <brobecker@adacore.com>
2846
2847 * server.c (gdbserver_version): Update copyright year in version
2848 output.
2849 * gdbreplay.c (gdbreplay_version): Ditto.
2850
eb826dc6
MF
28512010-12-29 Jie Zhang <jie.zhang@analog.com>
2852
2853 * configure.srv (bfin-*-*linux*): Handle Blackfin/Linux targets.
2854 * linux-bfin-low.c: New file.
2855 * linux-low.c: Define PT_TEXT_ADDR, PT_TEXT_END_ADDR, and
2856 PT_DATA_ADDR for BFIN targets.
2857 * Makefile.in (SFILES): Add linux-bfin-low.c.
2858 (clean): Remove reg-bfin.c.
2859 (linux-bfin-low.o, reg-bfin.o, reg-bfin.c): New targets.
2860 * README: Mention supported Blackfin targets.
2861
39ab222a
MF
28622010-12-23 Mike Frysinger <vapier@gentoo.org>
2863
2864 * .gitignore: New file.
2865
a1f2ce7d
MF
28662010-11-16 Mike Frysinger <vapier@gentoo.org>
2867
2868 * linux-low.c (linux_tracefork_child): Add char* cast to arg.
2869
f474844c
JZ
28702010-10-22 Jie Zhang <jie@codesourcery.com>
2871
2872 * Makefile.in: Add FLAGS_TO_PASS variable.
2873 (install): Remove dependency of install-only and recursively
2874 invoke make for install-only.
2875
f1048712
DE
28762010-10-04 Doug Evans <dje@google.com>
2877
2878 * Makefile.in (uninstall): Use $(DESTDIR).
2879
b53a1623
PA
28802010-09-24 Pedro Alves <pedro@codesourcery.com>
2881
e6ee044d
PA
2882 PR gdb/11842
2883
b53a1623
PA
2884 * linux-x86-low.c (compat_siginfo_from_siginfo)
2885 (siginfo_from_compat_siginfo): Also copy si_pid and si_uid when
2886 si_code is < 0. Check for si_code == SI_TIMER before checking for
2887 si_code < 0.
2888
fa1bd1e4
JB
28892010-09-13 Joel Brobecker <brobecker@adacore.com>
2890
2891 * lynx-i386-low.c: New file.
2892 * configure.srv: Add handling of i[34567]86-*-lynxos* targets.
2893
47fac8f8
JB
28942010-09-13 Joel Brobecker <brobecker@adacore.com>
2895
2896 * lynx-low.c (ptrace_request_to_str): Remove handling for
2897 request values that have been removed in LynxOS 5.x.
2898
1adfc54d
JB
28992010-09-13 Joel Brobecker <brobecker@adacore.com>
2900
2901 * lynx-low.c, lynx-ppc-loc.c: Include <sys/ptrace.h> instead of
2902 <ptrace.h>
2903
c2a66c29
NS
29042010-09-09 Nathan Sidwell <nathan@codesourcery.com>
2905
2906 * configure.ac: Add --enable-inprocess-agent option.
2907 * configure: Rebuilt.
2908
32fcada3
YQ
29092010-09-06 Yao Qi <yao@codesourcery.com>
2910
2911 * linux-low.c (linux_kill): Remove unused variable.
2912 (linux_stabilize_threads): Likewise.
2913 * server.c (start_inferior): Likewise.
2914 (queue_stop_reply_callback): Likewise.
2915 * tracepoint.c (do_action_at_tracepoint): Likewise.
2916
0cccb683
YQ
29172010-09-06 Yao Qi <yao@codesourcery.com>
2918
2919 * linux-low.c (maybe_move_out_of_jump_pad): Restore current_inferior
2920 on return.
2921
423ec54c
JK
29222010-09-06 Jan Kratochvil <jan.kratochvil@redhat.com>
2923
2924 * target.c (mywait) <TARGET_WAITKIND_EXITED>: Fix to use INTEGER.
2925
12ac6819
PA
29262010-09-06 Pedro Alves <pedro@codesourcery.com>
2927
2928 * Makefile.in (install-only): Replace $IPA_DEPFILES with
2929 "$(IPA_DEPFILES)".
2930
8ed54b31
JB
29312010-09-01 Joel Brobecker <brobecker@adacore.com>
2932
2933 * gdbserver/lynx-low.c, gdbserver/lynx-low.h,
2934 gdbserver/lynx-ppc-low.c: New files.
2935 * Makefile.in (lynx_low_h): New variable.
2936 (lynx-low.o, lynx-ppc-low.o): New rules.
2937 * configure.ac: On LynxOS, link with -lnetinet.
2938 * configure.srv: Add handling of powerpc-*-lynxos* targets.
2939 * configure: regenerate.
2940
bb0116a4
JB
29412010-09-01 Joel Brobecker <brobecker@adacore.com>
2942
2943 * Makefile.in (vasprintf.o, vsnprintf.o): New rules.
2944 * configure.ac: Add check for vasprintf and vsnprintf.
2945 * configure, config.in: Regenerate.
2946 * server.h (vasprintf, vsnprintf): Add conditional declarations.
2947
a778ab81 29482010-09-01 Joel Brobecker <brobecker@adacore.com>
2949
2950 * gdbreplay.c: Move include of alloca.h up, next to include of
2951 malloc.h.
2952 * server.h: Add include of malloc.h.
2953 * mem-break.c: Remove include of malloc.h.
2954 * server.c, tracepoint.c, utils.c, win32-low.c: Likewise.
2955
8b034a19 29562010-09-01 Joel Brobecker <brobecker@adacore.com>
2957
2958 * Makefile.in (memmem.o): Build with -Wno-error.
2959
29602010-09-01 Joel Brobecker <brobecker@adacore.com>
2961
2962 * utils.c (xsnprintf): Make non-static.
2963 * server.h: Add xsnprintf declaration.
2964 * linux-low.c, nto-low.c, target.c, thread-db.c, tracepoint.c:
2965 replace calls to snprintf by calls to xsnprintf throughout.
2966
29672010-09-01 Joel Brobecker <brobecker@adacore.com>
2968
2969 * configure.ac: Add configure check for alloca.
2970 * configure, config.in: Regenerate.
2971 * server.h: Include alloca.h if it exists.
2972 * gdbreplay.c: Include alloca.h if it exists.
2973
1a981360
PA
29742010-08-28 Pedro Alves <pedro@codesourcery.com>
2975
2976 * linux-low.c (__SIGRTMIN): Define if not already defined.
2977 (linux_create_inferior): Check for __ANDROID__ rather than
2978 __SIGRTMIN.
2979 (enqueue_one_deferred_signal): Don't requeue non-RT signals that
2980 are already deferred.
2981 (linux_wait_1): Check for __ANDROID__ rather than __SIGRTMIN.
2982 (linux_resume_one_thread): Don't queue a SIGSTOP if the lwp is
2983 stopped and already has a pending signal to report.
2984 (proceed_one_lwp): : Don't queue a SIGSTOP if the lwp already has
2985 a pending signal to report or is moving out of a jump pad.
2986 (linux_init_signals): Check for __ANDROID__ rather than
2987 __SIGRTMIN.
2988
b4d51a55
PA
29892010-08-28 Pedro Alves <pedro@codesourcery.com>
2990
2991 * linux-low.c (linux_stabilize_threads): Wrap debug output in a
2992 debug_threads check. Avoid a linear search when not doing debug
2993 output.
2994
ec48365d
PA
29952010-08-27 Pedro Alves <pedro@codesourcery.com>
2996
2997 * event-loop.c (event_handle_func): Adjust to use gdb_fildes_t.
2998 (struct gdb_event) <fd>: Change type to gdb_fildes_t.
2999 (struct file_handler) <fd>: Change type to gdb_fildes_t.
3000 (process_event): Change local fd's type to gdb_fildes_t.
3001 (create_file_handler): Adjust prototype.
3002 (delete_file_handler): Adjust prototype.
3003 (handle_file_event): Adjust prototype. Use pfildes.
3004 (create_file_event): Adjsut prototype.
3005 * remote-utils.c (remote_desc, listen_desc): Change type to
3006 gdb_fildes_t.
3007 * server.h: New gdb_fildes_t typedef.
3008 [USE_WIN32API]: Include winsock2.h.
3009 (delete_file_handler, add_file_handler): Adjust prototypes.
3010 (pfildes): Declare.
3011 * utils.c (pfildes): New.
3012
854d88f0
PA
30132010-08-27 Pedro Alves <pedro@codesourcery.com>
3014
3015 * configure.ac (build_warnings): Add -Wno-char-subscripts.
3016 * configure: Regenerate.
3017
0146f85b
PA
30182010-08-27 Pedro Alves <pedro@codesourcery.com>
3019
3020 * linux-low.c (linux_unprepare_to_access_memory): Rename to ...
3021 (linux_done_accessing_memory): ... this.
3022 (linux_target_ops): Adjust.
3023 * linux-x86-low.c (x86_insert_point, x86_remove_point): Adjust.
3024 * nto-low.c (nto_target_ops): Adjust comment.
3025 * server.c (gdb_read_memory, gdb_write_memory): Adjust.
3026 * spu-low.c (spu_target_ops): Adjust comment.
3027 * target.h (target_ops): Rename unprepare_to_access_memory field
3028 to done_accessing_memory.
3029 (unprepare_to_access_memory): Rename to ...
3030 (done_accessing_memory): ... this.
3031
90d74c30
PA
30322010-08-26 Pedro Alves <pedro@codesourcery.com>
3033
3034 * linux-low.c (linux_prepare_to_access_memory): New.
3035 (linux_unprepare_to_access_memory): New.
3036 (linux_target_ops): Install them.
3037 * server.c (read_memory): Rename to ...
3038 (gdb_read_memory): ... this. Use
3039 prepare_to_access_memory/prepare_to_access_memory.
3040 (write_memory): Rename to ...
3041 (gdb_write_memory): ... this. Use
3042 prepare_to_access_memory/prepare_to_access_memory.
3043 (handle_search_memory_1): Adjust.
3044 (process_serial_event): Adjust.
3045 * target.h (struct target_ops): New fields
3046 prepare_to_access_memory and unprepare_to_access_memory.
3047 (prepare_to_access_memory, unprepare_to_access_memory): New.
3048 * linux-x86-low.c (x86_insert_point, x86_remove_point): Use
3049 prepare_to_access_memory/prepare_to_access_memory.
3050 * nto-low.c (nto_target_ops): Adjust.
3051 * spu-low.c (spu_target_ops): Adjust.
3052 * win32-low.c (win32_target_ops): Adjust.
3053
fd467969
PA
30542010-08-26 Pedro Alves <pedro@codesourcery.com>
3055
3056 * Makefile.in (WARN_CFLAGS): Get it from configure.
3057 (WERROR_CFLAGS): New.
3058 (INTERNAL_CFLAGS): Add WERROR_CFLAGS.
3059 * configure.ac: Introduce --enable-werror, which adds -Werror to
3060 the compiler command line. Enabled by default. Disable with
3061 --disable-werror. Add -Wdeclaration-after-statement
3062 Wpointer-arith and -Wformat-nonliteral to warning flags.
3063 * configure: Regenerate.
3064
331e2f5f
PA
30652010-08-26 Pedro Alves <pedro@codesourcery.com>
3066
3067 * mem-break.c [HAVE_MALLOC_H]: Include malloc.h.
3068
e581f2b4
PA
30692010-08-26 Pedro Alves <pedro@codesourcery.com>
3070
3071 * gdbreplay.c (remote_error): New.
3072 (gdbchar): New.
3073 (expect): Use gdbchar. Check for error reading from GDB.
3074 Clarify sync error output.
3075 (play): Check for errors writing to GDB.
3076 * linux-low.c (sigchld_handler): Really ignore `write' errors.
3077 * remote-utils.c (getpkt): Check for errors writing to the remote
3078 descriptor.
3079
3c11dd79
PA
30802010-08-25 Pedro Alves <pedro@codesourcery.com>
3081
3082 * linux-low.c (linux_wait_1): Move non-debugging code out of
3083 `debug_threads' control.
3084
d20a8ad9
PA
30852010-08-25 Pedro Alves <pedro@codesourcery.com>
3086
3087 * linux-low.c (linux_wait_1): Don't set last_status here.
3088 * server.c (push_event, queue_stop_reply_callback): Assert we're
3089 not pushing a TARGET_WAITKIND_IGNORE event.
3090 (start_inferior, start_inferior, attach_inferior, handle_v_cont)
3091 (myresume, handle_target_event): Set the thread's last_resume_kind
3092 and last_status from the target returned status.
3093
964e4306
PA
30942010-08-25 Pedro Alves <pedro@codesourcery.com>
3095
3096 PR threads/10729
3097
3098 * linux-x86-low.c (update_debug_registers_callback): New.
3099 (i386_dr_low_set_addr): Use it.
3100 (i386_dr_low_get_addr): New.
3101 (i386_dr_low_set_control): Use update_debug_registers_callback.
3102 (i386_dr_low_get_control): New.
3103 (i386_dr_low_get_status): Adjust.
3104 * linux-low.c (linux_stop_lwp): New.
3105 * linux-low.h (linux_stop_lwp): Declare.
3106
3107 * i386-low.c (I386_DR_GET_RW_LEN): Take the dr7 contents as
3108 argument instead of a i386_debug_reg_state.
3109 (I386_DR_WATCH_HIT): Take the dr6 contents as argument instead of
3110 a i386_debug_reg_state.
3111 (i386_insert_aligned_watchpoint): Adjust.
3112 (i386_remove_aligned_watchpoint): Adjust.
3113 (i386_low_stopped_data_address): Read the debug registers from the
3114 inferior instead of from the mirrors.
3115 * i386-low.h (struct i386_debug_reg_state): Extend comment.
3116 (i386_dr_low_get_addr): Declare.
3117 (i386_dr_low_get_control): Declare.
3118 (i386_dr_low_get_status): Change prototype.
3119
3120 * win32-i386-low.c (dr_status_mirror, dr_control_mirror): New globals.
3121 (i386_dr_low_get_addr): New.
3122 (i386_dr_low_get_control): New.
3123 (i386_dr_low_get_status): Adjust prototype. Return
3124 dr_status_mirror.
3125 (i386_initial_stuff): Clear dr_status_mirror and
3126 dr_control_mirror.
3127 (i386_get_thread_context): Adjust.
3128 (i386_set_thread_context): Adjust.
3129 (i386_thread_added): Adjust.
3130
5f21a75b
PA
31312010-08-24 Pedro Alves <pedro@codesourcery.com>
3132
3133 * linux-low.h (linux_thread_area): Delete declaration.
3134
3e4c1235
TS
31352010-08-11 Thomas Schwinge <thomas@codesourcery.com>
3136
3137 * linux-low.c (linux_wait_1): Correctly return the ptid of the child
3138 after its termination.
3139
1971b033
PA
31402010-08-09 Pedro Alves <pedro@codesourcery.com>
3141
3142 * linux-low.c (gdb_wants_lwp_stopped): Delete.
3143 (gdb_wants_all_stopped): Delete.
3144 (linux_wait_1): Don't call them.
3145 * server.c (handle_v_cont): Tag all threads as want-stopped.
3146 (gdb_wants_thread_stopped): Fix comments. Tag the thread that
3147 stopped as "client-wants-stopped".
3148
310444ac
PA
31492010-07-31 Pedro Alves <pedro@codesourcery.com>
3150
3151 * Makefile.in (signals_h): New.
3152 (server_h): Depend on it.
3153 (server.o): Don't depend on $(signals_def).
3154 (signals.o): Depend on $(signals_def).
3155
a19cae16
JK
31562010-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
3157
3158 * Makefile.in (signals_def): New.
3159 (server_h): Append include/gdb/signals.h and signals_def.
3160 (server.o): Append signals_def.
3161
30d50328
JK
31622010-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
3163
3164 * server.c (handle_target_event): Use target_signal_to_host for
3165 resume_info.sig initialization.
3166 * target.h (struct thread_resume) <sig>: New comment.
3167
5c3216e2
OS
31682010-07-20 Ozkan Sezer <sezeroz@gmail.com>
3169
c6f46ca0
OS
3170 * server.c (handle_query): strcpy() the returned string from paddress()
3171 instead of sprintf().
5c3216e2
OS
3172 * utils.c (paddress): Return phex_nz().
3173
6bd31874
JB
31742010-07-07 Joel Brobecker <brobecker@adacore.com>
3175
3176 * server.c (handle_v_cont): Call mourn_inferior if process
3177 just exited.
3178 (myresume): Likewise.
3179
0fb4aa4b
PA
31802010-07-01 Pedro Alves <pedro@codesourcery.com>
3181
3182 Static tracepoints, and integration with UST.
3183
3184 * configure.ac: Handle --with-ust. substitute ustlibs and ustinc.
3185 * mem-break.c (uninsert_all_breakpoints)
3186 (reinsert_all_breakpoints): New.
3187 * mem-break.h (reinsert_all_breakpoints, uninsert_all_breakpoints):
3188 * tracepoint.c (ust_loaded, helper_thread_id, cmd_buf): New.
3189 (gdb_agent_ust_loaded, helper_thread_id)
3190 (gdb_agent_helper_thread_id): New macros.
3191 (struct ipa_sym_addresses): Add addr_ust_loaded,
3192 addr_helper_thread_id, addr_cmd_buf.
3193 (symbol_list): Add ust_loaded, helper_thread_id, cmd_buf.
3194 (in_process_agent_loaded_ust): New.
3195 (write_e_ust_not_loaded): New.
3196 (maybe_write_ipa_ust_not_loaded): New.
3197 (struct collect_static_trace_data_action): New.
3198 (enum tracepoint_type) <static_tracepoint>: New.
3199 (struct tracepoint) <handle>: Mention static tracepoints.
3200 (struct static_tracepoint_ctx): New.
3201 (CMD_BUF_SIZE): New.
3202 (add_tracepoint_action): Handle static tracepoint actions.
3203 (unprobe_marker_at): New.
3204 (clear_installed_tracepoints): Handle static tracepoints.
3205 (cmd_qtdp): Handle static tracepoints.
3206 (probe_marker_at): New.
3207 (cmd_qtstart): Handle static tracepoints.
3208 (response_tracepoint): Handle static tracepoints.
3209 (cmd_qtfstm, cmd_qtsstm, cmd_qtstmat): New.
3210 (handle_tracepoint_query): Handle qTfSTM, qTsSTM and qTSTMat.
3211 (get_context_regcache): Handle static tracepoints.
3212 (do_action_at_tracepoint): Handle static tracepoint actions.
3213 (traceframe_find_block_type): Handle static trace data blocks.
3214 (traceframe_read_sdata): New.
3215 (download_tracepoints): Download static tracepoint actions.
3216 [HAVE_UST] Include ust/ust.h, dlfcn.h, sys/socket.h, and sys/un.h.
3217 (GDB_PROBE_NAME): New.
3218 (ust_ops): New.
3219 (GET_UST_SYM): New.
3220 (USTF): New.
3221 (dlsym_ust): New.
3222 (ust_marker_to_static_tracepoint): New.
3223 (gdb_probe): New.
3224 (collect_ust_data_at_tracepoint): New.
3225 (gdb_ust_probe): New.
3226 (UNIX_PATH_MAX, SOCK_DIR): New.
3227 (gdb_ust_connect_sync_socket): New.
3228 (resume_thread, stop_thread): New.
3229 (run_inferior_command): New.
3230 (init_named_socket): New.
3231 (gdb_ust_socket_init): New.
3232 (cstr_to_hexstr): New.
3233 (next_st): New.
3234 (first_marker, next_marker): New.
3235 (response_ust_marker): New.
3236 (cmd_qtfstm, cmd_qtsstm): New.
3237 (unprobe_marker_at, probe_marker_at): New.
3238 (cmd_qtstmat, gdb_ust_thread): New.
3239 (gdb_ust_init): New.
3240 (initialize_tracepoint_ftlib): Call gdb_ust_init.
3241 * linux-amd64-ipa.c [HAVE_UST]: Include ust/processor.h
3242 (ST_REGENTRY): New.
3243 (x86_64_st_collect_regmap): New.
3244 (X86_64_NUM_ST_COLLECT_GREGS): New.
3245 (AMD64_RIP_REGNUM): New.
3246 (supply_static_tracepoint_registers): New.
3247 * linux-i386-ipa.c [HAVE_UST]: Include ust/processor.h
3248 (ST_REGENTRY): New.
3249 (i386_st_collect_regmap): New.
3250 (i386_NUM_ST_COLLECT_GREGS): New.
3251 (supply_static_tracepoint_registers): New.
3252 * server.c (handle_query): Handle qXfer:statictrace:read.
3253 <qSupported>: Report support for StaticTracepoints, and
3254 qXfer:statictrace:read features.
3255 * server.h (traceframe_read_sdata)
3256 (supply_static_tracepoint_registers): Declare.
3257 * remote-utils.c (convert_int_to_ascii, hexchars, ishex, tohex)
3258 (unpack_varlen_hex): Include in IPA build.
3259 * Makefile.in (ustlibs, ustinc): New.
3260 (IPA_OBJS): Add remote-utils-ipa.o.
3261 ($(IPA_LIB)): Link -ldl and -lpthread.
3262 (UST_CFLAGS): New.
3263 (IPAGENT_CFLAGS): Add UST_CFLAGS.
3264 * config.in, configure: Regenerate.
3265
9e4344e5
PA
32662010-06-20 Ian Lance Taylor <iant@google.com>
3267 Pedro Alves <pedro@codesourcery.com>
3268
3269 * linux-x86-low.c (always_true): Delete.
3270 (EMIT_ASM, EMIT_ASM32): Use an uncondition asm jmp instead of
3271 trying to fool the compiler with always_true.
3272
c6beb2cb
PA
32732010-06-20 Pedro Alves <pedro@codesourcery.com>
3274
3275 * tracepoint.c (condition_true_at_tracepoint): Don't run compiled
3276 conditions in gdbserver.
3277
d2ed6730
UW
32782010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
3279
3280 * spu-low.c (spu_read_memory): Wrap around local store limit.
3281 (spu_write_memory): Likewise.
3282
4e29fb54
PA
32832010-06-15 Pedro Alves <pedro@codesourcery.com>
3284
3285 * linux-x86-low.c (amd64_emit_const, amd64_emit_void_call_2)
3286 (i386_emit_const, i386_emit_void_call_2): Replace int64_t uses with
3287 LONGEST uses.
3288 * server.h (struct emit_ops): Replace int64_t uses with LONGEST
3289 uses.
3290 * tracepoint.c (emit_const, emit_void_call_2): Replace int64_t
3291 uses with LONGEST uses.
3292
6a271cae
PA
32932010-06-14 Stan Shebs <stan@codesourcery.com>
3294 Pedro Alves <pedro@codesourcery.com>
3295
3296 Bytecode compiler.
3297
3298 * linux-x86-low.c: Include limits.h.
3299 (add_insns): New.
3300 (always_true): New.
3301 (EMIT_ASM): New.
3302 (EMIT_ASM32): New.
3303 (amd64_emit_prologue, amd64_emit_epilogue, amd64_emit_add)
3304 (amd64_emit_sub, amd64_emit_mul, amd64_emit_lsh)
3305 (amd64_emit_rsh_signed, amd64_emit_rsh_unsigned, amd64_emit_ext,
3306 (amd64_emit_log_not, amd64_emit_bit_and, amd64_emit_bit_or)
3307 (amd64_emit_bit_xor, amd64_emit_bit_not, amd64_emit_equal,
3308 (amd64_emit_less_signed, amd64_emit_less_unsigned, amd64_emit_ref,
3309 (amd64_emit_if_goto, amd64_emit_goto, amd64_write_goto_address)
3310 (amd64_emit_const, amd64_emit_call, amd64_emit_reg)
3311 (amd64_emit_pop, amd64_emit_stack_flush, amd64_emit_zero_ext)
3312 (amd64_emit_swap, amd64_emit_stack_adjust, amd64_emit_int_call_1)
3313 (amd64_emit_void_call_2): New.
3314 (amd64_emit_ops): New.
3315 (i386_emit_prologue, i386_emit_epilogue, i386_emit_add)
3316 (i386_emit_sub,i386_emit_mul, i386_emit_lsh, i386_emit_rsh_signed)
3317 (i386_emit_rsh_unsigned, i386_emit_ext, i386_emit_log_not)
3318 (i386_emit_bit_and, i386_emit_bit_or, i386_emit_bit_xor)
3319 (i386_emit_bit_not, i386_emit_equal, i386_emit_less_signed)
3320 (i386_emit_less_unsigned, i386_emit_ref, i386_emit_if_goto)
3321 (i386_emit_goto, i386_write_goto_address, i386_emit_const)
3322 (i386_emit_call, i386_emit_reg, i386_emit_pop)
3323 (i386_emit_stack_flush, i386_emit_zero_ext, i386_emit_swap)
3324 (i386_emit_stack_adjust, i386_emit_int_call_1)
3325 (i386_emit_void_call_2): New.
3326 (i386_emit_ops): New.
3327 (x86_emit_ops): New.
3328 (the_low_target): Install x86_emit_ops.
3329 * server.h (struct emit_ops): New.
3330 (get_raw_reg_func_addr): Declare.
3331 (current_insn_ptr, emit_error): Declare.
3332 * tracepoint.c (get_raw_reg, get_trace_state_variable_value)
3333 (set_trace_state_variable_value): New defines.
3334 (struct ipa_sym_addresses): New fields addr_get_raw_reg,
3335 addr_get_trace_state_variable_value and
3336 addr_set_trace_state_variable_value.
3337 (symbol_list): New fields for get_raw_reg,
3338 get_trace_state_variable_value and set_trace_state_variable_value.
3339 (condfn): New typedef.
3340 (struct tracepoint): New field `compiled_cond'.
3341 (do_action_at_tracepoint): Clear compiled_cond.
3342 (get_trace_state_variable_value, set_trace_state_variable_value):
3343 Export in the IPA.
3344 (condition_true_at_tracepoint): If there's a compiled condition,
3345 run that.
3346 (current_insn_ptr, emit_error): New globals.
3347 (struct bytecode_address): New.
3348 (get_raw_reg_func_addr): New.
3349 (emit_prologue, emit_epilogue, emit_add, emit_sub, emit_mul)
3350 (emit_lsh, emit_rsh_signed, emit_rsh_unsigned, emit_ext)
3351 (emit_log_not, emit_bit_and, emit_bit_or, emit_bit_xor)
3352 (emit_bit_not, emit_equal, emit_less_signed, emit_less_unsigned)
3353 (emit_ref, emit_if_goto, emit_goto, write_goto_address, emit_const)
3354 (emit_reg, emit_pop, emit_stack_flush, emit_zero_ext, emit_swap)
3355 (emit_stack_adjust, emit_int_call_1, emit_void_call_2): New.
3356 (compile_tracepoint_condition, compile_bytecodes): New.
3357 * target.h (emit_ops): Forward declare.
3358 (struct target_ops): New field emit_ops.
3359 (target_emit_ops): New.
3360 * linux-amd64-ipa.c (gdb_agent_get_raw_reg): New.
3361 * linux-i386-ipa.c (gdb_agent_get_raw_reg): New.
3362 * linux-low.c (linux_emit_ops): New.
3363 (linux_target_ops): Install it.
3364 * linux-low.h (struct linux_target_ops): New field emit_ops.
3365
92b72907
UW
33662010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
3367
3368 * linux-ppc-low.c (ppc_arch_setup): Use private regcache to test MSR.
3369 * linux-s390-low.c (ppc_arch_setup): Use private regcache to test PSW.
3370
fa593d66
PA
33712010-06-01 Pedro Alves <pedro@codesourcery.com>
3372 Stan Shebs <stan@codesourcery.com>
3373
3374 * Makefile.in (IPA_DEPFILES, extra_libraries): New.
3375 (all): Depend on $(extra_libraries).
3376 (install-only): Install the IPA.
3377 (IPA_OBJS, IPA_LIB): New.
3378 (clean): Remove the IPA lib.
3379 (IPAGENT_CFLAGS): New.
3380 (tracepoint-ipa.o, utils-ipa.o, remote-utils-ipa.o)
3381 (regcache-ipa.o, i386-linux-ipa.o, linux-i386-ipa.o)
3382 (linux-amd64-ipa.o, amd64-linux-ipa.o): New rules.
3383 * linux-amd64-ipa.c, linux-i386-ipa.c: New files.
3384 * configure.ac: Check for atomic builtins support in the compiler.
3385 (IPA_DEPFILES, extra_libraries): Define.
3386 * configure.srv (ipa_obj): Add description.
3387 (ipa_i386_linux_regobj, ipa_amd64_linux_regobj): Define.
3388 (i[34567]86-*-linux*): Set ipa_obj.
3389 (x86_64-*-linux*): Set ipa_obj.
3390 * linux-low.c (stabilizing_threads): New.
3391 (supports_fast_tracepoints): New.
3392 (linux_detach): Stabilize threads before detaching.
3393 (handle_tracepoints): Handle internal tracing breakpoints. Assert
3394 the lwp is either not stabilizing, or is moving out of a jump pad.
3395 (linux_fast_tracepoint_collecting): New.
3396 (maybe_move_out_of_jump_pad): New.
3397 (enqueue_one_deferred_signal): New.
3398 (dequeue_one_deferred_signal): New.
3399 (linux_wait_for_event_1): If moving out of a jump pad, defer
3400 pending signals to later.
3401 (linux_stabilize_threads): New.
3402 (linux_wait_1): Check if threads need moving out of jump pads, and
3403 do it if so.
3404 (stuck_in_jump_pad_callback): New.
3405 (move_out_of_jump_pad_callback): New.
3406 (lwp_running): New.
3407 (linux_resume_one_lwp): Handle moving out of jump pads.
3408 (linux_set_resume_request): Dequeue deferred signals.
3409 (need_step_over_p): Also step over fast tracepoint jumps.
3410 (start_step_over): Also uninsert fast tracepoint jumps.
3411 (finish_step_over): Also reinsert fast tracepoint jumps.
3412 (linux_install_fast_tracepoint_jump): New.
3413 (linux_target_ops): Install linux_stabilize_threads and
3414 linux_install_fast_tracepoint_jump_pad.
3415 * linux-low.h (linux_target_ops) <get_thread_area,
3416 install_fast_tracepoint_jump_pad>: New fields.
3417 (struct lwp_info) <collecting_fast_tracepoint,
3418 pending_signals_to_report, exit_jump_pad_bkpt>: New fields.
3419 (linux_get_thread_area): Declare.
3420 * linux-x86-low.c (jump_insn): New.
3421 (x86_get_thread_area): New.
3422 (append_insns): New.
3423 (push_opcode): New.
3424 (amd64_install_fast_tracepoint_jump_pad): New.
3425 (i386_install_fast_tracepoint_jump_pad): New.
3426 (x86_install_fast_tracepoint_jump_pad): New.
3427 (the_low_target): Install x86_get_thread_area and
3428 x86_install_fast_tracepoint_jump_pad.
3429 * mem-break.c (set_raw_breakpoint_at): Use read_inferior_memory.
3430 (struct fast_tracepoint_jump): New.
3431 (fast_tracepoint_jump_insn): New.
3432 (fast_tracepoint_jump_shadow): New.
3433 (find_fast_tracepoint_jump_at): New.
3434 (fast_tracepoint_jump_here): New.
3435 (delete_fast_tracepoint_jump): New.
3436 (set_fast_tracepoint_jump): New.
3437 (uninsert_fast_tracepoint_jumps_at): New.
3438 (reinsert_fast_tracepoint_jumps_at): New.
3439 (set_breakpoint_at): Use write_inferior_memory.
3440 (uninsert_raw_breakpoint): Use write_inferior_memory.
3441 (check_mem_read): Mask out fast tracepoint jumps.
3442 (check_mem_write): Mask out fast tracepoint jumps.
3443 * mem-break.h (struct fast_tracepoint_jump): Forward declare.
3444 (set_fast_tracepoint_jump): Declare.
3445 (delete_fast_tracepoint_jump)
3446 (fast_tracepoint_jump_here, uninsert_fast_tracepoint_jumps_at)
3447 (reinsert_fast_tracepoint_jumps_at): Declare.
3448 * regcache.c: Don't compile many functions when building the
3449 in-process agent library.
3450 (init_register_cache) [IN_PROCESS_AGENT]: Don't allow allocating
3451 the register buffer in the heap.
3452 (free_register_cache): If the register buffer isn't owned by the
3453 regcache, don't free it.
3454 (set_register_cache) [IN_PROCESS_AGENT]: Don't re-alocate
3455 pre-existing register caches.
3456 * remote-utils.c (convert_int_to_ascii): Constify `from' parameter
3457 type.
3458 (convert_ascii_to_int): : Constify `from' parameter type.
3459 (decode_M_packet, decode_X_packet): Replace the `to' parameter by
3460 a `to_p' pointer to pointer parameter. If TO_P is NULL, malloc
3461 the needed buffer in-place.
3462 (relocate_instruction): New.
3463 * server.c (handle_query) <qSymbols>: If the target supports
3464 tracepoints, give it a chance of looking up symbols. Report
3465 support for fast tracepoints.
3466 (handle_status): Stabilize threads.
3467 (process_serial_event): Adjust.
3468 * server.h (struct fast_tracepoint_jump): Forward declare.
3469 (struct process_info) <fast_tracepoint_jumps>: New field.
3470 (convert_ascii_to_int, convert_int_to_ascii): Adjust.
3471 (decode_X_packet, decode_M_packet): Adjust.
3472 (relocate_instruction): Declare.
3473 (in_process_agent_loaded): Declare.
3474 (tracepoint_look_up_symbols): Declare.
3475 (struct fast_tpoint_collect_status): Declare.
3476 (fast_tracepoint_collecting): Declare.
3477 (force_unlock_trace_buffer): Declare.
3478 (handle_tracepoint_bkpts): Declare.
3479 (initialize_low_tracepoint)
3480 (supply_fast_tracepoint_registers) [IN_PROCESS_AGENT]: Declare.
3481 * target.h (struct target_ops) <stabilize_threads,
3482 install_fast_tracepoint_jump_pad>: New fields.
3483 (stabilize_threads, install_fast_tracepoint_jump_pad): New.
3484 * tracepoint.c [HAVE_MALLOC_H]: Include malloc.h.
3485 [HAVE_STDINT_H]: Include stdint.h.
3486 (trace_debug_1): Rename to ...
3487 (trace_vdebug): ... this.
3488 (trace_debug): Rename to ...
3489 (trace_debug_1): ... this. Add `level' parameter.
3490 (trace_debug): New.
3491 (ATTR_USED, ATTR_NOINLINE): New.
3492 (IP_AGENT_EXPORT): New.
3493 (gdb_tp_heap_buffer, gdb_jump_pad_buffer, gdb_jump_pad_buffer_end)
3494 (collecting, gdb_collect, stop_tracing, flush_trace_buffer)
3495 (about_to_request_buffer_space, trace_buffer_is_full)
3496 (stopping_tracepoint, expr_eval_result, error_tracepoint)
3497 (tracepoints, tracing, trace_buffer_ctrl, trace_buffer_ctrl_curr)
3498 (trace_buffer_lo, trace_buffer_hi, traceframe_read_count)
3499 (traceframe_write_count, traceframes_created)
3500 (trace_state_variables)
3501 New renaming defines.
3502 (struct ipa_sym_addresses): New.
3503 (STRINGIZE_1, STRINGIZE, IPA_SYM): New.
3504 (symbol_list): New.
3505 (ipa_sym_addrs): New.
3506 (all_tracepoint_symbols_looked_up): New.
3507 (in_process_agent_loaded): New.
3508 (write_e_ipa_not_loaded): New.
3509 (maybe_write_ipa_not_loaded): New.
3510 (tracepoint_look_up_symbols): New.
3511 (debug_threads) [IN_PROCESS_AGENT]: New.
3512 (read_inferior_memory) [IN_PROCESS_AGENT]: New.
3513 (UNKNOWN_SIDE_EFFECTS): New.
3514 (stop_tracing): New.
3515 (flush_trace_buffer): New.
3516 (stop_tracing_bkpt): New.
3517 (flush_trace_buffer_bkpt): New.
3518 (read_inferior_integer): New.
3519 (read_inferior_uinteger): New.
3520 (read_inferior_data_pointer): New.
3521 (write_inferior_data_pointer): New.
3522 (write_inferior_integer): New.
3523 (write_inferior_uinteger): New.
3524 (struct collect_static_trace_data_action): Delete.
3525 (enum tracepoint_type): New.
3526 (struct tracepoint) <type>: New field `type'.
43aaf8b6
PA
3527 <actions_str, step_actions, step_actions_str>: Only include in
3528 GDBserver.
fa593d66
PA
3529 <orig_size, obj_addr_on_target, adjusted_insn_addr>
3530 <adjusted_insn_addr_end, jump_pad, jump_pad_end>: New fields.
3531 (tracepoints): Use IP_AGENT_EXPORT.
3532 (last_tracepoint): Don't include in the IPA.
3533 (stopping_tracepoint): Use IP_AGENT_EXPORT.
3534 (trace_buffer_is_full): Use IP_AGENT_EXPORT.
3535 (alloced_trace_state_variables): New.
3536 (trace_state_variables): Use IP_AGENT_EXPORT.
3537 (traceframe_t): Delete unused variable.
3538 (circular_trace_buffer): Don't include in the IPA.
3539 (trace_buffer_start): Delete.
3540 (struct trace_buffer_control): New.
3541 (trace_buffer_free): Delete.
3542 (struct ipa_trace_buffer_control): New.
3543 (GDBSERVER_FLUSH_COUNT_MASK, GDBSERVER_FLUSH_COUNT_MASK_PREV)
3544 (GDBSERVER_FLUSH_COUNT_MASK_CURR, GDBSERVER_UPDATED_FLUSH_COUNT_BIT):
3545 New.
3546 (trace_buffer_ctrl): New.
3547 (TRACE_BUFFER_CTRL_CURR): New.
3548 (trace_buffer_start, trace_buffer_free, trace_buffer_end_free):
3549 Reimplement as macros.
3550 (trace_buffer_wrap): Delete.
3551 (traceframe_write_count, traceframe_read_count)
3552 (traceframes_created, tracing): Use IP_AGENT_EXPORT.
3553 (struct tracepoint_hit_ctx) <type>: New field.
3554 (struct fast_tracepoint_ctx): New.
3555 (memory_barrier): New.
3556 (cmpxchg): New.
3557 (record_tracepoint_error): Update atomically in the IPA.
3558 (clear_inferior_trace_buffer): New.
3559 (about_to_request_buffer_space): New.
3560 (trace_buffer_alloc): Handle GDBserver and inferior simulatenous
3561 updating the same buffer.
3562 (add_tracepoint): Default the tracepoint's type to trap
3563 tracepoint, and orig_size to -1.
3564 (get_trace_state_variable) [IN_PROCESS_AGENT]: Handle allocated
3565 internal variables.
3566 (create_trace_state_variable): New parameter `gdb'. Handle it.
3567 (clear_installed_tracepoints): Clear fast tracepoint jumps.
3568 (cmd_qtdp): Handle fast tracepoints.
3569 (cmd_qtdv): Adjust.
3570 (max_jump_pad_size): New.
3571 (gdb_jump_pad_head): New.
3572 (get_jump_space_head): New.
3573 (claim_jump_space): New.
3574 (sort_tracepoints): New.
3575 (MAX_JUMP_SIZE): New.
3576 (cmd_qtstart): Handle fast tracepoints. Sync tracepoints with the
3577 IPA.
3578 (stop_tracing) [IN_PROCESS_AGENT]: Don't include the tdisconnected
3579 support. Upload fast traceframes, and delete internal IPA
3580 breakpoints.
3581 (stop_tracing_handler): New.
3582 (flush_trace_buffer_handler): New.
3583 (cmd_qtstop): Upload fast tracepoints.
3584 (response_tracepoint): Handle fast tracepoints.
3585 (tracepoint_finished_step): Upload fast traceframes. Set the
3586 tracepoint hit context's tracepoint type.
3587 (handle_tracepoint_bkpts): New.
3588 (tracepoint_was_hit): Set the tracepoint hit context's tracepoint
3589 type. Add comment about fast tracepoints.
3590 (collect_data_at_tracepoint) [IN_PROCESS_AGENT]: Don't access the
3591 non-existing action_str field.
3592 (get_context_regcache): Handle fast tracepoints.
3593 (do_action_at_tracepoint) [!IN_PROCESS_AGENT]: Don't write the PC
3594 to the regcache.
3595 (fast_tracepoint_from_jump_pad_address): New.
3596 (fast_tracepoint_from_ipa_tpoint_address): New.
3597 (collecting_t): New.
3598 (force_unlock_trace_buffer): New.
3599 (fast_tracepoint_collecting): New.
3600 (collecting): New.
3601 (gdb_collect): New.
3602 (write_inferior_data_ptr): New.
3603 (target_tp_heap): New.
3604 (target_malloc): New.
3605 (download_agent_expr): New.
3606 (UALIGN): New.
3607 (download_tracepoints): New.
3608 (download_trace_state_variables): New.
3609 (upload_fast_traceframes): New.
3610 (IPA_FIRST_TRACEFRAME): New.
3611 (IPA_NEXT_TRACEFRAME_1): New.
3612 (IPA_NEXT_TRACEFRAME): New.
3613 [IN_PROCESS_AGENT]: Include sys/mman.h and fcntl.h.
3614 [IN_PROCESS_AGENT] (gdb_tp_heap_buffer, gdb_jump_pad_buffer)
3615 (gdb_jump_pad_buffer_end): New.
3616 [IN_PROCESS_AGENT] (initialize_tracepoint_ftlib): New.
3617 (initialize_tracepoint): Adjust.
3618 [IN_PROCESS_AGENT]: Allocate the IPA heap, and jump pad scratch
3619 buffer. Initialize the low module.
3620 * utils.c (PREFIX, TOOLNAME): New.
3621 (malloc_failure): Use PREFIX.
3622 (error): In the IPA, an error causes an exit.
3623 (fatal, warning): Use PREFIX.
3624 (internal_error): Use TOOLNAME.
3625 (NUMCELLS): Increase to 10.
3626 * configure, config.in: Regenerate.
3627
d149dd1d
PA
36282010-06-01 Pedro Alves <pedro@codesourcery.com>
3629
3630 * server.c (handle_query) <qSupported>: Do two passes over the
3631 qSupported string to avoid nesting strtok.
3632
f6528abd
JK
36332010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3634
3635 * Makefile.in (SFILES): Add $(srcdir)/proc-service.list.
3636 (CDEPS): New.
3637 * configure.ac (RDYNAMIC): New AC_MSG_CHECKING wrapping. Test also
3638 -Wl,--dynamic-list.
3639 * configure: Regenerate.
3640 * proc-service.list: New.
3641
ca2a87a0
JK
36422010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3643
3644 * linux-low.c (linux_core_of_thread): Fix crash on invalid CONTENT.
3645 New comment.
3646
363a6e9f
OS
36472010-05-26 Ozkan Sezer <sezeroz@gmail.com>
3648
3649 * gdbreplay.c (remote_open): Check error return from socket() call by
3650 its equality to -1 not by it being negative.
3651 * remote-utils.c (remote_open): Likewise.
3652
d23b6cb1
PA
36532010-05-23 Pedro Alves <pedro@codesourcery.com>
3654
3655 * config.h: Regenerate.
3656
28d3cf85
MK
36572010-05-19 Maxim Kuvyrkov <maxim@codesourcery.com>
3658
3659 * linux-m68k-low.c (ps_get_thread_area): Don't define if kernel
3660 doesn't provide PTRACE_GET_THREAD_AREA.
3661
fea36a59
MK
36622010-05-19 Maxim Kuvyrkov <maxim@codesourcery.com>
3663
3664 * linux-m68k-low.c: Include <asm/ptrace.h>
3665 (ps_get_thread_area): Implement.
3666
24b066ba
DE
36672010-05-03 Doug Evans <dje@google.com>
3668
3669 * event-loop.c (struct callback_event): New struct.
3670 (callback_list): New global.
3671 (append_callback_event, delete_callback_event): New functions.
3672 (process_callback): New function.
3673 (start_event_loop): Call it.
3674 * remote-utils.c (NOT_SCHEDULED): Define.
3675 (readchar_buf, readchar_bufcnt, readchar_bufp): New static globals,
3676 moved out of readchar.
3677 (readchar): Rewrite. Call reschedule before returning.
3678 (reset_readchar): New function.
3679 (remote_close): Call it.
3680 (process_remaining, reschedule): New functions.
3681 * server.h (callback_handler_func): New typedef.
3682 (append_callback_event, delete_callback_event): Declare.
3683
9836d6ea
PA
36842010-05-03 Pedro Alves <pedro@codesourcery.com>
3685
3686 * proc-service.c (ps_pglobal_lookup): Use
3687 thread_db_look_up_one_symbol.
3688 * remote-utils.c (look_up_one_symbol): Add new `may_ask_gdb'
3689 parameter. Use it instead of all_symbols_looked_up.
3690 * server.h (struct process_info) <all_symbols_looked_up>: Delete
3691 field.
3692 (all_symbols_looked_up): Don't declare.
3693 (look_up_one_symbol): Add new `may_ask_gdb' parameter.
3694 * thread-db.c (struct thread_db) <all_symbols_looked_up>: New
3695 field.
3696 (thread_db_look_up_symbols): Adjust call to look_up_one_symbol.
3697 Set all_symbols_looked_up here.
3698 (thread_db_look_up_one_symbol): New.
3699 (thread_db_get_tls_address): Adjust.
3700 (thread_db_load_search, try_thread_db_load_1): Always allocate the
3701 thread_db object on the heap, and tentatively set it in the
3702 process structure.
3703 (thread_db_init): Don't set all_symbols_looked_up here.
3704 * linux-low.h (thread_db_look_up_one_symbol): Declare.
3705
7984d532
PA
37062010-05-03 Pedro Alves <pedro@codesourcery.com>
3707
3708 * linux-low.c (linux_kill, linux_detach): Adjust.
3709 (status_pending_p_callback): Remove redundant statement. Check
3710 for !TARGET_WAITIKIND_IGNORE, instead of
3711 TARGET_WAITKIND_STOPPED.
3712 (handle_tracepoints): Make sure LWP is locked. Adjust.
3713 (linux_wait_for_event_1): Adjust.
3714 (linux_cancel_breakpoints): New.
3715 (unsuspend_one_lwp): New.
3716 (unsuspend_all_lwps): New.
3717 (linux_wait_1): If finishing a step-over, unsuspend all lwps.
3718 (send_sigstop_callback): Change return type to int, add new
3719 `except' parameter and handle it.
3720 (suspend_and_send_sigstop_callback): New.
3721 (stop_all_lwps): Add new `suspend' and `expect' parameters, and
3722 pass them down. If SUSPEND, also increment the lwp's suspend
3723 count.
3724 (linux_resume_one_lwp): Add notice about resuming a suspended LWP.
3725 (need_step_over_p): Don't consider suspended LWPs.
3726 (start_step_over): Adjust.
3727 (proceed_one_lwp): Change return type to int, add new `except'
3728 parameter and handle it.
3729 (unsuspend_and_proceed_one_lwp): New.
3730 (proceed_all_lwps): Use find_inferior instead of
3731 for_each_inferior.
3732 (unstop_all_lwps): Add `unsuspend' parameter. If UNSUSPEND, them
3733 also decrement the suspend count of LWPs. Pass `except' down,
3734 instead of hacking its suspend count.
3735 (linux_pause_all): Add `freeze' parameter. Adjust.
3736 (linux_unpause_all): New.
3737 (linux_target_ops): Install linux_unpause_all.
3738 * server.c (handle_status): Adjust.
3739 * target.h (struct target_ops): New fields `unpause_all' and
3740 `cancel_breakpoints'. Add new parameter to `pause_all'.
3741 (pause_all): Add new `freeze' parameter.
3742 (unpause_all): New.
3743 (cancel_breakpoints): New.
3744 * tracepoint.c (clear_installed_tracepoints): Pause threads, and
3745 cancel breakpoints.
3746 (cmd_qtstart): Pause threads.
3747 (stop_tracing): Pause threads, and cancel breakpoints.
3748 * win32-low.c (win32_target_ops): Adjust.
3749
e471f25b
PA
37502010-05-03 Pedro Alves <pedro@codesourcery.com>
3751
3752 * linux-low.c (linux_wait_for_event_1): Move passing the signal to
3753 the inferior right away from here...
3754 (linux_wait_1): ... to here, and adjust to check the thread's
3755 last_resume_kind instead of the lwp's step or stop_expected flags.
3756
1915ef4f
PA
37572010-05-02 Pedro Alves <pedro@codesourcery.com>
3758
3759 * README: Use consistent `GDB' and `GDBserver' spellings.
3760
f9e39928
PA
37612010-05-02 Pedro Alves <pedro@codesourcery.com>
3762
3763 * linux-low.c (linux_kill_one_lwp): Assume the lwp is stopped.
3764 (linux_kill): Stop all lwps here. Don't delete the main lwp here.
3765 (linux_detach_one_lwp): Assume the lwp is stopped.
3766 (any_thread_of): Delete.
3767 (linux_detach): Stop all lwps here. Don't blindly delete all
3768 breakpoints.
3769 (delete_lwp_callback): New.
3770 (linux_mourn): Delete all lwps of the process that is gone.
3771 (linux_wait_1): Don't delete the last lwp of the process here.
3772 * mem-break.h (mark_breakpoints_out): Declare.
3773 * mem-break.c (mark_breakpoints_out): New.
3774 (free_all_breakpoints): Use it.
3775 * server.c (handle_target_event): If the process is gone, mark
3776 breakpoints out.
3777 * thread-db.c (struct thread_db) <create_bp>: New field.
3778 (thread_db_enable_reporting): Fix prototype. Store a thread event
3779 breakpoint reference in the thread_db struct.
3780 (thread_db_load_search): Clear the thread_db object.
3781 (try_thread_db_load_1): Ditto.
3782 (switch_to_process): New.
3783 (disable_thread_event_reporting): Use it.
3784 (remove_thread_event_breakpoints): New.
3785 (thread_db_detach, thread_db_mourn): Use it.
3786
1e7fc18c
PA
37872010-05-01 Pedro Alves <pedro@codesourcery.com>
3788
3789 * linux-low.c (linux_enable_event_reporting): New.
3790 (linux_wait_for_event_1, handle_extended_wait): Use it.
3791
02fc4de7
PA
37922010-04-30 Pedro Alves <pedro@codesourcery.com>
3793
3794 * linux-low.c (linux_kill_one_lwp, linux_kill)
3795 (linux_detach_one_lwp): Adjust to send_sigstop interface change.
3796 (send_sigstop): Take an lwp_info as parameter instead. Queue a
3797 SIGSTOP even if the LWP is stopped.
3798 (send_sigstop_callback): New.
3799 (stop_all_lwps): Use send_sigstop_callback instead.
3800 (linux_resume_one_thread): Adjust.
3801 (proceed_one_lwp): Still proceed an LWP that the client has
3802 requested to stop, if we haven't reported it as stopped yet. Make
3803 sure that LWPs the client want stopped, have a pending SIGSTOP.
3804
bc3b5632
DE
38052010-04-26 Doug Evans <dje@google.com>
3806
ae1ada35
DE
3807 * server.c (handle_general_set): Make static.
3808
bc3b5632
DE
3809 * remote-utils.c (putpkt_binary_1): Call readchar instead of read.
3810 Print received char after testing for error/eof instead of before.
3811 (input_interrupt): Tweak comment.
3812
65730243
DE
38132010-04-23 Doug Evans <dje@google.com>
3814
3815 * server.c (start_inferior): Print inferior argv if --debug.
3816
a8ae7dc0
AR
38172010-04-21 Aleksandar Ristovski <aristovski@qnx.com>
3818
3819 * Makefile.in (nto_low_h nto-low.o nto-x86-low.o): New dependency lists.
3820 * nto-x86-low.c: Include server.h
3821
1c07cc19
PM
38222010-04-20 Pierre Muller <muller@ics.u-strasbg.fr>
3823
3824 * win32-i386-low.c: Use __x86_64__ macro instead of __x86_64 to
3825 be consistent with other sources of this directory.
3826 (init_registers_amd64): Correct name of source file of this function
3827 in the comment.
3828
e0a61e09
PM
38292010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
3830
3831 * configure.srv (x86_64-*-mingw*): New configuration for Windows
3832 64-bit executables.
3833
54709339
PM
38342010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
3835
3836 * win32-i386-low.c: Add 64-bit support.
3837 (CONTEXT_EXTENDED_REGISTERS): Set macro to zero if not exisiting.
3838 (init_registers_amd64): Declare.
3839 (mappings): Add 64-bit version of array.
3840 (init_windows_x86): New function.
3841 (the_low_target): Change init_arch field to init_windows_x86.
3842
e8f0053d
PM
38432010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
3844
3845 * win32-low.c: Adapt to support also 64-bit architecture.
3846 (child_xfer_memory): Use uintptr_t type for local variable `addr'.
3847 (get_image_name): Use SIZE_T type for local variable `done'.
3848 (psapi_get_dll_name): Use LPVOID type for parameter `BaseAddress'.
3849 (toolhelp_get_dll_name): Idem.
3850 (handle_load_dll): Use CORE_ADDR type for local variable `load_addr'.
3851 Use uintptr_t typecast to avoid warning.
3852 (handle_unload_dll): Use uintptr_t typecast to avoid warning.
3853 (handle_exception): Use phex_nz to avoid warning.
3854 (win32_wait): Remove unused local variable `process'.
3855
c481e77e
PM
38562010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
3857
3858 * configure.srv (srv_amd64_regobj): Replace `x86-64-avx.o' by
3859 `amd64-avx.o'.
3860
12ea4b69
PM
38612010-04-17 Pierre Muller <muller@ics.u-strasbg.fr>
3862
3863 * configure.ac: Use `ws2_32' library for srv_mingw.
3864 * configure: Regenerate.
3865 * gdbreplay.c: Include winsock2.h instead of winsock.h.
3866 * remote-utils.c: Likewise.
3867
f6d1620c
L
38682010-04-17 H.J. Lu <hongjiu.lu@intel.com>
3869
3870 * linux-x86-low.c (xmltarget_amd64_linux_no_xml): Define only
3871 if __x86_64__ is defined.
3872
8e642873
PM
38732010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
3874
3875 * configure: Regenerate.
3876
711e434b
PM
38772010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
3878
3879 * server.c (handle_query): Handle 'qGetTIBAddr' query.
3880 * target.h (target_ops): New get_tib_address field.
3881 * win32-low.h (win32_thread_info): Add thread_local_base field.
3882 * win32-low.c (child_add_thread): Add tlb argument.
3883 Set thread_local_base field to TLB.
3884 (get_child_debug_event): Adapt to child_add_thread change.
3885 (win32_get_tib_address): New function.
3886 (win32_target_ops): Set get_tib_address field to
3887 win32_get_tib_address.
3888 * linux-low.c (linux_target_ops): Set get_tib_address field to NULL.
3889
505106cd
PA
38902010-04-12 Pedro Alves <pedro@codesourcery.com>
3891
505106cd
PA
3892 * linux-low.c (linux_mourn): Also remove the process.
3893 * server.c (handle_target_event): Don't remove the process here.
3894 * nto-low.c (nto_mourn): New.
3895 (nto_target_ops): Install it.
3896 * spu-low.c (spu_mourn): New.
3897 (spu_target_ops): Install it.
3898 * win32-low.c (win32_mourn): New.
3899 (win32_target_ops): Install it.
3900
e8470a06
PA
39012010-04-12 Pedro Alves <pedro@codesourcery.com>
3902
3903 * server.h (buffer_xml_printf): Remove redundant `;'.
3904
45ba0d02
PA
39052010-04-12 Pedro Alves <pedro@codesourcery.com>
3906
3907 * regcache.c (set_register_cache): Invalidate regcaches before
3908 changing the register cache layout.
3909 (regcache_invalidate_one): Allow a NULL regcache.
3910 * linux-x86-low.c (x86_linux_update_xmltarget): Invalidate
3911 regcaches before changing the register cache layout or the target
3912 regsets.
3913
59e04013
L
39142010-04-12 H.J. Lu <hongjiu.lu@intel.com>
3915
3916 * linux-x86-low.c (x86_linux_update_xmltarget): Avoid unused
3917 variable warning on Linux/x86-64.
3918
8336d594
PA
39192010-04-11 Pedro Alves <pedro@codesourcery.com>
3920
3921 GDBserver disconnected tracing support.
3922
3923 * linux-low.c (linux_remove_process): Delete.
3924 (add_lwp): Don't set last_resume_kind here.
3925 (linux_kill): Use `mourn'.
3926 (linux_detach): Use `thread_db_detach', and `mourn'.
3927 (linux_mourn): New.
3928 (linux_attach_lwp_1): Adjust comment.
3929 (linux_attach): last_resume_kind moved the thread_info; adjust.
3930 (status_pending_p_callback): Adjust.
3931 (linux_wait_for_event_1): Adjust.
3932 (count_events_callback, select_singlestep_lwp_callback)
3933 (select_event_lwp_callback, cancel_breakpoints_callback)
3934 (db_wants_lwp_stopped, linux_wait_1, need_step_over_p)
3935 (proceed_one_lwp): Adjust.
3936 (linux_async): Add debug output.
3937 (linux_thread_stopped): New.
3938 (linux_pause_all): New.
3939 (linux_target_ops): Install linux_mourn, linux_thread_stopped and
3940 linux_pause_all.
3941 * linux-low.h (struct lwp_info): Delete last_resume_kind field.
3942 (thread_db_free): Delete declaration.
3943 (thread_db_detach, thread_db_mourn): Declare.
3944 * thread-db.c (thread_db_init): Use thread_db_mourn.
3945 (thread_db_free): Delete, split in two.
3946 (disable_thread_event_reporting): New.
3947 (thread_db_detach): New.
3948 (thread_db_mourn): New.
3949
3950 * server.h (struct thread_info) <last_resume_kind>: New field.
3951 <attached>: Add comment.
3952 <gdb_detached>: New field.
3953 (handler_func): Change return type to int.
3954 (handle_serial_event, handle_target_event): Ditto.
3955 (gdb_connected): Declare.
3956 (tracing): Delete.
3957 (disconnected_tracing): Declare.
3958 (stop_tracing): Declare.
3959
3960 * server.c (handle_query) <qSupported>: Report support for
3961 disconnected tracing.
3962 (queue_stop_reply_callback): Account for running threads.
3963 (gdb_wants_thread_stopped): New.
3964 (gdb_wants_all_threads_stopped): New.
3965 (gdb_reattached_process): New.
3966 (handle_status): Clear the `gdb_detached' flag of all processes.
3967 In all-stop, stop all threads.
3968 (main): Be sure to leave tfind mode. Handle disconnected tracing.
3969 (process_serial_event): If the remote connection breaks, or if an
3970 exit was forced with "monitor exit", force an event loop exit.
3971 Handle disconnected tracing on detach.
3972 (handle_serial_event): Adjust.
3973 (handle_target_event): If GDB isn't connected, forward events back
3974 to the inferior, unless the last process exited, in which case,
3975 exit gdbserver. Adjust interface.
3976
3977 * remote-utils.c (remote_open): Don't block in accept. Instead
3978 register an event loop source on the listen socket file
3979 descriptor. Refactor bits into ...
3980 (listen_desc): ... this new global.
3981 (gdb_connected): ... this new function.
3982 (enable_async_notification): ... this new function.
3983 (handle_accept_event): ... this new function.
3984 (remote_close): Clear remote_desc.
3985
3986 * inferiors.c (add_thread): Set the new thread's last_resume_kind.
3987
3988 * target.h (struct target_ops) <mourn, thread_stopped, pause_all>:
3989 New fields.
3990 (mourn_inferior): Define.
3991 (target_process_qsupported): Avoid the dangling else problem.
3992 (thread_stopped): Define.
3993 (pause_all): Define.
3994 (target_waitstatus_to_string): Declare.
3995 * target.c (target_waitstatus_to_string): New.
3996
3997 * tracepoint.c (tracing): Make extern.
3998 (disconnected_tracing): New.
3999 (stop_tracing): Make extern. Handle tracing stops due to GDB
4000 disconnecting.
4001 (cmd_qtdisconnected): New.
4002 (cmd_qtstatus): Report disconnected tracing status in trace reply.
4003 (handle_tracepoint_general_set): Handle QTDisconnected.
4004
4005 * event-loop.c (event_handler_func): Change return type to int.
4006 (process_event): Bail out if the event handler wants the event
4007 loop to stop.
4008 (handle_file_event): Ditto.
4009 (start_event_loop): Bail out if the event handler wants the event
4010 loop to stop.
4011
4012 * nto-low.c (nto_target_ops): Adjust.
4013 * spu-low.c (spu_wait): Don't remove the process here.
4014 (spu_target_ops): Adjust.
4015 * win32-low.c (win32_wait): Don't remove the process here.
4016 (win32_target_ops): Adjust.
4017
5d267c4c
PA
40182010-04-11 Pedro Alves <pedro@codesourcery.com>
4019
4020 * regcache.c (realloc_register_cache): Invalidate inferior's
4021 regcache before recreating it.
4022
623ccd72
PA
40232010-04-09 Pedro Alves <pedro@codesourcery.com>
4024
4025 * tracepoint.c (cmd_qtstatus): Report trace buffer circularity.
4026
219f2f23
PA
40272010-04-09 Stan Shebs <stan@codesourcery.com>
4028 Pedro Alves <pedro@codesourcery.com>
4029
4030 * server.h (LONGEST): New.
4031 (struct thread_info) <while_stepping>: New field.
4032 (unpack_varlen_hex, xrealloc, pulongest, plongest, phex_nz):
4033 Declare.
4034 (initialize_tracepoint, handle_tracepoint_general_set)
4035 (handle_tracepoint_query, tracepoint_finished_step)
4036 (tracepoint_was_hit, release_while_stepping_state_list):
4037 (current_traceframe): Declare.
4038 * server.c (handle_general_set): Handle tracepoint packets.
4039 (read_memory): New.
4040 (write_memory): New.
4041 (handle_search_memory_1): Use read_memory.
4042 (handle_query): Report support for conditional tracepoints, trace
4043 state variables, and tracepoint sources. Handle tracepoint
4044 queries.
4045 (main): Initialize the tracepoints module.
4046 (process_serial_event): Handle traceframe reads/writes.
4047
4048 * linux-low.c (handle_tracepoints): New.
4049 (linux_wait_1): Call it.
4050 (linux_resume_one_lwp): Handle while-stepping.
4051 (linux_supports_tracepoints, linux_read_pc, linux_write_pc): New.
4052 (linux_target_ops): Install them.
4053 * linux-low.h (struct linux_target_ops) <supports_tracepoints>:
4054 New field.
4055 * linux-x86-low.c (x86_supports_tracepoints): New.
4056 (the_low_target). Install it.
4057
4058 * mem-break.h (delete_breakpoint): Declare.
4059 * mem-break.c (delete_breakpoint): Make external.
4060
4061 * target.h (struct target_ops): Add `supports_tracepoints',
4062 `read_pc', and `write_pc' fields.
4063 (target_supports_tracepoints): Define.
4064 * utils.c (xrealloc, decimal2str, pulongest, plongest, thirty_two)
4065 (phex_nz): New.
4066
4067 * regcache.h (struct regcache) <registers_owned>: New field.
4068 (init_register_cache, regcache_cpy): Declare.
4069 (regcache_read_pc, regcache_write_pc): Declare.
4070 (register_cache_size): Declare.
4071 (supply_regblock): Declare.
4072 * regcache.c (init_register_cache): New.
4073 (new_register_cache): Use it.
4074 (regcache_cpy): New.
4075 (register_cache_size): New.
4076 (supply_regblock): New.
4077 (regcache_read_pc, regcache_write_pc): New.
889bf7c5 4078
219f2f23
PA
4079 * tracepoint.c: New.
4080
4081 * Makefile.in (OBS): Add tracepoint.o.
4082 (tracepoint.o): New rule.
4083
3a13a53b
L
40842010-04-08 H.J. Lu <hongjiu.lu@intel.com>
4085
4086 * Makefile.in (clean): Also remove i386-mmx.c i386-mmx-linux.c.
4087 (i386-mmx.o): New.
4088 (i386-mmx.c): Likewise.
4089 (i386-mmx-linux.o): Likewise.
4090 (i386-mmx-linux.c): Likewise.
4091
4092 * configure.srv (srv_i386_regobj): Add i386-mmx.o.
4093 (srv_i386_linux_regobj): Add i386-mmx-linux.o.
4094 (srv_i386_xmlfiles): Add i386/i386-mmx.xml.
4095 (srv_i386_linux_xmlfiles): Add i386/i386-mmx-linux.xml.
4096
4097 * linux-x86-low.c (init_registers_i386_mmx_linux): New.
4098 (x86_linux_update_xmltarget): Call init_registers_i386_mmx_linux
4099 and return if ptrace PTRACE_GETFPXREGS failed in 32bit.
4100
1570b33e
L
41012010-04-07 H.J. Lu <hongjiu.lu@intel.com>
4102
4103 * Makefile.in (clean): Updated.
4104 (i386-avx.o): New.
4105 (i386-avx.c): Likewise.
4106 (i386-avx-linux.o): Likewise.
4107 (i386-avx-linux.c): Likewise.
4108 (amd64-avx.o): Likewise.
4109 (amd64-avx.c): Likewise.
4110 (amd64-avx-linux.o): Likewise.
4111 (amd64-avx-linux.c): Likewise.
4112
4113 * configure.srv (srv_i386_regobj): Add i386-avx.o.
4114 (srv_i386_linux_regobj): Add i386-avx-linux.o.
4115 (srv_amd64_regobj): Add amd64-avx.o.
4116 (srv_amd64_linux_regobj): Add amd64-avx-linux.o.
4117 (srv_i386_32bit_xmlfiles): Add i386/32bit-avx.xml.
4118 (srv_i386_64bit_xmlfiles): Add i386/64bit-avx.xml.
4119 (srv_i386_xmlfiles): Add i386/i386-avx.xml.
4120 (srv_amd64_xmlfiles): Add i386/amd64-avx.xml.
4121 (srv_i386_linux_xmlfiles): Add i386/i386-avx-linux.xml.
4122 (srv_amd64_linux_xmlfiles): Add i386/amd64-avx-linux.xml.
4123
4124 * i387-fp.c: Include "i386-xstate.h".
4125 (i387_xsave): New.
4126 (i387_cache_to_xsave): Likewise.
4127 (i387_xsave_to_cache): Likewise.
4128 (x86_xcr0): Likewise.
4129
4130 * i387-fp.h (i387_cache_to_xsave): Likewise.
4131 (i387_xsave_to_cache): Likewise.
4132 (x86_xcr0): Likewise.
4133
4134 * linux-arm-low.c (target_regsets): Initialize nt_type to 0.
4135 * linux-crisv32-low.c (target_regsets): Likewise.
4136 * linux-m68k-low.c (target_regsets): Likewise.
4137 * linux-mips-low.c (target_regsets): Likewise.
4138 * linux-ppc-low.c (target_regsets): Likewise.
4139 * linux-s390-low.c (target_regsets): Likewise.
4140 * linux-sh-low.c (target_regsets): Likewise.
4141 * linux-sparc-low.c (target_regsets): Likewise.
4142 * linux-xtensa-low.c (target_regsets): Likewise.
4143
4144 * linux-low.c: Include <sys/uio.h>.
4145 (regsets_fetch_inferior_registers): Support nt_type.
4146 (regsets_store_inferior_registers): Likewise.
4147 (linux_process_qsupported): New.
4148 (linux_target_ops): Add linux_process_qsupported.
4149
4150 * linux-low.h (regset_info): Add nt_type.
4151 (linux_target_ops): Add process_qsupported.
4152
4153 * linux-x86-low.c: Include "i386-xstate.h", "elf/common.h"
4154 and <sys/uio.h>.
4155 (init_registers_i386_avx_linux): New.
4156 (init_registers_amd64_avx_linux): Likewise.
4157 (xmltarget_i386_linux_no_xml): Likewise.
4158 (xmltarget_amd64_linux_no_xml): Likewise.
4159 (PTRACE_GETREGSET): Likewise.
4160 (PTRACE_SETREGSET): Likewise.
4161 (x86_fill_xstateregset): Likewise.
4162 (x86_store_xstateregset): Likewise.
4163 (use_xml): Likewise.
4164 (x86_linux_update_xmltarget): Likewise.
4165 (x86_linux_process_qsupported): Likewise.
4166 (target_regsets): Add NT_X86_XSTATE entry and Initialize nt_type.
4167 (x86_arch_setup): Don't call init_registers_amd64_linux nor
4168 init_registers_i386_linux here. Call
4169 x86_linux_update_xmltarget.
4170 (the_low_target): Add x86_linux_process_qsupported.
4171
4172 * server.c (handle_query): Call target_process_qsupported.
4173
4174 * target.h (target_ops): Add process_qsupported.
4175 (target_process_qsupported): New.
4176
fc7238bb
PA
41772010-04-03 Pedro Alves <pedro@codesourcery.com>
4178
4179 * inferiors.c (add_thread): Set last_status kind to
4180 TARGET_WAITKIND_IGNORE.
4181 * linux-low.c (cancel_breakpoint): Remove unnecessary regcache
4182 fetch. Use ptid_of. Avoid unnecessary get_lwp_thread calls.
4183 (linux_wait_1): Move `thread' local definition to block that uses
4184 it. Don't NULL initialize `event_child'.
4185 (linux_resume_one_thread): Avoid unnecessary get_lwp_thread calls.
4186 Alway set the thread's last_status to TARGET_WAITKIND_IGNORE.
4187 * linux-x86-low.c (x86_breakpoint_at): Read raw memory.
4188
bdabb078
PA
41892010-04-01 Pedro Alves <pedro@codesourcery.com>
4190
4191 * linux-low.c (get_stop_pc): Don't adjust the PC if stopped with
4192 an extended waitstatus, or by a watchpoint.
4193 (cancel_breakpoints_callback): Don't cancel a breakpoint if the
4194 thread was stepping or has been stopped by a watchpoint.
4195
d3bbe7a0
PA
41962010-04-01 Pedro Alves <pedro@codesourcery.com>
4197
4198 * mem-break.c (struct raw_breakpoint): New field shlib_disabled.
4199 (set_gdb_breakpoint_at): If GDB is inserting a breakpoint on top
4200 of another, then delete the previous, and validate all
4201 breakpoints.
4202 (validate_inserted_breakpoint): New.
4203 (delete_disabled_breakpoints): New.
4204 (validate_breakpoints): New.
4205 (check_mem_read): Validate breakpoints before trusting their
4206 shadow. Delete disabled breakpoints.
4207 (check_mem_write): Validate breakpoints before trusting they
4208 should be inserted. Delete disabled breakpoints.
4209 * mem-break.h (validate_breakpoints):
4210 * server.c (handle_query): Validate breakpoints when we see a
4211 qSymbol query.
4212
8b07ae33
PA
42132010-04-01 Pedro Alves <pedro@codesourcery.com>
4214
4215 * linux-low.c (linux_wait_1): Avoid setting need_step_over is
4216 there's a GDB breakpoint at stop_pc. Always report a trap to GDB
4217 if we could tell there's a GDB breakpoint at stop_pc.
4218 (need_step_over_p): Don't do a step over if we find a GDB
4219 breakpoint at the resume PC.
4220
4221 * mem-break.c (struct raw_breakpoint): New.
4222 (enum bkpt_type): New type `gdb_breakpoint'.
4223 (struct breakpoint): Delete the `PC', `old_data' and `inserted'
4224 fields. New field `raw'.
4225 (find_raw_breakpoint_at): New.
4226 (set_raw_breakpoint_at): Handle refcounting. Create a raw
4227 breakpoint instead.
4228 (set_breakpoint_at): Adjust.
4229 (delete_raw_breakpoint): New.
4230 (release_breakpoint): New.
4231 (delete_breakpoint): Rename to...
4232 (delete_breakpoint_1): ... this. Add proc parameter. Use
4233 release_breakpoint. Return ENOENT.
4234 (delete_breakpoint): Reimplement.
4235 (find_breakpoint_at): Delete.
4236 (find_gdb_breakpoint_at): New.
4237 (delete_breakpoint_at): Delete.
4238 (set_gdb_breakpoint_at): New.
4239 (delete_gdb_breakpoint_at): New.
4240 (gdb_breakpoint_here): New.
4241 (set_reinsert_breakpoint): Use release_breakpoint.
4242 (uninsert_breakpoint): Rename to ...
4243 (uninsert_raw_breakpoint): ... this.
4244 (uninsert_breakpoints_at): Adjust to handle raw breakpoints.
4245 (reinsert_raw_breakpoint): Change parameter type to
4246 raw_breakpoint.
4247 (reinsert_breakpoints_at): Adjust to handle raw breakpoints
4248 instead.
4249 (check_breakpoints): Adjust. Use release_breakpoint.
4250 (breakpoint_here): Rewrite using find_raw_breakpoint_at.
4251 (breakpoint_inserted_here): Ditto.
4252 (check_mem_read): Adjust to iterate over raw breakpoints instead.
4253 Don't trust the breakpoint's shadow if it is not inserted.
4254 (check_mem_write): Adjust to iterate over raw breakpoints instead.
4255 (delete_all_breakpoints): Adjust.
4256 (free_all_breakpoints): Mark all breakpoints as uninserted, and
4257 use delete_breakpoint_1.
4258
4259 * mem-break.h (breakpoints_supported): Delete declaration.
4260 (set_gdb_breakpoint_at): Declare.
4261 (gdb_breakpoint_here): Declare.
4262 (delete_breakpoint_at): Delete.
4263 (delete_gdb_breakpoint_at): Declare.
4264
4265 * server.h (struct raw_breakpoint): Forward declare.
4266 (struct process_info): New field `raw_breakpoints'.
4267
4268 * linux-x86-low.c (x86_insert_point, x86_remote_point): Handle Z0
4269 breakpoints.
4270
6bf5e0ba
PA
42712010-03-24 Pedro Alves <pedro@codesourcery.com>
4272
4273 * linux-low.c (status_pending_p_callback): Fix comment.
4274 (linux_wait_for_event_1): Move most of the internal breakpoint
4275 handling from here...
4276 (linux_wait_1): ... to here.
4277 (count_events_callback): New.
4278 (select_singlestep_lwp_callback): New.
4279 (select_event_lwp_callback): New.
4280 (cancel_breakpoints_callback): New.
4281 (select_event_lwp): New.
4282 (linux_wait_1): Simplify internal breakpoint handling. Give equal
4283 priority to all LWPs that have had events that should be reported
4284 to the client. Cancel breakpoints when about to reporting the
4285 event to the client, not while stopping lwps. No longer cancel
4286 finished single-steps here.
4287 (cancel_finished_single_step): Delete.
4288 (cancel_finished_single_steps): Delete.
4289
414a389f
PA
42902010-03-24 Pedro Alves <pedro@codesourcery.com>
4291
4292 * mem-break.c (enum bkpt_type): New.
4293 (struct breakpoint): New field `type'.
4294 (set_breakpoint_at): Change return type to struct breakpoint
4295 pointer. Set type to `other_breakpoint' by default.
4296 (delete_breakpoint): Rewrite, supporting more than one breakpoint
4297 in the breakpoint list.
4298 (delete_reinsert_breakpoints): Only delete reinsert breakpoints.
4299 (reinsert_breakpoint): Rename to ...
4300 (reinsert_raw_breakpoint): ... this.
4301 (reinsert_breakpoints_at): Adjust.
4302 * mem-break.h (struct breakpoint): Declare.
4303 (set_breakpoint_at): Change return type to struct breakpoint
4304 pointer.
4305
2280c721
PA
43062010-03-24 Pedro Alves <pedro@codesourcery.com>
4307
4308 * server.c (handle_query): Assign, not compare.
4309
d50171e4
PA
43102010-03-24 Pedro Alves <pedro@codesourcery.com>
4311
4312 Teach linux gdbserver to step-over-breakpoints.
4313
4314 * linux-low.c (can_hardware_single_step): New.
4315 (supports_breakpoints): New.
4316 (handle_extended_wait): If stopping threads, read the stop pc of
4317 the new cloned LWP.
4318 (get_pc): New.
4319 (get_stop_pc): Add `lwp' parameter. Handle it. Bail out if the
4320 low target doesn't support retrieving the PC.
4321 (add_lwp): Set last_resume_kind to resume_continue.
4322 (linux_attach_lwp_1): Adjust comments. Always set stop_expected.
4323 (linux_attach): Don't clear stop_expected. Set the lwp's
4324 last_resume_kind to resume_stop.
4325 (linux_detach_one_lwp): Don't check for removed breakpoints.
4326 (check_removed_breakpoint): Delete.
4327 (status_pending_p): Rename to ...
4328 (status_pending_p_callback): ... this. Don't check for removed
4329 breakpoints. Don't consider threads that are stopped from GDB's
4330 perspective.
4331 (linux_wait_for_lwp): Always read the stop_pc here.
4332 (cancel_breakpoint): New.
4333 (step_over_bkpt): New global.
4334 (linux_wait_for_event_1): Implement stepping over breakpoints.
4335 (gdb_wants_lwp_stopped): New.
4336 (gdb_wants_all_stopped): New.
4337 (linux_wait_1): Tag threads as gdb-wants-stopped. Cancel finished
4338 single-step traps here. Store the thread's last reported target
4339 wait status.
4340 (send_sigstop): Don't clear stop_expected. Always set it,
4341 instead.
4342 (mark_lwp_dead): Remove reference to pending_is_breakpoint.
4343 (cancel_finished_single_step): New.
4344 (cancel_finished_single_steps): New.
4345 (wait_for_sigstop): Don't cancel finished single-step traps here.
4346 (linux_resume_one_lwp): Don't check for removed breakpoints.
4347 Don't set `step' on non-hardware step archs.
4348 (linux_set_resume_request): Ignore resume_stop requests if already
4349 stopping or stopped. Set the lwp's last_resume_kind.
4350 (resume_status_pending_p): Don't check for removed breakpoints.
4351 (need_step_over_p): New.
4352 (start_step_over): New.
4353 (finish_step_over): New.
4354 (linux_resume_one_thread): Always queue a sigstop for resume_stop
4355 requests. Clear the thread's last reported target waitstatus.
4356 Don't use the `suspended' flag. Don't consider pending breakpoints.
4357 (linux_resume): Start a step-over if necessary.
4358 (proceed_one_lwp): New.
4359 (proceed_all_lwps): New.
4360 (unstop_all_lwps): New.
4361 * linux-low.h (struct lwp_info): Rewrite comment for the
4362 `suspended' flag. Add the `stop_pc' field. Delete the
4363 `pending_stop_pc' field. Tweak the `stepping' flag's comment.
4364 Add `'last_resume_kind' and `need_step_over' fields.
4365 * inferiors.c (struct thread_info): Delete, moved elsewhere.
4366 * mem-break.c (struct breakpoint): Delete `reinserting' flag.
4367 Delete `breakpoint_to_reinsert' field. New flag `inserted'.
4368 (set_raw_breakpoint_at): New.
4369 (set_breakpoint_at): Rewrite to use it.
4370 (reinsert_breakpoint_handler): Delete.
4371 (set_reinsert_breakpoint): New.
4372 (reinsert_breakpoint_by_bp): Delete.
4373 (delete_reinsert_breakpoints): New.
4374 (uninsert_breakpoint): Rewrite.
4375 (uninsert_breakpoints_at): New.
4376 (reinsert_breakpoint): Rewrite.
4377 (reinsert_breakpoints_at): New.
4378 (check_breakpoints): Rewrite.
4379 (breakpoint_here): New.
4380 (breakpoint_inserted_here): New.
4381 (check_mem_read): Adjust.
4382 * mem-break.h (breakpoints_supported, breakpoint_here)
4383 (breakpoint_inserted_here, set_reinsert_breakpoint): Declare.
4384 (reinsert_breakpoint_by_bp): Delete declaration.
4385 (delete_reinsert_breakpoints): Declare.
4386 (reinsert_breakpoint): Delete declaration.
4387 (reinsert_breakpoints_at): Declare.
4388 (uninsert_breakpoint): Delete declaration.
4389 (uninsert_breakpoints_at): Declare.
4390 (check_breakpoints): Adjust prototype.
4391 * server.h: Adjust include order.
4392 (struct thread_info): Declare here. Add a `last_status' field.
4393
30ba68cb
MS
43942010-03-23 Michael Snyder <msnyder@vmware.com>
4395
4396 * server.c (crc32): New function.
4397 (handle_query): Add handling for 'qCRC:' request.
4398
b9a881c2
PA
43992010-03-23 Pedro Alves <pedro@codesourcery.com>
4400
4401 * linux-x86-low.c (x86_linux_prepare_to_resume): Clear DR6 if the
4402 lwp had been stopped by a watchpoint.
4403
e92d13d5
PA
44042010-03-16 Pedro Alves <pedro@codesourcery.com>
4405
4406 * server.h (internal_error): Declare.
4407 (gdb_assert, ASSERT_FUNCTION, gdb_assert_fail): Define.
4408 * utils.c (internal_error): New function.
4409
64daa791
AS
44102010-03-15 Andreas Schwab <schwab@redhat.com>
4411
4412 * configure.srv: Fix typo setting srv_regobj.
4413
f52cd8cd
PA
44142010-03-15 Pedro Alves <pedro@codesourcery.com>
4415
4416 * linux-low.c (fetch_register): Avoid passing a non string literal
4417 format to `error'.
4418 (usr_store_inferior_registers): Ditto.
4419
93ae6fdc
PA
44202010-03-14 Pedro Alves <pedro@codesourcery.com>
4421
4422 * linux-low.c (linux_write_memory): Bail out early if peeking
4423 memory failed.
4424
c3adc08c
PA
44252010-03-14 Pedro Alves <pedro@codesourcery.com>
4426
4427 * linux-low.h (struct lwp_info): New fields
4428 `stopped_by_watchpoint' and `stopped_data_address'.
4429 * linux-low.c (linux_wait_for_lwp): Check for watchpoint triggers
4430 here, and cache them in the lwp object.
4431 (wait_for_sigstop): Check stopped_by_watchpoint lwp field
4432 directly.
4433 (linux_resume_one_lwp): Clear the lwp's stopped_by_watchpoint
4434 field.
4435 (linux_stopped_by_watchpoint): Rewrite.
4436 (linux_stopped_data_address): Rewrite.
4437
bce522a2
PA
44382010-03-06 Simo Melenius <simo.melenius@iki.fi>
4439
4440 * linux-low.c (linux_wait_for_lwp): Fetch the regcache after
4441 switching the current inferior, not before.
4442
90884b2b
L
44432010-03-01 H.J. Lu <hongjiu.lu@intel.com>
4444
4445 * Makefile.in (clean): Replace reg-i386.c, reg-x86-64.c,
4446 reg-i386-linux.c and reg-x86-64-linux.c with i386.c, amd64.c,
4447 i386-linux.c and amd64-linux.c.
4448 (reg-i386.o): Removed.
4449 (reg-i386.c): Likewise.
4450 (reg-i386-linux.o): Likewise.
4451 (reg-i386-linux.c): Likewise.
4452 (reg-x86-64.o): Likewise.
4453 (reg-x86-64.c): Likewise.
4454 (reg-x86-64-linux.o): Likewise.
4455 (reg-x86-64-linux.c): Likewise.
4456 (i386.o): New.
4457 (i386.c): Likewise.
4458 (i386-linux.o): Likewise.
4459 (i386-linux.c): Likewise.
4460 (amd64.o): Likewise.
4461 (amd64.c): Likewise.
4462 (amd64-linux.o): Likewise.
4463 (amd64-linux.c): Likewise.
4464
4465 * configure.srv (srv_i386_regobj): New.
4466 (srv_i386_linux_regobj): Likewise.
4467 (srv_amd64_regobj): Likewise.
4468 (srv_amd64_linux_regobj): Likewise.
4469 (srv_i386_32bit_xmlfiles): Likewise.
4470 (srv_i386_64bit_xmlfiles): Likewise.
4471 (srv_i386_xmlfiles): Likewise.
4472 (srv_amd64_xmlfiles): Likewise.
4473 (srv_i386_linux_xmlfiles): Likewise.
4474 (srv_amd64_linux_xmlfiles): Likewise.
4475 (i[34567]86-*-cygwin*): Set srv_regobj to $srv_i386_regobj. Set
4476 srv_xmlfiles to $srv_i386_xmlfiles.
4477 (i[34567]86-*-mingw32ce*): Likewise.
4478 (i[34567]86-*-mingw*): Likewise.
4479 (i[34567]86-*-nto*): Likewise.
4480 (i[34567]86-*-linux*): Set srv_regobj to $srv_i386_linux_regobj
4481 and $srv_amd64_linux_regobj. Set srv_xmlfiles to
4482 $srv_i386_linux_xmlfiles and $srv_amd64_linux_xmlfiles.
4483 (x86_64-*-linux*): Likewise.
4484
4485 * linux-x86-low.c (init_registers_x86_64_linux): Removed.
4486 (init_registers_amd64_linux): New.
4487 (x86_arch_setup): Replace init_registers_x86_64_linux with
4488 init_registers_amd64_linux.
4489
193f13e6
MK
44902010-02-23 Maxim Kuvyrkov <maxim@codesourcery.com>
4491
4492 * configure.ac: Check for libdl. If it is not available link against
4493 static libthread_db.
4494 * configure: Regenerate.
4495
85d721b8
PA
44962010-02-22 Pedro Alves <pedro@codesourcery.com>
4497
4498 PR9605
4499
4500 * i386-low.c (i386_length_and_rw_bits): Throw a fatal error if
4501 handing a read watchpoint.
4502 (i386_low_insert_watchpoint): Read watchpoints aren't supported.
4503
6076632b
DE
45042010-02-12 Doug Evans <dje@google.com>
4505
4506 * linux-low.c (linux_supports_tracefork_flag): Document.
4507 (linux_look_up_symbols): Add comment.
4508
3327ccf7
L
45092010-02-03 H.J. Lu <hongjiu.lu@intel.com>
4510
4511 * regcache.c (supply_register): Clear regcache if buf is NULL.
4512
0718675c 45132010-02-02 Nicolas Roche <roche@sourceware.org>
3327ccf7 4514 Joel Brobecker <brobecker@adacore.com>
0718675c
JB
4515
4516 * inferiors.c (find_inferior): Add function documentation.
4517 (unloaded_dll): Handle the case where the unloaded dll has not
4518 been previously registered in the dll list.
4519
177321bd
DJ
45202010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
4521
4522 * linux-arm-low.c (thumb_breakpoint_len): Delete.
4523 (thumb2_breakpoint): New.
4524 (arm_breakpoint_at): Check for Thumb-2 breakpoints.
4525
2b009048
DJ
45262010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
4527
4528 * linux-low.c (get_stop_pc): Check for SIGTRAP.
4529 (linux_wait_for_event_1): Handle SIGILL and SIGSEGV as possible
4530 breakpoints.
4531
3be029c7
PA
45322010-01-21 Pedro Alves <pedro@codesourcery.com>
4533
4534 * linux-ppc-low.c (ppc_arch_setup): Adjust to regcache changes.
4535
18f5de3b
JK
45362010-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
4537
4538 * linux-s390-low.c (s390_collect_ptrace_register)
4539 (s390_supply_ptrace_register): Adjust it for the new regcache parameter.
4540
3743bb4f
DE
45412010-01-21 Doug Evans <dje@google.com>
4542
14ce3065
DE
4543 * linux-low.c (PTRACE_ARG3_TYPE): Change from long to void*.
4544 (PTRACE_ARG4_TYPE): New macro.
4545 (handle_extended_wait): Cast ptrace arg4 to PTRACE_ARG4_TYPE.
4546 (linux_wait_for_event_1, linux_resume_one_lwp): Ditto.
4547 (fetch_register): Cast to uintptr_t before casting to PTRACE_ARG3_TYPE.
4548 (usr_store_inferior_registers): Ditto.
4549 (linux_read_memory, linux_write_memory): Ditto.
4550 (linux_test_for_tracefork): Ditto.
4551
3743bb4f
DE
4552 * linux-arm-low.c: Remove redundant include of gdb_proc_service.h.
4553 Only include elf.h if gdb_proc_service.h didn't include linux/elf.h.
4554
8b315be5
PA
45552010-01-21 Pedro Alves <pedro@codesourcery.com>
4556
4557 * proc-service.c (ps_lgetregs): Don't refetch registers from the
4558 target.
4559
85492558
PA
45602010-01-21 Pedro Alves <pedro@codesourcery.com>
4561
4562 * spu-low.c (spu_fetch_registers, spu_store_registers): Change
4563 prototype to take a regcache. Adjust.
4564
442ea881
PA
45652010-01-20 Pedro Alves <pedro@codesourcery.com>
4566
4567 * regcache.h (struct thread_info): Forward declare.
4568 (struct regcache): New.
4569 (new_register_cache): Adjust prototype.
4570 (get_thread_regcache): Declare.
4571 (free_register_cache): Adjust prototype.
4572 (registers_to_string, registers_from_string): Ditto.
4573 (supply_register, supply_register_by_name, collect_register)
4574 (collect_register_as_string, collect_register_by_name): Ditto.
4575 * regcache.c (struct inferior_regcache_data): Delete.
4576 (get_regcache): Rename to ...
4577 (get_thread_regcache): ... this. Adjust. Switch inferior before
4578 fetching registers.
4579 (regcache_invalidate_one): Adjust.
4580 (regcache_invalidate): Fix prototype.
4581 (new_register_cache): Return the new register cache.
4582 (free_register_cache): Change prototype.
4583 (realloc_register_cache): Adjust.
4584 (registers_to_string): Change prototype to take a regcache. Adjust.
4585 (registers_from_string): Ditto.
4586 (register_data): Ditto.
4587 (supply_register): Ditto.
4588 (supply_register_by_name): Ditto.
4589 (collect_register): Ditto.
4590 (collect_register_as_string): Ditto.
4591 (collect_register_by_name): Ditto.
4592 * server.c (process_serial_event): Adjust.
4593 * linux-low.h (regset_fill_func, regset_store_func): Change
4594 prototype.
4595 (get_pc, set_pc, collect_ptrace_register, supply_ptrace_register):
4596 Change prototype.
4597 * linux-low.c (get_stop_pc): Adjust.
4598 (check_removed_breakpoint): Adjust.
4599 (linux_wait_for_event): Adjust.
4600 (linux_resume_one_lwp): Adjust.
4601 (fetch_register): Add regcache parameter. Adjust.
4602 (usr_store_inferior_registers): Ditto.
4603 (regsets_fetch_inferior_registers): Ditto.
4604 (regsets_store_inferior_registers): Ditto.
4605 (linux_fetch_registers, linux_store_registers): Ditto.
4606 * i387-fp.c (i387_cache_to_fsave): Change prototype to take a
4607 regcache. Adjust.
43aaf8b6
PA
4608 (i387_fsave_to_cache, i387_cache_to_fxsave, i387_fxsave_to_cache):
4609 Ditto.
442ea881
PA
4610 * i387-fp.h (i387_cache_to_fsave, i387_fsave_to_cache): Change
4611 prototype to take a regcache.
4612 (i387_cache_to_fxsave, i387_fxsave_to_cache): Ditto.
4613 * remote-utils.c (convert_ascii_to_int, outreg)
4614 (prepare_resume_reply): Change prototype to take a regcache.
4615 Adjust.
4616 * target.h (struct target_ops) <fetch_registers, store_registers>:
4617 Change prototype to take a regcache.
4618 (fetch_inferior_registers, store_inferior_registers): Change
4619 prototype to take a regcache. Adjust.
4620 * proc-service.c (ps_lgetregs): Adjust.
4621 * linux-x86-low.c (x86_fill_gregset, x86_store_gregset)
4622 (x86_fill_fpregset, x86_store_fpregset, x86_fill_fpxregset)
4623 (x86_store_fpxregset, x86_get_pc, x86_set_pc): Change prototype to
4624 take a regcache. Adjust.
4625 * linux-arm-low.c (arm_fill_gregset, arm_store_gregset)
4626 (arm_fill_wmmxregset, arm_store_wmmxregset, arm_fill_vfpregset)
4627 (arm_store_vfpregset, arm_get_pc, arm_set_pc):
4628 (arm_breakpoint_at): Change prototype to take a regcache. Adjust.
4629 * linux-cris-low.c (cris_get_pc, cris_set_pc)
4630 (cris_cannot_fetch_register):
4631 (cris_breakpoint_at): Change prototype to take a regcache.
4632 Adjust.
4633 * linux-crisv32-low.c (cris_get_pc, cris_set_pc,
4634 cris_reinsert_addr, cris_write_data_breakpoint): Change prototype
4635 to take a regcache. Adjust.
4636 (cris_breakpoint_at, cris_insert_point, cris_remove_point):
4637 Adjust.
4638 * linux-m32r-low.c (m32r_get_pc, m32r_set_pc): Change prototype to
4639 take a regcache. Adjust.
4640 * linux-m68k-low.c (m68k_fill_gregset, m68k_store_gregset)
4641 (m68k_fill_fpregset, m68k_store_fpregset, m68k_get_pc,
4642 (m68k_set_pc): Change prototype to take a regcache. Adjust.
4643 * linux-mips-low.c (mips_get_pc):
4644 (mips_set_pc): Change prototype to take a regcache. Adjust.
4645 (mips_reinsert_addr): Adjust.
4646 (mips_collect_register): Change prototype to take a regcache.
4647 Adjust.
4648 (mips_supply_register):
4649 (mips_collect_register_32bit, mips_supply_register_32bit)
4650 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
4651 (mips_store_fpregset): Ditto.
43aaf8b6
PA
4652 * linux-ppc-low.c (ppc_supply_ptrace_register)
4653 (ppc_supply_ptrace_register): Ditto.
442ea881
PA
4654 (parse_spufs_run): Adjust.
4655 (ppc_get_pc, ppc_set_pc, ppc_fill_gregset, ppc_fill_vsxregset)
4656 (ppc_store_vsxregset, ppc_fill_vrregset, ppc_store_vrregset)
4657 (ppc_fill_evrregset, ppc_store_evrregset): Change prototype to
4658 take a regcache. Adjust.
4659 * linux-s390-low.c (s390_collect_ptrace_register)
4660 (s390_supply_ptrace_register, s390_fill_gregset, s390_get_pc)
4661 (s390_set_pc): Change prototype to take a regcache. Adjust.
4662 (s390_arch_setup): Adjust.
4663 * linux-sh-low.c (sh_get_pc, sh_breakpoint_at)
4664 (sh_fill_gregset): Change prototype to take a regcache. Adjust.
4665 * linux-sparc-low.c (sparc_fill_gregset_to_stack)
4666 (sparc_fill_gregset, sparc_store_gregset_from_stack)
4667 (sparc_store_gregset, sparc_get_pc): Change prototype to take a
4668 regcache. Adjust.
4669 (sparc_breakpoint_at): Adjust.
4670 * linux-xtensa-low.c (xtensa_fill_gregset):
4671 (xtensa_store_gregset):
4672 (xtensa_fill_xtregset, xtensa_store_xtregset, xtensa_get_pc)
4673 (xtensa_set_pc): Change prototype to take a regcache. Adjust.
4674 * nto-low.c (nto_fetch_registers, nto_store_registers): Change
4675 prototype to take a regcache. Adjust.
4676 * win32-arm-low.c (arm_fetch_inferior_register)
4677 (arm_store_inferior_register): Change prototype to take a
4678 regcache. Adjust.
4679 * win32-i386-low.c (i386_fetch_inferior_register)
4680 (i386_store_inferior_register): Change prototype to take a
4681 regcache. Adjust.
4682 * win32-low.c (child_fetch_inferior_registers)
4683 (child_store_inferior_registers): Change prototype to take a
4684 regcache. Adjust.
4685 (win32_wait): Adjust.
4686 (win32_fetch_inferior_registers): Change prototype to take a
4687 regcache. Adjust.
4688 (win32_store_inferior_registers): Adjust.
4689 * win32-low.h (struct win32_target_ops) <fetch_inferior_register,
4690 store_inferior_register>: Change prototype to take a regcache.
4691
60c3d7b0
DE
46922010-01-20 Doug Evans <dje@google.com>
4693
4694 * linux-low.c (linux_create_inferior): Wrap use of __SIGRTMIN in
4695 #ifdef.
4696 (linux_wait_for_event1, linux_init_signals): Ditto.
ec8ebe72 4697 (W_STOPCODE): Provide definition if missing.
60c3d7b0 4698
dc146f7c
VP
46992010-01-13 Vladimir Prus <vladimir@codesourcery.com>
4700
4701 * linux-low.c (linux_core_of_thread): New.
4702 (compare_ints, show_process, list_threads): New.
4703 (linux_qxfer_osdata): Report threads and cores.
4704 (linux_target_op): Register linux_core_of_thread.
4705 * remote-utils.c (prepare_resume_reply): Report the core.
4706 (buffer_xml_printf): Support %d specifier.
4707 * server.c (handle_threads_qxfer_proper, handle_threads_qxfer):
4708 New.
4709 (handle_query): Handle qXfer:threads. Announce availability
4710 thereof.
4711 * target.h (struct target_ops): New field core_of_thread.
4712
7803799a
UW
47132010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
4714
4715 * Makefile.in (clean): Remove new generated files.
4716 (reg-s390.o, reg-s390.c): Remove rules.
4717 (reg-s390x.o, reg-s390x.c): Likewise.
4718 (s390-linux32.o, s390-linux32.c): Add rules.
4719 (s390-linux64.o, s390-linux64.c): Likewise.
4720 (s390x-linux64.o, s390x-linux64.c): Likewise.
4721 * configure.srv (s390*-*-linux*): Update srv_regobj and srv_xmlfiles.
4722 * linux-s390-low.c: Include <elf.h>.
4723 (HWCAP_S390_HIGH_GPRS): Define if undefined.
4724 (init_registers_s390): Remove prototype.
4725 (init_registers_s390x): Likewise.
4726 (init_registers_s390_linux32): Add prototype.
4727 (init_registers_s390_linux64): Likewise.
4728 (init_registers_s390x_linux64): Likewise.
4729 (s390_num_regs_3264): New define.
4730 (s390_regmap_3264): New global variable.
4731 (s390_cannot_fetch_register): Remove obsolete check.
4732 (s390_cannot_store_register): Likewise.
4733 (s390_collect_ptrace_register): Handle upper/lower register halves.
4734 (s390_supply_ptrace_register): Likewise.
4735 (s390_fill_gregset): Update to register number changes.
4736 (s390_get_hwcap): New routine.
4737 (s390_arch_setup): Detect 32-bit process running on 64-bit system.
4738 Install appropriate regmap and register set.
4739
6e7ffa39
JB
47402010-01-01 Joel Brobecker <brobecker@adacore.com>
4741
4742 * server.c (gdbserver_version): Update copyright year to 2010.
4743 * gdbreplay.c (gdbreplay_version): Likewise.
4744
957f3f49
DE
47452009-12-28 Doug Evans <dje@google.com>
4746
4747 * linux-low.c: Delete inclusion of ansidecl.h, elf/common.h,
4748 elf/external.h. Include <elf.h> instead but only if necessary.
4749
ca5c370d
PA
47502009-12-28 Pedro Alves <pedro@codesourcery.com>
4751
4752 * linux-low.c (linux_remove_process): Remove `detaching'
4753 parameter. Don't release/detach from thread_db here.
4754 (linux_kill): Release/detach from thread_db here, ...
4755 (linux_detach): ... and here, before actually detaching.
4756 (linux_wait_1): ... and here, when a process exits.
4757 * thread-db.c (any_thread_of): New.
4758 (thread_db_free): Switch the current inferior to a thread of the
4759 passed in process.
4760
4ee62156
DE
47612009-12-21 Doug Evans <dje@google.com>
4762
d90e6a88
DE
4763 * linux-x86-low.c: Delete outdated comment about Elf32_Phdr.
4764
c5f62d5f
DE
4765 * linux-low.c (kill_lwp): Use __NR_tkill instead of SYS_tkill.
4766 Move definition of tkill_failed to ifdef __NR_tkill to avoid gcc
4767 warning ifndef __NR_tkill. Move setting of errno there too.
4768 Delete unnecessary resetting of errno after syscall.
4769 Minor comment changes to match gdb/linux-nat.c:kill_lwp.
4770
10e86dd7
DE
4771 * configure.ac: Check for dladdr.
4772 * config.in: Regenerate.
4773 * configure: Regenerate.
4774 * thread-db.c (dladdr_to_soname): Only define ifdef HAVE_DLADDR.
4775 (try_thread_db_load): Update.
4776
4ee62156
DE
4777 * linux-low.c (my_waitpid): Delete unnecessary prototype.
4778
00f515da
DE
47792009-12-18 Doug Evans <dje@google.com>
4780
e9464885
DE
4781 * event-loop.c: Include unistd.h if it exists.
4782
07d4f67e
DE
4783 * linux-low.c (my_waitpid): Move definition away from being in
4784 between linux_tracefork_child/linux_test_for_tracefork.
4785
00f515da
DE
4786 * gdb_proc_service.h (psaddr_t): Fix type.
4787 * thread-db.c (thread_db_info.td_thr_tls_get_addr_p): Fix
4788 signature to match glibc.
4789
1de1badb
DE
47902009-12-16 Doug Evans <dje@google.com>
4791
4792 * linux-low.c (linux_read_memory): Fix argument to read.
4793
aeeb81d1
PA
47942009-11-26 Pedro Alves <pedro@codesourcery.com>
4795
4796 * win32-low.c (get_child_debug_event): On EXIT_THREAD_DEBUG_EVENT
4797 events, don't leave current_inferior pointing at null.
4798
10357975
PA
47992009-11-26 Pedro Alves <pedro@codesourcery.com>
4800
4801 * win32-low.c (LOG): Delete.
4802 (OUTMSG): Output to stderr.
4803 (OUTMSG2): Conditionalize on `debug_threads' variable, instead of
4804 on compile time LOG macro.
4805 (win32_wait): Fix debug output.
4806
cf6e3471
PA
48072009-11-26 Pedro Alves <pedro@codesourcery.com>
4808
4809 * win32-low.c (win32_add_one_solib): If the dll name is
4810 "ntdll.dll", prepend the system directory to the dll path.
4811
0c85e18e
MK
48122009-11-17 Daniel Jacobowitz <dan@codesourcery.com>
4813
4814 * m68k-tdep.c (m68k_gdbarch_init): Reuse previous initialization.
4815
9ac544ce 48162009-11-17 Nathan Sidwell <nathan@codesourcery.com>
889bf7c5 4817 Vladimir Prus <vladimir@codesourcery.com>
9ac544ce
MK
4818
4819 * Makefile.in (reg-cf.o, reg-cf.c): New targets.
4820 * configure.ac: Check for __mcoldfire__ and set
4821 gdb_cv_m68k_is_coldfire.
4822 * configure.srv: Use gdb_cv_m68k_is_coldfire to select between
4823 reg-cf.o and reg-m68k.o.
4824 * configure: Regenerated.
4825
fd7dd3e6
PA
48262009-11-16 Pedro Alves <pedro@codesourcery.com>
4827
4828 * linux-low.c (linux_remove_process): Add `detaching' parameter.
4829 Pass it to thread_db_free.
4830 (linux_kill, linux_detach, linux_wait_1): Adjust to pass the
4831 proper `detaching' argument to linux_remove_process.
4832 * linux-low.h (thread_db_free): Add `detaching' parameter.
4833 * thread-db.c (thread_db_init): Pass false as `detaching' argument
4834 to thread_db_free.
4835 (thread_db_free): Add `detaching' parameter. Only
4836 call td_ta_clear_event if detaching from process.
4837
75aa492e
MK
48382009-11-12 Maxim Kuvyrkov <maxim@codesourcery.com>
4839
4840 * thread-db.c (thread_db_free): Fix typo.
4841
21e1bee4
PP
48422009-11-11 Paul Pluzhnikov <ppluzhnikov@google.com>
4843
4844 PR gdb/10838
4845 * thread-db.c (thread_db_free): Call td_ta_clear_event.
4846
8838b45e
NS
48472009-11-03 Nathan Sidwell <nathan@codesourcery.com>
4848
4849 * configure.ac (i[34567]86-*): Check if we're targetting x86-64
4850 with an i686 compiler.
4851 * configure.srv (i[34567]86-*-linux*): Pull in x86-64 handling if
4852 needed.
4853 * configure: Rebuilt.
4854
8a35fb51
SL
48552009-10-29 Sandra Loosemore <sandra@codesourcery.com>
4856
4857 PR gdb/10783
4858
4859 * server.c (handle_search_memory_1): Correct read_addr initialization
4860 in loop for searching subsequent chunks.
4861
96f15937
PP
48622009-10-29 Paul Pluzhnikov <ppluzhnikov@google.com>
4863
4864 * configure.ac: New --with-libthread-db option.
4865 * thread-db.c: Allow direct dependence on libthread_db.
4866 (thread_db_free): Adjust.
4867 * config.in: Regenerate.
4868 * configure: Likewise.
889bf7c5 4869
5f7d1694
PP
48702009-10-28 Paul Pluzhnikov <ppluzhnikov@google.com>
4871
4872 PR gdb/10757
4873 * thread-db.c (attach_thread): New function.
4874 (maybe_attach_thread): Return success/failure.
4875 (find_new_threads_callback): Adjust.
889bf7c5
PA
4876 (thread_db_find_new_threads): Loop until no new threads.
4877
88e3b899
PA
48782009-10-13 Pedro Alves <pedro@codesourcery.com>
4879
4880 * proc-service.c (ps_lgetregs): Formatting.
4881
cdbfd419
PP
48822009-10-08 Paul Pluzhnikov <ppluzhnikov@google.com>
4883
4884 * acinclude.m4: (SRV_CHECK_THREAD_DB, SRV_CHECK_TLS_GET_ADDR): Remove.
4885 * configure.ac: Adjust.
4886 * linux-low.h (struct process_info_private): Move members to struct
4887 thread_db.
4888 (thread_db_free, thread_db_handle_monitor_command): New prototype.
4889 * linux-low.c (linux_remove_process): Adjust.
4890 (linux_wait_for_event_1, linux_look_up_symbols): Likewise.
4891 * server.c (handle_query): Move code ...
4892 (handle_monitor_command): ... here. New function.
4893 * target.h (struct target_ops): New member.
4894 * thread-db.c (struct thread_db): New.
4895 (libthread_db_search_path): New variable.
4896 (thread_db_create_event, thread_db_enable_reporting)
4897 (find_one_thread, maybe_attach_thread, find_new_threads_callback)
4898 (thread_db_find_new_threads, (thread_db_get_tls_address): Adjust.
4899 (try_thread_db_load_1, dladdr_to_soname): New functions.
4900 (try_thread_db_load, thread_db_load_search): New functions.
4901 (thread_db_init): Search for libthread_db.
4902 (thread_db_free): New function.
4903 (thread_db_handle_monitor_command): Likewise.
4904 * config.in: Regenerate.
4905 * configure: Regenerate.
889bf7c5 4906
4168d2d6
UW
49072009-09-27 Ulrich Weigand <uweigand@de.ibm.com>
4908
4909 * spu-low.c (spu_kill): Wait for inferior to terminate.
4910 Call clear_inferiors.
4911 (spu_detach): Call clear_inferiors.
4912
81ecdfbb
RW
49132009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4914
4915 * aclocal.m4: Regenerate.
4916 * config.in: Likewise.
4917 * configure: Likewise.
4918
0b9ff2c0
UW
49192009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
4920
4921 * linux-ppc-low.c (INSTR_SC, NR_spu_run): Define.
4922 (parse_spufs_run): New function.
4923 (ppc_get_pc, ppc_set_pc): Detect and handle SPU PC.
4924 (ppc_breakpoint_at): Handle SPU breakpoints.
4925
efcbbd14
UW
49262009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
4927
4928 * linux-low.c: Include <sys/stat.h> and <sys/vfs.h>.
4929 (SPUFS_MAGIC): Define.
4930 (spu_enumerate_spu_ids): New function.
4931 (linux_qxfer_spu): New function.
4932 (linux_target_ops): Install linux_qxfer_spu.
4933
f4d9bade
UW
49342009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
4935
4936 * configure.srv (powerpc*-*-linux*): Add powerpc-cell32l.o
4937 and powerpc-cell64l.o to srv_regobj. Add rs6000/powerpc-cell32l.xml
4938 and rs6000/powerpc-cell64l.xml to srv_xmlfiles.
4939 * Makefile.in (powerpc-cell32l.o, powerpc-cell32l.c): New rules.
4940 (powerpc-cell64l.o, powerpc-cell64l.c): Likewise.
4941 (clean): Handle powerpc-cell32l.c and powerpc-cell64l.c.
4942 * linux-ppc-low.c (PPC_FEATURE_CELL): Define.
4943 (init_registers_powerpc_cell32l): Add prototype.
4944 (init_registers_powerpc_cell64l): Likewise.
4945 (ppc_arch_setup): Detect Cell/B.E. architecture.
4946
96e946ca
RW
49472009-07-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4948
4949 * Makefile.in (datarootdir): New variable.
4950
58d6951d
DJ
49512009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
4952
4953 * linux-low.c (linux_write_memory): Update debugging output.
4954 * Makefile.in (clean): Add new descriptions.
4955 (arm-with-vfpv2.o, arm-with-vfpv2.c, arm-with-vfpv3.o)
4956 (arm-with-vfpv3.c, arm-with-neon.o, arm-with-neon.c): New rules.
4957 * configure.srv: Add new files for arm*-*-linux*.
4958 * linux-arm-low.c: Add new declarations.
4959 (PTRACE_GETVFPREGS, PTRACE_SETVFPREGS): Define if undefined.
4960 (arm_hwcap, HWCAP_VFP, HWCAP_IWMMXT, HWCAP_NEON, HWCAP_VFPv3)
4961 (HWCAP_VFPv3D16): New.
4962 (arm_fill_wmmxregset, arm_store_wmmxregset): Check HWCAP_IWMMXT
4963 instead of __IWMMXT__.
4964 (arm_fill_vfpregset, arm_store_vfpregset, arm_get_hwcap)
4965 (arm_arch_setup): New.
4966 (target_regsets): Remove #ifdef. Add VFP regset.
4967 (the_low_target): Use arm_arch_setup.
4968
12b42a12
DJ
49692009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
4970
4971 * linux-low.c (linux_kill_one_lwp): Adjust kernel workaround to skip
4972 the main thread again.
4973
ac8c974e
AR
49742009-07-06 Aleksandar Ristovski <aristovski@qnx.com>
4975
4976 Adding Neutrino gdbserver.
4977 * configure: Regenerated.
4978 * configure.ac: Add case for srv_qnx and set LIBS accordingly.
4979 * configure.srv (i[34567]86-*-nto*): New target.
4980 * nto-low.c, nto-low.h, nto-x86-low.c: New files.
4981 * remote-utils.c [__QNX__]: Include sys/iomgr.h
4982 (nto_comctrl) [__QNX__]: New function.
4983 (enable_async_io, disable_async_io) [__QNX__]: Call nto_comctrl.
4984
4424e0c3 49852009-07-05 Danny Backx <dannybackx@users.sourceforge.net>
7437790a
PA
4986
4987 * configure.srv (i[34567]86-*-mingw32ce*): Add i386-low.o to
4988 srv_tgtobj.
4989
912cf4ba
PA
49902009-07-04 Danny Backx <dannybackx@users.sourceforge.net>
4991 Pedro Alves <pedro@codesourcery.com>
4992
4993 * win32-i386-low.c (i386_get_thread_context): Handle systems that
4994 don't support CONTEXT_EXTENDED_REGISTERS.
4995 (i386_win32_breakpoint, i386_win32_breakpoint_len): New.
4996 (the_low_target): Install them.
4997 * win32-low.c (get_child_debug_event): Handle WaitForDebugEvent
4998 failing with ERROR_PIPE_NOT_CONNECTED.
4999
aa5ca48f
DE
50002009-06-30 Doug Evans <dje@google.com>
5001 Pierre Muller <muller@ics.u-strasbg.fr>
5002
5003 Add h/w watchpoint support to x86-linux, win32-i386.
5004 * Makefile.in (SFILES): Add i386-low.c
5005 (i386_low_h): Define.
5006 (i386-low.o): Add dependencies.
5007 (linux-x86-low.o): Add i386-low.h dependency.
5008 (win32-i386-low.o): Ditto.
5009 * i386-low.c: New file.
5010 * i386-low.h: New file.
5011 * configure.srv (i[34567]86-*-cygwin*): Add i386-low.o to srv_tgtobj.
5012 (i[34567]86-*-linux*, i[34567]86-*-mingw*, x86_64-*-linux*): Ditto.
5013 * linux-low.c (linux_add_process): Initialize arch_private.
5014 (linux_remove_process): Free arch_private.
5015 (add_lwp): Initialize arch_private.
5016 (delete_lwp): Free arch_private.
5017 (linux_resume_one_lwp): Call the_low_target.prepare_to_resume if
5018 provided.
5019 * linux-low.h (process_info_private): New member arch_private.
5020 (lwp_info): New member arch_private.
5021 (linux_target_ops): New members new_process, new_thread,
5022 prepare_to_resume.
5023 (ptid_of): New macro.
5024 * linux-x86-low.c: Include stddef.h, i386-low.h.
5025 (arch_process_info): New struct.
5026 (arch_lwp_info): New struct.
5027 (x86_linux_dr_get, x86_linux_dr_set): New functions.
5028 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
5029 (i386_dr_low_get_status): New function.
5030 (x86_insert_point, x86_remove_point): New functions.
5031 (x86_stopped_by_watchpoint): New function.
5032 (x86_stopped_data_address): New function.
5033 (x86_linux_new_process, x86_linux_new_thread): New functions.
5034 (x86_linux_prepare_to_resume): New function.
5035 (the_low_target): Add entries for insert_point, remove_point,
5036 stopped_by_watchpoint, stopped_data_address, new_process, new_thread,
5037 prepare_to_resume.
5038 * server.c (debug_hw_points): New global.
5039 (monitor_show_help): Document set debug-hw-points.
5040 (handle_query): Process "set debug-hw-points".
5041 * server.h (debug_hw_points): Declare.
5042 (paddress): Declare.
5043 * utils.c (NUMCELLS, CELLSIZE): New macros.
5044 (get_sell, xsnprintf, paddress): New functions.
5045 * win32-arm-low.c (the_low_target): Add entries for insert_point,
5046 remove_point, stopped_by_watchpoint, stopped_data_address.
5047 * win32-i386-low.c: Include i386-low.h.
5048 (debug_reg_state): Replaces dr.
5049 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
5050 (i386_dr_low_get_status): New function.
5051 (i386_insert_point, i386_remove_point): New functions.
5052 (i386_stopped_by_watchpoint): New function.
5053 (i386_stopped_data_address): New function.
5054 (i386_initial_stuff): Update.
5055 (get_thread_context,set_thread_context,i386_thread_added): Update.
5056 (the_low_target): Add entries for insert_point,
5057 remove_point, stopped_by_watchpoint, stopped_data_address.
5058 * win32-low.c (win32_insert_watchpoint): New function.
5059 (win32_remove_watchpoint): New function.
5060 (win32_stopped_by_watchpoint): New function.
5061 (win32_stopped_data_address): New function.
5062 (win32_target_ops): Add entries for insert_watchpoint,
5063 remove_watchpoint, stopped_by_watchpoint, stopped_data_address.
5064 * win32-low.h (win32_target_ops): New members insert_point,
5065 remove_point, stopped_by_watchpoint, stopped_data_address.
5066
d993e290
PA
50672009-06-25 Pedro Alves <pedro@codesourcery.com>
5068
5069 * server.c (process_serial_event): Re-return unsupported, not
5070 error, if the type isn't recognized. Re-allow supporting only
5071 insert or remove packets. Also call require_running for
5072 breakpoints. Add missing break statement to default case. Tidy.
5073 * target.h (struct target_ops): Rename insert_watchpoint to
5074 insert_point, and remove_watchpoint to remove_point.
5075
5076 * linux-low.h (struct linux_target_ops): Likewise.
5077 * linux-low.c (linux_insert_watchpoint): Rename to ...
5078 (linux_insert_point): ... this. Adjust.
5079 (linux_remove_watchpoint): Rename to ...
5080 (linux_remove_point): ... this. Adjust.
5081 (linux_target_ops): Adjust.
5082 * linux-crisv32-low.c (cris_insert_watchpoint): Rename to ...
5083 (cris_insert_point): ... this.
5084 (cris_remove_watchpoint): Rename to ...
5085 (cris_remove_point): ... this.
5086 (the_low_target): Adjust.
5087
0f54c268
PM
50882009-06-24 Pierre Muller <muller@ics.u-strasbg.fr>
5089
5090 * server.c (handle_v_kill): Pass signal_pid to
5091 kill_inferior if multi_process is zero.
5092
c6314022
AR
50932009-06-23 Aleksandar Ristovski <aristovski@qnx.com>
5094
5095 * server.c (process_serial_event): Add support for Z0 and Z1 packet.
5096 * target.h (target_ops): Comment for *_watchpoint to make it clear
5097 the functions can get types '0' and '1'.
5098
4463ce24
AR
50992009-06-22 Aleksandar Ristovski <aristovski@qnx.com>
5100
5101 * linux-low.c (usr_fetch_inferior_registers): Remove check for regno 0.
5102 * proc-service.c (ps_lgetregs): Pass -1 to fetch all registers.
5103 * regcache.c (get_regcache): Likewise.
5104 * spu-low.c (spu_fetch_registers): Remove 0 to -1 conversion.
5105 * win32-low.c (child_fetch_inferior_registers): Remove check for
5106 regno 0.
5107
cf8fd78b
PA
51082009-06-19 Aleksandar Ristovski <aristovski@qnx.com>
5109 Pedro Alves <pedro@codesourcery.com>
5110
5111 * target.h (struct target_ops) <supports_multi_process>: New
5112 callback.
5113 (target_supports_multi_process): New.
5114 * server.c (handle_query): Even if GDB reports support, only
5115 enable multi-process if the target also supports it. Report
5116 multi-process support only if the target backend supports it.
5117 * linux-low.c (linux_supports_multi_process): New function.
5118 (linux_target_ops): Install it as target_supports_multi_process
5119 callback.
5120
47c0c975
DE
51212009-05-24 Doug Evans <dje@google.com>
5122
e09875d4
DE
5123 Global renaming of find_thread_pid to find_thread_ptid.
5124 * server.h (find_thread_ptid): Renamed from find_thread_pid.
5125 * inferiors.c (find_thread_ptid): Renamed from find_thread_pid.
5126 All callers updated.
5127
e27d73f6
DE
5128 * linux-low.c (handle_extended_wait): Use linux_resume_one_lwp
5129 to resume the newly created thread, don't call ptrace (PTRACE_CONT)
5130 directly.
5131
47c0c975
DE
5132 * linux-low.c (get_stop_pc): Print pc if debug_threads.
5133 (check_removed_breakpoint, linux_wait_for_lwp): Ditto.
5134 (linux_resume_one_lwp): Ditto.
5135
2acc282a
DE
51362009-05-23 Doug Evans <dje@google.com>
5137
5138 * linux-low.c (linux_resume_one_lwp): Change type of first arg
5139 from struct inferior_list_entry * to struct lwp_info *.
5140 All callers updated.
5141
9f1036c1
DE
51422009-05-13 Doug Evans <dje@google.com>
5143
5144 * linux-x86-low.c: Don't include assert.h.
5145 (x86_siginfo_fixup): Use fatal, not assert.
5146 (x86_arch_setup): Fix comment.
5147
d0722149
DE
51482009-05-12 Doug Evans <dje@google.com>
5149
5150 Biarch support for i386/amd64 gdbserver.
5151 * Makefile.in (SFILES): Remove linux-i386-low.c, linux-x86-64-low.c.
5152 Add linux-x86-low.c.
5153 (linux-i386-low.o, linux-x86-64-low.o): Delete.
5154 (linux-x86-low.o): Add.
5155 * linux-x86-64-low.c: Delete.
5156 * linux-i386-low.c: Delete.
5157 * linux-x86-low.c: New file.
5158 * configure.srv (i?86-linux srv_tgtobj): Replace linux-i386-low.o with
5159 linux-x86-low.o.
5160 (x86_64-linux srv_tgtobj): Replace linux-x86-64-low.o with
5161 linux-x86-low.o.
5162 (x86_64-linux srv_regobj): Add reg-i386-linux.o.
5163 * linux-low.c: Include ansidecl.h, elf/common.h, elf/external.h.
5164 (linux_child_pid_to_exec_file): New function.
5165 (elf_64_header_p, elf_64_file_p): New functions.
5166 (siginfo_fixup): New function.
5167 (linux_xfer_siginfo): New local inf_siginfo. Call siginfo_fixup to
5168 give target a chance to convert layout.
5169 * linux-low.h (linux_target_ops): New member siginfo_fixup.
5170 (linux_child_pid_to_exec_file, elf_64_file_p): Declare.
5171
fdeb2a12
DE
51722009-05-07 Doug Evans <dje@google.com>
5173
5174 * linux-low.c (regsets_fetch_inferior_registers): Fix memory leak.
5175 (regsets_store_inferior_registers): Ditto.
5176
a6dbe5df
PA
51772009-05-06 Pedro Alves <pedro@codesourcery.com>
5178
5179 PR server/10048
5180
5181 * linux-low.c (must_set_ptrace_flags): Delete.
5182 (linux_create_inferior): Set `lwp->must_set_ptrace_flags' instead
5183 of the global.
5184 (linux_attach_lwp_1): Don't set PTRACE_SETOPTIONS here. Set
5185 `lwp->must_set_ptrace_flags' instead.
ba42693b 5186 (linux_wait_for_event_1): Set ptrace options here.
a6dbe5df
PA
5187 (linux_wait_1): ... not here.
5188
5091eb23
DE
51892009-04-30 Doug Evans <dje@google.com>
5190
9f767825
DE
5191 * inferiors.c (started_inferior_callback): New function.
5192 (attached_inferior_callback): New function.
5193 (have_started_inferiors_p, have_attached_inferiors_p): New functions.
5194 * server.c (print_started_pid, print_attached_pid): New functions.
5195 (detach_or_kill_for_exit): New function.
5196 (main): Call it instead of for_each_inferior (kill_inferior_callback).
5197 * server.h (have_started_inferiors_p): Declare.
5198 (have_attached_inferiors_p): Declare.
5199
5091eb23
DE
5200 * inferiors.c (remove_process): Fix memory leak, free process.
5201 * linux-low.c (linux_remove_process): New function.
5202 (linux_kill): Call it instead of remove_process.
5203 (linux_detach, linux_wait_1): Ditto.
5204
155c8968
PA
52052009-04-19 Danny Backx <dannybackx@users.sourceforge.net>
5206
5207 * configure.srv: Add x86 Windows CE target.
5208
7fe519cb
UW
52092009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
5210
5211 * inferiors.c (get_thread_process): Make global.
5212 * server.h (get_thread_process): Add prototype.
5213 * thread-db.c (find_one_thread): Use get_thread_process
5214 instead of current_process.
5215 (thread_db_get_tls_address): Do not crash if called when
5216 thread layer is not yet initialized.
5217
5472f405
UW
52182009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
5219
5220 * remote-utils.c (prepare_resume_reply): Null-terminate packet.
5221 * spu-low.c (current_tid): Rename to ...
5222 (current_ptid): ... this.
5223 (fetch_ppc_register, fetch_ppc_memory, store_ppc_memory,
5224 spu_proc_xfer_spu, spu_resume, spu_request_interrupt): Use
5225 ptid_get_lwp (current_ptid) instead of current_tid.
5226 (spu_kill, spu_detach, spu_join, spu_wait): Use pid argument
5227 instead of current_tid. Use find_process_pid to verify pid
5228 argument is valid. Pass proper argument to remove_process.
5229 (spu_thread_alive): Compare current_ptid instead of current_tid.
5230 (spu_resume): Likewise.
5231
55ac2b99
PA
52322009-04-02 Pedro Alves <pedro@codesourcery.com>
5233
5234 * linux-low.c (usr_store_inferior_registers): Declare local `pid'
5235 variable.
5236
95954743
PA
52372009-04-01 Pedro Alves <pedro@codesourcery.com>
5238
5239 Implement the multiprocess extensions, and add linux multiprocess
5240 support.
5241
5242 * server.h (ULONGEST): Declare.
5243 (struct ptid, ptid_t): New.
5244 (minus_one_ptid, null_ptid): Declare.
5245 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
5246 (ptid_get_tid, ptid_equal, ptid_is_pid): Declare.
5247 (struct inferior_list_entry): Change `id' type from unsigned from
5248 to ptid_t.
5249 (struct sym_cache, struct breakpoint, struct
5250 process_info_private): Forward declare.
5251 (struct process_info): Declare.
5252 (current_process): Declare.
5253 (all_processes): Declare.
5254 (initialize_inferiors): Declare.
5255 (add_thread): Adjust to use ptid_t.
5256 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): Ditto.
5257 (add_process, remove_process, find_thread_pid): Declare.
5258 (find_inferior_id): Adjust to use ptid_t.
5259 (cont_thread, general_thread, step_thread): Change type to ptid_t.
5260 (multi_process): Declare.
5261 (push_event): Adjust to use ptid_t.
5262 (read_ptid, write_ptid): Declare.
5263 (prepare_resume_reply): Adjust to use ptid_t.
5264 (clear_symbol_cache): Declare.
5265 * inferiors.c (all_processes): New.
5266 (null_ptid, minus_one_ptid): New.
5267 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
5268 (ptid_get_tid, ptid_equal, ptid_is_pid): New.
5269 (add_thread): Change unsigned long to ptid. Remove gdb_id
5270 parameter. Adjust.
5271 (thread_id_to_gdb_id, thread_to_gdb_id): Change unsigned long to ptid.
5272 (gdb_id_to_thread): Rename to ...
5273 (find_thread_pid): ... this. Change unsigned long to ptid.
5274 (gdb_id_to_thread_id, find_inferior_id): Change unsigned long to ptid.
5275 (loaded_dll, pull_pid_from_list): Adjust.
5276 (add_process, remove_process, find_process_pid)
5277 (get_thread_process, current_process, initialize_inferiors): New.
5278 * target.h (struct thread_resume) <thread>: Change type to ptid_t.
5279 (struct target_waitstatus) <related_pid>: Ditto.
5280 (struct target_ops) <kill, detach>: Add `pid' argument. Change
5281 return type to int.
5282 (struct target_ops) <join>: Add `pid' argument.
5283 (struct target_ops) <thread_alive>: Change pid's type to ptid_t.
5284 (struct target_ops) <wait>: Add `ptid' field. Change return type
5285 to ptid.
5286 (kill_inferior, detach_inferior, join_inferior): Add `pid' argument.
5287 (mywait): Add `ptid' argument. Change return type to ptid_t.
5288 (target_pid_to_str): Declare.
5289 * target.c (set_desired_inferior): Adjust to use ptids.
5290 (mywait): Add new `ptid' argument. Adjust.
5291 (target_pid_to_str): New.
5292 * mem-break.h (free_all_breakpoints): Declare.
5293 * mem-break.c (breakpoints): Delelete.
5294 (set_breakpoint_at, delete_breakpoint, find_breakpoint_at)
5295 (check_mem_read, check_mem_write, delete_all_breakpoints): Adjust
5296 to use per-process breakpoint list.
5297 (free_all_breakpoints): New.
5298 * remote-utils.c (struct sym_cache) <name>: Drop `const'.
5299 (symbol_cache, all_symbols_looked_up): Delete.
5300 (hexchars): New.
5301 (ishex, unpack_varlen_hex, write_ptid, hex_or_minus_one,
5302 read_ptid): New.
5303 (prepare_resume_reply): Change ptid argument's type from unsigned
5304 long to ptid_t. Adjust. Implement W;process and X;process.
5305 (free_sym_cache, clear_symbol_cache): New.
5306 (look_up_one_symbol): Adjust to per-process symbol cache. *
5307 * server.c (cont_thread, general_thread, step_thread): Change type
5308 to ptid_t.
5309 (attached): Delete.
5310 (multi_process): New.
5311 (last_ptid): Change type to ptid_t.
5312 (struct vstop_notif) <ptid>: Change type to ptid_t.
5313 (queue_stop_reply, push_event): Change `ptid' argument's type to
5314 ptid_t.
5315 (discard_queued_stop_replies): Add `pid' argument.
5316 (start_inferior): Adjust to use ptids. Adjust to mywait interface
5317 changes. Don't reference the `attached' global.
5318 (attach_inferior): Adjust to mywait interface changes.
5319 (handle_query): Adjust to use ptids. Parse GDB's qSupported
5320 features. Handle and report "multiprocess+". Handle
5321 "qAttached:PID".
5322 (handle_v_cont): Adjust to use ptids. Adjust to mywait interface
5323 changes.
5324 (handle_v_kill): New.
5325 (handle_v_stopped): Adjust to use target_pid_to_str.
5326 (handle_v_requests): Allow multiple attaches and runs when
5327 multiprocess extensions are in effect. Handle "vKill".
5328 (myresume): Adjust to use ptids.
5329 (queue_stop_reply_callback): Add `arg' parameter. Handle it.
5330 (handle_status): Adjust to discard_queued_stop_replies interface
5331 change.
5332 (first_thread_of, kill_inferior_callback)
5333 (detach_or_kill_inferior_callback, join_inferiors_callback): New.
5334 (main): Call initialize_inferiors. Adjust to use ptids, killing
5335 and detaching from all inferiors. Handle multiprocess packet
5336 variants.
5337 * linux-low.h: Include gdb_proc_service.h.
5338 (struct process_info_private): New.
5339 (struct linux_target_ops) <pid_of>: Use ptid_get_pid.
5340 <lwpid_of>: Use ptid_get_lwp.
5341 (get_lwp_thread): Adjust.
5342 (struct lwp_info): Add `dead' member.
5343 (find_lwp_pid): Declare.
5344 * linux-low.c (thread_db_active): Delete.
5345 (new_inferior): Adjust comment.
5346 (inferior_pid): Delete.
5347 (linux_add_process): New.
5348 (handle_extended_wait): Adjust.
5349 (add_lwp): Change unsigned long to ptid.
5350 (linux_create_inferior): Add process to processes table. Adjust
5351 to use ptids. Don't set new_inferior here.
5352 (linux_attach_lwp): Rename to ...
5353 (linux_attach_lwp_1): ... this. Add `initial' argument. Handle
5354 it. Adjust to use ptids.
5355 (linux_attach_lwp): New.
5356 (linux_attach): Add process to processes table. Don't set
5357 new_inferior here.
5358 (struct counter): New.
5359 (second_thread_of_pid_p, last_thread_of_process_p): New.
5360 (linux_kill_one_lwp): Add `args' parameter. Handle it. Adjust to
5361 multiple processes.
5362 (linux_kill): Add `pid' argument. Handle it. Adjust to multiple
5363 processes. Remove process from process table.
5364 (linux_detach_one_lwp): Add `args' parameter. Handle it. Adjust
5365 to multiple processes.
5366 (any_thread_of): New.
5367 (linux_detach): Add `pid' argument, and handle it. Remove process
5368 from processes table.
5369 (linux_join): Add `pid' argument. Handle it.
5370 (linux_thread_alive): Change unsighed long argument to ptid_t.
5371 Consider dead lwps as not being alive.
5372 (status_pending_p): Rename `dummy' argument to `arg'. Filter out
5373 threads we're not interested in.
5374 (same_lwp, find_lwp_pid): New.
5375 (linux_wait_for_lwp): Change `pid' argument's type from int to
5376 ptid_t. Adjust.
5377 (linux_wait_for_event): Rename to ...
5378 (linux_wait_for_event_1): ... this. Change `pid' argument's type
5379 from int to ptid_t. Adjust.
5380 (linux_wait_for_event): New.
5381 (linux_wait_1): Add `ptid' argument. Change return type to
5382 ptid_t. Adjust. Use last_thread_of_process_p. Remove processes
5383 that exit from the process table.
5384 (linux_wait): Add `ptid' argument. Change return type to ptid_t.
5385 Adjust.
5386 (mark_lwp_dead): New.
5387 (wait_for_sigstop): Adjust to use ptids. If a process exits while
5388 stopping all threads, mark its main lwp as dead.
5389 (linux_set_resume_request, linux_resume_one_thread): Adjust to use
5390 ptids.
5391 (fetch_register, usr_store_inferior_registers)
5392 (regsets_fetch_inferior_registers)
5393 (regsets_store_inferior_registers, linux_read_memory)
5394 (linux_write_memory): Inline `inferior_pid'.
5395 (linux_look_up_symbols): Adjust to use per-process
5396 `thread_db_active'.
5397 (linux_request_interrupt): Adjust to use ptids.
5398 (linux_read_auxv): Inline `inferior_pid'.
5399 (initialize_low): Don't reference thread_db_active.
5400 * gdb_proc_service.h (struct ps_prochandle) <pid>: Remove.
5401 * proc-service.c (ps_lgetregs): Use find_lwp_pid.
5402 (ps_getpid): Return the pid of the current inferior.
5403 * thread-db.c (proc_handle, thread_agent): Delete.
5404 (thread_db_create_event, thread_db_enable_reporting): Adjust to
5405 per-process data.
5406 (find_one_thread): Change argument type to ptid_t. Adjust to
5407 per-process data.
5408 (maybe_attach_thread): Adjust to per-process data and ptids.
5409 (thread_db_find_new_threads): Ditto.
5410 (thread_db_init): Ditto.
5411 * spu-low.c (spu_create_inferior, spu_attach): Add process to
5412 processes table. Adjust to use ptids.
5413 (spu_kill, spu_detach): Adjust interface. Remove process from
5414 processes table.
5415 (spu_join, spu_thread_alive): Adjust interface.
5416 (spu_wait): Adjust interface. Remove process from processes
5417 table. Adjust to use ptids.
5418 * win32-low.c (current_inferior_tid): Delete.
5419 (current_inferior_ptid): New.
5420 (debug_event_ptid): New.
5421 (thread_rec): Take a ptid. Adjust.
5422 (child_add_thread): Add `pid' argument. Adjust to use ptids.
5423 (child_delete_thread): Ditto.
5424 (do_initial_child_stuff): Add `attached' argument. Add process to
5425 processes table.
5426 (child_fetch_inferior_registers, child_store_inferior_registers):
5427 Adjust.
5428 (win32_create_inferior): Pass 0 to do_initial_child_stuff.
5429 (win32_attach): Pass 1 to do_initial_child_stuff.
5430 (win32_kill): Adjust interface. Remove process from processes
5431 table.
5432 (win32_detach): Ditto.
5433 (win32_join): Adjust interface.
5434 (win32_thread_alive): Take a ptid.
5435 (win32_resume): Adjust to use ptids.
5436 (get_child_debug_event): Ditto.
5437 (win32_wait): Adjust interface. Remove exiting process from
5438 processes table.
5439
bd99dc85
PA
54402009-04-01 Pedro Alves <pedro@codesourcery.com>
5441
5442 Non-stop mode support.
5443
5444 * server.h (non_stop): Declare.
5445 (gdb_client_data, handler_func): Declare.
5446 (delete_file_handler, add_file_handler, start_event_loop):
5447 Declare.
5448 (handle_serial_event, handle_target_event, push_event)
5449 (putpkt_notif): Declare.
5450 * target.h (enum resume_kind): New.
5451 (struct thread_resume): Replace `step' field by `kind' field.
5452 (TARGET_WNOHANG): Define.
5453 (struct target_ops) <wait>: Add `options' argument.
5454 <supports_non_stop, async, start_non_stop>: New fields.
5455 (target_supports_non_stop, target_async): New.
5456 (start_non_stop): Declare.
5457 (mywait): Add `options' argument.
5458 * target.c (mywait): Add `options' argument. Print child exit
5459 notifications here.
5460 (start_non_stop): New.
5461 * server.c (non_stop, own_buf, mem_buf): New globals.
5462 (struct vstop_notif): New.
5463 (notif_queue): New global.
5464 (queue_stop_reply, push_event, discard_queued_stop_replies)
5465 (send_next_stop_reply): New.
5466 (start_inferior): Adjust to use resume_kind. Adjust to mywait
5467 interface changes.
5468 (attach_inferior): In non-stop mode, don't wait for the target
5469 here.
5470 (handle_general_set): Handle QNonStop.
5471 (handle_query): When handling qC, return the current general
5472 thread, instead of the first thread of the list.
5473 (handle_query): If the backend supports non-stop mode, include
5474 QNonStop+ in the qSupported query response.
5475 (handle_v_cont): Adjust to use resume_kind. Handle resume_stop
5476 and non-stop mode.
5477 (handle_v_attach, handle_v_run): Handle non-stop mode.
5478 (handle_v_stopped): New.
5479 (handle_v_requests): Report support for vCont;t. Handle vStopped.
5480 (myresume): Adjust to use resume_kind. Handle non-stop.
5481 (queue_stop_reply_callback): New.
5482 (handle_status): Handle non-stop mode.
5483 (main): Clear non_stop flag on reconnection. Use the event-loop.
5484 Refactor serial protocol handling from here ...
5485 (process_serial_event): ... to this new function. When GDB
5486 selects any thread, select one here. In non-stop mode, wait until
5487 GDB acks all pending events before exiting.
5488 (handle_serial_event, handle_target_event): New.
5489 * remote-utils.c (remote_open): Install remote_desc in the event
5490 loop.
5491 (remote_close): Remove remote_desc from the event loop.
5492 (putpkt_binary): Rename to...
5493 (putpkt_binary_1): ... this. Add `is_notic' argument. Handle it.
5494 (putpkt_binary): New as wrapper around putpkt_binary_1.
5495 (putpkt_notif): New.
5496 (prepare_resume_reply): In non-stop mode, don't change the
5497 general_thread.
5498 * event-loop.c: New.
5499 * Makefile.in (OBJ): Add event-loop.o.
5500 (event-loop.o): New rule.
5501
5502 * linux-low.h (pid_of): Moved here.
5503 (lwpid_of): New.
5504 (get_lwp_thread): Use lwpid_of.
5505 (struct lwp_info): Delete `lwpid' field. Add `suspended' field.
5506 * linux-low.c (pid_of): Delete.
5507 (inferior_pid): Use lwpid_of.
5508 (linux_event_pipe): New.
5509 (target_is_async_p): New.
5510 (delete_lwp): New.
5511 (handle_extended_wait): Use lwpid_of.
5512 (add_lwp): Don't set lwpid field.
5513 (linux_attach_lwp): Adjust debug output. Use lwpid_of.
5514 (linux_kill_one_lwp): If killing a running lwp, stop it first.
5515 Use lwpid_of. Adjust to linux_wait_for_event interface changes.
5516 (linux_detach_one_lwp): If detaching from a running lwp, stop it
5517 first. Adjust to linux_wait_for_event interface changes. Use
5518 lwpid_of.
5519 (linux_detach): Don't delete the main lwp here.
5520 (linux_join): Use my_waitpid. Avoid signal_pid. Use lwpid_of.
5521 (status_pending_p): Don't consider explicitly suspended lwps.
5522 (linux_wait_for_lwp): Take an integer pid instead of a lwp_info
5523 pointer. Add OPTIONS argument. Change return type to int. Use
5524 my_waitpid instead of sleeping. Handle WNOHANG. Use lwpid_of.
5525 (linux_wait_for_event): Take an integer pid instead of a lwp_info
5526 pointer. Add status pointer argument. Return a pid instead of a
5527 status. Use lwpid_of. Adjust to linux_wait_for_lwp interface
5528 changes. In non-stop mode, don't switch to a random thread.
5529 (linux_wait): Rename to...
5530 (linux_wait_1): ... this. Add target_options argument, and handle
5531 it. Adjust to use resume_kind. Use lwpid_of. In non-stop mode,
5532 don't handle the continue thread. Handle TARGET_WNOHANG. Merge
5533 clean exit and signal exit code. Don't stop all threads in
5534 non-stop mode. In all-stop mode, only stop all threads when
5535 reporting a stop to GDB. Handle explicit thread stop requests.
5536 (async_file_flush, async_file_mark): New.
5537 (linux_wait): New.
5538 (send_sigstop): Use lwpid_of.
5539 (wait_for_sigstop): Use lwpid_of. Adjust to linux_wait_for_event
5540 interface changes. In non-stop mode, don't switch to a random
5541 thread.
5542 (linux_resume_one_lwp): Use lwpid_of.
5543 (linux_continue_one_thread, linux_queue_one_thread): Merge into ...
5544 (linux_resume_one_thread): ... this. Handle resume_stop. In
5545 non-stop mode, don't look for pending flag in all threads.
5546 (resume_status_pending_p): Don't consider explicitly suspended
5547 threads.
5548 (my_waitpid): Reimplement. Emulate __WALL.
5549 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
5550 Use lwpid_of.
5551 (sigchld_handler, linux_supports_non_stop, linux_async)
5552 (linux_start_non_stop): New.
5553 (linux_target_ops): Register linux_supports_non_stop, linux_async
5554 and linux_start_non_stop.
5555 (initialize_low): Install SIGCHLD handler.
5556 * thread-db.c (thread_db_create_event, find_one_thread)
5557 (thread_db_get_tls_address): Use lwpid_of.
5558 * win32-low.c (win32_detach): Adjust to use resume_kind.
5559 (win32_wait): Add `options' argument.
5560 * spu-low.c (spu_resume): Adjust to use resume_kind.
5561 (spu_wait): Add `options' argument.
5562
5b1c542e
PA
55632009-04-01 Pedro Alves <pedro@codesourcery.com>
5564
5565 Decouple target code from remote protocol.
5566
5567 * target.h (enum target_waitkind): New.
5568 (struct target_waitstatus): New.
5569 (struct target_ops) <wait>: Return an unsigned long. Take a
5570 target_waitstatus pointer instead of a char pointer.
5571 (mywait): Likewise.
5572 * target.c (mywait): Change prototype to return an unsigned long.
5573 Take a target_waitstatus pointer instead of a char pointer. Adjust.
5574 * server.h (thread_from_wait, old_thread_from_wait): Delete
5575 declarations.
5576 (prepare_resume_reply): Change prototype to take a
5577 target_waitstatus.
5578 * server.c (thread_from_wait, old_thread_from_wait): Delete.
5579 (last_status, last_ptid): New.
5580 (start_inferior): Remove "statusptr" argument. Adjust. Return a
5581 pid instead of a signal.
5582 (attach_inferior): Remove "status" and "signal" parameters.
5583 Adjust.
5584 (handle_query): For qGetTLSAddr, parse the thread id with strtol,
5585 not as an address.
5586 (handle_v_cont, handle_v_attach, handle_v_run, handle_v_kill)
5587 (handle_v_requests, myresume): Remove "status" and "signal"
5588 parameters. Adjust.
5589 (handle_status): New.
5590 (main): Delete local `status'. Adjust.
5591 * remote-utils.c: Include target.h.
5592 (prepare_resume_reply): Change prototype to take a
5593 target_waitstatus. Adjust.
5594
5595 * linux-low.c (linux_wait): Adjust to new target_ops->wait
5596 interface.
5597 * spu-low.c (spu_wait): Adjust.
5598 * win32-low.c (enum target_waitkind, struct target_waitstatus):
5599 Delete.
5600 (win32_wait): Adjust.
5601
2bd7c093
PA
56022009-04-01 Pedro Alves <pedro@codesourcery.com>
5603
5604 * target.h (struct thread_resume): Delete leave_stopped member.
5605 (struct target_ops): Add a `n' argument to the `resume' callback.
5606 * server.c (start_inferior): Adjust.
5607 (handle_v_cont, myresume): Adjust.
5608 * linux-low.c (check_removed_breakpoint): Adjust to resume
5609 interface change, and to removed leave_stopped field.
5610 (resume_ptr): Delete.
5611 (struct thread_resume_array): New.
5612 (linux_set_resume_request): Add new `arg' parameter. Adjust to
5613 resume interface change.
5614 (linux_continue_one_thread, linux_queue_one_thread)
5615 (resume_status_pending_p): Check if the resume field is NULL
5616 instead of checking the leave_stopped member.
5617 (linux_resume): Adjust to the target resume interface change.
5618 * spu-low.c (spu_resume): Adjust to the target resume interface
5619 change.
5620 * win32-low.c (win32_detach, win32_resume): Ditto.
5621
c35fafde
PA
56222009-04-01 Pedro Alves <pedro@codesourcery.com>
5623
5624 * linux-low.c (linux_wait_for_event): Don't clear the `stepping'
5625 flag.
5626 (wait_for_sigstop): Don't leave a finished single-step SIGTRAP
5627 pending.
5628 (linux_continue_one_thread): Only preserve the stepping flag if
5629 there's a pending breakpoint.
5630
0a59d50b
PA
56312009-03-31 Pedro Alves <pedro@codesourcery.com>
5632
5633 * server.c (main): After the inferior having exited, call
5634 remote_close before exiting gdbserver.
5635
f04c6d38
TJB
56362009-03-25 Thiago Jung Bauermann <bauerman@br.ibm.com>
5637
5638 Fix size of FPSCR in Power 7 processors.
5639 * linux-ppc-low.c (PPC_FEATURE_ARCH_2_05): Remove #define.
5640 (PPC_FEATURE_HAS_DFP): New #define.
5641 (ppc_arch_setup): Check for DFP feature instead of ISA 2.05 to decide on
5642 size of the FPSCR.
5643
78e5cee6
PA
56442009-03-23 Pedro Alves <pedro@codesourcery.com>
5645
5646 * server.c (handle_query) Whitespace and formatting.
5647
1b3f6016
PA
56482009-03-22 Pedro Alves <pedro@codesourcery.com>
5649
5650 * i387-fp.c, linux-arm-low.c, linux-cris-low.c,
5651 linux-crisv32-low.c, linux-i386-low.c, linux-low.c,
5652 linux-mips-low.c, linux-s390-low.c, linux-sparc-low.c,
5653 linux-x86-64-low.c, linux-xtensa-low.c, proc-service.c,
5654 regcache.c, remote-utils.c, server.c, spu-low.c, target.h,
5655 thread-db.c, win32-low.c, xtensa-xtregs.c, gdbreplay.c,
5656 Makefile.in, configure.ac: Fix whitespace throughout.
5657 * configure: Regenerate.
5658
a07b2135
PA
56592009-03-22 Pedro Alves <pedro@codesourcery.com>
5660
5661 * inferiors.c (find_inferior): Make it safe for the callback
5662 function to delete the currently iterated inferior.
5663
67cc2626
PA
56642009-03-22 Pedro Alves <pedro@codesourcery.com>
5665
5666 * Makefile.in (linuw_low_h): Move higher.
5667 (thread-db.o): Depend on $(linux_low_h).
5668
54a0b537
PA
56692009-03-17 Pedro Alves <pedro@codesourcery.com>
5670
5671 Rename "process" to "lwp" throughout.
5672
5673 * linux-low.c (all_processes): Rename to...
5674 (all_lwps): ... this.
5675 (inferior_pid, handle_extended_wait, get_stop_pc): Adjust.
5676 (add_process): Rename to ...
5677 (add_lwp): ... this. Adjust.
5678 (linux_create_inferior): Adjust.
5679 (linux_attach_lwp): Adjust.
5680 (linux_attach): Adjust.
5681 (linux_kill_one_process): Rename to ...
5682 (linux_kill_one_lwp): ... this. Adjust.
5683 (linux_kill): Adjust.
5684 (linux_detach_one_process): Rename to ...
5685 (linux_detach_one_lwp): ... this. Adjust.
5686 (linux_detach): Adjust.
5687 (check_removed_breakpoint): Adjust.
5688 (status_pending_p): Adjust.
5689 (linux_wait_for_process): Rename to ...
5690 (linux_wait_for_lwp): ... this. Adjust.
5691 (linux_wait_for_event): Adjust.
5692 (send_sigstop): Adjust.
5693 (wait_for_sigstop): Adjust.
5694 (stop_all_processes): Rename to ...
5695 (stop_all_lwps): ... this.
5696 (linux_resume_one_process): Rename to ...
5697 (linux_resume_one_lwp): ... this. Adjust.
5698 (linux_set_resume_request, linux_continue_one_thread)
5699 (linux_queue_one_thread, resume_status_pending_p)
5700 (usr_store_inferior_registers, regsets_store_inferior_registers)
5701 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
5702 Adjust.
5703 * linux-low.h (get_process): Rename to ...
5704 (get_lwp): ... this. Adjust.
5705 (get_thread_process): Rename to ...
5706 (get_thread_lwp): ... this. Adjust.
5707 (get_process_thread): Rename to ...
5708 (get_lwp_thread): ... this. Adjust.
5709 (struct process_info): Rename to ...
5710 (struct lwp_info): ... this.
5711 (all_processes): Rename to ...
5712 (all_lwps): ... this.
5713 * proc-service.c (ps_lgetregs): Adjust.
5714 * thread-db.c (thread_db_create_event, find_one_thread)
5715 (maybe_attach_thread, thread_db_get_tls_address): Adjust.
5716
0b16c5cf
PA
57172009-03-14 Pedro Alves <pedro@codesourcery.com>
5718
5719 * server.c (handle_query): Handle "qAttached".
5720
32de4b9d
NS
57212009-03-13 Nathan Sidwell <nathan@codesourcery.com>
5722
5723 * Makefile.in, hostio-errno.c, errno.c, xtensa-xtregs.c: Change to
5724 GPLv3, update license URL.
5725
2aecd87f
DE
57262009-03-01 Doug Evans <dje@google.com>
5727
93efd302 5728 * Makefile.in (INCLUDE_CFLAGS): Add -I$(srcdir)/../common.
2aecd87f
DE
5729 (server_h): Add gdb_signals.h.
5730 (signals.o): Update.
5731 * server.h (target_signal_from_host,target_signal_to_host_p)
5732 (target_signal_to_host,target_signal_to_name): Moved to gdb_signals.h.
5733
86b1f9c5
PM
57342009-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
5735
5736 * remote-utils.c (getpkt): Also generate remote-debug
5737 information if noack_mode is set.
5738
4aa995e1
PA
57392009-02-06 Pedro Alves <pedro@codesourcery.com>
5740
5741 * server.c (handle_query): Report qXfer:siginfo:read and
5742 qXfer:siginfo:write as supported and handle them.
5743 * target.h (struct target_ops) <qxfer_siginfo>: New field.
5744 * linux-low.c (linux_xfer_siginfo): New.
5745 (linux_target_ops): Set it.
5746
62709adf
PA
57472009-01-26 Pedro Alves <pedro@codesourcery.com>
5748
5749 * server.c (gdbserver_usage): Mention --remote-debug.
5750 (main): Accept '--remote-debug' switch.
5751
aef93bd7
DE
57522009-01-18 Doug Evans <dje@google.com>
5753
5754 * regcache.c (new_register_cache): No need to check result of xcalloc.
5755 * server.c (handle_search_memory): Back out calls to xmalloc,
5756 result is checked and error is returned to user upon failure.
5757 (handle_query): Ditto. Add more checks for result of malloc.
5758 (handle_v_cont): Check result of malloc, report error back to
5759 user upon failure.
5760 (handle_v_run): Ditto. Call freeargv.
5761 * server.h (freeargv): Declare.
5762 * utils.c (freeargv): New fn.
5763
54363045
DE
57642009-01-15 Doug Evans <dje@google.com>
5765
f626972c
DE
5766 * gdbreplay.c (perror_with_name): Make arg const char *.
5767 * server.h (target_signal_to_name): Make return type const char *.
0842e787 5768 * thread-db.c (thread_db_err_str): Make return type const char *.
f626972c 5769 * utils.c (perror_with_name): Make arg const char *.
54363045 5770
18aae699
PA
57712009-01-14 Pedro Alves <pedro@codesourcery.com>
5772
5773 * win32-low.c (get_child_debug_event): Issue a final DBG_CONTINUE
5774 when handling a EXIT_PROCESS_DEBUG_EVENT.
5775
ff703abe
JB
57762009-01-06 Joel Brobecker <brobecker@adacore.com>
5777
5778 * gdbreplay.c (gdbreplay_version): Update copyright year.
5779 * server.c (gdbserver_version): Likewise.
5780
f21cc1a2 57812009-01-05 Doug Evans <dje@google.com>
0e21c1ec
DE
5782
5783 * linux-low.c (linux_attach_lwp): Add some comments/fixmes.
f21cc1a2 5784 (handle_extended_wait): Improve comment.
0e21c1ec 5785
bca929d3
DE
57862008-12-13 Doug Evans <dje@google.com>
5787
5788 * utils.c (xmalloc,xcalloc,xstrdup): New fns.
5789 * server.h (ATTR_MALLOC): New macro.
5790 (xmalloc,xcalloc,xstrdup): Declare.
5791 * hostio.c: Replace malloc,calloc,strdup with xmalloc,xcalloc,xstrdup.
5792 * inferiors.c: Ditto.
5793 * linux-low.c: Ditto.
5794 * mem-break.c: Ditto.
5795 * regcache.c: Ditto.
5796 * remote-utils.c: Ditto.
5797 * server.c: Ditto.
5798 * target.c: Ditto.
5799 * win32-low.c: Ditto.
5800
97438e3f
DE
58012008-12-12 Doug Evans <dje@google.com>
5802
896c7fbb
DE
5803 * linux-low.c (linux_wait_for_process): Don't clobber current_inferior
5804 in debugging printf.
5805
97438e3f
DE
5806 * linux-low.c (handle_extended_wait): Simplify, use my_waitpid.
5807
e3b886f8
DE
58082008-12-09 Doug Evans <dje@google.com>
5809
5810 * linux-low.h (struct process_info): Delete member tid, unused.
5811 * thread-db.c (find_one_thread): Update.
5812 (maybe_attach_thread): Update.
5813
07e059b5
VP
58142008-12-02 Pedro Alves <pedro@codesourcery.com>
5815
889bf7c5
PA
5816 * target.h (struct target_ops): Add qxfer_osdata member.
5817 * linux-low.c: Include ctype.h and pwd.h and sys/types.h
5818 and dirent.h.
5819 (linux_qxfer_osdata): New functions.
5820 (linux_target_ops): Register linux_qxfer_osdata as qxfer_osdata
5821 callback.
5822 * server.c (handle_query): Handle "qXfer:osdata:read:".
5823 * remote-utils.c (buffer_grow, buffer_free, buffer_init, buffer_finish)
5824 (buffer_xml_printf): New functions.
5825 * server.h (struct buffer): New.
5826 (buffer_grow_str, buffer_grow_str0): New macros.
5827 (buffer_grow, buffer_free, buffer_init, buffer_finish)
5828 (buffer_xml_printf): Declare.
07e059b5 5829
4cab47ab
DE
58302008-11-24 Doug Evans <dje@google.com>
5831
5832 * Makefile.in (VERSION,DIST,LINT,LINTFLAGS): Delete, unused.
5833
f142445f
DJ
58342008-11-24 Daniel Jacobowitz <dan@codesourcery.com>
5835
5836 * server.c (handle_v_run): Always use the supplied argument list.
5837
d0107bb6 58382008-11-19 Bob Wilson <bob.wilson@acm.org>
889bf7c5 5839
d0107bb6
BW
5840 * xtensa-xtregs.c (XTENSA_ELF_XTREG_SIZE): Change to 4.
5841 (xtensa_regmap_table): Add entry for scompare1.
889bf7c5 5842
2c4ad781
TJB
58432008-11-18 Thiago Jung Bauermann <bauerman@br.ibm.com>
5844
5845 * Makefile.in (powerpc-isa205-32l.o, powerpc-isa205-32l.c,
5846 powerpc-isa205-altivec32l.o, powerpc-isa205-altivec32l.c,
5847 powerpc-isa205-vsx32l.o, powerpc-isa205-vsx32l.c,
5848 powerpc-isa205-64l.o, powerpc-isa205-64l.c,
5849 powerpc-isa205-altivec64l.o, powerpc-isa205-altivec64l.c,
5850 powerpc-isa205-vsx64l.o, powerpc-isa205-vsx64l.c): New targets.
5851 * configure.srv (powerpc*-*-linux*): Add ISA 2.05 object files and
5852 XML target descriptions.
5853 * linux-ppc-low.c (ppc_arch_setup): Init registers with 64-bit FPSCR
5854 when inferior is running on an ISA 2.05 or later processor. Add
5855 special case to return offset for full 64-bit slot of FPSCR when
5856 in 32-bits.
5857
dfb64f85
DJ
58582008-11-14 Daniel Gutson <dgutson@codesourcery.com>
5859
5860 * Makefile.in (SFILES, clean): Added sparc64 files.
5861 (reg-sparc64.o, reg-sparc64.c): New.
5862 * configure.srv (sparc*-*-linux*): New configuration.
5863 * linux-low.c (regsets_fetch_inferior_registers): Swap ptrace
5864 syscall arguments for SPARC.
5865 (regsets_store_inferior_registers): Likewise.
5866 * linux-sparc-low.c: New file.
5867
66b6e1dd
DE
58682008-10-21 Doug Evans <dje@google.com>
5869
5870 * Makefile.in (BFD_DIR,BFD,BFD_SRC,BFD_CFLAGS): Delete.
5871 (READLINE_DIR,READLINE_DEP): Delete.
5872 (INTERNAL_CFLAGS): Update.
5873 (LINTFLAGS): Update.
5874
9b710a42
PA
58752008-10-10 Pedro Alves <pedro@codesourcery.com>
5876
5877 * server.c (handle_v_run): If GDB didn't specify an argv, use the
5878 whole argv from the last run, not just argv[0].
5879
5822d809
PA
58802008-09-08 Pedro Alves <pedro@codesourcery.com>
5881
5882 * regcache.c (new_register_cache): Return NULL if the register
5883 cache size isn't known yet.
5884 (free_register_cache): Avoid dereferencing a NULL regcache.
5885
74aac56f
DJ
58862008-09-04 Daniel Jacobowitz <dan@codesourcery.com>
5887
5888 * configure.srv: Merge MIPS and MIPS64.
5889
400b20f5
MR
58902008-08-24 Maciej W. Rozycki <macro@linux-mips.org>
5891
5892 * Makefile.in (uninstall): Apply $(EXEEXT) too.
5893
677c5bb1
LM
58942008-08-18 Luis Machado <luisgpm@br.ibm.com>
5895
5896 * Makefile.in: Add required vsx dependencies.
5897
5898 * linux-ppc-low: Define PPC_FEATURE_HAS_VSX.
5899 Declare init_registers_powerpc_vsx32l.
5900 Declare init_registers_powerpc_vsx64l.
5901 Define PTRACE_GETVSXREGS and PTRACE_SETVSXREGS.
5902 (ppc_arch_setup): Check for VSX in hwcap.
5903 (ppc_fill_vsxregset): New function.
5904 (ppc_store_vsxregset): New function.
5905 Add new VSX entry in regset_info target_regsets.
5906
5907 * configure.srv: Add new VSX dependencies.
5908
a6f3e723
SL
59092008-08-12 Pedro Alves <pedro@codesourcery.com>
5910
5911 * remote-utils.c (noack_mode, transport_is_reliable): New globals.
5912 (remote_open): Set or clear transport_is_reliable.
5913 (putpkt_binary): Don't expect acks in noack mode.
5914 (getpkt): Don't send ack/nac in noack mode.
5915 * server.c (handle_general_set): Handle QStartNoAckMode.
5916 (handle_query): If connected by tcp pass QStartNoAckMode+ in
5917 qSupported.
5918 (main): Reset noack_mode on every connection.
5919 * server.h (noack_mode): Declare.
5920
a417dc56
RW
59212008-08-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5922
5923 * Makefile.in (GDBREPLAY_OBS): New variable.
5924 (gdbreplay$(EXEEXT)): Use it to avoid unportable $^.
5925
3221518c
UW
59262008-08-05 Ulrich Weigand <uweigand@de.ibm.com>
5927 Daniel Jacobowitz <dan@codesourcery.com>
5928
5929 * linux-low.c (linux_resume_one_process): Ignore ESRCH.
5930 (usr_store_inferior_registers): Likewise.
5931 (regsets_store_inferior_registers): Likewise.
5932
ec56be1b
PA
59332008-07-31 Rolf Jansen <rj@surtec.com>
5934 Pedro Alves <pedro@codesourcery.com>
5935
5936 * configure.ac: Check for memmem declaration.
5937 * server.c [HAVE_MALLOC_H]: Include malloc.h.
5938 (disable_packet_vCont, disable_packet_Tthread, disable_packet_qC)
5939 (disable_packet_qfThreadInfo): Unconditionally compile.
5940 * server.h [!HAVE_DECL_MEMMEM]: Declare memmem.
5941 * configure, config.in: Regenerate.
5942
2fe5e3ff
DE
59432008-07-28 Doug Kwan <dougkwan@google.com>
5944
5945 * linux-low.c (sys/dir.h, sys/user.h): Remove includes.
5946 (linux_write_memory): Remove declaration of errno.
5947
836acd6d
UW
59482008-07-12 Ulrich Weigand <uweigand@de.ibm.com>
5949
5950 * linux-low.c (handle_extended_wait): Do not use "status"
5951 variable uninitialized.
5952
aeba519e
PA
59532008-07-07 Pedro Alves <pedro@codesourcery.com>
5954
5955 * server.c (handle_v_attach): Inhibit reporting dll changes.
5956
db42f210
PA
59572008-06-27 Pedro Alves <pedro@codesourcery.com>
5958
5959 * remote-utils.c (prepare_resume_reply): If requested, don't
5960 output "thread:TID" in the T stop reply.
5961
5962 * server.c (disable_packet_vCont, disable_packet_Tthread)
5963 (disable_packet_qC, disable_packet_qfThreadInfo): New globals.
5964 (handle_query): If requested, disable support for qC, qfThreadInfo
5965 and qsThreadInfo.
5966 (handle_v_requests): If requested, disable support for vCont.
5967 (gdbserver_show_disableable): New.
5968 (main): Handle --disable-packet and --disable-packet=LIST.
5969
5970 * server.h (disable_packet_vCont, disable_packet_Tthread)
5971 (disable_packet_qC, disable_packet_qfThreadInfo): Declare.
5972
8e4c5421
CD
59732008-06-20 Carlos O'Donell <carlos@codesourcery.com>
5974
5975 * server.c (gdbserver_usage): Mention --version.
5976
6e23a804
DJ
59772008-06-06 Daniel Jacobowitz <dan@codesourcery.com>
5978
5979 * Makefile.in (gdbreplay.o): New rule.
5980
90aa6a40
JM
59812008-06-06 Joseph Myers <joseph@codesourcery.com>
5982
5983 * gdbreplay.c (gdbreplay_version): Say gdbreplay in version
5984 message, not gdbserver.
5985
c16158bc 59862008-06-05 Vladimir Prus <vladimir@codesourcery.com>
889bf7c5
PA
5987 Nathan Sidwell <nathan@codesourcery.com>
5988 Joseph Myers <joseph@codesourcery.com>
c16158bc
JM
5989
5990 * acinclude.m4: Include ../../config/acx.m4.
5991 * configure.ac: Use ACX_PKGVERSION and ACX_BUGURL.
5992 * configure, config.in: Regenerate.
5993 * Makefile.in (gdbreplay$(EXEEXT)): Add version.o.
5994 * server.c (gdbserver_version): Print PKGVERSION.
5995 (gdbsrever_usage): Add stream parameter. Print REPORT_BUGS_TO.
5996 (main): Adjust gdbserver_usage calls.
5997 * gdbreplay.c (version, host_name): Add declarations.
5998 (gdbreplay_version, gdbreplay_usage): New.
5999 (main): Accept --version and --help options.
6000
aeb75bf5
DJ
60012008-06-04 Daniel Jacobowitz <dan@codesourcery.com>
6002
6003 * linux-arm-low.c (thumb_breakpoint, thumb_breakpoint_len): New.
6004 (arm_breakpoint_at): Handle Thumb.
6005 (the_low_target): Add comment.
6006
76b233dd
UW
60072008-05-29 Ulrich Weigand <uweigand@de.ibm.com>
6008
6009 * linux-ppc-low.c (ppc_collect_ptrace_register): Clear buffer.
6010
08388c79
DE
60112008-05-09 Doug Evans <dje@google.com>
6012
a3c83fae
DE
6013 * server.h (decode_search_memory_packet): Declare.
6014 * remote-utils.c (decode_search_memory_packet): New fn.
6015 * server.c (handle_search_memory_1): New fn.
08388c79
DE
6016 (handle_search_memory): New fn.
6017 (handle_query): Process qSearch:memory packets.
6018
bb9c3d36
UW
60192008-05-08 Ulrich Weigand <uweigand@de.ibm.com>
6020
6021 * regcache.c (registers_length): Remove.
6022 (set_register_cache): Verify that PBUFSIZ is large enough to hold a
6023 full register packet.
6024 * regcache.h (registers_length): Remove prototype.
6025 * server.h (PBUFSIZ): Define to 16384.
6026
7284e1be
UW
60272008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
6028
6029 * configure.srv (powerpc*-*-linux*): Set srv_regobj to
6030 powerpc-32l.o, powerpc-altivec32l.o, powerpc-e500l.o,
6031 powerpc-64l.o, and powerpc-altivec64l.o.
6032 Remove rs6000/powerpc-32.xml, rs6000/powerpc-64.xml, and
6033 rs6000/powerpc-e500.xml; add rs6000/powerpc-32l.xml,
6034 rs6000/powerpc-altivec32l.xml, rs6000/powerpc-e500l.xml,
6035 rs6000/powerpc-64l.xml, rs6000/powerpc-altivec64l.xml,
6036 rs6000/power-linux.xml, and rs6000/power64-linux.xml
6037 to srv_xmlfiles.
6038
6039 * Makefile.in (reg-ppc.o, reg-ppc.c): Remove, replace by ...
6040 (powerpc-32l.o, powerpc-32l.c): ... these new rules.
6041 (powerpc-32.o, powerpc-32.c): Remove, replace by ...
6042 (powerpc-altivec32l.o, powerpc-altivec32l.c): ... these new rules.
6043 (powerpc-e500.o, powerpc-e500.c): Remove, replace by ...
6044 (powerpc-e500l.o, powerpc-e500l.c): ... these new rules.
6045 (reg-ppc64.o, reg-ppc64.c): Remove, replace by ...
6046 (powerpc-64l.o, powerpc-64l.c): ... these new rules.
6047 (powerpc-64.o, powerpc-64.c): Remove, replace by ...
6048 (powerpc-altivec64l.o, powerpc-altivec64l.c): ... these new rules.
6049 (clean): Update.
6050
6051 * linux-ppc-low.c (init_registers_ppc): Remove, replace by ...
6052 (init_registers_powerpc_32l): ... this new prototype.
6053 (init_registers_powerpc_32): Remove, replace by ...
6054 (init_registers_powerpc_altivec32l): ... this new prototype.
6055 (init_registers_powerpc_e500): Remove, replace by ...
6056 (init_registers_powerpc_e500l): ... this new prototype.
6057 (init_registers_ppc64): Remove, replace by ...
6058 (init_registers_powerpc_64l): ... this new prototype.
6059 (init_registers_powerpc_64): Remove, replace by ...
6060 (init_registers_powerpc_altivec64l): ... this new prototype.
6061 (ppc_num_regs): Set to 73.
6062 (PT_ORIG_R3, PT_TRAP): Define if necessary.
6063 (ppc_regmap, ppc_regmap_e500): Add values for orig_r3 and trap.
6064 (ppc_cannot_store_register): Handle orig_r3 and trap.
6065 (ppc_arch_setup): Update init_registers_... calls.
6066 (ppc_fill_gregset): Handle orig_r3 and trap.
6067
6068 * inferiors.c (clear_inferiors): Reset current_inferior.
6069
fdc59709
PB
60702008-04-23 Paolo Bonzini <bonzini@gnu.org>
6071
889bf7c5
PA
6072 * acinclude.m4: Add override.m4.
6073 * configure: Regenerate.
fdc59709 6074
c9b2f845
UW
60752008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
6076
6077 * linux-ppc-low.c (ppc_arch_setup): Reset ppc_hwcap after the
6078 initial call to init_register_ppc64.
6079
550512b8
UW
60802008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
6081
43aaf8b6
PA
6082 * configure.srv (powerpc64-*-linux*, powerpc-*-linux*): Merge into
6083 single powerpc*-*-linux* case.
550512b8
UW
6084 (s390-*-linux*, s390x-*-linux*): Merge into single s390*-*-linux* case.
6085
b6430ec3
UW
60862008-04-17 Ulrich Weigand <uweigand@de.ibm.com>
6087
6088 * configure.srv [powerpc64-*-linux*]: Remove powerpc-e500.o from
889bf7c5 6089 srv_regobj. Remove rs6000/powerpc-e500.xml and rs6000/power-spe.xml
b6430ec3
UW
6090 from reg_xmlfiles.
6091 * linux-ppc-low.c: Include <elf.h>.
6092 (PPC_FEATURE_HAS_ALTIVEC, PPC_FEATURE_HAS_SPE): Define.
6093 (ppc_hwcap): New global variable.
6094 (ppc_regmap): Remove __SPE__ #ifdef sections.
6095 (ppc_regmap_e500): New global variable.
6096 (ppc_cannot_store_register): Update __SPE__ special case.
6097 (ppc_get_hwcap): New function.
6098 (ppc_arch_setup): Use it to determine whether inferior supports
6099 AltiVec or SPE registers. Set the_low_target.regmap if appropriate.
6100 (ppc_fill_vrregset, ppc_store_vrregset): Define unconditionally.
6101 Do not access registers if target does not support AltiVec.
6102 (ppc_fill_evrregset, ppc_store_evrregset): Define unconditionally.
6103 Do not access registers if target does not support SPE.
6104 (target_regsets): Unconditionally include AltiVec and SPE regsets.
6105
52fa2412
UW
61062008-04-17 Daniel Jacobowitz <dan@codesourcery.com>
6107
6108 * linux-low.c (disabled_regsets, num_regsets): New.
6109 (use_regsets_p): Delete.
6110 (linux_wait_for_process): Clear disabled_regsets.
6111 (regsets_fetch_inferior_registers): Check and set it.
6112 (regsets_store_inferior_registers): Likewise.
6113 (linux_fetch_registers, linux_store_registers): Do not use
6114 use_regsets_p.
6115 (initialize_low): Allocate disabled_regsets.
6116
e28b3332
DJ
61172008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
6118
6119 * Makefile.in (LIBOBJS): New.
6120 (OBS): Use LIBOBJS.
6121 (memmem.o): New rule.
6122 * configure.ac: Use AC_CONFIG_LIBOBJ_DIR and check for memmem.
6123 * configure: Regenerated.
6124
4536995d
UW
61252008-04-04 Ulrich Weigand <uweigand@de.ibm.com>
6126
6127 * server.c (handle_query): Never return "unsupported" for
6128 qXfer:features:read queries.
6129
221c031f
UW
61302008-03-27 Ulrich Weigand <uweigand@de.ibm.com>
6131
6132 * server.c (get_features_xml): Fix inverted condition.
6133 (handle_query): Always support qXfer:feature:read.
6134
ccd213ac
DJ
61352008-03-10 Daniel Jacobowitz <dan@codesourcery.com>
6136
6137 * server.c (wrapper_argv): New.
6138 (start_inferior): Handle wrapper_argv. If set, expect an extra
6139 trap.
6140 (gdbserver_usage): Document --wrapper.
6141 (main): Parse --wrapper.
6142
6fe305f7
UW
61432008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
6144
6145 * configure.srv [powerpc64-*-linux*]: Add all files mentioned for
6146 powerpc-*-linux* to srv_regobj and reg_xmlfiles.
6147 * linux-ppc-low.c (ppc_get_pc): Support bi-arch operation.
6148 (ppc_set_pc): Likewise.
6149 (ppc_arch_setup): New function.
6150 (ppc_fill_gregset): Call ppc_collect_ptrace_register instead
6151 of collect_register.
889bf7c5 6152 (the_low_target): Use ppc_arch_setup as arch_setup initializer.
6fe305f7 6153
5b0a002e
UW
61542008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
6155
6156 * configure.srv [powerpc64-*-linux*]: Use linux-ppc-low.o
6157 instead of linux-ppc64-low.o.
6158 * linux-ppc64-low.c: Remove file.
6159 * Makefile.in (SFILES): Remove linux-ppc64-low.c.
6160 (linux-ppc64-low.o): Remove rule.
6161
6162 * linux-ppc-low.c (init_registers_ppc64): Add prototype.
6163 (init_registers_powerpc_64): Likewise.
6164 (ppc_regmap): Conditionally define depending on __powerpc64__.
6165 (ppc_cannot_store_register): Do not special-case "fpscr" when
6166 compiled on __powerpc64__.
6167 (ppc_collect_ptrace_register): New function.
6168 (ppc_supply_ptrace_register): New function.
6169 (ppc_breakpoint): Change type to "unsigned int".
6170 (ppc_breakpoint_at): Change type of "insn" to "unsigned int".
6171 (the_low_target): Conditionally provide initializers for the
889bf7c5 6172 arch_setup member depending on __powerpc64__. Install
5b0a002e
UW
6173 collect_ptrace_register and supply_ptrace_register members.
6174
9b4b61c8
UW
61752008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
6176
6177 * regcache.h (gdbserver_xmltarget): Add extern declaration.
6178 * server.c (gdbserver_xmltarget): Define.
6179 (get_features_xml): Use it to replace "target.xml" and arch_string.
6180
6181 * configure.srv: Remove srv_xmltarget. Add XML files that were
6182 mentioned there to srv_xmlfiles instead. Remove conditional tests
6183 on gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe; set
6184 srv_xmlfiles and srv_regobj to include all possible choices.
6185 * configure.ac (srv_xmltarget): Remove.
6186 (srv_xmlfiles): Do not add "target.xml".
6187 (gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe): Remove
6188 checks for supplementary target information.
6189 * configure: Regenerate.
6190 * Makefile.in (XML_TARGET): Remove.
6191 (target.xml): Remove rule.
6192 (clean): Do not clean up target.xml.
6193 (.PRECIOUS): Do not mention target.xml.
6194
6195 * target.h (struct target_ops): Remove arch_string member.
6196 * linux-low.c (linux_arch_string): Remove.
6197 (linux_target_ops): Remove arch_string initializer.
6198 * linux-low.h (struct linux_target_ops): Remove arch_string member.
6199 * linux-i386-low.c (the_low_target): Remove arch_string initializer.
6200 * linux-x86-64-low.c (the_low_target): Remove arch_string initializer.
6201 * spu-low.c (spu_arch_string): Remove.
6202 (spu_target_ops): Remove arch_string initializer.
6203 * win32-low.c (win32_arch_string): Remove.
6204 (win32_target_ops): Remove arch_string initializer.
6205 * win32-low.h (struct win32_target_ops): Remove arch_string member.
6206 * win32-arm-low.c (the_low_target): Remove arch_string initializer.
6207 * win32-i368-low.c (the_low_target): Remove arch_string initializer.
6208
ee1a7ae4
UW
62092008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
6210
6211 * linux-low.h (struct linux_target_ops): Replace left_pad_xfer field
6212 by collect_ptrace_register and supply_ptrace_register hooks.
6213 * linux-low.c (fetch_register): Use supply_ptrace_register callback
6214 instead of checking for the_low_target.left_pad_xfer.
6215 (usr_store_inferior_registers): Use collect_ptrace_register callback
6216 instead of checking for the_low_target.left_pad_xfer.
6217
6218 * linux-s390-low.c (s390_collect_ptrace_register): New function.
6219 (s390_supply_ptrace_register): Likewise.
6220 (s390_fill_gregset): Call s390_collect_ptrace_register.
6221 (the_low_target): Update.
6222
6223 * linux-ppc64-low.c (ppc_collect_ptrace_register): New function.
6224 (ppc_supply_ptrace_register): Likewise.
6225 (the_low_target): Update.
6226
6227 * linux-i386-low.c (the_low_target): Update.
6228 * linux-x86-64-low.c (the_low_target): Update.
6229
d61ddec4
UW
62302008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
6231
6232 * configure.srv [s390x-*-linux*]: Set srv_regobj to include both
6233 reg-s390.o and reg-s390x.o.
6234
6235 * linux-low.c (new_inferior): New global variable.
6236 (linux_create_inferior, linux_attach): Set it.
6237 (linux_wait_for_process): Call the_low_target.arch_setup after the
6238 target has stopped for the first time.
6239 (initialize_low): Do not call the_low_target.arch_setup.
6240
6241 * linux-s390-low.c (s390_get_pc): Support bi-arch operation.
6242 (s390_set_pc): Likewise.
6243 (s390_arch_setup): New function.
6244 (the_low_target): Use s390_arch_setup as arch_setup routine.
6245
6246 * regcache.c (realloc_register_cache): New function.
6247 (set_register_cache): Call it for each existing regcache.
6248
d05b4ac3
UW
62492008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
6250
6251 * server.h (init_registers): Remove prototype.
6252
6253 * linux-low.h (struct linux_target_ops): Add arch_setup field.
6254 * linux-low.c (initialize_low): Call the_low_target.arch_setup ()
6255 instead of init_registers ().
6256 * linux-arm-low.c (init_registers_arm): Add prototype.
6257 (init_registers_arm_with_iwmmxt): Likewise.
6258 (the_low_target): Add initializer for arch_setup field.
6259 * linux-cris-low.c (init_registers_cris): Add prototype.
6260 (the_low_target): Add initializer for arch_setup field.
6261 * linux-crisv32-low.c (init_registers_crisv32): Add prototype.
6262 (the_low_target): Add initializer for arch_setup field.
6263 * linux-i386-low.c (init_registers_i386_linux): Add prototype.
6264 (the_low_target): Add initializer for arch_setup field.
6265 * linux-ia64-low.c (init_registers_ia64): Add prototype.
6266 (the_low_target): Add initializer for arch_setup field.
6267 * linux-m32r-low.c (init_registers_m32r): Add prototype.
6268 (the_low_target): Add initializer for arch_setup field.
6269 * linux-m68k-low.c (init_registers_m68k): Add prototype.
6270 (the_low_target): Add initializer for arch_setup field.
6271 * linux-mips-low.c (init_registers_mips_linux): Add prototype.
6272 (init_registers_mips64_linux): Likewise.
6273 (the_low_target): Add initializer for arch_setup field.
6274 * linux-ppc-low.c (init_registers_ppc): Add prototype.
6275 (init_registers_powerpc_32, init_registers_powerpc_e500): Likewise.
6276 (the_low_target): Add initializer for arch_setup field.
6277 * linux-ppc64-low.c (init_registers_ppc64): Add prototype.
6278 (init_registers_powerpc_64): Likewise.
6279 (the_low_target): Add initializer for arch_setup field.
6280 * linux-s390-low.c (init_registers_s390): Add prototype.
6281 (init_registers_s390x): Likewise.
6282 (the_low_target): Add initializer for arch_setup field.
6283 * linux-sh-low.c (init_registers_sh): Add prototype.
6284 (the_low_target): Add initializer for arch_setup field.
6285 * linux-x86-64-low.c (init_registers_x86_64_linux): Add prototype.
6286 (the_low_target): Add initializer for arch_setup field.
6287 * linux-xtensa-low.c (init_registers_xtensa): Add prototype.
6288 (the_low_target): Add initializer for arch_setup field.
6289
6290 * win32-low.h (struct win32_target_ops): Add arch_setup field.
6291 * win32-low.c (initialize_low): Call the_low_target.arch_setup ()
6292 instead of init_registers ().
6293 * win32-arm-low.c (init_registers_arm): Add prototype.
6294 (the_low_target): Add initializer for arch_setup field.
6295 * win32-i386-low.c (init_registers_i386): Add prototype.
6296 (the_low_target): Add initializer for arch_setup field.
6297
6298 * spu-low.c (init_registers_spu): Add prototype.
6299 (initialize_low): Call initialie_registers_spu () instead of
6300 initialize_registers ().
6301
fd96d250
PA
63022008-02-19 Pedro Alves <pedro@codesourcery.com>
6303
6304 * server.c (handle_v_requests): When handling the vRun and vAttach
6305 packets, if already debugging a process, don't kill it. Return an
6306 error instead.
6307
d41b6bb4
DJ
63082008-02-17 Daniel Jacobowitz <dan@codesourcery.com>
6309
6310 * server.c (handle_query): Correct length check.
6311
5ac588cf
PA
63122008-02-14 Pedro Alves <pedro_alves@portugalmail.pt>
6313
6314 * win32-low.c (do_initial_child_stuff): Add process handle
6315 parameter. Set current_process_handle and current_process_id from the
6316 parameters. Clear globals.
6317 (win32_create_inferior): Don't set current_process_handle and
6318 current_process_id here. Instead pass them on the call to
6319 do_initial_child_stuff.
6320 (win32_attach): Likewise.
6321 (win32_clear_inferiors): New.
6322 (win32_kill): Don't close the current process handle or the
6323 current thread handle here. Instead call win32_clear_inferiors.
6324 (win32_detach): Don't open a new handle to the process. Call
6325 win32_clear_inferiors.
6326 (win32_join): Don't rely on current_process_handle; open a new
6327 handle using the process id.
6328 (win32_wait): Call win32_clear_inferiors when the inferior process
6329 has exited.
6330
ecd7ecbc
DJ
63312008-02-14 Daniel Jacobowitz <dan@codesourcery.com>
6332
6333 * server.c (monitor_show_help): Add "exit".
6334
1525d545
MG
63352008-02-11 Maxim Grigoriev <maxim2405@gmail.com>
6336
ecd7ecbc 6337 * Makefile.in (SFILES): Add linux-xtensa-low.c.
1525d545
MG
6338 (clean): Add reg-xtensa.c.
6339 (linux-xtensa-low.o, reg-xtensa.o, reg-xtensa.c): New dependencies.
ecd7ecbc
DJ
6340 * configure.srv (xtensa*-*-linux*) New target.
6341 * linux-xtensa-low.c: New.
6342 * xtensa-xtregs.c: New.
1525d545 6343
59a016f0
PA
63442008-02-01 Pedro Alves <pedro_alves@portugalmail.pt>
6345
6346 * hostio.c: Don't include errno.h.
6347 (errno_to_fileio_errno): Move to hostio-errno.
6348 * hostio.c: (hostio_error): Remove the error parameter. Defer the
6349 error number outputting to the target->hostio_last_error callback.
6350 (hostio_packet_error): Use FILEIO_EINVAL directly.
6351 (handle_open, handle_pread, hostio_error, handle_unlink): Update
6352 calls to hostio_error.
6353 * hostio-errno.c: New.
6354 * server.h (hostio_last_error_from_errno): Declare.
6355 * target.h (target_ops): Add hostio_last_error member.
6356 * linux-low.c (linux_target_op): Register hostio_last_error_from_errno
6357 as hostio_last_error handler.
889bf7c5 6358 * spu-low.c (spu_target_ops): Likewise.
59a016f0
PA
6359 * win32-low.c [_WIN32_WCE] (win32_error_to_fileio_error)
6360 (wince_hostio_last_error): New functions.
6361 (win32_target_ops) [_WIN32_WCE]: Register wince_hostio_last_error
6362 as hostio_last_error handler.
6363 (win32_target_ops) [!_WIN32_WCE]: Register
6364 hostio_last_error_from_errno as hostio_last_error handler.
6365 * Makefile.in (SFILES): Add hostio.c and hostio-errno.c.
6366 (hostio-errno.o): New rule.
6367 * configure.ac (GDBSERVER_DEPFILES): Add $srv_hostio_err_objs.
6368 * configure.srv (srv_hostio_err_objs): New variable. Default to
6369 hostio-errno.o.
6370 (arm*-*-mingw32ce*): Set srv_hostio_err_objs to "".
6371 * configure: Regenerate.
6372
2d717e4f
DJ
63732008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
6374
6375 * linux-low.c (linux_attach_lwp): Do not _exit after errors.
6376 (linux_kill, linux_detach): Clean up the process list.
6377 * remote-utils.c (remote_open): Improve port number parsing.
6378 (putpkt_binary, input_interrupt): Only send interrupts if the target
6379 is running.
6380 * server.c (extended_protocol): Make static.
6381 (attached): Define earlier.
6382 (exit_requested, response_needed, program_argv): New variables.
6383 (target_running): New.
6384 (start_inferior): Clear attached here.
6385 (attach_inferior): Set attached here.
6386 (require_running): Define.
6387 (handle_query): Use require_running and target_running. Implement
6388 "monitor exit".
6389 (handle_v_attach, handle_v_run): New.
6390 (handle_v_requests): Use require_running. Handle vAttach and vRun.
6391 (gdbserver_usage): Update.
6392 (main): Redo argument parsing. Handle --debug and --multi. Handle
6393 --attach along with other options or after the port. Save
6394 program_argv. Support no initial program. Resynchronize
6395 communication with GDB after an error. Handle "monitor exit".
6396 Use require_running and target_running. Always allow the extended
6397 protocol. Do not error out for Hc0 or Hc-1. Do not automatically
6398 restart in extended mode.
6399 * README: Refer to the GDB manual. Update --attach usage.
6400
7407e2de
AS
64012007-12-20 Andreas Schwab <schwab@suse.de>
6402
6403 * linux-low.c (STACK_SIZE): Define.
6404 (linux_tracefork_child): Use it. Use __clone2 on ia64.
6405 (linux_test_for_tracefork): Likewise.
6406
b65d95c5
DJ
64072007-12-18 Daniel Jacobowitz <dan@codesourcery.com>
6408
6409 * linux-low.c (linux_wait_for_event): Update messages. Do not
6410 reinsert auto-delete breakpoints.
6411 * mem-break.c (struct breakpoint): Change return type of handler to
6412 int.
6413 (set_breakpoint_at): Update handler type.
6414 (reinsert_breakpoint_handler): Return 1 instead of calling
6415 delete_breakpoint.
6416 (reinsert_breakpoint_by_bp): Check for the original breakpoint before
6417 setting a new one.
6418 (check_breakpoints): Delete auto-delete breakpoints and return 2.
6419 * mem-break.h (set_breakpoint_at): Update handler type.
6420 * thread-db.c (thread_db_create_event, thread_db_create_event): Update.
6421 * win32-low.c (auto_delete_breakpoint): New.
6422 (get_child_debug_event): Use it.
6423
4e799345
DJ
64242007-12-16 Daniel Jacobowitz <dan@codesourcery.com>
6425
6426 * configure.ac: Check for pread and pwrite.
6427 * hostio.c (handle_pread): Fall back to lseek and read.
6428 (handle_pwrite): Fall back to lseek and write.
6429 * config.in, configure: Regenerated.
6430
27524b67
DJ
64312007-12-07 Daniel Jacobowitz <dan@codesourcery.com>
6432
6433 * server.c (myresume): Add own_buf argument.
6434 (main): Update calls.
6435
a20d5e98
DJ
64362007-12-06 Daniel Jacobowitz <dan@codesourcery.com>
6437
6438 * linux-low.c (linux_wait, linux_resume): Do not handle async I/O.
6439 * remote-utils.c (remote_open): Do not call disable_async_io.
6440 (block_async_io): Delete.
6441 (unblock_async_io): Make static.
6442 (initialize_async_io): New.
6443 * server.c (handle_v_cont): Handle async I/O here.
6444 (myresume): Likewise. Move other common resume tasks here...
6445 (main): ... from here. Call initialize_async_io. Disable async
6446 I/O before the main loop.
6447 * server.h (initialize_async_io): Declare.
6448 (block_async_io, unblock_async_io): Delete prototypes.
6449 * spu-low.c (spu_resume, spu_wait): Do not handle async I/O here.
6450
b79d787e
DJ
64512007-12-06 Mick Davis <mickd@goanna.iinet.net.au>
6452
6453 * remote-utils.c (readchar): Allow binary data in received messages.
6454
d97903b2
PA
64552007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
6456
6457 * win32-low.c (attaching): New global.
6458 (win32_create_inferior): Clear the `attaching' global.
6459 (win32_attach): Set the `attaching' global.
6460 (get_child_debug_event) [_WIN32_WCE]: Stop the inferior when
6461 attaching. Only set a breakpoint at the entry point if not
6462 attaching.
6463
311de423
PA
64642007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
6465
6466 * server.c (main): Don't report dll events on the initial
6467 connection on attaches.
6468
6c2d16d2
PA
64692007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
6470
6471 * server.c (main): Relax numerical bases supported for the pid of
6472 the --attach command line argument.
6473
5ca906e6
PA
64742007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
6475
6476 * win32-low.c (win32_attach): Call OpenProcess before
6477 DebugActiveProcess, not after. Add last error output to error
6478 call.
6479
9c6c8194
PA
64802007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
6481
6482 * win32-low.c (win32_get_thread_context)
6483 (win32_set_thread_context): New functions.
6484 (thread_rec): Use win32_get_thread_context.
6485 (continue_one_thread, win32_resume): Use win32_set_thread_context.
6486 * win32-low.h (win32_thread_info) [_WIN32_WCE]: Add `base_context'
6487 field.
6488
4d5d1aaa
PA
64892007-12-03 Leo Zayas
6490 Pedro Alves <pedro_alves@portugalmail.pt>
6491
6492 * win32-low.c (soft_interrupt_requested, faked_breakpoint): New
6493 global variables.
6494 (child_add_thread): Minor cleanup.
6495 (child_continue): Resume artificially suspended threads before
6496 calling ContinueDebugEvent.
6497 (suspend_one_thread): New.
6498 (fake_breakpoint_event): New.
6499 (get_child_debug_event): Change return type to int. Check here if
6500 gdb sent an interrupt request. If a soft interrupt was requested,
6501 fake a breakpoint event. Return 0 if there is no event to handle,
6502 and 1 otherwise.
6503 (win32_wait): Don't check here if gdb sent an interrupt request.
6504 Ensure there is a valid event to handle.
6505 (win32_request_interrupt): Add soft interruption method as last
6506 resort.
6507
c436e841
PA
65082007-12-03 Leo Zayas
6509 Pedro Alves <pedro_alves@portugalmail.pt>
6510
6511 * win32-low.h (win32_thread_info): Add descriptions to the
6512 structure members. Replace `suspend_count' counter by a
6513 `suspended' flag.
6514 * win32-low.c (thread_rec): Update condition of when to get the
6515 context from the inferior. Rely on ContextFlags being set if it
6516 has already been retrieved. Only suspend the inferior thread if
6517 we haven't already. Warn if that fails.
6518 (continue_one_thread): s/suspend_count/suspended/. Only call
6519 ResumeThread once. Warn if that fails.
6520
e7b5fa67
PA
65212007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
6522
6523 * win32-low.c (win32_wait): Don't read from the inferior when it
6524 has already exited.
6525
a385171d
PA
65262007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
6527
6528 * Makefile.in (win32_low_h): New variable.
6529 (win32-low.o): Add dependency on $(win32_low_h).
6530 (win32-arm-low.o, win32-i386-low.o): New rules.
6531
f80c84b3
DJ
65322007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
6533
6534 * hostio.c: Correct copyright year.
6535
a6b151f1
DJ
65362007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
6537
6538 * Makefile.in (OBS): Add hostio.o.
6539 (hostio.o): New rule.
6540 * server.h (handle_vFile): Declare.
6541 * hostio.c: New file.
6542 * server.c (handle_v_requests): Take packet_len and new_packet_len
6543 for binary packets. Call handle_vFile.
6544 (main): Update call to handle_v_requests.
6545
f9387fc3
DJ
65462007-11-05 Daniel Jacobowitz <dan@codesourcery.com>
6547
6548 * linux-low.c: Include <sched.h>.
6549
51c2684e
DJ
65502007-11-01 Daniel Jacobowitz <dan@codesourcery.com>
6551
6552 * linux-low.c (linux_tracefork_grandchild): New.
6553 (linux_tracefork_child): Use clone.
6554 (linux_test_for_tracefork): Use clone; allocate and free a stack.
6555
75f83163
JB
65562007-10-31 Joel Brobecker <brobecker@adacore.com>
6557
6558 * Makefile.in: Use $(SHELL) instead of "sh" to call regdat.sh.
6559
da5898ce
DJ
65602007-10-24 Daniel Jacobowitz <dan@codesourcery.com>
6561
6562 * linux-low.c (handle_extended_wait): Handle unexpected signals.
6563
24a09b5f
DJ
65642007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
6565
6566 * inferiors.c (change_inferior_id): Delete.
6567 (add_pid_to_list, pull_pid_from_list): New.
6568 * linux-low.c (PTRACE_SETOPTIONS, PTRACE_GETEVENTMSG)
6569 (PTRACE_O_TRACESYSGOOD, PTRACE_O_TRACEFORK, PTRACE_O_TRACEVFORK)
6570 (PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXEC, PTRACE_O_TRACEVFORKDONE)
6571 (PTRACE_O_TRACEEXIT, PTRACE_EVENT_FORK, PTRACE_EVENT_VFORK)
6572 (PTRACE_EVENT_CLONE, PTRACE_EVENT_EXEC, PTRACE_EVENT_VFORK_DONE)
6573 (PTRACE_EVENT_EXIT, __WALL): Provide default definitions.
6574 (stopped_pids, thread_db_active, must_set_ptrace_flags): New variables.
6575 (using_threads): Always set to 1.
6576 (handle_extended_wait): New.
6577 (add_process): Do not set TID.
6578 (linux_create_inferior): Set must_set_ptrace_flags.
6579 (linux_attach_lwp): Remove TID argument. Do not check using_threads.
6580 Use PTRACE_SETOPTIONS. Call new_thread_notify. Update all callers.
6581 (linux_thread_alive): Rename TID argument to LWPID.
6582 (linux_wait_for_process): Handle unknown processes. Do not use TID.
6583 (linux_wait_for_event): Do not use TID or check using_threads. Update
6584 call to dead_thread_notify. Call handle_extended_wait.
6585 (linux_create_inferior): Use PTRACE_SETOPTIONS.
6586 (send_sigstop): Delete sigstop_sent.
6587 (wait_for_sigstop): Avoid TID.
6588 (linux_supports_tracefork_flag, linux_tracefork_child, my_waitpid)
6589 (linux_test_for_tracefork): New.
6590 (linux_lookup_signals): Use thread_db_active and
6591 linux_supports_tracefork_flag.
6592 (initialize_low): Use thread_db_active and linux_test_for_tracefork.
6593 * linux-low.h (get_process_thread): Avoid TID.
6594 (struct process_ifo): Move thread_known and tid to the end. Remove
6595 sigstop_sent.
6596 (linux_attach_lwp, thread_db_init): Update prototypes.
6597 * server.h (change_inferior_id): Delete prototype.
6598 (add_pid_to_list, pull_pid_from_list): New prototypes.
6599 * thread-db.c (thread_db_use_events): New.
6600 (find_first_thread): Rename to...
6601 (find_one_thread): ...this. Update callers and messages. Do not
6602 call fatal. Check thread_db_use_events. Do not call
6603 change_inferior_id or new_thread_notify.
6604 (maybe_attach_thread): Update. Do not call new_thread_notify.
6605 (thread_db_init): Set thread_db_use_events. Check use_events.
6606 * utils.c (fatal, warning): Correct message prefix.
6607
30ed0a8f
DJ
66082007-10-15 Daniel Jacobowitz <dan@codesourcery.com>
6609
6610 * Makefile.in (clean): Remove new files.
6611 (powerpc-32.o, powerpc-32.c, powerpc-e500.o, powerpc-e500.c)
6612 (powerpc-64.o, powerpc-64.c): New rules.
6613 * configure.srv: Use alternate register sets for powerpc64-*-linux*
6614 with AltiVec, powerpc-*-linux* with AltiVec, and powerpc-*-linux*
6615 with SPE.
6616 * linux-ppc-low.c (ppc_regmap): Do not fetch the FP registers for
6617 SPE targets.
6618 (ppc_cannot_store_register): Do not check for FPSCR for SPE targets.
6619 (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS, ppc_fill_vrregset)
6620 (ppc_store_vrregset, PTRACE_GETEVRREGS, PTRACE_SETEVRREGS)
6621 (struct gdb_evrregset_t, ppc_fill_evrregset, ppc_store_evrregset): New.
6622 (target_regsets): Add AltiVec and SPE register sets.
6623 * configure.ac: Check for AltiVec and SPE.
6624 * linux-ppc64-low.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS)
6625 (ppc_fill_vrregset, ppc_store_vrregset): New.
6626 (target_regsets): Add AltiVec register set.
6627 * configure: Regenerated.
6628
fd462a61
DJ
66292007-09-19 Daniel Jacobowitz <dan@codesourcery.com>
6630
6631 * linux-low.c (O_LARGEFILE): Define.
6632 (linux_read_memory): Use /proc/PID/mem.
6633 * configure.ac: Use AC_GNU_SOURCE. Check for pread64.
6634 * configure, config.in: Regenerated.
6635
69f223ed
DJ
66362007-09-04 Daniel Jacobowitz <dan@codesourcery.com>
6637
6638 * linux-low.c (linux_wait_for_event): Do not pass signals while
6639 single-stepping.
6640
aec18585
PA
66412007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
6642
6643 * win32-low.c (create_process): New.
6644 (win32_create_inferior): Use create_process instead of
6645 CreateProcess. If create_process failed retry appending an ".exe"
6646 suffix. Store the GetLastError result immediatelly after
6647 create_process calls and use it on the call to error.
6648
34d86ddd
PA
66492007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
6650
6651 * win32-low.c (handle_load_dll): Don't use toolhelp when waiting.
6652
5a0e3bd0
JB
66532007-08-23 Joel Brobecker <brobecker@adacore.com>
6654
6655 * configure.ac: Switch license to GPLv3.
6656
f88c79e6
MS
66572007-08-01 Michael Snyder <msnyder@access-company.com>
6658
6659 * remote-utils.c (putpkt_binary): Memory leak, free buf2.
6660
6b3d9b83
PA
66612007-07-31 Pedro Alves <pedro_alves@portugalmail.pt>
6662
6663 * win32-low.c (winapi_CloseToolhelp32Snapshot) [_WIN32_WCE]: New
6664 typedef.
6665 (win32_CloseToolhelp32Snapshot) [_WIN32_WCE]: New global var.
6666 (load_toolhelp) [_WIN32_WCE]: Load TOOLHELP.DLL. Get
6667 CloseToolhelp32Snapshot.
6668 (toolhelp_get_dll_name) [_WIN32_WCE]: Close the snapshot with
6669 CloseToolhelp32Snapshot.
6670
c588c53c
MS
66712007-07-27 Michael Snyder <michael.snyder@access-company.com>
6672
6673 * server.c (main): Check for inferior exit before main loop.
6674
aa0403d9
PA
66752007-07-18 Pedro Alves <pedro_alves@portugalmail.pt>
6676
6677 * remote-utils.c (remote_open): Set SO_KEEPALIVE on remote_desc
6678 instead of on tmp_desc.
6679
255e7678
DJ
66802007-07-17 Pedro Alves <pedro_alves@portugalmail.pt>
6681 Daniel Jacobowitz <dan@codesourcery.com>
6682
6683 * inferiors.c (all_dlls, dlls_changed, get_dll): New.
6684 (add_thread): Minor cleanups.
6685 (clear_inferiors): Move lower in the file. Clear the DLL
6686 list.
6687 (free_one_dll, match_dll, loaded_dll, unloaded_dll, clear_list): New.
6688 * remote-utils.c (prepare_resume_reply): Check dlls_changed.
6689 (xml_escape_text): New.
6690 * server.c (handle_query): Handle qXfer:libraries:read. Report it
6691 for qSupported.
6692 (handle_v_cont): Report errors.
6693 (gdbserver_version): Update.
6694 (main): Correct size of own_buf. Do not report initial DLL events.
6695 * server.h (struct dll_info, all_dlls, dlls_changed, loaded_dll)
6696 (unloaded_dll, xml_escape_text): New.
6697 * win32-low.c (enum target_waitkind): Update comments.
6698 (win32_add_one_solib, get_image_name, winapi_EnumProcessModules)
6699 (winapi_GetModuleInformation, winapi_GetModuleFileNameExA)
6700 (win32_EnumProcessModules, win32_GetModuleInformation)
6701 (win32_GetModuleFileNameExA, load_psapi, psapi_get_dll_name)
6702 (winapi_CreateToolhelp32Snapshot, winapi_Module32First)
6703 (winapi_Module32Next, win32_CreateToolhelp32Snapshot)
6704 (win32_Module32First, win32_Module32Next, load_toolhelp)
6705 (toolhelp_get_dll_name, handle_load_dll, handle_unload_dll): New.
6706 (get_child_debug_event): Handle DLL events.
6707 (win32_wait): Likewise.
6708
0d37add9
DJ
67092007-07-12 Daniel Jacobowitz <dan@codesourcery.com>
6710
6711 * configure.srv: Set srv_linux_regsets for sh*-*-linux*.
6712 * linux-sh-low.c (sh_fill_gregset, target_regsets): New.
6713
45e2715e
PA
67142007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
6715
6716 * win32-low.c (handle_output_debug_string): Ignore event if not
6717 waiting.
6718
c5674cf1
PA
67192007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
6720
6721 * win32-arm-low.c (arm_wince_breakpoint): Fix typo.
6722
2bbe3cc1
DJ
67232007-07-03 Daniel Jacobowitz <dan@codesourcery.com>
6724
6725 * remote-utils.c (look_up_one_symbol): Handle 'm' packets.
6726
ae13219e
DJ
67272007-07-02 Daniel Jacobowitz <dan@codesourcery.com>
6728
6729 * inferiors.c (change_inferior_id): Add comment.
6730 * linux-low.c (check_removed_breakpoint): Add an early
6731 prototype. Improve debug output.
6732 (linux_attach): Doc update.
6733 (linux_detach_one_process, linux_detach): Clean up before releasing
6734 each process.
6735 (send_sigstop, wait_for_sigstop): Improve comments and debug output.
6736 * linux-low.h (struct process_info): Doc improvement.
6737 * mem-break.c (delete_all_breakpoints): New.
6738 * mem-break.h (delete_all_breakpoints): New prototype.
6739 * thread-db.c (find_first_thread): New.
6740 (thread_db_create_event): Call it instead of
6741 thread_db_find_new_threads. Clean up unused variables.
6742 (maybe_attach_thread): Remove first thread handling.
6743 (thread_db_find_new_threads): Use find_first_thread.
6744 (thread_db_get_tls_address): Likewise.
6745
4105de34
DJ
67462007-06-27 Daniel Jacobowitz <dan@codesourcery.com>
6747
6748 * thread-db.c (thread_db_find_new_threads): Add prototype.
6749 (thread_db_create_event): Check for the main thread before adding
6750 a new thread.
6751 (maybe_attach_thread): Only enable event reporting if TID == 0.
6752 (thread_db_get_tls_address): Check for new threads.
6753
2b876972
DJ
67542007-06-20 Daniel Jacobowitz <dan@codesourcery.com>
6755
6756 * linux-low.c (linux_create_inferior): Try execv before execvp.
6757 * spu-low.c (spu_create_inferior): Likewise.
6758
7a245884
DJ
67592007-06-13 Mike Frysinger <vapier@gentoo.org>
6760
6761 * linux-low.c (linux_create_inferior): Change execv to execvp.
6762 * spu-low.c (spu_create_inferior): Likewies.
6763
117ce543
DJ
67642007-06-13 Daniel Jacobowitz <dan@codesourcery.com>
6765
6766 * Makefile.in (clean): Clean new files instead of deleted ones.
6767 (reg-mips.o, reg-mips.c, reg-mips64.o, reg-mips64.c): Delete.
6768 (mips-linux.o, mips-linux.c, mips64-linux.o, mips64-linux.c): New
6769 rules.
6770 * configure.srv: Specify XML files and new regformats for MIPS and
6771 MIPS64 GNU/Linux.
6772 * linux-mips-low.c (mips_num_regs): Set to only used registers.
6773 (mips_regmap): Do not fetch $0. Remove unused registers. Add
6774 an entry for the restart register.
6775 (mips_cannot_fetch_register, mips_cannot_store_register)
6776 (mips_reinsert_addr, mips_fill_fpregset, mips_store_fpregset): Update
6777 register names to match the XML descriptions.
6778 (mips_fill_gregset, mips_store_gregset): Likewise. Handle the
6779 restart register instead of $0.
6780
0e7f50da
UW
67812007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
6782 Markus Deuling <deuling@de.ibm.com>
6783
6784 * remote-utils.c (decode_xfer_write): New function.
6785 * server.h (decode_xfer_write): Add prototype.
6786 * server.c (handle_query): Add PACKET_LEN argument. Support
6787 qXfer:spu:read and qXfer:spu:write packets.
6788 (main): Pass packet_len to handle_query.
6789 * spu-low.c (spu_target_ops): Add spu_proc_xfer_spu.
6790 * target.h (target_ops): Add qxfer_spu.
6791
374c1d38
UW
67922007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
6793
6794 * spu-low.c (spu_proc_xfer_spu): Do not return failure when
6795 accessing non-seekable spufs files.
6796
bb63802a
UW
67972007-05-16 Markus Deuling <deuling@de.ibm.com>
6798
889bf7c5 6799 * server.c (handle_query): Add reply for qC packet.
bb63802a 6800
7390519e
PA
68012007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
6802 Leo Zayas <lerele@champenstudios@com>
6803
6804 * server.h (check_remote_input_interrupt_request): New function.
6805 * remote_utils.c (INVALID_DESCRIPTOR): New define.
6806 (remote_desc): Initialize with INVALID_DESCRIPTOR.
6807 (input_interrupt): Expose on USE_WIN32API too. Fix whitespace.
6808 (check_remote_input_interrupt_request): New function.
6809 * server.h (check_remote_input_interrupt_request): Declare.
3ecf0694 6810 * win32-low.c (winapi_DebugBreakProcess,
7390519e
PA
6811 winapi_GenerateConsoleCtrlEvent): New typedefs.
6812 (get_child_debug_event): Lower Win32 debug event polling from 1 sec
6813 to 250 ms.
6814 (win32_wait): Check for remote interrupt request
6815 with check_remote_input_interrupt_request.
6816 (win32_request_interrupt): New function.
6817 (win32_target_op): Set request_interrupt to win32_request_interrupt.
6818
34b34921
PA
68192007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
6820
6821 * win32-low.c (debug_registers_changed,
6822 debug_registers_used, CONTEXT_EXTENDED_REGISTERS,
6823 CONTEXT_FLOATING_POINT, CONTEXT_DEBUG_REGISTERS,
6824 CONTEXT_DEBUGGER, CONTEXT_DEBUGGER_DR): Delete.
6825 (thread_rec): Get context using the low target.
6826 (child_add_thread): Call thread_added on the low target,
6827 which does the same thing.
6828 (regptr): Delete.
6829 (do_initial_child_stuff): Remove debug registers references.
6830 Set context using the low target. Resume threads after
6831 setting the contexts.
6832 (child_continue): Remove dead variable. Remove debug
6833 registers references.
6834 (child_fetch_inferior_registers): Go through the low target.
6835 (do_child_store_inferior_registers): Remove.
6836 (child_store_inferior_registers): Go through the low target.
6837 (win32_resume): Remove debug registers references.
6838 Set context using the low target.
6839 (handle_exception): Change return type to void. Don't record
6840 context here. Set status to TARGET_WAITKIND_SPURIOUS on a
6841 first chance exception.
889bf7c5 6842 (get_child_debug_event): Change return type to void. Remove
34b34921
PA
6843 goto loop. Always return after waiting for debug event.
6844 (win32_wait): Convert to switch statement. Handle spurious
6845 events.
6846
6847 * win32-i386-low.c (debug_registers_changed,
6848 debug_registers_used): New.
6849 (initial_stuff): Rename to ...
6850 (i386_initial_stuff): ... this. Clear debug registers
6851 state variables.
6852 (store_debug_registers): Delete.
6853 (i386_get_thread_context): New.
6854 (load_debug_registers): Delete.
6855 (i386_set_thread_context): New.
6856 (i386_thread_added): New.
6857 (single_step): Rename to ...
6858 (i386_single_step): ... this.
6859 (do_fetch_inferior_registers): Rename to ...
6860 (i386_fetch_inferior_register): ... this.
6861 (i386_store_inferior_register): New.
6862 (the_low_target): Adapt to new interface.
6863
6864 * win32-arm-low.c (CONTEXT_FLOATING_POINT): Define.
6865 (arm_get_thread_context): New.
6866 (arm_set_thread_context): New.
6867 (regptr): New.
6868 (do_fetch_inferior_registers): Rename to ...
6869 (arm_fetch_inferior_register): ... this.
6870 (arm_store_inferior_register): New.
6871 (arm_wince_breakpoint): Reimplement as unsigned long.
6872 (arm_wince_breakpoint_len): Define.
6873 (the_low_target): Adapt to new interface.
6874
6875 * win32-low.h (target_ops): Remove regmap, store_debug_registers and
6876 load_debug_registers. Add get_thread_context, set_thread_context,
6877 thread_added and store_inferior_register. Rename
6878 fetch_inferior_registers to fetch_inferior_register.
6879 (regptr): Remove declaration.
6880
dd6953e1
PA
68812007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
6882
6883 * linux-low.c (linux_detach): Change return type to int. Return 0.
6884 * spu-low.c (spu_detach): Likewise.
6885
444d6139
PA
68862007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
6887
6888 * target.h (target_ops): Change return type of detach to int.
6889 Add join.
6890 (join_inferior): New.
6891 * server.c (main): Don't skip detach support on mingw32.
6892 If the inferior doesn't support detaching return error.
6893 Call join_inferior instead of using waitpid.
6894 * linux-low.c (linux_join): New.
6895 (linux_target_op): Add linux_join.
6896 * spu-low.c (spu_join): New.
6897 (spu_target_ops): Add spu_join.
6898 * win32-low.c (win32_detach): Adapt to new interface.
6899 Reopen current_process_handle before detaching. Issue a child
6900 resume before detaching.
6901 (win32_join): New.
6902 (win32_target_op): Add win32_join.
6903
1d5315fe
PA
69042007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
6905
6906 * win32-low.c (win32-attach): Fix return value.
6907 * target.h (target_ops): Describe ATTACH return values.
6908
bf914831
PA
69092007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
6910
6911 * win32-low.c (GETPROCADDRESS): Define.
6912 (winapi_DebugActiveProcessStop): Add WINAPI. typedef as pointer.
6913 (winapi_DebugSetProcessKillOnExit): Likewise.
6914 (win32_create_inferior): Force usage of ansi CreateProcessA.
6915 (win32_attach): Use GETPROCADDRESS.
6916 (win32_detach): Likewise.
6917
f72f3e60
PA
69182007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
6919
6920 * win32-low.c (win32_wait): Don't use WSTOPSIG.
6921
ed50f18f
PA
69222007-03-30 Pedro Alves <pedro_alves@portugalmail.pt>
6923
6924 * win32-low.c: Commit leftover changes from 2007-03-29.
6925
0c2ead7e
DJ
69262007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
6927
6928 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Make 16-bit
6929 fields short instead of int. Add explicit padding.
6930 (i387_cache_to_fsave): Remove unnecessary casts.
6931 (i387_fsave_to_cache): Doc fix.
6932 (i387_cache_to_fxsave): Remove unnecessary casts and masking.
6933
73725ff3
DJ
69342007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
6935
6936 * i387-fp.c (i387_cache_to_fxsave): Reinitialize val2 before use.
6937 (i387_fxsave_to_cache): Check fp->ftag while building ftag value.
6938
d99f33d8
PA
69392007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
6940
6941 * configure.srv (arm*-*-mingw32ce*): Move near the other
6942 arm targets.
6943
68070c10
PA
69442007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
6945
2482afc6 6946 * configure.ac: Add errno checking.
68070c10
PA
6947 (AC_CHECK_HEADERS): Add errno.h, fcntl.h, signal.h,
6948 sys/file.h and malloc.h.
6949 (AC_CHECK_DECLS): Add perror.
6950 (srv_mingwce): Handle.
2482afc6 6951 * configure.srv (i[34567]86-*-cygwin*): Add
68070c10
PA
6952 win32-i386-low.o to srv_tgtobj.
6953 (i[34567]86-*-mingw*): Likewise.
6954 (arm*-*-mingw32ce*): Add case.
6955 * gdbreplay.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
6956 HAVE_FCNTL_H, HAVE_ERRNO_H, HAVE_MALLOC_H]: Check.
6957 [__MINGW32CE__] (strerror): New function.
6958 [__MINGW32CE__] (errno): Define to GetLastError.
6959 [__MINGW32CE__] (COUNTOF): New macro.
6960 (remote_open): Remove extra close call.
6961 * mem-break.c (delete_breakpoint_at): New function.
6962 * mem-break.h (delete_breakpoint_at): Declare.
6963 * remote-utils.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
6964 HAVE_FCNTL_H, HAVE_UNISTD_H, HAVE_ERRNO_H]: Check.
6965 [USE_WIN32API] (read, write): Add char* casts.
6966 * server.c [HAVE_UNISTD_H, HAVE_SIGNAL_H]: Check.
6967 * server.h: Include wincecompat.h on Windows CE.
6968 [HAVE_ERRNO_H]: Check.
6969 (perror): Declare if not declared.
6970 * utils.c: Add stdlib.h, errno.h and malloc.h includes.
6971 (perror_with_name): Remove errno declaration.
6972 * wincecompat.h: New.
6973 * wincecompat.c: New.
6974 * win32-low.h: New.
6975 * win32-arm-low.c: New.
6976 * win32-i386-low.c: New.
6977 (win32-low.c): Include mem-break.h and win32-low.h, and winnt.h.
6978 (OUTMSG2): Make it safe.
6979 (_T): New macro.
6980 (COUNTOF): New macro.
6981 (NUM_REGS): Get it from the low target.
6982 (CONTEXT_EXTENDED_REGISTERS, CONTEXT_FLOATING_POINT,
6983 CONTEXT_DEBUG_REGISTERS): Add fallbacks to 0.
6984 (thread_rec): Let low target handle debug registers.
6985 (child_add_thread): Likewise.
6986 (child_init_thread_list): Likewise.
6987 (continue_one_thread): Likewise.
6988 (regptr): New.
6989 (do_child_fetch_inferior_registers): Move to ...
6990 * win32-i386-low.c: ... here, and rename to ...
6991 (do_fetch_inferior_registers): ... this.
889bf7c5 6992 * win32-low.c (child_fetch_inferior_registers):
68070c10
PA
6993 Go through the low target.
6994 (do_child_store_inferior_registers): Use regptr.
6995 (strwinerror): New function.
6996 (win32_create_inferior): Handle Windows CE.
6997 Use strwinerror instead of strerror on Windows error
6998 codes. Add program to the error output.
6999 Don't close the main thread handle on Windows CE.
7000 (win32_attach): Use coredll.dll on Windows CE.
7001 (win32_kill): Close current process and current
7002 thread handles.
7003 (win32_detach): Use coredll.dll on Windows CE.
7004 (win32_resume): Let low target handle debug registers, and
7005 step request.
7006 (handle_exception): Add/Remove initial breakpoint. Avoid
7007 non-existant WSTOPSIG on Windows CE.
7008 (win32_read_inferior_memory): Cast to remove warning.
7009 (win32_arch_string): Go through the low target.
7010 (initialize_low): Call set_breakpoint_data with the low
7011 target's breakpoint.
7012 * win32-low.c (dr, FLAG_TRACE_BIT, FCS_REGNUM,
7013 FOP_REGNUM, mappings): Move to ...
7014 * win32-i386-low.c: ... here.
7015 * win32-low.c (win32_thread_info): Move to ...
7016 * win32-low.h: ... here.
7017 * Makefile.in (SFILES): Add win32-low.c, win32-i386-low.c,
7018 win32-arm-low.c and wincecompat.c.
7019 (all:): Add $EXEEXT.
7020 (install-only:): Likewise.
7021 (gdbserver:): Likewise.
7022 (gdbreplay:): Likewise.
7023 * config.in: Regenerate.
7024 * configure: Regenerate.
7025
41093d81
PA
70262007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
7027
7028 * win32-low.c: Rename typedef thread_info to
7029 win32_thread_info throughout.
7030
544afa54
PA
70312007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
7032
7033 * win32-i386-low.c: Rename to ...
7034 * win32-low.c: ... this.
7035 * configure.srv: Replace win32-i386-low.o with win32-low.o.
7036 * Makefile.in: Likewise.
7037
bce7165d
PA
70382007-03-27 Pedro Alves <pedro_alves@portugalmail.pt>
7039
7040 * remote-utils.c (monitor_output): Constify msg parameter.
7041 * server.h (monitor_output): Likewise.
7042 * win32-i386-low.c (handle_output_debug_string): New.
7043 (win32_kill): Handle OUTPUT_DEBUG_STRING_EVENT events using
7044 handle_output_debug_string.
7045 (get_child_debug_event): Likewise.
7046
506c7aa0
DJ
70472007-03-27 Mat Hostetter <mat@lcs.mit.edu>
7048
7049 * server.c (main): Correct strtoul check.
7050
42c81e2a
DJ
70512007-03-27 Jon Ringle <jon@ringle.org>
7052
7053 * linux-low.c: Check __ARCH_HAS_MMU__ also.
7054
9453113a
DJ
70552007-03-27 Brooks Moses <brooks.moses@codesourcery.com>
7056
7057 * Makefile.in: Add dummy "pdf" and "install-pdf" targets.
7058
64a69107
DJ
70592007-02-27 Daniel Jacobowitz <dan@codesourcery.com>
7060
7061 * terminal.h: Check HAVE_SGTTY_H.
7062
70632007-02-27 Mat Hostetter <mat@lcs.mit.edu>
6f8486da
DJ
7064
7065 * remote-utils.c (remote_open): Print out the assigned port number.
7066
c74d0ad8
DJ
70672007-02-26 Daniel Jacobowitz <dan@codesourcery.com>
7068
7069 * remote-utils.c (monitor_output): New function.
7070 * server.c (debug_threads): Define here.
7071 (monitor_show_help): New function.
7072 (handle_query): Handle qRcmd.
7073 (main): Do not handle 'd' packet.
7074 * server.h (debug_threads, remote_debug, monitor_output): Declare.
7075 * linux-low.c, spu-low.c, win32-i386-low.c: Remove definitions
7076 of debug_threads.
7077
de7c3b4a
PA
70782007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
7079
7080 * Makefile.in (EXEEXT): New.
7081 (clean): Use $(EXEEXT).
7082
ef57601b
PA
70832007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
7084
7085 * target.h (target_ops): Rename send_signal to request_interrupt,
7086 and remove enum target_signal parameter.
7087 * linux-low.c (linux_request_interrupt): Rename from
7088 linux_send_signal, and always send SIGINT.
7089 * spu-low.c (spu_request_interrupt): Rename from spu_send_signal,
7090 and always send SIGINT.
7091 * remote-utils.c (putpkt_binary): Call request_interrupt, instead
7092 of send_signal.
7093 (input_interrupt): Likewise.
7094
820f2bda
PA
70952007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
7096
7097 * server.c (get_features_xml): Check if target implemented
7098 arch_string.
7099 * win32-i386-low.c (win32_arch_string): New.
7100 (win32_target_ops): Add win32_arch_string as arch_string member.
7101
ab39bf24
UW
71022007-02-22 Markus Deuling <deuling@de.ibm.com>
7103
7104 * spu-low.c (spu_arch_string): New.
7105 (spu_target_ops): Add spu_arch_string.
7106
61ff6e04
DJ
71072007-02-16 Daniel Jacobowitz <dan@codesourcery.com>
7108
7109 * remote-utils.c: Remove HAVE_TERMINAL_H check.
7110 * configure.ac: Do not check for terminal.h.
7111 * configure, config.in: Regenerated.
7112
fb1e4ffc
DJ
71132007-02-08 Daniel Jacobowitz <dan@codesourcery.com>
7114
7115 * Makefile.in (OBS): Add $(XML_BUILTIN).
7116 (XML_DIR, XML_TARGET, XML_FILES, XML_BUILTIN): New.
7117 (clean): Update.
7118 (target.xml, xml-builtin.c, stamp-xml, arm-with-iwmmxt.o)
7119 (arm-with-iwmmxt.c): New.
7120 * config.in, configure: Regenerate.
7121 * configure.ac: Check for iWMMXt. Handle srv_xmltarget,
7122 srv_xmlbuiltin, and srv_xmlfiles. Define USE_XML.
7123 * configure.srv: Mention srv_xmltarget and srv_xmlfiles.
7124 (arm*-*-linux*): Add iWMMXt and regset support.
7125 * linux-arm-low.c (PTRACE_GETWMMXREGS, PTRACE_SETWMMXREGS): Define.
7126 (arm_fill_gregset, arm_store_gregset, arm_fill_wmmxregset)
7127 (arm_store_wmmxregset, target_regsets): New.
7128 * server.c (get_features_xml): Take annex argument. Check builtin
7129 XML documents.
7130 (handle_query): Handle multiple annexes.
7131
0f48aa01
DJ
71322007-01-29 Daniel Jacobowitz <dan@codesourcery.com>
7133
7134 * remote-utils.c [USE_WIN32API] (read, write): Define.
7135 (putpkt_binary, input_interrupt, readchar, getpkt): Use read and
7136 write.
7137
23181151
DJ
71382007-01-09 Daniel Jacobowitz <dan@codesourcery.com>
7139
7140 * linux-i386-low.c (the_low_target): Set arch_string.
7141 * linux-x86-64-low.c (the_low_target): Likewise.
7142 * linux-low.c (linux_arch_string): New.
7143 (linux_target_ops): Add it.
7144 * linux-low.h (struct linux_target_ops): Add arch_string.
7145 * server.c (write_qxfer_response): Use const void * for DATA.
7146 (get_features_xml): New.
7147 (handle_query): Handle qXfer:features:read. Report it for qSupported.
7148 * target.h (struct target_ops): Add arch_string method.
7149
9d606399
DJ
71502007-01-03 Denis Pilat <denis.pilat@st.com>
7151 Daniel Jacobowitz <dan@codesourcery.com>
7152
7153 * linux-low.c (linux_kill): Handle being called with no threads.
7154 * win32-i386-low.c (win32_kill): Likewise.
7155 (get_child_debug_event): Clear current_process_handle.
7156
71572006-12-30 Denis PILAT <denis.pilat@st.com>
8264bb58
DJ
7158 Daniel Jacobowitz <dan@codesourcery.com>
7159
7160 * remote-utils.c (remote_open): Check the type of specified
7161 serial port devices before opening them.
7162 * server.c (main): Kill the inferior if an error occurs during
7163 the first remote_open.
7164
a5e13d24
DJ
71652006-12-05 Markus Deuling <deuling@de.ibm.com>
7166
7167 * README: Update supported targets.
7168
186947f7
DJ
71692006-11-28 Daniel Jacobowitz <dan@codesourcery.com>
7170
7171 * Makefile.in (clean): Remove reg-mips64.c.
7172 (reg-mips64.c, reg-mips64.o): New rules.
7173 * configure.srv: Handle mips64. Include regset support for mips.
7174 * linux-mips-low.c (union mips_register): New.
7175 (mips_get_pc, mips_set_pc, mips_reinsert_addr): Use it.
7176 (mips_breakpoint, mips_breakpoint_at): Use int.
7177 (mips_collect_register, mips_supply_register)
7178 (mips_collect_register_32bit, mips_supply_register_32bit)
7179 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
7180 (mips_store_fpregset, target_regsets): New.
7181 * thread-db.c (thread_db_get_tls_address): Use uintptr_t.
7182
a13e2c95
UW
71832006-11-22 Ulrich Weigand <uweigand@de.ibm.com>
7184
7185 * configure.srv: Add target "spu*-*-*".
7186 * Makefile.in (clean): Remove reg-spu.c.
7187 (reg-spu.c, reg-spu.o, spu-low.o): Add dependencies.
7188 * spu-low.c: New file.
7189
cb7283db
DJ
71902006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
7191
7192 * configure.ac: Correct td_thr_tls_get_addr test.
7193 * configure: Regenerated.
7194
89be2091
DJ
71952006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
7196
7197 * linux-low.c (linux_wait_for_event): Reformat. Use the
7198 pass_signals array.
7199 * remote-utils.c (decode_address_to_semicolon): New.
7200 * server.c (pass_signals, handle_general_set): New.
7201 (handle_query): Mention QPassSignals for qSupported.
7202 (main): Call handle_general_set.
7203 * server.h (pass_signals, decode_address_to_semicolon): New.
7204
000ef4f0
DJ
72052006-11-06 Daniel Jacobowitz <dan@codesourcery.com>
7206
7207 * server.c (handle_query): Correct error handling for read_auxv.
7208
b7149293
UW
72092005-10-19 Ulrich Weigand <uweigand@de.ibm.com>
7210
7211 * configure.srv [s390-*-linux*, s390x-*-linux*]: Set srv_linux_regsets
7212 and srv_linux_thread_db to yes.
7213 * linux-s390-low.c (s390_fill_gregset): New function.
7214 (target_regsets): Define data structure.
7215
dae5f5cf
DJ
72162006-10-17 Daniel Jacobowitz <dan@codesourcery.com>
7217
7218 * acinclude.m4 (SRV_CHECK_TLS_GET_ADDR): New.
7219 * configure.ac: Use it. Define HAVE_TD_THR_TLS_GET_ADDR.
7220 * config.in, configure: Regenerated.
7221 * inferiors.c (gdb_id_to_thread): New function.
7222 (gdb_id_to_thread_id): Use it.
7223 * linux-low.c (linux_target_ops): Use thread_db_get_tls_address.
7224 * linux-low.h (struct process_info): Add th member.
7225 (thread_db_get_tls_address): New prototype.
7226 * remote-utils.c (decode_address): Make non-static.
7227 * server.c (handle_query): Handle qGetTLSAddr.
7228 * server.h (gdb_id_to_thread, decode_address): New prototypes.
7229 * target.h (struct target_ops): Add get_tls_address.
7230 * thread-db.c (maybe_attach_thread): Save the thread handle.
7231 (thread_db_get_tls_address): New.
7232
32ca6d61
DJ
72332006-09-28 Daniel Jacobowitz <dan@codesourcery.com>
7234
7235 * linux-low.c (PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
7236 (linux_resume_one_process): Take a siginfo_t *. Update all
7237 callers. Queue it if necessary. Use PTRACE_SETSIGINFO.
7238 (struct pending_signals): Add a siginfo_t.
7239 (linux_wait_for_process): Always set last_status.
7240 (linux_wait_for_event): Use PTRACE_GETSIGINFO.
7241 (linux_queue_one_thread): Use PTRACE_GETSIGINFO.
7242 * linux-low.h (struct process_info): Add last_status.
7243
5ffff7c1
DJ
72442006-09-21 Daniel Jacobowitz <dan@codesourcery.com>
7245
7246 * remote-utils.c (try_rle): New function.
7247 (putpkt_binary): Use it.
7248
8695c747
DJ
72492006-08-19 Daniel Jacobowitz <dan@codesourcery.com>
7250
7251 * Makefile.in (clean): Clean reg-x86-64-linux.c.
7252 (reg-x86-64-linux.o, reg-x86-64-linux.c): New.
7253 * configure.srv (x86_64-*-linux*): Use reg-x86-64-linux.o.
7254 * linux-x86-64-low.c (x86_64_regmap): Include ORIG_RAX.
7255 (x86_64_fill_gregset, x86_64_store_gregset): Skip floating
7256 point registers.
7257
290fadea
RS
72582006-08-08 Richard Sandiford <richard@codesourcery.com>
7259
7260 * server.c (terminal_fd): New variable.
7261 (old_foreground_pgrp): Likewise.
7262 (restore_old_foreground_pgrp): New function.
7263 (start_inferior): Record the terminal file descriptor in terminal_fd
7264 and its original foreground group in old_foreground_pgrp. Register
7265 restore_old_foreground_pgrp with atexit().
7266
9f2e1e63
DJ
72672006-07-26 Daniel Jacobowitz <dan@codesourcery.com>
7268
7269 * server.c (handle_query): Correct qPart to qXfer.
7270
b80864fb
DJ
72712006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
7272
7273 * configure.ac: Check for more headers which are missing on
7274 Windows. Automatically supply -lwsock32 and USE_WIN32API.
7275 * configure.srv: Add Cygwin and mingw32.
7276 * remote-utils.c: Don't include headers unconditionally which
7277 are missing on mingw32. Include <winsock.h> for mingw32.
7278 (remote_open): Adjust for mingw32 support. Flush
7279 standard error after writing to it.
7280 (remote_close, putpkt_binary, input_interrupt, block_async_io)
7281 (unblock_async_io, enable_async_io, disable_async_io)
7282 (readchar, getpkt): Update for Winsock support.
7283 (prepare_resume_reply): Expect a protocol signal number.
7284 * server.c: Disable <sys/wait.h> on mingw32.
7285 (start_inferior): Adjust for mingw32 support. Flush
7286 standard error after writing to it.
7287 (attach_inferior): Likewise. Use protocol signal
7288 numbers.
7289 (main): Skip 'D' packet on mingw32. Use protocol signal numbers
7290 and names.
7291 * win32-i386-low.c: New file.
7292 * Makefile.in (XM_CLIBS): Set.
7293 (gdbserver, gdbreplay): Use $(INTERNAL_CFLAGS).
7294 (win32-i386-low.o): New dependency rule.
7295 * linux-low.c (linux_wait): Use target signal numbers.
7296 * target.h (struct target_ops): Doc fix.
7297 * server.h (target_signal_to_name): New prototype.
7298 * gdbreplay.c: Don't include headers unconditionally which
7299 are missing on mingw32. Include <winsock.h> for mingw32.
7300 (remote_close, remote_open): Adjust for Winsock support.
7301 * configure, config.in: Regenerated.
7302
0876f84a
DJ
73032006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
7304
7305 * server.c (decode_xfer_read, write_qxfer_response): New.
7306 (handle_query): Take a packet length argument. Handle
7307 qXfer:auxv:read instead of qPart:auxv:read. Mention it in
7308 the qSupported response.
7309 (main): Update call to handle_query.
7310
01f9e8fa
DJ
73112006-06-22 Daniel Jacobowitz <dan@codesourcery.com>
7312
7313 * remote-utils.c (remote_escape_output, remote_unescape_input): New.
7314 (putpkt_binary): Renamed from putpkt and adjusted for binary
7315 data.
7316 (putpkt): New wrapper for putpkt_binary.
7317 (readchar): Don't mask off the high bit.
7318 (decode_X_packet): New function.
7319 * server.c (main): Call putpkt_binary if a handler sets the packet
7320 length. Save the length of the incoming packet. Handle 'X'.
7321 * server.h (gdb_byte, remote_escape_output, decode_X_packet): New.
7322
be2a5f71
DJ
73232006-06-21 Daniel Jacobowitz <dan@codesourcery.com>
7324
7325 * server.c (handle_query): Handle qSupported.
7326
ea025f5f
DJ
73272006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
7328
7329 * remote-utils.c (all_symbols_looked_up): New variable.
7330 (look_up_one_symbol): Check it.
7331 * server.h (look_up_one_symbol): New declaration.
7332 * thread-db.c (thread_db_init): Set all_symbols_looked_up.
7333
9308fc88
DJ
73342006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
7335
7336 * Makefile.in (linux-arm-low.o): Update dependencies.
66f338c7 7337 * linux-arm-low.c: Include "gdb_proc_service.h".
9308fc88
DJ
7338 (PTRACE_GET_THREAD_AREA): Define.
7339 (ps_get_thread_area): New function.
7340
52fb6437
NS
73412006-05-09 Nathan Sidwell <nathan@codesourcery.com>
7342
7343 * configure.srv (m68k*-*-uclinux*): New target.
7344 * linux-low.c (linux_create_inferior): Use vfork on mmuless systems.
7345 (linux_resume_one_process): Remove extraneous cast.
7346 (linux_read_offsets): New.
7347 (linux_target_op): Add linux_read_offsets on mmuless systems.
7348 * server.c (handle_query): Add qOffsets logic.
7349 * target.h (struct target_ops): Add read_offsets.
7350
21b0f40c
DJ
73512006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
7352
7353 * linux-mips-low.c: Include <sys/ptrace.h> and "gdb_proc_service.h".
7354 (PTRACE_GET_THREAD_AREA): Define.
7355 (ps_get_thread_area): New function.
7356 * Makefile.in (linux-i386-low.o, linux-mips-low.o)
7357 (linux-x86-64-low.o): Update.
7358
0050a760
DJ
73592006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
7360
7361 * configure.ac: Remove checks for prfpregset_t.
7362 * gdb_proc_service.h: New file.
7363 * linux-i386-low.c, linux-x86-64-low.c, thread-db.c: Use the
7364 new "gdb_proc_service.h".
7365 * proc-service.c: Likewise.
7366 (ps_pglobal_lookup, ps_pdread, ps_pdwrite): Use psaddr_t.
7367 (ps_lgetfpregs, ps_lsetfpregs): Use a void* argument.
7368 * Makefile.in (gdb_proc_service_h): Updated.
7369 * configure, config.in: Regenerated.
7370
b92a518e
DJ
73712006-03-03 Daniel Jacobowitz <dan@codesourcery.com>
7372
7373 * remote-utils.c (prepare_resume_reply): Move declaration
7374 of gdb_id_from_wait to the top of the block.
7375
545587ee
DJ
73762006-02-15 Daniel Jacobowitz <dan@codesourcery.com>
7377
7378 * linux-low.c (regsets_store_inferior_registers): Read the regset
7379 from the target before filling it.
7380
9db87ebd
DJ
73812006-02-08 Daniel Jacobowitz <dan@codesourcery.com>
7382
7383 * server.c (attach_inferior): Return SIGTRAP for a successful
7384 attach.
7385
dd24457d
DJ
73862006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
7387
7388 * Makefile.in (OBS): Add version.o.
7389 (STAGESTUFF): Delete.
7390 (version.o): Add dependencies.
7391 (version.c): Replace rule.
7392 (clean): Remove version.c.
7393 * server.c (gdbserver_version): New.
7394 (gdbserver_usage): Use printf.
7395 (main): Handle --version and --help.
7396 * server.h (version, host_name): Add declarations.
7397
6f0f660e
EZ
73982005-12-23 Eli Zaretskii <eliz@gnu.org>
7399
889bf7c5
PA
7400 * linux-arm-low.c:
7401 * linux-arm-low.c:
7402 * inferiors.c:
7403 * i387-fp.h:
7404 * i387-fp.c:
7405 * gdbreplay.c:
7406 * regcache.c:
7407 * proc-service.c:
7408 * mem-break.h:
7409 * mem-break.c:
7410 * linux-x86-64-low.c:
7411 * linux-sh-low.c:
7412 * linux-s390-low.c:
7413 * linux-ppc64-low.c:
7414 * linux-ppc-low.c:
7415 * linux-mips-low.c:
7416 * linux-m68k-low.c:
7417 * linux-m32r-low.c:
7418 * linux-low.h:
7419 * linux-low.c:
7420 * linux-ia64-low.c:
7421 * linux-i386-low.c:
7422 * linux-crisv32-low.c:
7423 * thread-db.c:
7424 * terminal.h:
7425 * target.h:
7426 * target.c:
7427 * server.h:
7428 * server.c:
7429 * remote-utils.c:
7430 * regcache.h:
7431 * utils.c:
7432 * Makefile.in:
7433 * configure.ac:
6f0f660e
EZ
7434 * gdbserver.1: Add (C) after Copyright. Update the FSF
7435 address.
7436
9d1fb177
DJ
74372005-11-13 Daniel Jacobowitz <dan@codesourcery.com>
7438
7439 * linux-arm-low.c (arm_eabi_breakpoint): New variable.
7440 (arm_breakpoint_at): Recognize both breakpoints.
7441 (the_low_target): Use the correct breakpoint instruction.
7442
011a70c2
DJ
74432005-11-02 Daniel Jacobowitz <dan@codesourcery.com>
7444
7445 * configure.srv (x86_64-*-linux*): Turn on thread_db support.
7446 * linux-x86-64-low.c (x86_64_breakpoint, x86_64_breakpoint_len)
7447 (x86_64_get_pc, x86_64_set_pc, x86_64_breakpoint_at): New.
7448 (the_low_target): Update.
7449
7fb85e41
AS
74502005-10-25 Andreas Schwab <schwab@suse.de>
7451
7452 * server.c (main): Allocate mem_buf with PBUFSIZ bytes.
7453
7454 * linux-ia64-low.c (ia64_regmap): Remove NAT registers.
7455 (ia64_num_regs): Reduce to 462.
7456
3db0444b
DJ
74572005-09-17 Daniel Jacobowitz <dan@codesourcery.com>
7458
7459 * acinclude.m4: Correct quoting.
7460 * aclocal.m4: Regenerated.
7461
7462 Suggested by SZOKOVACS Robert <szo@ies.hu>:
7463 * thread-db.c (thread_db_err_str): Handle TD_VERSION.
7464 (thread_db_init): Call thread_db_err_str.
7465 * configure.ac: Check for TD_VERSION.
7466 * config.in, configure: Regenerated.
7467
bee0189a
DJ
74682005-07-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
7469
7470 * server.h (error, fatal, warning): Add ATTR_FORMAT.
7471
e9d25b98
DJ
74722005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
7473
7474 * configure.ac: Define HAVE_LINUX_REGSETS even if PTRACE_GETREGS
7475 is not available. Define HAVE_PTRACE_GETREGS if it is.
7476 * config.in, configure: Regenerated.
7477 * configure.srv: Set srv_linux_regsets for PowerPC and PowerPC64.
7478 * linux-i386-low.c, linux-m68k-low.c: Update to use
7479 HAVE_PTRACE_GETREGS.
7480 * linux-low.c (regsets_fetch_inferior_registers)
7481 (regsets_store_inferior_registers): Only return 0 if we processed
7482 GENERAL_REGS.
7483 * linux-ppc-low.c (ppc_fill_gregset, target_regsets): New.
7484 * linux-ppc64-low.c (ppc_fill_gregset, target_regsets): New.
7485
a06660f7
DJ
74862005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
7487
7488 * inferiors.c (struct thread_info): Add gdb_id.
7489 (add_thread): Add gdb_id argument.
7490 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New.
7491 * linux-low.c (linux_create_inferior, linux_attach_lwp): Update
7492 calls to add_thread.
7493 * remote-utils.c (prepare_resume_reply: Use thread_to_gdb_id.
7494 * server.c (handle_query): Use thread_to_gdb_id.
7495 (handle_v_cont, main): Use gdb_id_to_thread_id.
7496 * server.h (add_thread): Update prototype.
7497 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New
7498 prototypes.
7499
5a1f5858
DJ
75002005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
7501
7502 * linux-low.c (fetch_register, usr_store_inferior_registers): Handle
7503 left-padded registers.
7504 * linux-low.h (struct linux_target_ops): Add left_pad_xfer.
7505 * linux-ppc64-low.c (the_low_target): Set left_pad_xfer.
7506
e122f1f5
SE
75072005-07-01 Steve Ellcey <sje@cup.hp.com>
7508
7509 * configure.ac (BFD_NEED_DECLARATION): Replace with AC_CHECK_DECLS.
7510 * configure: Regenerate.
7511 * config.in: Regenerate.
7512 * server.h (NEED_DECLARATION_STRERROR):
7513 Replace with !HAVE_DECL_STRERROR.
7514
d592fa2f
DJ
75152005-06-16 Daniel Jacobowitz <dan@codesourcery.com>
7516
7517 * linux-low.c (linux_wait, linux_send_signal): Don't test
7518 an unsigned long variable for > 0 if it could be MAX_ULONG.
7519 * server.c (myresume): Likewise.
7520 * target.c (set_desired_inferior): Likewise.
7521
ccbd4912
MK
75222005-06-13 Mark Kettenis <kettenis@gnu.org>
7523
7524 * configure.ac: Simplify and improve check for socklen_t.
7525 * configure, config.in: Regenerate.
7526
f450004a
DJ
75272005-06-12 Daniel Jacobowitz <dan@codesourcery.com>
7528
7529 * acconfig.h: Remove.
7530 * configure.ac: Add a test for socklen_t. Use three-argument
7531 AC_DEFINE throughout.
7532 * config.in: Regenerated using autoheader 2.59.
7533 * configure: Regenerated.
7534
7535 * gdbreplay.c (socklen_t): Provide a default.
7536 (remote_open): Use socklen_t.
7537 * remote-utils.c (socklen_t): Provide a default.
7538 (remote_open): Use socklen_t.
7539 (convert_int_to_ascii, convert_ascii_to_int, decode_M_packet): Use
7540 unsigned char.
7541
7542 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Use unsigned
7543 char for buffers.
7544 * linux-low.c (linux_read_memory, linux_write_memory)
7545 (linux_read_auxv): Likewise.
7546 * mem-break.c (breakpoint_data, set_breakpoint_data, check_mem_read)
7547 (check_mem_write): Likewise.
7548 * mem-break.h (set_breakpoint_data, check_mem_read, check_mem_write):
7549 Likewise.
7550 * regcache.c (struct inferior_rgcache_data, registers_to_string)
7551 (registers_from_string, register_data): Likewise.
7552 * server.c (handle_query, main): Likewise.
7553 * server.h (convert_ascii_to_int, convert_int_to_ascii)
7554 (decode_M_packet): Likewise.
7555 * target.c (read_inferior_memory, write_inferior_memory): Likewise.
7556 * target.h (struct target_ops): Update read_memory, write_memory,
7557 and read_auxv.
7558 (read_inferior_memory, write_inferior_memory): Update.
7559 * linux-low.h (struct linux_target_ops): Change type of breakpoint
7560 to unsigned char *.
7561 * linux-arm-low.c, linux-cris-low.c, linux-crisv32-low.c,
7562 linux-i386-low.c, linux-m32r-low.c, linux-m68k-low.c,
7563 linux-mips-low.c, linux-ppc-low.c, linux-ppc64-low.c,
7564 linux-s390-low.c, linux-sh-low.c: Update for changes in
7565 read_inferior_memory and the_low_target->breakpoint.
7566
eee84df1
DJ
75672005-05-28 Daniel Jacobowitz <dan@codesourcery.com>
7568
7569 * Makefile.in (SFILES): Add linux-ppc64-low.c.
7570 (linux-ppc64-low.o, reg-ppc64.c, reg-ppc64.o): New targets.
7571 * configure.srv: Add powerpc64-*-linux*.
7572 * linux-ppc64-low.c: New file.
7573
45b134e5
OF
75742005-05-23 Orjan Friberg <orjanf@axis.com>
7575
7576 * linux-cris-low.c: New file with support for CRIS.
7577 * linux-crisv32-low.c: Ditto for CRISv32.
7578 * Makefile.in (SFILES): Add linux-cris-low.c, linux-crisv32-low.c.
7579 (clean): Add reg-cris.c and reg-crisv32.c.
889bf7c5 7580 Add linux-cris-low.o, linux-crisv32-low.o, reg-cris.o, reg-cris.c,
45b134e5
OF
7581 reg-crisv32.o, and reg-crisv32.c to make rules.
7582 * configure.srv: Add cris-*-linux* and crisv32-*-linux* to list of
7583 recognized targets.
7584
48d93c75
UW
75852005-05-16 Ulrich Weigand <uweigand@de.ibm.com>
7586
7587 * linux-low.c (fetch_register): Ensure buffer size is a multiple
7588 of sizeof (PTRACE_XFER_TYPE).
7589 (usr_store_inferior_registers): Likewise. Zero out excess bytes.
7590
e013ee27
OF
75912005-05-12 Orjan Friberg <orjanf@axis.com>
7592
889bf7c5 7593 * target.h (struct target_ops): Add insert_watchpoint,
e013ee27
OF
7594 remove_watchpoint, stopped_by_watchpoint, stopped_data_address function
7595 pointers for hardware watchpoint support.
7596 * linux-low.h (struct linux_target_ops): Ditto.
7597 * linux-low.c (linux_insert_watchpoint, linux_remove_watchpoint)
7598 (linux_stopped_by_watchpoint, linux_stopped_data_address): New. Add
7599 to linux_target_ops.
7600 * remote-utils.c (prepare_resume_reply): Add watchpoint information to
7601 reply packet.
7602 * server.c (main): Recognize 'Z' and 'z' packets.
7603
b0ded00b
UW
76042005-05-10 Ulrich Weigand <uweigand@de.ibm.com>
7605
7606 * linux-s390-low.c (s390_breakpoint, s390_breakpoint_len): Define.
7607 (s390_get_pc, s390_set_pc, s390_breakpoint_at): New functions.
7608 (the_low_target): Add new members.
7609
8643e2ad
DJ
76102005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
7611
7612 * proc-service.c (ps_lgetregs): Search all_processes instead of
7613 all_threads.
7614
fc620387
DJ
76152005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
7616
7617 * server.c (start_inferior): Change return type to int.
7618 (attach_inferior): Change sigptr to int *.
7619 (handle_v_cont, handle_v_requests): Change signal to int *.
7620 (main): Change signal to int.
7621
76222005-04-15 Kei Sakamoto <sakamoto.kei@renesas.com>
7cfbc4a0
KI
7623
7624 * Makefile.in: Add linux-m32r-low.o, reg-m32r.c and reg-m32r.o.
7625 * configure.srv: Add m32r*-*-linux*.
7626 * linux-m32r-low.c: New file.
7627
e0e76420
DJ
76282005-03-04 Daniel Jacobowitz <dan@codesourcery.com>
7629
7630 * Makefile.in (stamp-h): Set CONFIG_HEADERS explicitly.
7631
a1928bad
DJ
76322005-03-03 Daniel Jacobowitz <dan@codesourcery.com>
7633
7634 * inferiors.c (change_inferior_id, add_thread, find_inferior_id):
7635 Take unsigned long arguments for PIDs.
7636 * linux-low.c (add_process, linux_attach_lwp, linux_attach)
7637 (linux_thread_alive, linux_wait_for_event, kill_lwp, send_sigstop)
7638 (wait_for_sigstop, linux_resume_one_process)
7639 (regsets_fetch_inferior_registers, linux_send_signal)
7640 (linux_read_auxv): Likewise. Update the types of variables holding
7641 PIDs. Update format string specifiers.
7642 * linux-low.h (struct process_info, linux_attach_lwp): Likewise.
7643 * remote-utils.c (prepare_resume_reply): Likewise.
7644 * server.c (cont_thread, general_thread, step_thread)
7645 (thread_from_wait, old_thread_from_wait, signal_pid): Change type to
7646 unsigned long.
7647 (handle_query): Update format specifiers.
7648 (handle_v_cont, main): Use strtoul for thread IDs.
7649 * server.h (struct inferior_list_entry): Use unsigned long for ID.
7650 (add_thread, find_inferior_id, change_inferior_id, cont_thread)
7651 (general_thread, step_thread, thread_from_wait)
7652 (old_thread_from_wait): Update.
7653 * target.h (struct thread_resume): Use unsigned long for THREAD.
7654 (struct target_ops): Use unsigned long for arguments to attach and
7655 thread_alive.
7656
dcdb98d2
DJ
76572005-02-24 Daniel Jacobowitz <dan@codesourcery.com>
7658
7659 * acinclude.m4: Include bfd/bfd.m4 directly.
7660 * configure.ac: Use AC_ARG_PROGRAM. Suggested by Aron Griffis
7661 <agriffis@toolchain.org>.
7662 * aclocal.m4, configure: Regenerated.
7663
bec39cab
AC
76642005-01-07 Andrew Cagney <cagney@gnu.org>
7665
7666 * configure.ac: Rename configure.in, require autoconf 2.59.
7667 * configure: Re-generate.
7668
434c4c77
DJ
76692004-12-08 Daniel Jacobowitz <dan@debian.org>
7670
7671 * acinclude.m4 (SRV_CHECK_THREAD_DB): Add ps_get_thread_area. Reset
7672 LIBS when finished.
7673 * aclocal.m4: Regenerated.
7674 * configure: Regenerated.
7675
db1d3e1b
AS
76762004-11-21 Andreas Schwab <schwab@suse.de>
7677
7678 * linux-m68k-low.c (m68k_num_gregs): Define.
7679 (m68k_fill_gregset, m68k_store_gregset, m68k_fill_fpregset)
7680 (m68k_store_fpregset, target_regsets) [HAVE_LINUX_REGSETS]: New.
7681 (m68k_breakpoint, m68k_breakpoint_len, m68k_get_pc, m68k_set_pc)
7682 (m68k_breakpoint_at): New. Add to the_low_target.
7683
7684 * configure.srv (m68*-*-linux*): Set srv_linux_regsets and
7685 srv_linux_thread_db to yes.
7686
43360365
JB
76872004-10-20 Joel Brobecker <brobecker@gnat.com>
7688
7689 * linux-x86-64-low.c (ARCH_SET_GS): Add definition if missing.
7690 (ARCH_SET_FS): Likewise.
7691 (ARCH_GET_FS): Likewise.
7692 (ARCH_GET_GS): Likewise.
7693
fd500816
DJ
76942004-10-16 Daniel Jacobowitz <dan@debian.org>
7695
7696 * linux-i386-low.c (ps_get_thread_area): New.
7697 * linux-x86-64-low.c (ps_get_thread_area): New.
7698 * linux-low.c: Include <sys/syscall.h>.
7699 (linux_kill_one_process): Don't kill the first thread here.
7700 (linux_kill): Kill the first thread here.
7701 (kill_lwp): New function.
7702 (send_sigstop, linux_send_signal): Use it.
7703 * proc-service.c: Clean up #ifdefs.
7704 (fpregset_info): Delete.
7705 (ps_lgetregs): Update and enable implementation.
7706 (ps_lsetregs, ps_lgetfpregs, ps_lsetfpregs): Remove disabled
7707 implementations.
7708 * remote-utils.c (struct sym_cache, symbol_cache): New.
7709 (input_interrupt): Print a clearer message.
7710 (async_io_enabled): New variable.
7711 (enable_async_io, disable_async_io): Use it. Update comments.
7712 (look_up_one_symbol): Use the symbol cache.
7713 * thread-db.c (thread_db_look_up_symbols): New function.
7714 (thread_db_init): Update comments. Call thread_db_look_up_symbols.
7715
f6de3c42
DJ
77162004-10-16 Daniel Jacobowitz <dan@debian.org>
7717
7718 * configure.in: Test for -rdynamic.
7719 * configure: Regenerated.
7720 * Makefile (INTERNAL_LDFLAGS): New.
7721 (gdbserver, gdbreplay): Use it.
7722
2c0fc042
AC
77232004-09-02 Andrew Cagney <cagney@gnu.org>
7724
7725 * Makefile.in (TAGS): Replace TM_FILE with DEPRECATED_TM_FILE.
7726
075b3282
DJ
77272004-03-23 Daniel Jacobowitz <drow@mvista.com>
7728
7729 * linux-low.c (linux_wait): Clear all_processes list also.
7730
fa6a77dc
DJ
77312004-03-12 Daniel Jacobowitz <drow@mvista.com>
7732
7733 * linux-low.c: Include <errno.h>. Remove extern declaration of
7734 errno.
7735
6d782a97
DJ
77362004-03-12 Daniel Jacobowitz <drow@mvista.com>
7737
7738 * gdbreplay.c, server.h, utils.c: Update copyright years.
7739
3a7fb99b
DJ
77402004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
7741
7742 * server.c (main): Print child status or termination signal from
7743 variable 'signal', not 'sig'.
7744
c3e735a6
DJ
77452004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
7746
7747 * linux-low.c (linux_read_memory): Change return type to
7748 int. Check for and return error from ptrace().
7749 * target.c (read_inferior_memory): Change return type to int. Pass
7750 back return status from the_target->read_memory().
7751 * target.h (struct target_ops): Adapt *read_memory() prototype.
7752 Update comment.
7753 (read_inferior_memory): Adapt prototype.
7754 * server.c (main): Return an error packet if
7755 read_inferior_memory() returns an error.
7756
a59d1c82
DJ
77572004-03-04 Daniel Jacobowitz <drow@mvista.com>
7758
7759 * Makefile.in (distclean): Remove config.h, stamp-h, and config.log.
7760 Unify with other clean targets.
7761
dc3f8883
DJ
77622004-02-29 Daniel Jacobowitz <drow@mvista.com>
7763
7764 * server.c (handle_v_cont): Call set_desired_inferior.
7765
89a208da
DJ
77662004-02-29 Daniel Jacobowitz <drow@mvista.com>
7767
7768 * remote-utils.c (prepare_resume_reply): Always supply "thread:".
7769
62ea82f5
DJ
77702004-02-29 Daniel Jacobowitz <drow@mvista.com>
7771
7772 * linux-low.c (linux_wait): Unblock async I/O.
7773 (linux_resume): Block and enable async I/O.
7774 * remote-utils.c (block_async_io, unblock_async_io): New functions.
7775 * server.h (block_async_io, unblock_async_io): Add prototypes.
7776
6910d122
DJ
77772004-02-29 Daniel Jacobowitz <drow@mvista.com>
7778
7779 * remote-utils.c (remote_open): Print a status notice after
7780 opening a TCP port.
7781 * server.c (attach_inferior): Print a status notice after
7782 attaching.
7783
77842004-02-29 Daniel Jacobowitz <drow@mvista.com>
d677d77d
DJ
7785
7786 * linux-arm-low.c (arm_get_pc): Print out stop PC in debug mode.
7787
c89dc5d4
DJ
77882004-02-26 Daniel Jacobowitz <drow@mvista.com>
7789
7790 * remote-utils.c (write_enn): Use "E01" instead of "ENN" for the
7791 error packet.
7792 * server.c, target.h: Update copyright years.
7793
4b8dad4a
RM
77942004-02-25 Roland McGrath <roland@redhat.com>
7795
7796 * target.h (struct target_ops): New member `read_auxv'.
7797 * server.c (handle_query): Handle qPart:auxv:read: query using that.
7798 * linux-low.c (linux_read_auxv): New function.
7799 (linux_target_ops): Initialize `read_auxv' member to that.
7800
d7446758
JB
78012004-02-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
7802
7803 Committed by Jim Blandy <jimb@redhat.com>.
7804
7805 * linux-s390-low.c (s390_num_regs): Update.
4b8dad4a 7806 (s390_regmap): Remove control registers. Use __s390x__ predefine
d7446758
JB
7807 instead of GPR_SIZE to distiguish s390 and s390x targets.
7808
5544ad89
DJ
78092004-01-31 Daniel Jacobowitz <drow@mvista.com>
7810
7811 * linux-low.c: Update copyright year.
7812 (check_removed_breakpoint): Clear pending_is_breakpoint.
7813 (linux_set_resume_request, linux_queue_one_thread)
7814 (resume_status_pending_p): New functions.
7815 (linux_continue_one_thread): Use process->resume.
7816 (linux_resume): Only resume threads if there are no pending events.
7817 * linux-low.h (struct process_info): Add resume request
7818 pointer.
7819
2a68b70e
DJ
78202004-01-30 Daniel Jacobowitz <drow@mvista.com>
7821
7822 * regcache.c (new_register_cache): Clear the allocated register
7823 buffer. Suggested by Atsushi Nemoto <anemo@mba.ocn.ne.jp>.
7824
64386c31
DJ
78252003-10-13 Daniel Jacobowitz <drow@mvista.com>
7826
7827 * linux-low.c (linux_resume): Take a struct thread_resume *
7828 argument.
7829 (linux_wait): Update call.
7830 (resume_ptr): New static variable.
7831 (linux_continue_one_thread): Renamed from
7832 linux_continue_one_process. Use resume_ptr.
7833 (linux_resume): Use linux_continue_one_thread.
7834 * server.c (handle_v_cont, handle_v_requests): New functions.
7835 (myresume): New function.
7836 (main): Handle 'v' case.
7837 * target.h (struct thread_resume): New type.
7838 (struct target_ops): Change argument of "resume" to struct
7839 thread_resume *.
7840 (myresume): Delete macro.
7841
c938e9b0
L
78422003-08-08 H.J. Lu <hongjiu.lu@intel.com>
7843
7844 * Makefile.in (install-only): Create dest dir. Support DESTDIR.
7845 (uninstall): Support DESTDIR.
7846
7f313d07
BC
7847Mon Jul 21 20:09:34 UTC 2003 Brendan Conoboy <blc@redhat.com>
7848
7849 * configure.srv: Add xscale*linux copy of arm*linux entry.
7850
3b2fc2ea
DJ
78512003-07-24 Daniel Jacobowitz <drow@mvista.com>
7852
7853 * linux-arm-low.c (arm_reinsert_addr): New function.
7854 (the_low_target): Add arm_reinsert_addr.
7855
1c0a559e
MK
78562003-07-08 Mark Kettenis <kettenis@gnu.org>
7857
7858 * mem-break.c: Remove whitespace at end of file.
7859
43d5792c
DJ
78602003-06-28 Daniel Jacobowitz <drow@mvista.com>
7861
7862 * configure.in: Check whether we need to prototype strerror.
7863 * server.h: Optionally prototype strerror.
7864 * gdbreplay.c (perror_with_name): Use strerror.
7865 * linux-low.c (linux_attach_lwp): Use strerror.
7866 * utils.c (perror_with_name): Use strerror.
7867 * config.in, configure: Regenerated.
7868
c8a86edf
DJ
78692003-06-28 Daniel Jacobowitz <drow@mvista.com>
7870
7871 * linux-sh-low.c (sh_regmap): Fix FP register offsets, reported by
7872 SUGIOKA Toshinobu <sugioka@itonet.co.jp>.
7873
73d37363
DJ
78742003-06-20 Daniel Jacobowitz <drow@mvista.com>
7875
7876 * Makefile.in (SFILES): Update.
7877 * low-hppabsd.c, low-lynx.c, low-nbsd.c, low-sim.c, low-sparc.c,
7878 low-sun3.c: Remove files.
7879
6ad8ae5c
DJ
78802003-06-17 Daniel Jacobowitz <drow@mvista.com>
7881
7882 * linux-low.c: Move comment to linux_thread_alive where it belonged.
7883 (linux_detach_one_process, linux_detach): New functions.
7884 (linux_target_ops): Add linux_detach.
7885 * server.c (main): Handle 'D' packet.
7886 * target.h (struct target_ops): Add "detach" member.
7887 (detach_inferior): Define.
7888
1581182a
MK
78892003-06-13 Mark Kettenis <kettenis@gnu.org>
7890
7891 From Kelley Cook <kelleycook@wideopenwest.com>:
7892 * configure.srv: Accept i[34567]86 variants.
7893
e5379b03
DJ
78942003-06-05 Daniel Jacobowitz <drow@mvista.com>
7895
7896 * linux-low.c (linux_wait_for_event): Correct comment typos.
7897 (linux_resume_one_process): Call check_removed_breakpoint.
7898 (linux_send_signal): New function.
7899 (linux_target_ops): Add linux_send_signal.
7900 * remote-utils.c (putpkt, input_interrupt): Use send_signal instead
7901 of kill.
7902 * target.h (struct target_ops): Add send_signal.
7903
2ff29de4
JB
79042003-05-29 Jim Blandy <jimb@redhat.com>
7905
7906 * linux-low.c (usr_store_inferior_registers): Transfer buf in
7907 PTRACE_XFER_TYPE-sized chunks, not int-sized chunks. Otherwise,
7908 if 'int' is smaller than PTRACE_XFER_TYPE, you end up throwing
7909 away part of the register's value.
7910
254787d4
DJ
79112003-03-26 Daniel Jacobowitz <drow@mvista.com>
7912
7913 * linux-low.c (linux_create_inferior): Use __SIGRTMIN.
7914 (linux_wait_for_event, linux_init_signals): Likewise.
7915
94e10508
DJ
79162003-03-17 Daniel Jacobowitz <drow@mvista.com>
7917
7918 * configure.in: Check for stdlib.h.
7919 * configure: Regenerated.
7920 * config.in: Regenerated.
7921
4c0711e0
DJ
79222003-01-04 Andreas Schwab <schwab@suse.de>
7923
7924 * linux-m68k-low.c (m68k_num_regs): Define to 29 instead of 31.
7925
ef66e766
AC
79262003-01-02 Andrew Cagney <ac131313@redhat.com>
7927
7928 * Makefile.in: Remove obsolete code.
7929
a1358604
DJ
79302002-11-20 Daniel Jacobowitz <drow@mvista.com>
7931
7932 * linux-s390-low.c (s390_regmap): Check GPR_SIZE instead of
7933 defined(PT_FPR0_HI).
7934
23ce3b1c
DJ
79352002-11-17 Stuart Hughes <seh@zee2.com>
7936
7937 * linux-arm-low.c (arm_num_regs): Increase.
7938 (arm_regmap): Include status register.
7939
79402002-11-17 Daniel Jacobowitz <drow@mvista.com>
7941
7942 * linux-low.c (register_addr): Remove incorrect -1 check.
7943
a9fa9f7d
DJ
79442002-08-29 Daniel Jacobowitz <drow@mvista.com>
7945
7946 * linux-low.c (linux_create_inferior): Call setpgid. Return
7947 the new PID.
7948 (unstopped_p, linux_signal_pid): Remove.
7949 (linux_target_ops): Remove linux_signal_pid.
7950 * remote-utils.c (putpkt, input_interrupt): Use signal_pid
7951 global instead of target method.
7952 * target.h (struct target_ops): Remove signal_pid. Update comment
7953 for create_inferior.
7954 * server.c (signal_pid): New variable.
7955 (create_inferior): Set signal_pid. Block SIGTTOU and SIGTTIN in
4b8dad4a 7956 gdbserver. Set the child to be the foreground process group.
a9fa9f7d
DJ
7957 (attach_inferior): Set signal_pid.
7958
17574093
DJ
79592002-08-23 Daniel Jacobowitz <drow@mvista.com>
7960
7961 * ChangeLog: New file, with entries from gdb/ChangeLog after GDB 5.2.
7962
79632002-08-20 Jim Blandy <jimb@redhat.com>
7964
7965 * Makefile.in (LDFLAGS): Allow the configure script to establish a
7966 default for this.
7967
79682002-08-01 Andrew Cagney <cagney@redhat.com>
7969
7970 * Makefile.in: Make chill references obsolete.
7971
79722002-07-24 Kevin Buettner <kevinb@redhat.com>
7973
7974 * configure.in (unistd.h): Add to AC_CHECK_HEADERS list.
7975 * configure: Regenerate.
7976 * config.in: Regenerate.
7977
79782002-07-09 David O'Brien <obrien@FreeBSD.org>
7979
7980 * gdbreplay.c (stdlib.h, unistd.h): Conditionaly include.
7981 (perror_with_name, remote_close, remote_open, expect, play): Static.
7982
79832002-07-04 Michal Ludvig <mludvig@suse.cz>
7984
4b8dad4a 7985 * linux-x86-64-low.c (x86_64_regmap): Make it an array of
17574093
DJ
7986 byte offsets instead of an array of indexes.
7987 (x86_64_store_gregset, x86_64_store_fpregset): Parameter made const.
7988
79892002-06-13 Daniel Jacobowitz <drow@mvista.com>
7990
7991 * regcache.c: Add comment.
7992
79932002-06-11 Daniel Jacobowitz <drow@mvista.com>
7994
7995 * thread-db.c: New file.
7996 * proc-service.c: New file.
7997 * acinclude.m4: New file.
7998 * Makefile.in: Add GDBSERVER_LIBS, gdb_proc_service_h,
7999 proc-service.o, and thread-db.o.
8000 (linux-low.o): Add USE_THREAD_DB.
8001 * acconfig.h: Add HAVE_PRGREGSET_T, HAVE_PRFPREGSET_T,
8002 HAVE_LWPID_T, HAVE_PSADDR_T, and PRFPREGSET_T_BROKEN.
8003 * aclocal.m4: Regenerated.
8004 * config.in: Regenerated.
8005 * configure: Regenerated.
8006 * configure.in: Check for proc_service.h, sys/procfs.h,
8007 thread_db.h, and linux/elf.h headrs.
8008 Check for lwpid_t, psaddr_t, prgregset_t, prfpregset_t, and
8009 PRFPREGSET_T_BROKEN. Introduce srv_thread_depfiles and USE_THREAD_DB.
8010 Check for -lthread_db and thread support.
8011 * configure.srv: Enable thread_db support for ARM, i386, MIPS,
8012 PowerPC, and SuperH.
8013 * i387-fp.c: Constify arguments.
8014 * i387-fp.h: Likewise.
8015 * inferiors.c: (struct thread_info): Renamed from
8016 `struct inferior_info'. Remove PID member. Use generic inferior
8017 list header. All uses updated.
8018 (inferiors, signal_pid): Removed.
8019 (all_threads): New variable.
8020 (get_thread): Define.
8021 (add_inferior_to_list): New function.
8022 (for_each_inferior): New function.
8023 (change_inferior_id): New function.
8024 (add_inferior): Removed.
8025 (remove_inferior): New function.
8026 (add_thread): New function.
8027 (free_one_thread): New function.
8028 (remove_thread): New function.
8029 (clear_inferiors): Use for_each_inferior and free_one_thread.
8030 (find_inferior): New function.
8031 (find_inferior_id): New function.
8032 (inferior_target_data): Update argument type.
8033 (set_inferior_target_data): Likewise.
8034 (inferior_regcache_data): Likewise.
8035 (set_inferior_regcache_data): Likewise.
8036 * linux-low.c (linux_bp_reinsert): Remove.
8037 (all_processes, stopping_threads, using_thrads)
8038 (struct pending_signals, debug_threads, pid_of): New.
8039 (inferior_pid): Replace with macro.
8040 (struct inferior_linux_data): Remove.
8041 (get_stop_pc, add_process): New functions.
8042 (linux_create_inferior): Restore SIGRTMIN+1 before calling exec.
8043 Use add_process and add_thread.
8044 (linux_attach_lwp): New function, based on old linux_attach. Use
8045 add_process and add_thread. Set stop_expected for new threads.
8046 (linux_attach): New function.
8047 (linux_kill_one_process): New function.
8048 (linux_kill): Kill all LWPs.
8049 (linux_thread_alive): Use find_inferior_id.
8050 (check_removed_breakpoints, status_pending_p): New functions.
8051 (linux_wait_for_process): Renamed from linux_wait_for_one_inferior.
8052 Update. Use WNOHANG. Wait for cloned processes also. Update process
8053 struct for the found process.
8054 (linux_wait_for_event): New function.
8055 (linux_wait): Use it. Support LWPs.
8056 (send_sigstop, wait_for_sigstop, stop_all_processes)
8057 (linux_resume_one_process, linux_continue_one_process): New functions.
8058 (linux_resume): Support LWPs.
8059 (REGISTER_RAW_SIZE): Remove.
8060 (fetch_register): Use register_size instead. Call supply_register.
8061 (usr_store_inferior_registers): Likewise. Call collect_register.
8062 Fix recursive case.
8063 (regsets_fetch_inferior_registers): Improve error message.
8064 (regsets_store_inferior_registers): Add debugging.
8065 (linux_look_up_symbols): Call thread_db_init if USE_THREAD_DB.
8066 (unstopped_p, linux_signal_pid): New functions.
8067 (linux_target_ops): Add linux_signal_pid.
8068 (linux_init_signals): New function.
8069 (initialize_low): Call it. Initialize using_threads.
8070 * regcache.c (inferior_regcache_data): Add valid
8071 flag.
8072 (get_regcache): Fetch registers lazily. Add fetch argument
8073 and update all callers.
8074 (regcache_invalidate_one, regcache_invalidate): New
8075 functions.
8076 (new_register_cache): Renamed from create_register_cache.
8077 Return the new regcache.
8078 (free_register_cache): Change argument to a void *.
8079 (registers_to_string, registers_from_string): Call get_regcache
8080 with fetch flag set.
8081 (register_data): Make static. Pass fetch flag to get_regcache.
8082 (supply_register): Call get_regcache with fetch flag clear.
8083 (collect_register): Call get_regcache with fetch flag set.
8084 (collect_register_as_string): New function.
8085 * regcache.h: Update.
8086 * remote-utils.c (putpkt): Flush after debug output and use
8087 stderr.
8088 Handle input interrupts while waiting for an ACK.
8089 (input_interrupt): Use signal_pid method.
8090 (getpkt): Flush after debug output and use stderr.
8091 (outreg): Use collect_register_as_string.
8092 (new_thread_notify, dead_thread_notify): New functions.
8093 (prepare_resume_reply): Check using_threads. Set thread_from_wait
8094 and general_thread.
8095 (look_up_one_symbol): Flush after debug output.
8096 * server.c (step_thread, server_waiting): New variables.
8097 (start_inferior): Don't use signal_pid. Update call to mywait.
8098 (attach_inferior): Update call to mywait.
8099 (handle_query): Handle qfThreadInfo and qsThreadInfo.
8100 (main): Don't fetch/store registers explicitly. Use
8101 set_desired_inferior. Support proposed ``Hs'' packet. Update
8102 calls to mywait.
8103 * server.h: Update.
8104 (struct inferior_list, struct_inferior_list_entry): New.
8105 * target.c (set_desired_inferior): New.
8106 (write_inferior_memory): Constify.
8107 (mywait): New function.
8108 * target.h: Update.
8109 (struct target_ops): New signal_pid method.
8110 (mywait): Removed macro, added prototype.
8111
8112 * linux-low.h (regset_func): Removed.
8113 (regset_fill_func, regset_store_func): New.
8114 (enum regset_type): New.
8115 (struct regset_info): Add type field. Use new operation types.
8116 (struct linux_target_ops): stop_pc renamed to get_pc.
8117 Add decr_pc_after_break and breakpoint_at.
8118 (get_process, get_thread_proess, get_process_thread)
8119 (strut process_info, all_processes, linux_attach_lwp)
8120 (thread_db_init): New.
8121
8122 * linux-arm-low.c (arm_get_pc, arm_set_pc,
8123 arm_breakpoint, arm_breakpoint_len, arm_breakpoint_at): New.
8124 (the_low_target): Add new members.
8125 * linux-i386-low.c (i386_store_gregset, i386_store_fpregset)
8126 (i386_store_fpxregset): Constify.
8127 (target_regsets): Add new kind identifier.
8128 (i386_get_pc): Renamed from i386_stop_pc. Simplify.
8129 (i386_set_pc): Add debugging.
8130 (i386_breakpoint_at): New function.
8131 (the_low_target): Add new members.
8132 * linux-mips-low.c (mips_get_pc, mips_set_pc)
8133 (mips_breakpoint, mips_breakpoint_len, mips_reinsert_addr)
8134 (mips_breakpoint_at): New.
8135 (the_low_target): Add new members.
8136 * linux-ppc-low.c (ppc_get_pc, ppc_set_pc)
8137 (ppc_breakpoint, ppc_breakpoint_len, ppc_breakpoint_at): New.
8138 (the_low_target): Add new members.
8139 * linux-sh-low.c (sh_get_pc, sh_set_pc)
8140 (sh_breakpoint, sh_breakpoint_len, sh_breakpoint_at): New.
8141 (the_low_target): Add new members.
8142 * linux-x86-64-low.c (target_regsets): Add new kind
8143 identifier.
8144
81452002-05-15 Daniel Jacobowitz <drow@mvista.com>
8146
8147 From Martin Pool <mbp@samba.org>:
8148 * server.c (gdbserver_usage): New function.
8149 (main): Call it.
8150
81512002-05-14 Daniel Jacobowitz <drow@mvista.com>
8152
8153 * mem-break.c (reinsert_breakpoint_by_bp): Correct typo
8154 stop_at -> stop_pc.
8155
81562002-05-04 Andrew Cagney <ac131313@redhat.com>
8157
8158 * Makefile.in: Remove obsolete code.
8159
81602002-04-24 Michal Ludvig <mludvig@suse.cz>
8161
8162 * linux-low.c (regsets_fetch_inferior_registers),
8163 (regsets_store_inferior_registers): Removed cast to int from
8164 ptrace() calls.
8165 * regcache.h: Added declaration of struct inferior_info.
8166
81672002-04-20 Daniel Jacobowitz <drow@mvista.com>
8168
8169 * inferiors.c (struct inferior_info): Add regcache_data.
8170 (add_inferior): Call create_register_cache.
8171 (clear_inferiors): Call free_register_cache.
8172 (inferior_regcache_data, set_inferior_regcache_data): New functions.
8173 * regcache.c (struct inferior_regcache_data): New.
8174 (registers): Remove.
8175 (get_regcache): New function.
8176 (create_register_cache, free_register_cache): New functions.
8177 (set_register_cache): Don't initialize the register cache here.
8178 (registers_to_string, registers_from_string, register_data): Call
8179 get_regcache.
8180 * regcache.h: Add prototypes.
8181 * server.h: Likewise.
8182
81832002-04-20 Daniel Jacobowitz <drow@mvista.com>
8184
8185 * mem-break.c: New file.
8186 * mem-break.h: New file.
8187 * Makefile.in: Add mem-break.o rule; update server.h
8188 dependencies.
8189 * inferiors.c (struct inferior_info): Add target_data
8190 member.
8191 (clear_inferiors): Free target_data member if set.
8192 (inferior_target_data, set_inferior_target_data): New functions.
8193 * linux-i386-low.c (i386_breakpoint, i386_breakpoint_len)
8194 (i386_stop_pc, i386_set_pc): New. Add to the_low_target.
8195 * linux-low.c (linux_bp_reinsert): New variable.
8196 (struct inferior_linux_data): New.
8197 (linux_create_inferior): Use set_inferior_target_data.
8198 (linux_attach): Likewise. Call add_inferior.
8199 (linux_wait_for_one_inferior): New function.
8200 (linux_wait): Call it.
8201 (linux_write_memory): Add const.
8202 (initialize_low): Call set_breakpoint_data.
8203 * linux-low.h (struct linux_target_ops): Add breakpoint
8204 handling members.
8205 * server.c (attach_inferior): Remove extra add_inferior
8206 call.
8207 * server.h: Include mem-break.h. Update inferior.c
8208 prototypes.
8209 * target.c (read_inferior_memory)
8210 (write_inferior_memory): New functions.
8211 * target.h (read_inferior_memory)
8212 (write_inferior_memory): Change macros to prototypes.
8213 (struct target_ops): Update comments. Add const to write_memory
8214 definition.
8215
82162002-04-11 Daniel Jacobowitz <drow@mvista.com>
8217
8218 * linux-low.c (usr_store_inferior_registers): Support
8219 registers which are allowed to fail to store.
8220 * linux-low.h (linux_target_ops): Likewise.
8221 * linux-ppc-low.c (ppc_regmap): Support FPSCR.
8222 (ppc_cannot_store_register): FPSCR may not be storable.
8223
82242002-04-09 Daniel Jacobowitz <drow@mvista.com>
8225
8226 * server.h: Include <string.h> if HAVE_STRING_H.
8227 * ChangeLog: Correct paths in last ChangeLog entry.
8228
82292002-04-09 Daniel Jacobowitz <drow@mvista.com>
8230
8231 * linux-low.h: Remove obsolete prototypes.
8232 (struct linux_target_ops): New.
8233 (extern the_low_target): New.
8234 * linux-low.c (num_regs, regmap): Remove declarations.
8235 (register_addr): Use the_low_target explicitly.
8236 (fetch_register): Likewise.
8237 (usr_fetch_inferior_registers): Likewise.
8238 (usr_store_inferior_registers): Likewise.
8239 * linux-arm-low.c (num_regs): Remove.
8240 (arm_num_regs): Define.
8241 (arm_regmap): Renamed from regmap, made static.
8242 (arm_cannot_fetch_register): Renamed from cannot_fetch_register,
8243 made static.
8244 (arm_cannot_store_register): Renamed from cannot_store_register,
8245 made static.
8246 (the_low_target): New.
8247 * linux-i386-low.c (num_regs): Remove.
8248 (i386_num_regs): Define.
8249 (i386_regmap): Renamed from regmap, made static.
8250 (i386_cannot_fetch_register): Renamed from cannot_fetch_register,
8251 made static.
8252 (i386_cannot_store_register): Renamed from cannot_store_register,
8253 made static.
8254 (the_low_target): New.
8255 * linux-ia64-low.c (num_regs): Remove.
8256 (ia64_num_regs): Define.
8257 (ia64_regmap): Renamed from regmap, made static.
8258 (ia64_cannot_fetch_register): Renamed from cannot_fetch_register,
8259 made static.
8260 (ia64_cannot_store_register): Renamed from cannot_store_register,
8261 made static.
8262 (the_low_target): New.
8263 * linux-m68k-low.c (num_regs): Remove.
8264 (m68k_num_regs): Define.
8265 (m68k_regmap): Renamed from regmap, made static.
8266 (m68k_cannot_fetch_register): Renamed from cannot_fetch_register,
8267 made static.
8268 (m68k_cannot_store_register): Renamed from cannot_store_register,
8269 made static.
8270 (the_low_target): New.
8271 * linux-mips-low.c (num_regs): Remove.
8272 (mips_num_regs): Define.
8273 (mips_regmap): Renamed from regmap, made static.
8274 (mips_cannot_fetch_register): Renamed from cannot_fetch_register,
8275 made static.
8276 (mips_cannot_store_register): Renamed from cannot_store_register,
8277 made static.
8278 (the_low_target): New.
8279 * linux-ppc-low.c (num_regs): Remove.
8280 (ppc_num_regs): Define.
8281 (ppc_regmap): Renamed from regmap, made static.
8282 (ppc_cannot_fetch_register): Renamed from cannot_fetch_register,
8283 made static.
8284 (ppc_cannot_store_register): Renamed from cannot_store_register,
8285 made static.
8286 (the_low_target): New.
8287 * linux-s390-low.c (num_regs): Remove.
8288 (s390_num_regs): Define.
8289 (s390_regmap): Renamed from regmap, made static.
8290 (s390_cannot_fetch_register): Renamed from cannot_fetch_register,
8291 made static.
8292 (s390_cannot_store_register): Renamed from cannot_store_register,
8293 made static.
8294 (the_low_target): New.
8295 * linux-sh-low.c (num_regs): Remove.
8296 (sh_num_regs): Define.
8297 (sh_regmap): Renamed from regmap, made static.
8298 (sh_cannot_fetch_register): Renamed from cannot_fetch_register,
8299 made static.
8300 (sh_cannot_store_register): Renamed from cannot_store_register,
8301 made static.
8302 (the_low_target): New.
8303 * linux-x86-64-low.c (x86_64_regmap): Renamed from regmap.
8304 (the_low_target): New.
8305
83062002-04-09 Daniel Jacobowitz <drow@mvista.com>
8307
8308 * Makefile.in: Add stamp-h target.
8309 * configure.in: Create stamp-h.
8310 * configure: Regenerated.
8311
83122002-04-09 Daniel Jacobowitz <drow@mvista.com>
8313
8314 * inferiors.c: New file.
8315 * target.c: New file.
8316 * target.h: New file.
8317 * Makefile.in: Add target.o and inferiors.o. Update
8318 dependencies.
8319 * linux-low.c (inferior_pid): New static variable,
8320 moved from server.c.
8321 (linux_create_inferior): Renamed from create_inferior.
8322 Call add_inferior. Return 0 on success instead of a PID.
8323 (linux_attach): Renamed from myattach.
8324 (linux_kill): Renamed from kill_inferior. Call clear_inferiors ().
8325 (linux_thread_alive): Renamed from mythread_alive.
8326 (linux_wait): Renamed from mywait. Call clear_inferiors () if the
8327 child dies.
8328 (linux_resume): Renamed from myresume. Add missing ``return 0''.
8329 (regsets_store_inferior_registers): Correct error message.
8330 Add missing ``return 0''.
8331 (linux_fetch_registers): Renamed from fetch_inferior_registers.
8332 (linux_store_registers): Renamed from store_inferior_registers.
8333 (linux_read_memory): Renamed from read_inferior_memory.
8334 (linux_write_memory): Renamed from write_inferior_memory.
8335 (linux_target_ops): New structure.
8336 (initialize_low): Call set_target_ops ().
8337 * remote-utils.c (unhexify): New function.
8338 (hexify): New function.
8339 (input_interrupt): Send signals to ``signal_pid''.
8340 * server.c (inferior_pid): Remove.
8341 (start_inferior): Update create_inferior call.
8342 (attach_inferior): Call add_inferior.
8343 (handle_query): New function.
8344 (main): Call handle_query for `q' packets.
8345 * server.h: Include "target.h". Remove obsolete prototypes.
8346 Add prototypes for "inferiors.c", "target.c", hexify, and unhexify.
8347
83482002-04-09 Daniel Jacobowitz <drow@mvista.com>
8349
8350 * Makefile.in: Add WARN_CFLAGS. Update configury
8351 dependencies.
8352 * configure.in: Check for <string.h>
8353 * configure: Regenerate.
8354 * config.in: Regenerate.
8355 * gdbreplay.c: Include needed system headers.
8356 (remote_open): Remove strchr prototype.
8357 * linux-low.h: Correct #ifdef to HAVE_LINUX_USRREGS.
8358 * regcache.c (supply_register): Change buf argument to const void *.
8359 (supply_register_by_name): Likewise.
8360 (collect_register): Change buf argument to void *.
8361 (collect_register_by_name): Likewise.
8362 * regcache.h: Add missing prototypes.
8363 * remote-utils.c: Include <arpa/inet.h> for inet_ntoa.
8364 * server.c (handle_query): New function.
8365 (attached): New static variable, moved out of main.
8366 (main): Quiet longjmp clobber warnings.
8367 * server.h: Add ATTR_NORETURN and ATTR_FORMAT. Update prototypes.
8368 * utils.c (error): Remove NORETURN.
8369 (fatal): Likewise.