* armobsd-tdep.c: New file.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2006-07-16 Mark Kettenis <kettenis@gnu.org>
2
3 * armobsd-tdep.c: New file.
4 * Makefile.in (ALLDEPFILES): Add armobsd-tdep.c.
5 (armobsd-tdep.o): New dependency.
6 * config/arm/obsd.mt: New file.
7 * configure.tgt: (arm*-*-openbsd*): Set gdb_target to obsd.
8
9 * gdbarch.sh (deprecated_saved_pc_after_call): Delete.
10 * gdbarch.h, gdbarch.c: Re-generate.
11
12 * arm-tdep.c (arm_saved_pc_after_call): Delete.
13 (arm_gdbarch_init): Do not set deprecated_saved_pc_after_call.
14
15 2006-07-16 Alfred M. Szmidt <ams@gnu.org>
16
17 * gnu-nat.c: Undefine _process_user_ before including
18 <hurd/process_request.h>.
19 (gnu_resume): Supply missing argument to error().
20 (gnu_read_inferior): Add extra parenthesis around arithmetic
21 expression to silence warnings from GCC.
22 (gnu_write_inferior): Likewise.
23 (gnu_xfer_memory): Changed type of MYADDR to `gdb_byte *'.
24
25 2006-07-16 Mark Kettenis <kettenis@gnu.org>
26
27 * armnbsd-tdep.c (arm_netbsd_elf_init_abi): Use
28 svr4_ilp_fetch_link_map_offsets.
29
30 2006-07-15 Mark Kettenis <kettenis@gnu.org>
31
32 * armnbsd-tdep.c: Don't include "nbsd-tdep.h".
33 * config/arm/nbsd.mt (TDEPFILES): Remove nbsd-tdep.o.
34 (DEPRECATED_TM_FILE): Remove.
35 * Makefile.in (armnbsd-tdep.o): Update dependencies.
36
37 2006-07-14 Joel Brobecker <brobecker@adacore.com>
38
39 * PROBLEMS: Document threads/2137.
40
41 2006-07-13 Mark Kettenis <kettenis@gnu.org>
42
43 * config/alpha/tm-nbsd.h: Remove file.
44 * config/alpha/nbsd.mt (DEPRECATED_TM_FILE): Remove.
45
46 2006-07-13 Corinna Vinschen <vinschen@redhat.com>
47
48 * mips-tdep.c (mips_integer_to_address): Simplify be calling
49 extract_signed_integer directly. Fix comment.
50
51 2006-07-13 Corinna Vinschen <vinschen@redhat.com>
52
53 * m32c-tdep.c (m32c_banked_register): New function.
54 (m32c_banked_read): Use m32c_banked_register function to evaluate
55 real register number.
56 (m32c_banked_write): Ditto.
57 (m32c_virtual_frame_pointer): New function.
58 (m32c_gdbarch_init): Add set_gdbarch_virtual_frame_pointer call.
59
60 2006-07-13 Nathan Sidwell <nathan@codesourcery.com>
61
62 * m68k-tdep.c (m68k_frame_align): New.
63 (m68k_gdbarch_init): Set frame_align here.
64
65 2006-07-13 Denis PILAT <denis.pilat@st.com>
66
67 * interps.c (interpreter_completer): Allocate one more item to the
68 'matches' list and set them all to 0 with a xcalloc.
69
70 2006-07-13 Nick Roberts <nickrob@snap.net.nz>
71
72 * annotate.c (annotate_frame_begin): Re-instate frame-begin
73 annotation for level 3 annotations.
74
75 2006-07-13 Paul N. Hilfinger <Hilfinger@adacore.com>
76 Daniel Jacobowitz <dan@codesourcery.com>
77
78 * infcall.c (value_arg_coerce): Use value_cast_pointers for
79 references. Avoid value_cast to a reference type. Don't silently
80 convert pointers to references.
81 * valops.c (value_cast_pointers): New, based on value_cast.
82 (value_cast): Use it. Reject reference types.
83 (value_ref): New.
84 (typecmp): Use it.
85 * value.h (value_cast_pointers, value_ref): New prototypes.
86
87 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
88
89 * remote.c (unpack_varlen_hex): Correct type of retval.
90 Reported by Zhigang Gong <zhigang.gong@gmail.com>.
91
92 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
93
94 * dwarf2read.c (dwarf2_symbol_mark_computed): Handle corrupted
95 or missing location list information. Suggested by Jan
96 Kratochvil <lace@jankratochvil.net>.
97
98 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
99
100 * Makefile.in (arm_linux_tdep_h): New variable.
101 (arm-linux-nat.o, arm-linux-tdep.o): Update.
102 * arm-linux-nat.c: Include "arm-linux-tdep.h".
103 (typeNone, typeSingle, typeDouble, typeExtended)
104 (FPWORDS, ARM_CPSR_REGNUM, FPREG, FPA11)
105 (fetch_nwfpe_single, fetch_nwfpe_double, fetch_nwfpe_none)
106 (fetch_nwfpe_extended, fetch_nwfpe_register, store_nwfpe_single)
107 (store_nwfpe_double, store_nwfpe_extended, store_nwfpe_register):
108 Delete.
109 (fetch_fpregister, fetch_fpregs, store_fpregister, store_fpregs):
110 Use gdb_byte buffers, NWFPE_FPSR_OFFSET, supply_nwfpe_register,
111 and collect_nwfpe_register.
112 (fill_gregset, supply_gregset, fill_fpregset, supply_fpregset): Use
113 new regset functions.
114 * arm-linux-tdep.c: Include "regset.h" and "arm-linux-tdep.h".
115 (arm_apcs_32): New declaration.
116 (ARM_LINUX_SIZEOF_GREGSET, arm_linux_supply_gregset)
117 (arm_linux_collect_gregset, typeNone, typeSingle, typeDouble)
118 (typeExtended, supply_nwfpe_register, collect_nwfpe_register)
119 (arm_linux_supply_nwfpe, arm_linux_collect_nwfpe)
120 (arm_linux_regset_from_core_section): New.
121 (arm_linux_init_abi): Register arm_linux_regset_from_core_section.
122 * arm-linux-tdep.h: New file.
123 * arm-tdep.h (struct regset): Declare.
124 (struct gdbarch_tdep): Add gregset, fpregset members.
125 * config/arm/linux.mh (NATDEPFILES): Remove corelow.o and
126 core-regset.o.
127 * config/arm/linux.mt (TDEPFILES): Add corelow.o.
128
129 2006-07-12 Jan Kratochvil <lace@jankratochvil.net>
130
131 * infrun.c (handle_inferior_event): Fixed typos in printf.
132
133 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
134 Nathan Sidwell <nathan@codesourcery.com>
135
136 * remote.c (REMOTE_ALIGN_WRITES): New.
137 (remote_write_bytes): Align large write packets. Remove unused
138 payload_start variable.
139
140 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
141
142 * remote.c (PACKET_qXfer_auxv): New, renamed from PACKET_qPart_auxv.
143 (remote_supported_packet): Remove #if 0.
144 (remote_protocol_features): Add qPart:auxv:read.
145 (remote_unescape_input): New function.
146 (readchar): Don't mask off the high bit.
147 (read_frame): Use fputstrn_filtered for packet data.
148 (getpkt_sane): Return the number of bytes read or -1. Use
149 fputstrn_unfiltered.
150 (remote_read_qxfer): New.
151 (remote_xfer_partial): Use it for TARGET_OBJECT_AUXV.
152 (_initialize_remote): Update packet registration.
153 * defs.h (fputstrn_filtered): New prototype.
154 * utils.c (fputstrn_filtered): New.
155 * NEWS: Mention qXfer.
156
157 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
158
159 * target.c (target_read): Stop if target_read_partial returns 0
160 when some bytes have already been read.
161 (target_write): Likewise for target_write_partial.
162 (target_read_partial, target_write_partial): Make static.
163 (target_read_alloc): New.
164 * target.h: Doc fixes.
165 (target_read_partial, target_write_partial): Delete prototypes.
166 (target_read_alloc): New prototype.
167
168 * auxv.c (target_auxv_read): Delete.
169 (target_auxv_search, fprint_target_auxv): Use target_read_alloc.
170 * auxv.h (target_auxv_read): Delete prototype.
171 * avr-tdep.c (avr_io_reg_read_command): Use target_read_alloc.
172 * ia64-tdep.c (getunwind_table, get_kernel_table): Likewise.
173 * linux-nat.c (linux_nat_make_corefile_notes): Likewise.
174 * procfs.c (procfs_make_note_section): Likewise.
175 * remote.c (remote_xfer_partial): Don't loop here.
176 * sparc-tdep.c (sparc_fetch_wcookie): Use target_read.
177
178 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
179
180 * arm-linux-tdep.c: Doc fixes.
181 (ARM_SIGCONTEXT_R0, ARM_UCONTEXT_SIGCONTEXT)
182 (ARM_OLD_RT_SIGFRAME_SIGINFO, ARM_OLD_RT_SIGFRAME_UCONTEXT)
183 (ARM_NEW_RT_SIGFRAME_UCONTEXT, ARM_NEW_SIGFRAME_MAGIC): New
184 constants.
185 (arm_linux_sigreturn_init, arm_linux_rt_sigreturn_init): Support
186 the new signal frame layouts.
187
188 2006-07-12 Mike Frysinger <vapier@gentoo.org>:
189 Daniel Jacobowitz <dan@codesourcery.com>
190
191 * Makefile.in (init.c) [LANG, LC_ALL]: Set to `c'.
192 * gdb_indent.sh, gdb_mbuild.sh, observer.sh: Likewise.
193 * gdbarch.sh: Correct comment.
194
195 2006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
196
197 * MAINTAINERS: Add Alfred Szmidt for the Hurd.
198
199 2006-07-11 Mark Kettenis <kettenis@gnu.org>
200
201 * alpha-tdep.h (ALPHA_INSN_SIZE): New define.
202
203 2006-07-10 Mark Kettenis <kettenis@gnu.org>
204
205 * alphaobsd-tdep.c: New file.
206 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Do not register a
207 handler for GDB_OSABI_OPENBSD_ELF.
208 * Makefile.in (ALLDEPFILES): Add alphaobsd-tdep.c.
209 (alphaobsd-tdep.o): New target.
210 * config/alpha/obsd.mt: New file.
211 * configure.tgt (alpha*-*-openbsd*): Set gdb_target to obsd.
212
213 2006-07-10 Richard Henderson <rth@redhat.com>
214
215 * alpha-tdep.h (struct gdbarch_tdep): Add return_in_memory.
216 * alpha-tdep.c (alpha_register_byte): Remove.
217 (alpha_extract_struct_value_address): Remove.
218 (alpha_return_value): New.
219 (alpha_return_in_memory_always): New.
220 (alpha_gdbarch_init): Set tdep->return_in_memory. Don't call
221 set_gdbarch_deprecated_register_byte. Do call set_gdbarch_return_value
222 instead of set_gdbarch_deprecated_use_struct_convention,
223 set_gdbarch_extract_return_value, set_gdbarch_store_return_value,
224 or set_gdbarch_deprecated_extract_struct_value_address.
225 * alphafbsd-tdep.c (alphafbsd_return_in_memory): Rename from
226 alphafbsd_use_struct_convention, remove gcc_p argument.
227 (alphafbsd_init_abi): Set tdep->return_in_memory instead of
228 set_gdbarch_deprecated_use_struct_convention.
229
230 2006-07-09 Mark Kettenis <kettenis@gnu.org>
231
232 * alphabsd-tdep.h (alphanbsd_regset_from_core_section): New
233 prototype.
234 * alphanbsd-tdep.c (alphanbsd_regset_from_core_section): Handle
235 a.out-style core file format here. Make global.
236 (alphanbsd_regset_from_core_section): Remove.
237 (alphanbsd_sigtramp_offset): Make static.
238 (alphanbsd_aout_init_abi): Remove.
239 (alphanbsd_core_osabi_sniffer): Return GDB_OSABI_NETBSD_ELF for
240 a.out style core files.
241 (_initialize_alphanbsd_tdep): Do not register a handler for
242 GDB_OSABI_NETBSD_AOUT.
243
244 * alphabsd-tdep.h: Tweak comments.
245 (SIZEOF_STRUCT_REG, SIZEOF_STRUCT_FPREG): Remove.
246 * alphanbsd-tdep.c: Reorder includes. Include "regset.h".
247 (ALPHANBSD_SIZEOF_GREGS, ALPHANBSD_SIZEOF_FPREGS): New defines.
248 (alphanbsd_supply_fpregset, alphanbsd_supply_gregset)
249 (alphanbsd_aout_supply_gregset): New functions.
250 (alphanbsd_gregset, alphanbsd_fpregset, alphanbsd_aout_gregset):
251 New variables.
252 (alphanbsd_regset_from_core_section)
253 (alphanbsd_aout_regset_from_core_section): New functions.
254 (fetch_core_registers, fetch_elfcore_registers): Remove functions.
255 (alphanbsd_core_fns, alphanbsd_elf_fns): Remove variables.
256 (alphanbsd_init_abi): Set regset_from_core_section.
257 (alphanbsd_aout_init_abi, alphanbsd_core_osabi_sniffer): New
258 functions.
259 (_initialize_alphanbsd_tdep): Register NetBSD core file sniffer.
260 Use alphanbsd_aout_init_abi whre appropriate. Don't call
261 deprecated_add_core_fns.
262 * Makefile.in (alphanbsd-tdep.o): Update dependencies.
263
264 * alphabsd-tdep.c (alphabsd_supply_reg, alphabsd_fill_reg)
265 (alphabsd_supply_fpreg, alphabsd_fill_fpreg): Add missing spaces.
266
267 * alphanbsd-tdep.c (alphanbsd_init_abi): Use
268 svr4_lp64_fetch_link_map_offsets instead of
269 nbsd_lp64_solib_svr4_fetch_link_map_offsets.
270
271 2006-07-06 Andrew Stubbs <andrew.stubbs@st.com>
272
273 * parse.c (write_exp_elt_opcode, write_exp_elt_sym, write_exp_elt_block
274 write_exp_elt_longcst, write_exp_elt_dblcst, write_exp_elt_type,
275 write_exp_elt_intern): Zero initialize tmp.
276
277 2006-07-05 Daniel Jacobowitz <dan@codesourcery.com>
278
279 * remote.c (remote_xfer_partial): Remove KOD support.
280 * target.h (enum target_object): Remove TARGET_OBJECT_KOD.
281 * MAINTAINERS: Move Kernel Object Display entry to past maintainers.
282 * Makefile.in (SFILES, kod_h, COMMON_OBS, kod.o, kod-cisco.o):
283 Remove KOD support.
284 * mi/mi-cmds.c (mi_cmds): Remove dummy KOD commands.
285 * NEWS: Mention KOD.
286 * kod.h, kod.c, kod-cisco.c: Delete files.
287
288 2006-07-04 Daniel Jacobowitz <dan@codesourcery.com>
289
290 * remote.c (init_remote_state): Use xrealloc instead of xmalloc.
291
292 2006-07-03 Nathan J. Williams <nathanw@wasabisystems.com>
293
294 * bsd-kvm.c (bsd_kvm_open): Open the KVM interface read-write if
295 write_files is set.
296
297 2006-06-24 Eli Zaretskii <eliz@gnu.org>
298
299 * defs.h (DIRNAME_SEPARATOR) [!__CYGWIN__ && _WIN32]: Define to `;'.
300
301 2006-06-23 Daniel Jacobowitz <dan@codesourcery.com>
302
303 * arm-tdep.c (arm_register_type): Use unsigned types for registers.
304 Add special types for sp and pc.
305 * Makefile.in (arm-tdep.o): Update.
306
307 2006-06-22 Daniel Jacobowitz <dan@codesourcery.com>
308
309 * remote.c (remote_escape_output): New function.
310 (remote_write_bytes): Use remote_escape_output.
311
312 2006-06-21 Daniel Jacobowitz <dan@codesourcery.com>
313
314 * NEWS: Mention qSupported.
315 * remote.c (struct remote_state): Add explicit_packet_size.
316 (get_remote_packet_size): Check explicit_packet_size.
317 (get_memory_packet_size): Likewise.
318 (PACKET_qSupported): New enum value.
319 (struct protocol_feature, remote_supported_packet)
320 (remote_packet_size, remote_protocol_features)
321 (remote_query_supported): New.
322 (remote_open_1): Reset explicit_packet_size. Call
323 remote_query_supported.
324 (_initialize_remote): Register qSupported.
325
326 2006-06-21 Andrew Stubbs <andrew.stubbs@st.com>
327
328 * cli/cli-script.c (realloc_body_list): Zero new parts of body_list.
329
330 2006-06-20 Joel Brobecker <brobecker@adacore.com>
331
332 * GDB 6.5 released from GDB 6.5 branch.
333
334 2006-06-19 Michael Snyder <msnyder@redhat.com>
335
336 * mips-tdep.c (mips_eabi_push_dummy_call): For 32 bit ABI, to
337 decide how many registers it takes to pass a floating point
338 argument, what matters is the size of a floating point register
339 (not the size of a general purpose register).
340 (mips_o32_push_dummy_call): Ditto.
341
342 2006-06-19 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
343
344 * configure.tgt: Add gdbserver support for m32r-linux.
345
346 2006-06-18 Mark Kettenis <kettenis@gnu.org>
347
348 * m68klinux-tdep.c (m68k_linux_init_abi): Fix typo in comment.
349
350 2006-06-15 Daniel Jacobowitz <dan@codesourcery.com>
351
352 * infrun.c (insert_step_resume_breakpoint_at_caller): New function,
353 based on insert_step_resume_breakpoint_at_frame.
354 (handle_inferior_event): Update comments. Use
355 insert_step_resume_breakpoint_at_caller.
356 (insert_step_resume_breakpoint_at_frame): Revise comments.
357
358 2006-06-14 Daniel Jacobowitz <dan@codesourcery.com>
359
360 * dwarf2read.c (read_unspecified_type): New function.
361 (read_type_die): Handle DW_TAG_unspecified_type.
362 (Committed by Julian Brown.)
363
364 2006-06-13 Daniel Jacobowitz <dan@codesourcery.com>
365
366 * symfile.c (load_command): Check for a changed executable before
367 "load".
368
369 2006-06-13 Fred Fish <fnf@specifix.com>
370
371 * mips-tdep.c (mips_find_long_section): New function.
372 (mips_gdbarch_init): Use it to set long and pointer sizes.
373
374 2006-06-13 Nathan Sidwell <nathan@codesourcery.com>
375
376 * remote-file.io.c (remote_fileio_func_system): Treat zero length
377 string as NULL. Adjust for NULL pointer argument.
378 * doc/gdb.texinfo (system): Document behaviour with zero length
379 string.
380
381 2006-06-12 Daniel Jacobowitz <dan@codesourcery.com>
382
383 * remote.c (set_remote_protocol_packet_cmd)
384 (show_remote_protocol_packet_cmd): New prototypes.
385 (remote_set_cmdlist, remote_show_cmdlist): Move higher.
386 (struct packet_config): Make name and title const.
387 (add_packet_config_cmd): Remove unnecessary arguments.
388 (_initialize_remote): Update calls.
389
390 2006-06-10 Daniel Jacobowitz <dan@codesourcery.com>
391
392 * mingw-hdep.c (gdb_select): Always check for NULL fd sets
393 before calling FD_ISSET. Correct check for exceptfds which
394 previously tested writefds.
395
396 2006-06-09 Daniel Jacobowitz <dan@codesourcery.com>
397 Julian Brown <julian@codesourcery.com>
398
399 * dwarf2read.c (partial_read_comp_unit_head): Accept version 3.
400
401 2006-06-09 Julian Brown <julian@codesourcery.com>
402
403 * MAINTAINERS (Write After Approval): Add myself.
404
405 2006-06-08 Michael Snyder <msnyder@redhat.com>
406
407 * mips-tdep.c (fp_register_arg_p): Recognize floating point typedefs.
408
409 2006-06-08 Nathan Sidwell <nathan@codesourcery.com>
410
411 * m68k-tdep.c (m68k_dwarf_reg_to_regnum): New.
412 (m68k_gdbarch_init): Set it for dwarf & dwarf2 reg number
413 conversion. Use M68K_NUM_REGS for number of regs.
414
415 * remote-fileio.c (remote_fileio_reset): New.
416 * remote-fileio.h (remote_fileio_reset): Prototype.
417 * remote.c (extended_remote_restart, remote_open_1): Call it.
418
419 * remote.c (remote_open_1): Do preopen tasks before
420 irreversably destroying state.
421
422 2006-06-08 Daniel Jacobowitz <dan@codesourcery.com>
423
424 * remote.c (struct remote_state): New type, only containing
425 buf and buf_size.
426 (remote_state): New variable.
427 (get_remote_state): New function.
428 (struct remote_arch_state): Renamed from struct remote_state.
429 Removed buf and buf_size.
430 (get_remote_arch_state): Renamed from get_remote_state. All
431 necessary callers updated to call this function.
432 (init_remote_state): Initialize the architecture-specific state.
433 Update the target-specific state if necessary.
434 (get_remote_packet_size): New function. All previous references
435 changed to use this accessor function.
436 (packet_reg_from_regnum, packet_reg_from_pnum): Take a
437 remote_arch_state instead of a remote_state. All callers changed.
438 (_initialize_remote): Initialize the packet buffer here.
439
440 2006-06-06 Nathan Sidwell <nathan@codesourcery.com>
441
442 * remote.c (remote_insert_watchpoint): Return -1, rather than
443 fatal error if packet is disabled.
444 (remote_remove_watchpoint, remote_insert_hw_breakpoint,
445 remote_remove_hw_breakpoint): Likewise.
446
447 2006-06-02 Nick Roberts <nickrob@snap.net.nz>
448
449 * breakpoint.c (print_it_typical): Use EXEC_ASYNC_LOCATION_REACHED.
450
451 2006-05-31 Michael Snyder <msnyder@redhat.com>
452
453 * mips-tdep.c: Comment tweaks.
454
455 2006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
456
457 * Makefile.in (top_builddir): Update comments.
458 (INTL_DIR, INTL_SRC): Delete.
459 (INTL, INTL_DEPS, INTL_CFLAGS): Update.
460 * acinclude.m4: Include new gettext macros.
461 * configure.ac: Use ZW_GNU_GETTEXT_SISTER_DIR. Remove copied
462 CATALOGS code.
463 * aclocal.m4, configure: Regenerated.
464
465 2006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
466
467 * Makefile.in (arm-linux-nat.o): Update dependencies.
468 * arm-linux-nat.c: Include "gdb_proc_service.h".
469 (PTRACE_GET_THREAD_AREA): Define.
470 (ps_get_thread_area): New function.
471
472 2006-05-28 Alexandre Oliva <aoliva@redhat.com>
473
474 * dwarf2-frame.h (enum dwarf2_frame_reg_rule): Add
475 DWARF2_FRAME_REG_SAVED_VAL_OFFSET and
476 DWARF2_FRAME_REG_SAVED_VAL_EXP.
477 * dwarf2-frame.c (execute_cfa_program): Handle val_offset,
478 val_offset_sf and val_expression.
479 (dwarf2_frame_prev_register): Handle the new reg rules.
480 (dwarf2_frame_this_id): Use pc instead of function entry point.
481
482 2006-05-28 Alexandre Oliva <aoliva@redhat.com>
483
484 * dwarf2-frame.c (struct dwarf2_cie): Add signal_frame field.
485 (dwarf2_frame_sniffer): Use it.
486 (decode_frame_entry_1): Set it according to augmentation "S".
487
488 2006-05-27 Joel Brobecker <brobecker@adacore.com>
489
490 From Peter Schauer <peterschauer@gmx.net>
491 * m2-typeprint.c (m2_record_fields): Move variable declarations
492 to the begining of the block.
493
494 2006-05-23 Mark Mitchell <mark@codesourcery.com>
495
496 * mt-tdep.c (mt_register_name): Correct out-of-range logic to
497 include additional registers.
498
499 * mt-tdep.c (mt_gdb_regnums): Add ZI2, ZQ2, Ichannel2,
500 Iscramb2, Qscramb2, Qchannel2.
501 (mt_register_name): Likewise.
502 (mt_copro_register_type): Describe ZI2 and ZQ2.
503
504 * mt-tdep.c (mt_gdb_regnums): Define
505 MT_COPRO_PSEUDOREG_MAC_REGNUM.
506 (mt_register_name): Use it.
507 (mt_copro_register_type): Likewise.
508 (mt_register_type): Likewise.
509 (mt_pseudo_register_read): Likewise. Read the MAC register, not
510 the coprocessor register.
511 (mt_pseudo_register_write): Likewise.
512
513 2006-05-21 Christopher Faylor <cgf@timesys.com>
514
515 * win32-nat.c (cygwin_exceptions): New variable.
516 (handle_exception): Treat a cygwin exception like a normal exception if
517 cygwin_exceptions is true.
518 (_initialize_win32_nat): Add "set cygwin-exceptions" handler.
519
520 2006-05-20 Gaius Mulley <gaius@glam.ac.uk>
521
522 * NEWS: (Improved Modula-2 language support): New section.
523
524 2006-05-19 Joel Brobecker <brobecker@adacore.com>
525
526 * configure: Regenerate using proper version of autoconf.
527
528 2006-05-19 Fred Fish <fnf@specifix.com>
529
530 * Makefile.in: Fix spelling of 'explicitly' and 'explicit'.
531 * dwarfread.c: Fix spelling of 'unexpected'.
532 * mips-tdep.c: Fix spelling of 'possible' and 'Determine'.
533 * stack.c: Fix spelling of 'RETURN_VALUE'.
534
535 2006-05-18 Paul Gilliam <pgilliam@us.ibm.com
536
537 * solib-svr4.c (enable_break): Breakup a long line into 3 shorter ones.
538
539 2006-05-17 Daniel Jacobowitz <dan@codesourcery.com>
540
541 * dwarf2-frame.c: Include "value.h".
542 (read_reg): Use unpack_long and register_type.
543 * Makefile.in (dwarf2-frame.o): Update.
544
545 2006-05-17 Daniel Jacobowitz <dan@codesourcery.com>
546
547 * remote-rdp.c: Deleted.
548 * NEWS: Mention removal of remote-rdp.c.
549
550 * Makefile.in (ALLDEPFILES): Remove remote-rdp.c.
551 (remote-rdp.o): Delete.
552 * README: Remove description of remote-rdp.c.
553 * arm-tdep.c (arm_breakpoint_from_pc): Remove obsolete comment.
554 * config/arm/embed.mt (TDEPFILES): Remove remote-rdp.o.
555
556 2006-05-16 Daniel Jacobowitz <dan@codesourcery.com>
557
558 * ser-e7kpc.c: Include <time.h> if it is available.
559
560 2006-05-16 Joel Brobecker <brobecker@adacore.com>
561
562 * version.in (version.in): Bump version number to 6.5.50 now
563 that the gdb-6.5 branch has been created.
564 * NEWS: Create a new section for changes that are included
565 since gdb-6.5. Name the "since gdb-6.4" section as the "in gdb-6.5"
566 section.
567
568 2006-05-16 Jim Blandy <jimb@codesourcery.com>
569
570 * MAINTAINERS (Authorized Committers): Gaius Mulley has accepted
571 the Global Maintainers' invitation to be an authorized committer
572 for the Modula-2 support.
573
574 2006-05-15 Mark Kettenis <kettenis@gnu.org>
575
576 * ppcobsd-nat.c: Include "gdb_assert.h".
577 [PT_GETFPREGS] (getfpregs_supplies): New function.
578 (ppcobsd_fetch_registers, ppcobsd_fetch_registers): Hanlde OS
579 versions that have PT_GETFPREGS.
580 (_initialize_ppcobsd_nat) [PT_GETFPREGS]: Initialize
581 ppcobsd_fpreg_offsets.
582 * ppcobsd-tdep.h (ppcobsd_fpreg_offsets, ppcobsd_fpregset):
583 Declare.
584 * ppcobsd-tdep.c (ppcobsd_fpreg_offsets, ppcobsd_fpregset): New
585 variables.
586 (_initialize_ppcobsd_tdep): Initialize ppcobsd_fpreg_offsets.
587 * Makefile.in (ppcobsd-nat.o): Update dependencies.
588
589 2006-05-15 Daniel Jacobowitz <dan@codesourcery.com>
590
591 * configure.ac: Use GCC_HEADER_STDINT.
592 * acinclude.m4: Include stdint.m4.
593 * Makefile.in (gdb_stdint_h): Define.
594 (distclean): Remove gdb_stdint.h.
595 (Makefile, stamp-h): Update rules to generate only the correct
596 files.
597 (gdb_stdint.h, stamp-int): New rules.
598 * config.in, configure: Regenerated.
599
600 2006-05-15 Daniel Jacobowitz <dan@codesourcery.com>
601
602 * valprint.c: Include "exceptions.h".
603 (val_print): If something goes wrong while printing, supply an
604 error message.
605
606 2006-05-15 Peter O'Gorman <gdb-patches@mlists.thewrittenword.com>
607
608 * source.c (get_current_source_symtab_and_line)
609 (set_current_source_symtab_and_line): Use { 0 }.
610 * cli/cli-cmds.c (list_command): Likewise.
611
612 2006-05-14 Nick Roberts <nickrob@snap.net.nz>
613
614 * mi/gdb-mi.el (gdbmi-send): Correct regexp for repeat commands.
615 (gdbmi): Use new variable name gdb-pc-address.
616 (gdbmi-frame-handler): Use new variable name gdb-pc-address.
617 Check that a match has been found.
618
619 2006-05-13 Gaius Mulley <gaius@glam.ac.uk>
620
621 * m2-lang.h: Added function extern prototypes for
622 m2_is_long_set and get_long_set_bounds.
623 * m2-typeprint.c: Complete replacement.
624 (m2_print_type): Walk the Modula-2 type tree.
625 (m2_type_name): New function.
626 (m2_range): New function.
627 (m2_typedef): New function.
628 (m2_array): New function.
629 (m2_pointer): New function.
630 (m2_ref): New function.
631 (m2_unknown): New function.
632 (m2_union): New function.
633 (m2_procedure): New function.
634 (m2_print_bounds): New function.
635 (m2_short_set): New function.
636 (m2_is_long_set): New function.
637 (m2_get_discrete_bounds): New function.
638 (m2_is_long_set_of_type): New function.
639 (m2_long_set): New function.
640 (m2_record_fields): New function.
641 (m2_enum): New function.
642 * dwarf2read.c: Modified.
643 (read_set_type): New function.
644 (process_die): Call read_set_type.
645 (read_base_type): Modifed.
646 (set_cu_language): Added Modula-2 case clause.
647 * m2-valprint.c: Complete replacement.
648 (print_function_pointer_address): New function.
649 (get_long_set_bounds): New function.
650 (m2_print_long_set): New function.
651 (print_unpacked_pointer): New function.
652 (print_variable_at_address): New function.
653 (m2_val_print): Replaced.
654 * gdb/MAINTAINERS (Write After Approval): Added
655 Gaius Mulley <gaius@glam.ac.uk>
656
657 2006-05-12 Mark Kettenis <kettenis@gnu.org>
658
659 * ppcnbsd-tdep.h: Update copyright year. Include <stddef.h>
660 (ppcnbsd_supply_reg, ppcnbsd_fill_reg, ppcnbsd_supply_fpreg)
661 (ppcnbsd_fill_fpreg): Remove prototypes.
662 (struct regset): Add forward declaration.
663 (ppcnbsd_gregset, ppcnbsd_fpregset): Extern declarations.
664 * ppcnbsd-tdep.c: Update copyright year. Include "gdbtypes.h",
665 "regset.h" and "gdb_string.h". Don't include "breakpoint.h",
666 "value.h", target.h and nbsd-tdep.h". Reorder includes.
667 (REG_FIXREG_OFFSET, REG_LR_OFFSET, REG_CR_OFFSET, REG_XER_OFFSET)
668 (REG_CTR_OFFSET, REG_PC_OFFSET, SIZEOF_STRUCT_REG)
669 (FPREG_FPR_OFFSET, FPREG_FPSCR_OFFSET, SIZEOF_STRUCT_FPREG):
670 Remove macros.
671 (ppcnbsd_supply_reg, ppcnbsd_fill_reg, ppcnbsd_supply_fpreg)
672 (ppcnbsd_fill_fpreg): Remove functions.
673 (fetch_core_registers, fetch_elfcore_registers): Remove functions.
674 (ppcnbsd_core_fns, ppcnbsd_elfcore_fns): Remove variables.
675 (ppcnbsd_reg_offsets): New variable.
676 (ppcnbsd_gregset, ppcnbsd_fpregset): New variables.
677 (ppcnbsd_sigtramp_cache_init): Deal with new signal trampoline
678 introduced in NetBSD 2.0.
679 (ppcnbsd_sigtramp): Provide complete signal trampoline.
680 (ppcnbsd2_sigtramp): New variable.
681 (ppcnbsd_init_abi): Set svr4_fetch_link_map_offsets to
682 svr4_ilp32_fetch_link_map_offsets. Set regset_from_core_section.
683 Add ppcnbs2_sigtramp unwinder.
684 (_initialize_ppcnbsd_tdep): Don't use deprecated_add_core_fns.
685 Initialize ppcnbsd_reg_offsets.
686 * ppcnbsd-nat.c: Update copyright year. Reorder includes.
687 (getregs_supplies): Use regnum instead of regno.
688 (getfpregs_supplies): Likewise.
689 (ppcnbsd_fetch_inferior_registers): Likewise. Call
690 ppc_supply_gregset and ppc_suppply_fpregset instead of
691 ppcnbsd_supply_reg and ppcnbsd_supply_fpreg
692 (ppcnbsd_store_inferior_registers): Likewise. Call
693 ppc_collect_gregset and ppc_collect_fpregset instead of
694 ppcnbsd_fill_reg and ppcnbsd_fill_fpreg.
695 (ppcnbsd_supply_pcb): Use `gdb_byte *' instead of `char *'.
696 (_initialize_ppcnbsd_nat): Add some whitespace.
697 * Makefile.in (ppcnbsd-nat.o, ppcnbsd-tdep.o): Update dependencies.
698 * config/powerpc/nbsd.mh (NATDEPFILES): Remove infptrace.o.
699 (NAT_FILE): Remove.
700 * config/powerpc/nbsd.mt (TDEPFILES): Remove nbsd-tdep.o.
701
702 2006-05-11 Alfred M. Szmidt <ams@gnu.org>
703
704 * gnu-nat.c (inf_validate_procs): Don't use lvalue in assignments.
705
706 2006-05-11 Fred Fish <fnf@specifix.com>
707
708 * symtab.c (skip_prologue_using_sal): Handle single line functions
709 like "foo(){}", which may optimize down to a single return inst.
710
711 2006-05-10 Steve Ellcey <sje@cup.hp.com>
712
713 * hppa-hpux-tdep.c (initialize_hp_cxx_exception_support): Remove
714 message.
715
716 2006-05-09 Andreas Schwab <schwab@suse.de>
717
718 * dwarf2-frame.c (struct dwarf2_fde): Add eh_frame_p.
719 (execute_cfa_program): Add parameter eh_frame_p. Call
720 dwarf2_frame_eh_frame_regnum when true.
721 (dwarf2_frame_cache): Pass eh_frame_p from fde to
722 execute_cfa_program.
723 (decode_frame_entry_1): Call dwarf2_frame_eh_frame_regnum when
724 processing .eh_frame. Copy eh_frame_p to the new fde.
725 (struct dwarf2_frame_ops): Add eh_frame_regnum.
726 (dwarf2_frame_set_eh_frame_regnum): Define.
727 (dwarf2_frame_eh_frame_regnum): Define.
728
729 * dwarf2-frame.h (dwarf2_frame_set_eh_frame_regnum): Declare.
730 (dwarf2_frame_eh_frame_regnum): Declare.
731
732 2006-05-06 David S. Miller <davem@sunset.davemloft.net>
733
734 * linux-nat.c (linux_nat_do_thread_registers): Check for
735 NULL collect_regset method.
736
737 2006-05-06 Ulrich Weigand <uweigand@de.ibm.com>
738
739 * s390-tdep.c (s390_collect_regset): New function.
740 (s390_gregset, s390x_gregset, s390_fpregset): Add it.
741
742 2006-05-06 Nick Roberts <nickrob@snap.net.nz>
743
744 * dwarf2read.c: Make LOC_OPTIMIZED_OUT the default value for a
745 symbol.
746
747 2006-05-05 Ulrich Weigand <uweigand@de.ibm.com>
748
749 * linux-nat.c (exit_lwp): Fix NULL pointer access.
750 (linux_nat_handle_extended): New parameter STOPPING.
751 (wait_lwp): Call it with STOPPING equals 1.
752 (linux_nat_wait): Call it with STOPPING equals 0.
753
754 2006-05-05 Ulrich Weigand <uweigand@de.ibm.com>
755
756 * linux-nat.c (linux_nat_wait): Do not short-cut reporting
757 of 'uninteresting' signals when single-stepping.
758
759 2006-05-05 Daniel Jacobowitz <dan@codesourcery.com>
760
761 * MAINTAINERS: Move NEWS to the documentation entry.
762
763 2006-05-05 David S. Miller <davem@sunset.davemloft.net>
764
765 * linux-nat.c (linux_nat_do_thread_registers): Use the
766 regset_from_core_section infrastructure if the target
767 supports it.
768 * Makefile.in: Update dependencies.
769 * linux-thread-db.c (thread_db_store_registers): Use
770 regcache_raw_collect.
771
772 2006-05-05: Paul Gilliam <pgilliam@us.ibm.com>
773
774 * ppc-linux-nat.c: Clean up types for ptrace.
775 Replace (CORE_ADDR) with (uintptr_t) to avoid the size difference
776 between a CORE_ADDR and a void* on ppc64 systems compiled for 32-bits.
777
778 2006-05-05 Daniel Jacobowitz <dan@codesourcery.com>
779
780 * remote.c (remote_disconnect): Add TARGET argument.
781 * target.c (debug_to_disconnect): Delete.
782 (update_current_target): Do not inherit to_disconnect.
783 (target_disconnect): Search for a target to implement to_disconnect.
784 (setup_target_debug): Do not reference to_disconnect.
785 * target.h (struct target_ops): Add target argument to
786 to_disconnect.
787
788 2006-05-06 Fred Fish <fnf@specifix.com>
789
790 * mips-tdep.c (mips_o64_push_dummy_call): Left shift big endian
791 structs or unions independent of ABI register size.
792
793 2006-05-06 Fred Fish <fnf@specifix.com>
794
795 * mips-tdep.c (mips_o64_return_value): Replace stub that always
796 returned RETURN_VALUE_STRUCT_CONVENTION with a real function.
797
798 2006-05-05 Daniel Jacobowitz <dan@codesourcery.com>
799
800 * mi/mi-main.c (captured_mi_execute_command): Check the return
801 value of -interpreter-exec.
802
803 2006-05-03 Vladimir Prus <ghost@cs.msu.su>
804
805 * varobj.c (c_value_of_variable): Ignore top-level references.
806 (Committed by Jim Blandy.)
807
808 2006-04-30 Mark Kettenis <kettenis@gnu.org>
809
810 * breakpoint.c (insert_single_step_breakpoint): Make a failure to
811 insert a single-step breakpoint an error instead of a warning.
812
813 2006-05-01 Nathan J. Williams <nathanw@wasabisystems.com>
814
815 * ppcnbsd-tdep.c (ppcnbsd_return_value): Change type of last two
816 arguments from void * to gdb_byte *.
817
818 2006-04-26 Michael Snyder <msnyder@redhat.com>
819
820 * linux-fork.c (_initialize_linux_fork): Rename "delete-fork"
821 command to "delete fork" (no hyphen), compatible with other
822 "delete" commands.
823 (info_forks_command): Accept a fork ID argument, for info
824 on a single fork. Report if no matching forks.
825
826 2006-04-25 Mark Kettenis <kettenis@gnu.org>
827
828 * breakpoint.c (remove_single_step_breakpoints): Bail out early if
829 no breakpoints are inserted.
830
831 From Masaki MURANAKA <monaka@monami-software.com>:
832 * mips-mdebug-tdep.c (mips_mdebug_frame_prev_register): Change
833 type of last argument to `gdb_byte *'
834
835 2006-04-25 Jim Blandy <jimb@codesourcery.com>
836
837 Add support for 'target remote |' on MinGW.
838 * ser-mingw.c (struct pipe_state): New structure.
839 (make_pipe_state, free_pipe_state, cleanup_pipe_state)
840 (pipe_windows_open, pipe_windows_close, pipe_windows_read)
841 (pipe_windows_write, pipe_wait_handle): New functions.
842 (_initialize_ser_windows): Register a "pipe" interface based on
843 them.
844
845 2006-04-24 Daniel Jacobowitz <dan@codesourcery.com>
846
847 * ser-mingw.c: Include <conio.h>.
848 (struct ser_console_state, struct net_windows_state): Add exit_select,
849 have_stopped, thread.
850 (pipe_select_thread, console_select_thread)
851 (net_windows_select_thread): Don't create a local state copy or
852 close stop_select. Exit on exit_select instead of stop_select. Set
853 have_stopped.
854 (console_select_thread): Don't report control keypresses as pending
855 input.
856 (pipe_select_thread): Allow stop_select to interrupt sleeping.
857 (set_console_wait_handle): Create exit_select and have_stopped.
858 Save the thread handle. Check _kbhit before starting a thread.
859 (ser_console_done_wait_handle): New.
860 (ser_console_close): Close new handles. Wait for the thread to
861 exit.
862 (new_windows_select_thread): Assert that an event occurred.
863 (net_windows_wait_handle): Check for pending input before starting
864 a thread.
865 (net_windows_done_wait_handle): New.
866 (net_windows_open): Create exit_select and have_stopped.
867 Save the thread handle.
868 (net_windows_close): Close new handles. Wait for the thread to
869 exit.
870 (_intiialize_ser_windows): Register done_wait_handle methods.
871
872 * serial.c [USE_WIN32API] (serial_done_wait_handle): New.
873 * serial.h [USE_WIN32API] (struct serial_ops): Add done_wait_handle.
874 [USE_WIN32API] (serial_done_wait_handle): New prototype.
875 * mingw-hdep.c (gdb_select): Use serial_done_wait_handle.
876
877 2006-04-23 Andreas Schwab <schwab@suse.de>
878
879 * rs6000-tdep.c: Include "reggroups.h" only once.
880 * Makefile.in (rs6000-tdep.o): Update dependencies.
881
882 2006-04-21 Frederic Riss <frederic.riss@st.com>
883
884 * dwarf2read.c (dwarf2_start_subfile): Change prototype to accept
885 compilation directory as last argument.
886 Always pass comp_dir as second argument to start_subfile and prepend
887 dirname to the filename when necessary.
888 Remove now superfluous search for pre-existing subfile.
889 (dwarf_decode_lines): Pass the compilation directory to
890 dwarf2_start_subfile.
891
892 2006-04-20 Michael Snyder <msnyder@redhat.com>
893
894 * 2006-03-22 Jim Blandy <jimb@redhat.com>
895 Add support for the Renesas M32C and M16C.
896
897 * configure.tgt (m32c-*-*): New entry.
898 * config/m32c/m32c.mt: New file.
899 * m32c-tdep.c: New file.
900 * Makefile.in (elf_m32c_h): New variable.
901 (m32c-tdep.o): New rule.
902 * NEWS: Mention new target.
903 * MAINTAINERS: Designate Jim Blandy as responsible maintainer.
904
905 2006-04-20 Michael Snyder <msnyder@redhat.com>
906
907 * remote.c: Fix spelling error in comment.
908
909 2006-04-20 Daniel Jacobowitz <dan@codesourcery.com>
910
911 * m68klinux-tdep.c (m68k_linux_sigtramp_frame_prev_register):
912 Correct type of VALUEP. Reported by Jean-Rene Peulve
913 <jr.peulve@wanadoo.fr>.
914
915 2006-04-19 Masaki Muranaka <monaka@monami-software.com>
916
917 * m32r-rom.c: On MinGW, include winsock.h instead of sys/types.h,
918 netdb.h, netinet/in.h.
919 (m32r_upload_command); Add calls WSAStartup().
920 * remote-m32r-sdi.c: On MinGW, include winsock.h instead of
921 netinet/in.h.
922
923 2006-04-18 Daniel Jacobowitz <dan@codesourcery.com>
924
925 * breakpoint.c (deprecated_read_memory_nobpt): Update to use
926 shadow_len.
927 (insert_bp_location, reattach_breakpoints, remove_breakpoint)
928 (delete_breakpoint): Update calls to changed methods.
929 (deprecated_insert_raw_breakpoint, deprecated_remove_raw_breakpoint)
930 (single_step_breakpoints, insert_single_step_breakpoint)
931 (remove_single_step_breakpoints): New.
932 * breakpoint.h (struct bp_target_info): New.
933 (struct bp_location): Replace shadow_contents with
934 target_info and overlay_target_info.
935 (deprecated_insert_raw_breakpoint, deprecated_remove_raw_breakpoint)
936 (insert_single_step_breakpoint, remove_single_step_breakpoints): New
937 prototypes.
938 * gdbarch.sh: Forward declare struct bp_target_info in gdbarch.h.
939 (memory_insert_breakpoint, memory_remove_breakpoint): Update second
940 argument.
941 * mem-break.c (default_memory_insert_breakpoint): Update. Set
942 placed_address, placed_size, and shadow_len.
943 (default_memory_remove_breakpoint): Update. Don't use
944 BREAKPOINT_FROM_PC.
945 (memory_insert_breakpoint, memory_remove_breakpoint): Update.
946 * target.c (update_current_target): Update prototypes for changed
947 functions.
948 (debug_to_insert_breakpoint, debug_to_remove_breakpoint)
949 (debug_to_insert_hw_breakpoint, debug_to_remove_hw_breakpoint):
950 Update.
951 * target.h: Forward declare struct bp_target_info.
952 (struct target_ops): Use a bp_target_info argument for
953 to_insert_breakpoint, to_remove_breakpoint,
954 to_insert_hw_breakpoint, and to_remove_hw_breakpoint.
955 (target_insert_breakpoint, target_remove_breakpoint)
956 (target_insert_hw_breakpoint, target_remove_hw_breakpoint)
957 (memory_insert_breakpoint, memory_remove_breakpoint)
958 (default_memory_insert_breakpoint, default_memory_remove_breakpoint):
959 Update.
960 * config/i386/nm-i386.h: Forward declare struct bp_target_info.
961 (i386_insert_hw_breakpoint, i386_remove_hw_breakpoint): Update.
962 (target_insert_hw_breakpoint, target_remove_hw_breakpoint): Likewise.
963
964 * gdbarch.c, gdbarch.h: Regenerated.
965
966 * alpha-tdep.c (alpha_software_single_step): Use
967 insert_single_step_breakpoint and remove_single_step_breakpoints.
968 Remove unused statics.
969 * arm-tdep.c (arm_software_single_step): Likewise. Add a note.
970 * cris-tdep.c (cris_software_single_step): Likewise.
971 * mips-tdep.c (mips_software_single_step): Likewise.
972 * rs6000-tdep.c (rs6000_software_single_step): Likewise.
973 * sparc-tdep.c (sparc_software_single_step): Likewise.
974 * wince.c (struct thread_info_struct): Remove step_prev.
975 (undoSStep): Use remove_single_step_breakpoints.
976 (wince_software_single_step): Use insert_single_step_breakpoint.
977
978 * corelow.c (ignore): Remove unneeded prototype. Update arguments.
979 * exec.c (ignore): Likewise.
980 * sol-thread.c (ignore): Likewise.
981
982 * procfs.c (dbx_link_shadow_contents): Delete.
983 (dbx_link_bpt): New.
984 (procfs_mourn_inferior): Remove it if necessary.
985 (remove_dbx_link_breakpoint): Use it.
986 (insert_dbx_link_bpt_in_file): Set it.
987 (procfs_init_inferior): Don't update dbx_link_bpt_addr.
988 * rs6000-nat.c (exec_one_dummy_insn): Use
989 deprecated_insert_raw_breakpoint and
990 deprecated_remove_raw_breakpoint.
991 * solib-irix.c (shadow_contents, breakpoint_addr): Delete.
992 (base_breakpoint): New.
993 (disable_break): Use it.
994 (enable_break): Set it.
995
996 * i386-nat.c (i386_insert_hw_breakpoint, i386_remove_hw_breakpoint):
997 Update.
998 * ia64-tdep.c (ia64_memory_insert_breakpoint)
999 (ia64_memory_remove_breakpoint): Likewise.
1000 * m32r-tdep.c (m32r_memory_insert_breakpoint)
1001 (m32r_memory_remove_breakpoint): Likewise.
1002 * monitor.c (monitor_insert_breakpoint, monitor_remove_breakpoint):
1003 Likewise. Remove unnecessary prototypes. Use placed_address
1004 and placed_size. Removed useless read from memory.
1005 * nto-procfs.c (procfs_insert_breakpoint)
1006 (procfs_remove_breakpoint, procfs_insert_hw_breakpoint)
1007 (procfs_remove_hw_breakpoint): Update.
1008 * ocd.c (ocd_insert_breakpoint, ocd_remove_breakpoint): Likewise.
1009 * ocd.h (ocd_insert_breakpoint, ocd_remove_breakpoint): Likewise.
1010 * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Likewise.
1011 * ppc-tdep.h (ppc_linux_memory_remove_breakpoint): Likewise.
1012 * remote-e7000.c (e7000_insert_breakpoint)
1013 (e7000_remove_breakpoint): Likewise.
1014 * remote-m32r-sdi.c (m32r_insert_breakpoint)
1015 (m32r_remove_breakpoint): Likewise.
1016 * remote-mips.c (mips_insert_breakpoint)
1017 (mips_remove_breakpoint): Likewise.
1018 * remote-rdp.c (remote_rdp_insert_breakpoint)
1019 (remote_rdp_remove_breakpoint): Likewise.
1020 (rdp_step): Use deprecated_insert_raw_breakpoint and
1021 deprecated_remove_raw_breakpoint.
1022 * remote-sds.c (sds_insert_breakpoint, sds_remove_breakpoint):
1023 Update.
1024 * remote-sim.c (gdbsim_insert_breakpoint, gdbsim_remove_breakpoint):
1025 Delete.
1026 (init_gdbsim_ops): Use memory_insert_breakpoint and
1027 memory_remove_breakpoint.
1028 * remote-st.c (st2000_insert_breakpoint)
1029 (st2000_remove_breakpoint): Update. Remove unused
1030 BREAKPOINT_FROM_PC.
1031 * remote.c (remote_insert_breakpoint, remote_remove_breakpoint):
1032 Update. Use placed_address and placed_size.
1033 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Likewise.
1034
1035 2006-04-12 Daniel Jacobowitz <dan@codesourcery.com>
1036
1037 * remote.c (extended_remote_restart): Pass the correct length
1038 to getpkt.
1039
1040 2006-04-11 Jim Blandy <jimb@codesourcery.com>
1041
1042 * serial.c (serial_open): Check for special cases at the front of
1043 the "device" name before scanning for the ':' that would indicate
1044 an IP-based connection.
1045
1046 2006-04-10 Christopher Faylor <cgf@timesys.com>
1047
1048 * win32-nat.c (open_symbol_file_object): New function.
1049 (in_dynsym_resolve_code): Ditto.
1050 (init_win32_ops): Fill in fields which ought not to be NULL.
1051
1052 2006-04-10 Christopher Faylor <cgf@timesys.com>
1053
1054 * win32-nat.c (do_win32_fetch_inferior_registers): Don't do anything
1055 with saved context if __COPY_CONTEXT_SIZE is not defined.
1056 (handle_output_debug_string): Ditto.
1057
1058 2006-04-10 Daniel Jacobowitz <dan@codesourcery.com>
1059
1060 * arm-linux-tdep.c (arm_linux_extract_return_value): Use gdb_byte.
1061
1062 2006-04-09 David S. Miller <davem@sunset.davemloft.net>
1063
1064 * sparc64-linux-tdep.c (sparc64_linux_init_abi): Append dwarf2
1065 frame sniffer.
1066 * sparc-tdep.c (sparc32_gdbarch_init): Make sure to call
1067 dwarf2_frame_set_init_reg() before gdbarch_init_osabi() so
1068 that the latter can override.
1069 * Makefile.in (sparc64-linux-tdep.o): Update dependencies.
1070
1071 2006-04-09 Ulrich Weigand <uweigand@de.ibm.com>
1072
1073 * s390-tdep.c (struct s390_prologue_data): New field 'stack'.
1074 (s390_store): Call pv_area_store to track stack slots.
1075 (s390_load): Call pv_area_fetch to track stack slots.
1076 (s390_check_for_saved): New function.
1077 (s390_analyze_prologue): Call pv_area_scan. Allocate and free stack.
1078
1079 2006-04-09 Ulrich Weigand <uweigand@de.ibm.com>
1080
1081 * Makefile.in (s390-tdep.o): Add dependency on $(prologue_value_h).
1082 * s390-tdep.c: Include "prologue-value.h".
1083 (struct prologue_value): Remove.
1084 (pv_set_to_unknown, pv_set_to_constant, pv_set_to_register,
1085 pv_constant_last, pv_add, pv_add_constant, pv_subtract,
1086 pv_logical_and, pv_is_identical, pv_is_register): Remove.
1087 (compute_x_addr): Remove, replace by ...
1088 (s390_addr): ... this new function.
1089 (struct s390_prologue_data): Use pv_t instead of prologue_value.
1090 (s390_store, s390_load): Likewise.
1091 (s390_prologue_frame_unwind_cache): Likewise.
1092 (s390_analyze_prologue): Likewise. Also, simplify and combine
1093 several conditional statements.
1094
1095 2006-04-08 Jim Blandy <jimb@codesourcery.com>
1096
1097 * Makefile.in (COMMON_OBS): List prologue-value.o. (Omitted from
1098 last patch.)
1099
1100 2006-04-08 David S. Miller <davem@sunset.davemloft.net>
1101
1102 * sparc-linux-tdep.c (sparc32_linux_step_trap): New.
1103 (sparc32_linux_init_abi): Hook it into tdep->step_trap.
1104 (sparc32_linux_core_gregset,
1105 sparc32_linux_supply_core_gregset,
1106 sparc32_linux_collect_core_gregset,
1107 sparc32_linux_supply_core_fpregset,
1108 sparc32_linux_collect_core_fpregset): New.
1109 (sparc32_linux_init_abi): Register them with generic sparc
1110 core regset infrastructure.
1111 * sparc64-linux-tdep.c (sparc64_linux_step_trap): New.
1112 (sparc64_linux_init_abi): Hook it into tdep->step_trap.
1113 (sparc64_linux_core_gregset,
1114 sparc64_linux_supply_core_gregset,
1115 sparc64_linux_collect_core_gregset,
1116 sparc64_linux_supply_core_fpregset,
1117 sparc64_linux_collect_core_fpregset): New.
1118 (sparc64_linux_init_abi): Register them with generic sparc
1119 core regset infrastructure.
1120 * Makefile.in: Update dependencies.
1121
1122 2006-04-07 David S. Miller <davem@sunset.davemloft.net>
1123
1124 * linux-nat.c (linux_nat_thread_alive): Handle targets that
1125 do not implement PTRACE_PEEKUSER.
1126
1127 2006-04-07 Daniel Jacobowitz <dan@codesourcery.com>
1128
1129 * remote.c (remote_wait): Convert warning to error before
1130 parsing corrupt packets.
1131
1132 2006-04-07 Andrew Stubbs <andrew.stubbs@st.com>
1133
1134 * cli/cli-script.c (struct user_args): Add command field.
1135 (arg_cleanup): Free command string.
1136 (setup_user_args): Copy the command line before relying on it.
1137
1138 2006-04-06 Joel Brobecker <brobecker@adacore.com>
1139
1140 * breakpoint.c (_initialize_breakpoint): Add "del" as an alias
1141 of the "delete" command.
1142
1143 2006-04-06 Randolph Chung <tausq@debian.org>
1144
1145 * MAINTAINERS (Patch champions): Add myself.
1146
1147 2006-04-05 Andreas Schwab <schwab@suse.de>
1148
1149 * Makefile.in: Update dependencies.
1150
1151 2006-04-05 David S. Miller <davem@sunset.davemloft.net>
1152
1153 * sparc-tdep.c (sparc32_dwarf2_frame_init_reg): New.
1154 (sparc32_gdbarch_init): Pass it to dwarf2_frame_set_init_reg.
1155 * Makefile.in (sparc-tdep.o): Update dependencies.
1156 * sparc-linux-tdep.c (sparc32_linux_sigframe_init): Pull register
1157 window out of the correct stack frame.
1158 * sparc64-linux-tdep.c (sparc64_linux_sigframe_init): Likewise.
1159 * dwarf2-frame.c (dwarf2_frame_ops init_reg): Add "next_frame"
1160 argument.
1161 (dwarf2_frame_default_init_reg): Likewise.
1162 (dwarf2_frame_set_init_reg): Update init_reg arg.
1163 (dwarf2_frame_init_reg): Take "next_frame" and pass it to
1164 ops->init_reg().
1165 (dwarf2_frame_cache): Pass next_frame to dwarf2_frame_init_reg.
1166 * dwarf2-frame.h (dwarf2-frame_set_init_reg): Update declaration.
1167 * cris-tdep.c (cris_dwarf2_frame_init_reg): Add next_frame arg.
1168 * s390-tdep.c (s390_dwarf2_frame_init_reg): Likewise.
1169 * sh-tdep.c (sh_dwarf2_frame_init_reg): Likewise.
1170 * sparc64-tdep.c (sparc64_dwarf2_frame_init_reg): Likewise.
1171 * sparc-tdep.c (sparc32_struct_return_from_sym): New function.
1172 (sparc32_frame_cache): Call it.
1173 (sparc32_dwarf2_struct_return_p): New function.
1174 (sparc_dwarf2_frame_init_reg): Use it to determine if the function
1175 returns a structure and thus we have to indicate the return PC and
1176 NPC are 4 bytes later than usual.
1177 * sparc-linux-tdep.c (sparc32_linux_init_abi): Append
1178 dwarf2 frame sniffer.
1179 * Makefile.in (sparc-linux-tdep.o): Update dependencies.
1180
1181 2006-04-04 David S. Miller <davem@davemloft.net>
1182
1183 * config/linux.mh (NATDEPFILES): Remove sparc-sol2-nat.o
1184 * config/linux64.h (NATDEPFILES): Likewise
1185 * sparc-linux-nat.c (supply_gregset, supply_fpregset, fill_gregset,
1186 fill_fpregset): New.
1187 * sparc64-linux-nat.c (supply_gregset, supply_fpregset, fill_gregset,
1188 fill_fpregset): New.
1189 * Makefile.in (sparc-linux-nat.o, sparc64-linux-nat.o): Update for
1190 new includes.
1191
1192 2006-04-04 Andreas Schwab <schwab@suse.de>
1193
1194 * Makefile.in (elf_common_h): Define.
1195
1196 2006-04-03 Andrew Stubbs <andrew.stubbs@st.com>
1197
1198 * sh-tdep.c (sh_dwarf2_frame_init_reg): New function.
1199 (sh_gdbarch_init): Call dwarf2_frame_set_init_reg().
1200
1201 2006-03-31 Andrew Stubbs <andrew.stubbs@st.com>
1202
1203 * value.h (struct internalvar): Add field 'endian'.
1204 * value.c (lookup_internalvar): Initialise endian.
1205 (value_of_internalvar): Flip the endian of built-in types if required.
1206 (set_internalvar): Set the endian.
1207 (show_convenience): Access the value through value_of_internalvar().
1208
1209 2006-03-30 Vladimir Prus <ghost@cs.msu.su>
1210
1211 * remote.c (watchpoint_to_Z_packet): Use values of Z_packet_type enum
1212 instead of hardcoded integer literals.
1213
1214 2006-03-30 Daniel Jacobowitz <dan@codesourcery.com>
1215
1216 * cli/cli-script.c (insert_args): Handle NULL user_args.
1217
1218 2006-03-30 Daniel Jacobowitz <dan@codesourcery.com>
1219
1220 * arm-tdep.c (thumb_scan_prologue): Don't try to analyze
1221 the function at zero if we have no symbols.
1222
1223 2006-03-30 Adrien Kunysz <a_kunysz@yahoo.com>
1224
1225 * i386-stub.c (getpacket): Fix array overflow.
1226 * m32r-stub.c (getpacket): Likewise.
1227 * m68k-stub.c (getpacket): Likewise.
1228 * sh-stub.c (getpacket): Likewise.
1229 * sparc-stub.c (getpacket): Likewise.
1230
1231 2006-03-30 Daniel Jacobowitz <dan@codesourcery.com>
1232
1233 * frame.h (set_current_sal_from_frame): New prototype.
1234 * stack.c (set_current_sal_from_frame): Make global.
1235 * infrun.c (normal_stop): Call set_current_sal_from_frame.
1236
1237 2006-03-30 Daniel Jacobowitz <dan@codesourcery.com>
1238
1239 * linux-thread-db.c: Include "linux-nat.h".
1240 (check_for_thread_db): New function, split out from
1241 thread_db_new_objfile. Remove dead check for active
1242 thread_db on inapplicable targets.
1243 (thread_db_new_objfile): Call check_for_thread_db.
1244 * Makefile.in (linux-thread-db.o): Update.
1245 * linux-nat.c (child_post_attach): Call check_for_thread_db.
1246 (linux_child_post_startup_inferior): Likewise.
1247 (lin_lwp_attach_lwp): Call target_post_attach instead of
1248 child_post_attach.
1249 * linux-nat.h (check_for_thread_db): New prototype.
1250
1251 2006-03-30 Daniel Jacobowitz <dan@codesourcery.com>
1252
1253 * remote.c (struct remote_state): Add BUF and BUF_SIZE.
1254 (init_remote_state): Initialize the new fields.
1255 (get_memory_packet_size): Update BUF and BUF_SIZE if necessary.
1256 (set_thread, remote_thread_alive, remote_unpack_thread_info_response)
1257 (remote_get_threadinfo, parse_threadlist_response)
1258 (remote_get_threadlist, remote_current_thread, remote_threads_info)
1259 (remote_threads_extra_info, extended_remote_restart, get_offsets)
1260 (remote_check_symbols, remote_open_1, remote_detach)
1261 (remove_vcont_probe, remote_vcont_resume, remote_resume)
1262 (remote_wait, remote_async_wait, fetch_register_using_p)
1263 (remote_fetch_registers, store_register_using_P)
1264 (remote_store_registers, check_binary_download, remote_write_bytes)
1265 (remote_read_bytes, remote_insert_breakpoint)
1266 (remote_remove_breakpoint, remote_insert_watchpoint)
1267 (remote_remove_watchpoint, remote_insert_hw_breakpoint)
1268 (remote_remove_hw_breakpoint, compare_sections_command)
1269 (remote_xfer_partial, remote_rcmd, packet_command)
1270 (remote_get_thread_local_address): Use the global incoming buffer
1271 instead of alloca or xmalloc. Limit outgoing packets to
1272 rs->remote_packet_size and incoming packets to rs->buf_size.
1273 Update calls to getpkt and remote_send.
1274 (remote_send): Take arguments by reference.
1275 (putpkt_binary): Eliminate junkbuf. Use skip_frame.
1276 (skip_frame): New function.
1277 (read_frame): Take arguments by reference. Expand the packet
1278 buffer instead of issuing an error.
1279 (getpkt, getpkt_sane): Take arguments by reference.
1280 * remote.h (getpkt): Update prototype and doc.
1281 * tracepoint.c (remote_get_noisy_reply): Take arguments by
1282 reference.
1283 (target_buf): Change from array to pointer.
1284 (target_buf_size): New variable.
1285 (remote_set_transparent_ranges): Update call to getpkt.
1286 (trace_start_command, trace_stop_command, trace_status_command):
1287 Update calls to remote_get_noisy_reply.
1288 (finish_tfind_command): Take arguments by reference.
1289 (trace_find_command, trace_find_pc_command)
1290 (trace_find_tracepoint_command, trace_find_line_command):
1291 (trace_find_range_command, trace_find_outside_command): Update
1292 calls to finish_tfind_command.
1293 (_initialize_tracepoint): Initialize target_buf_size and target_buf.
1294
1295 2005-03-30 Randolph Chung <tausq@debian.org>
1296
1297 * hppa-linux-tdep.c: Include regset.h.
1298 (GR_REGNUM, TR_REGNUM, greg_map): New.
1299 (hppa_linux_supply_regset, hppa_linux_supply_fpregset): New.
1300 (hppa_linux_regset, hppa_linux_fpregset): New.
1301 (hppa_linux_regset_from_core_section): New.
1302 (hppa_linux_init_abi): Set regset_from_core_section.
1303 (_initialize_hppa_linux_tdep): Register osabi handler for
1304 64-bit Linux.
1305 * Makefile.in (hppa-linux-tdep.o): Update dependencies.
1306 * config/pa/linux.mh: Stop using core-regset.o
1307
1308 2006-03-30 Randolph Chung <tausq@debian.org>
1309
1310 * hppa-tdep.c (hppa_find_unwind_entry_in_block): New.
1311 (hppa_frame_cache): Use new function to find unwind entry.
1312 (hppa_frame_this_id): Likewise.
1313 (hppa_frame_unwind_sniffer): Likewise.
1314
1315 2006-03-29 Daniel Jacobowitz <dan@codesourcery.com>
1316
1317 * NEWS: Mention the removal of NLM.
1318
1319 2006-03-29 Steve Ellcey <sje@cup.hp.com>
1320
1321 * Makefile.in (nlm): Remove target.
1322 * configure.tgt (i[34567]86-*-netware*): Do not set build_nlm.
1323 * configure.ac: Remove AC_CONFIG_SUBDIRS of nlm.
1324 * configure: Regenerate.
1325 * doc/gdb.texinfo: Remove gdbserve.nlm documentation.
1326 * nlm: Remove directory.
1327
1328 2006-03-29 Daniel Jacobowitz <dan@codesourcery.com>
1329
1330 * Makefile.in (utils.o): Update.
1331 * top.c (in_user_command): New.
1332 (command_line_input): Use input_from_terminal_p.
1333 (input_from_terminal_p): Don't check caution. Handle
1334 stdin == NULL for Insight.
1335 * top.h (in_user_command, caution): New declarations.
1336 * utils.c: Include "top.h".
1337 (query, defaulted_query): Check caution here. Move the call
1338 to input_from_terminal_p higher.
1339 * cli/cli-script.c (do_restore_user_call_depth): Only decrement
1340 the depth. Update in_user_command if necessary.
1341 (execute_user_command): Don't clobber old_chain. Set
1342 in_user_command. Let do_restore_user_call_depth handle
1343 user_call_depth.
1344 (read_command_lines): Check whether to prompt before calling
1345 Insight hooks.
1346 * tui/tui-hooks.c (tui_query_hook): Remove newly unnecessary
1347 input_from_terminal_p check.
1348
1349 2006-03-29 Ulrich Weigand <uweigand@de.ibm.com>
1350
1351 * s390-nat.c (s390_insert_watchpoint): Add missing argument.
1352 (s390_remove_watchpoint): Likewise.
1353
1354 2006-03-28 Jim Blandy <jimb@codesourcery.com>
1355
1356 * prologue-value.c, prologue-value.h: New files.
1357 * Makefile.in (prologue_value_h): New variable.
1358 (HFILES_NO_SRCDIR): List prologue-value.h.
1359 (SFILES): List prologue-value.c.
1360 (COMMON_OBS): List prologue-value.o.
1361 (prologue-value.o): New rule.
1362
1363 2006-03-27 Michael Snyder <msnyder@redhat.com>
1364
1365 * xstormy16-tdep.c (xstormy16_return_value, xstormy16_push_dummy_call,
1366 xstormy16_pointer_to_address, xstormy16_address_to_pointer,
1367 xstormy16_frame_prev_register): Change void* to gdb_byte*.
1368 (xstormy16_push_dummy_call): Add block-local char* val,
1369 to avoid type conflict with outer scope variable.
1370
1371 2006-03-27 Andrew Stubbs <andrew.stubbs@st.com>
1372
1373 * sh-tdep.c (sh_gdbarch_init): Add missing architectures.
1374
1375 2006-03-27 Nick Roberts <nickrob@snap.net.nz>
1376
1377 * varobj.c (c_name_of_child, c_value_of_child): Allow non-zero
1378 offsets for languages like Fortran.
1379
1380 2006-03-26 Randolph Chung <tausq@debian.org>
1381
1382 * config/pa/hppa64.mt: Use HPUX version of the tm file.
1383
1384 2006-03-25 Nick Roberts <nickrob@snap.net.nz>
1385
1386 * mi/gdb-mi.el (gdbmi-send): Improve regexp to repeat commands.
1387 Try to deal with continuation line.
1388 (gdbmi, gdbmi-prompt1, gud-gdbmi-marker-filter): Update to new
1389 variable names.
1390 (gdb-break-list-regexp, gdb-stack-list-frames-regexp):
1391 Future proof against new fields being added to MI output.
1392 (gdbmi-prompt2, gdb-break-list-handler,gdb-get-source-file)
1393 (gdbmi-frame-handler): Update to new variable name
1394 gdb-get-buffer-create.
1395 (gdbmi-frame-handler): Use hollow-right-triangle for all selected
1396 frames which except the innermost (where execution has stopped).
1397
1398 2006-03-24 Randolph Chung <tausq@debian.org>
1399
1400 * solib-som.c (link_map_start): Don't error out if there is
1401 not yet a link map.
1402
1403 2006-03-24 Daniel Jacobowitz <dan@codesourcery.com>
1404
1405 * linux-nat.c (linux_ops_saved): New.
1406 (super_mourn_inferior, kill_inferior, threaded, linux_nat_ops)
1407 (child_mourn_inferior, child_wait, linux_nat_create_inferior)
1408 (linux_nat_fetch_registers, linux_nat_store_registers)
1409 (linux_nat_child_post_startup_inferior, init_linux_nat_ops): Delete.
1410 (init_lwp_list): Don't set threaded.
1411 (add_lwp): Don't modify threaded.
1412 (delete_lwp): Don't mention non-threaded mode.
1413 (linux_nat_switch_fork): New.
1414 (linux_nat_attach): Update inferior_ptid.
1415 (linux_nat_wait): Handle num_lwps == 0 at entry. Don't check
1416 threaded flag.
1417 (linux_nat_kill): Handle pending forks and saved forks.
1418 (linux_nat_mourn_inferior): Handle saved forks.
1419 (linux_nat_pid_to_str): Don't use the LWP form when there is
1420 only one thread.
1421 (linux_target): Don't set to_wait, to_kill, or to_mourn_inferior.
1422 (linux_nat_add_target): New.
1423 (_initialize_linux_nat): Don't initialize the linux native target
1424 here.
1425 * linux-nat.h (linux_nat_add_target, linux_nat_switch_fork): New
1426 prototypes.
1427 * linux-fork.c: Include "linux-nat.h".
1428 (add_fork): Update initial PID.
1429 (fork_load_infrun_state): Call linux_nat_switch_fork.
1430 * Makefile.in (linux-fork.o): Update.
1431
1432 * alpha-linux-nat.c (_initialize_alpha_linux_nat): Use
1433 linux_nat_add_target instead of add_target.
1434 * amd64-linux-nat.c (_initialize_amd64_linux_nat): Likewise.
1435 * arm-linux-nat.c (_initialize_arm_linux_nat): Likewise.
1436 * hppa-linux-nat.c (_initialize_hppa_linux_nat): Likewise.
1437 * ia64-linux-nat.c (_initialize_ia64_linux_nat): Likewise.
1438 * i386-linux-nat.c (_initialize_i386_linux_nat): Likewise.
1439 * m32r-linux-nat.c (_initialize_m32r_linux_nat): Likewise.
1440 * m68klinux-nat.c (_initialize_m68k_linux_nat): Likewise.
1441 * mips-linux-nat.c (_initialize_mips_linux_nat): Likewise.
1442 * ppc-linux-nat.c (_initialize_ppc_linux_nat): Likewise.
1443 * s390-nat.c (_initialize_s390_nat): Likewise.
1444 * sparc-linux-nat.c (_initialize_sparc_linux_nat): Likewise.
1445 * sparc64-linux-nat.c (_initialize_sparc64_linux_nat): Likewise.
1446
1447 2006-03-24 Daniel Jacobowitz <dan@codesourcery.com>
1448
1449 * linux-fork.c: Include "gdb_assert.h".
1450 (fork_load_infrun_state): Set inferior_ptid and stop_pc here.
1451 Update the register cache and selected frame also.
1452 (linux_fork_mourn_inferior): Use fork_load_infrun_state. Return
1453 to single fork mode if necessary.
1454 (linux_fork_context): Remove bits handled by fork_load_infrun_state.
1455 * Makefile.in (linux_fork_h): New.
1456 (linux-fork.o, linux-nat.o): Update.
1457
1458 2006-03-23 Andreas Schwab <schwab@suse.de>
1459
1460 * config/s390/s390.mh (NATDEPFILES): Add linux-fork.o.
1461
1462 2006-03-18 Jim Blandy <jimb@codesourcery.com>
1463
1464 * symtab.h (enum address_class): Doc fix.
1465
1466 2006-03-16 Michael Snyder <msnyder@redhat.com>
1467
1468 * tracepoint.c (tracepoint_save_command): Fix typo in error msg.
1469 * target.c (push_target): Fix typo in comment.
1470 * remote.c (remote_watch_data_address): Fix typo in comment.
1471 * i386-tdep.c (i386_push_dummy_call): Fix typo in comment.
1472
1473 2006-03-15 Kevin Buettner <kevinb@redhat.com>
1474
1475 * frv-linux-tdep.c (gdbcore.h, regcache.h, regset.h, gdb_string.h):
1476 Include.
1477 (FRV_ELF_NGREG, FRV_PT_PSR, FRV_PT_ISR, FRV_PT_CCR, FRV_PT_CCCR)
1478 (FRV_PT_LR, FRV_PT_LCR, FRV_PT_PC, FRV_PT_GNER0, FRV_PT_GNER1)
1479 (FRV_PT_IACC0H, FRV_PT_IACC0L, FRV_PT_GR, FRV_PT_TBR)
1480 (FRV_PT_EXEC_FDPIC_LOADMAP, FRV_PT_INTERP_FDPIC_LOADMAP): Define.
1481 (frv_elf_greg_t, frv_elf_gregset_t, frv_elf_fpreg_t)
1482 (frv_elf_fpregset_t): Define types.
1483 (frv_linux_supply_gregset, frv_linux_supply_fpregset)
1484 (frv_linux_regset_from_core_section: New functions.
1485 (frv_linux_gregset, frv_linux_fpregset): New static globals.
1486 (frv_linux_init_abi): Register the `regset_from_core_section' method.
1487 * Makefile.in (frv-linux-tdep.o): Update dependencies.
1488 * solib-frv.c (frv_current_sos): Relocate main executable after
1489 loading core file.
1490 (frv_clear_solib): Clean up space associated with
1491 `main_executable_lm_info'.
1492 * config/frv/frv.mt (TDEPFILES): Add corelow.o to this list.
1493
1494 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
1495
1496 * Makefile.in (mips_linux_tdep_h): New.
1497 (mpis-linux-nat.o, mips-linux-tdep.o): Update.
1498 * mips-linux-nat.c: Include "inferior.h", "mips-linux-tdep.h", and
1499 <sys/ptrace.h>.
1500 (have_ptrace_regsets, super_fetch_registers, super_store_registers)
1501 (mips64_linux_regsets_fetch_registers)
1502 (mips64_linux_regsets_store_registers, mips64_linux_fetch_registers)
1503 (mips64_linux_store_registers): New.
1504 (_initialize_mips_linux_nat): Override to_fetch_registers and
1505 to_store_registers.
1506 * mips-linux-tdep.h: New file.
1507 * mips-linux-tdep.c: Include "mips-linux-tdep.c".
1508 (ELF_NGREG, ELF_NFPREG, elf_greg_t, elf_gregset_t, elf_fpreg_t)
1509 (elf_fpregset_t, FPR_BASE, PC, CAUSE, BADVADDR, MMHI, MMLO)
1510 (FPC_CSR, FPC_EIR, EF_REG0, EF_REG31, EF_LO, EF_HI, EF_CP0_EPC)
1511 (EF_CP0_BADVADDR, EF_CP0_STATUS, EF_CP0_CAUSE, EF_SIZE)
1512 (MIPS64_ELF_NGREG, MIPS64_ELF_NFPREG, mips64_elf_greg_t)
1513 (mips64_elf_gregset_t, mips64_elf_fpreg_t, mips64_elf_fpregset_t)
1514 (MIPS64_FPR_BASE, MIPS64_PC, MIPS64_CAUSE, MIPS64_BADVADDR)
1515 (MIPS64_MMHI, MIPS64_MMLO, MIPS64_FPC_CSR, MIPS64_FPC_EIR)
1516 (MIPS64_EF_REG0, MIPS64_EF_REG31, MIPS64_EF_LO, MIPS64_EF_HI)
1517 (MIPS64_EF_CP0_EPC, MIPS64_EF_CP0_BADVADDR, MIPS64_EF_CP0_STATUS)
1518 (MIPS64_EF_CP0_CAUSE, MIPS64_EF_SIZE): Delete.
1519 (supply_32bit_reg): Use gdb_byte.
1520 (supply_64bit_reg): New.
1521 (mips_supply_gregset, mips_fill_gregset, mips_supply_fpregset)
1522 (mips_fill_fpregset, fetch_core_registers, supply_gregset)
1523 (fill_gregset, supply_fpregset): Update for renamed types.
1524 (mips64_supply_gregset): Use gdb_byte and supply_64bit_reg.
1525 (mips64_fill_gregset): Make global. Handle 32-bit register
1526 sizes.
1527 (mips64_fill_fpregset): Make global. Use gdb_byte. Handle
1528 FP regsets properly.
1529
1530 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
1531
1532 * mips-linux-tdep.c (mips_supply_gregset): Renamed from supply_gregset.
1533 (mips_fill_gregset): Renamed from fill_gregset.
1534 (mips_supply_fpregset): Renamed from supply_fpregset.
1535 (mips_fill_fpregset): Renamed from fill_fpregset.
1536 (fetch_core_registers): Update calls.
1537 (supply_gregset, fill_gregset, supply_fpregset, fill_fpregset): New
1538 functions.
1539
1540 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
1541
1542 * mips-tdep.c (mips_gdbarch_init): Default 64-bit ELF files to N64.
1543
1544 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
1545
1546 * mips-tdep.c (is_mips16_addr, mips32_next_pc, add_offset_16):
1547 Correct arithmetic for 64-bit CORE_ADDR.
1548
1549 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
1550
1551 * mips-linux-tdep.c: Include "floatformat.h".
1552 (mips_linux_init_abi): Use 128-bit long double for N32 and N64.
1553 * mips-tdep.c (mips_n32n64_return_value): Support 128-bit long
1554 double.
1555 (print_gp_register_row): Don't print spaces before ignored
1556 or floating point registers.
1557 * Makefile.in (mips-linux-tdep.o): Update.
1558
1559 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
1560
1561 * mips-mdebug-tdep.c (compare_pdr_entries): Use bfd_get_signed_32
1562 for code addresses.
1563 (non_heuristic_proc_desc): Likewise.
1564
1565 2006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
1566
1567 * mips-linux-nat.c: Include "gdb_proc_service.h".
1568 (PTRACE_GET_THREAD_AREA): Define.
1569 (ps_get_thread_area): New.
1570 * Makefile.in (mips-linux-nat.o): Update.
1571
1572 2006-03-13 Jim Blandy <jimb@codesourcery.com>
1573
1574 * MAINTAINERS: Use my work address.
1575
1576 2006-03-09 Michael Snyder <msnyder@redhat.com>
1577
1578 * linux-nat.c (kill_inferior): Just call target_mourn_inferior
1579 instead of getting tricky for the multi-fork case.
1580 * linux-fork.c (linux_fork_killall): Call PT_KILL and waitpid
1581 for each fork, and then use init_fork_list to delete them.
1582
1583 2006-03-08 Alexandre Oliva <aoliva@redhat.com>
1584
1585 * solib-svr4.c (svr4_current_sos): Move up initialization of
1586 l_addr, such that it clearly covers all cases.
1587
1588 2006-03-08 Andreas Schwab <schwab@suse.de>
1589
1590 * ia64-tdep.c (ia64_libunwind_frame_this_id): Adapt use of
1591 libunwind_frame_prev_register to use a gdb_byte buffer and
1592 extract_unsigned_integer.
1593 (ia64_libunwind_sigtramp_frame_prev_register): Likewise.
1594
1595 * libunwind-frame.c (libunwind_frame_prev_register): Change type
1596 of last argument to `gdb_byte *'
1597 * libunwind-frame.h: Adjust declaration.
1598
1599 2006-03-08 Paul Brook <paul@codesourcery.com>
1600
1601 * arm-tdep.c (arm_push_dummy_call): Remove stack alignment.
1602 (arm_frame_align): New function.
1603 (arm_gdbarch_init): Use it.
1604
1605 2006-03-03 Khem Raj <khem@mvista.com>
1606
1607 * remote-rdp.c (remote_rdp_xfer_inferior_memory): Use gdb_byte.
1608 Committed by Andrew Cagney.
1609
1610 2006-03-02 Corinna Vinschen <vinschen@redhat.com>
1611
1612 * mn10300-tdep.c (mn10300_push_dummy_call): Write breakpoint
1613 address to MDR register.
1614
1615 2006-03-01 Daniel Jacobowitz <dan@codesourcery.com>
1616
1617 * gdbtypes.c (lookup_struct_elt_type): Correct noerr for recursive
1618 calls.
1619
1620 2006-03-01 Randolph Chung <tausq@debian.org>
1621
1622 * somread.c (som_symfile_read): Update comment and remove unneeded
1623 use of a deprecated variable.
1624
1625 2006-03-01 Randolph Chung <tausq@debian.org>
1626
1627 * hppa-tdep.h (unwind_table_entry): Update field names to match HP
1628 runtime specification.
1629 * hppa-tdep.c (internalize_unwinds, hppa_frame_cache): Likewise.
1630 (unwind_command): Likewise.
1631
1632 2006-03-01 Randolph Chung <tausq@debian.org>
1633
1634 * hppa-tdep.c (hppa_frame_cache): Handle Region_Description and
1635 Pseudo_SP_Set in unwind record.
1636
1637 2006-03-01 Randolph Chung <tausq@debian.org>
1638
1639 * hppa-hpux-tdep.c (initialize_hp_cxx_exception_support): Use
1640 TDEP->is_elf to determine if we are working with a SOM binary.
1641 (null_symtab_and_line): Remove unused variable.
1642 * config/pa/hppa64.mt: Use tm-hppa.h.
1643 * config/pa/tm-hppa64.h: Remove file.
1644
1645 2006-03-01 Wu Zhou <woodzltc@cn.ibm.com>
1646
1647 * f-typeprint.c (f_type_print_base): Delete the redundant space.
1648
1649 2006-02-28 Kevin Buettner <kevinb@redhat.com>
1650
1651 * Makefile.in (mn10300-linux-tdep.o): Update dependencies.
1652 * mn10300-linux-tdep.c (frame.h, trad-frame.h, tramp-frame.h):
1653 Include.
1654 (am33_linux_sigframe_cache_init): New function.
1655 (am33_linux_sigframe, am33_linux_rt_sigframe): New signal frame
1656 descriptions.
1657 (AM33_SIGCONTEXT_D0, AM33_SIGCONTEXT_D1, AM33_SIGCONTEXT_D2)
1658 (AM33_SIGCONTEXT_D3, AM33_SIGCONTEXT_A0, AM33_SIGCONTEXT_A1)
1659 (AM33_SIGCONTEXT_A2, AM33_SIGCONTEXT_A3, AM33_SIGCONTEXT_E0)
1660 (AM33_SIGCONTEXT_E1, AM33_SIGCONTEXT_E2, AM33_SIGCONTEXT_E3)
1661 (AM33_SIGCONTEXT_E4, AM33_SIGCONTEXT_E5, AM33_SIGCONTEXT_E6)
1662 (AM33_SIGCONTEXT_E7, AM33_SIGCONTEXT_LAR, AM33_SIGCONTEXT_LIR)
1663 (AM33_SIGCONTEXT_MDR, AM33_SIGCONTEXT_MCVF, AM33_SIGCONTEXT_MCRL)
1664 (AM33_SIGCONTEXT_MCRH, AM33_SIGCONTEXT_MDRQ, AM33_SIGCONTEXT_SP)
1665 (AM33_SIGCONTEXT_EPSW, AM33_SIGCONTEXT_PC, AM33_SIGCONTEXT_FPUCONTEXT):
1666 New constants.
1667 (am33_linux_init_osabi): Register signal frame unwinders.
1668
1669 2006-02-28 Kevin Buettner <kevinb@redhat.com>
1670
1671 * mn10300-tdep.c (mn10300_analyze_prologue): Implement backtrack
1672 out of pattern match by saving relevant state. Fix stack size
1673 adjustment bug.
1674
1675 2006-02-28 Alexandre Oliva <aoliva@redhat.com>
1676
1677 * solib-svr4.h (struct link_map_offsets): Add l_ld_offset and
1678 l_ld_size fields.
1679 * solib-svr4.c (struct lm_info): Add l_addr field.
1680 (LM_ADDR_FROM_LINK_MAP): Renamed from LM_ADDR.
1681 (HAS_LM_DYNAMIC_FROM_LINK_MAP): New.
1682 (LM_DYNAMIC_FROM_LINK_MAP): New.
1683 (LM_ADDR_CHECK): New. Use it instead of LM_ADDR.
1684 (svr4_current_sos): Initialize l_addr. Adjust.
1685 (svr4_relocate_section_addresses): Adjust.
1686 (svr4_ilp32_fetch_link_map_offsets): Define new members.
1687 (svr4_lp64_fetch_link_map_offsets): Likewise.
1688 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets): Likewise.
1689 * mipsnbsd-tdep.c (mipsnbsd_ilp32_fetch_link_map_offsets): Likewise.
1690 (mipsnbsd_lp64_fetch_link_map_offsets): Likewise.
1691 * Makefile.in (solib-svr4.o): Depend on $(elf_bfd_h).
1692
1693 2006-02-26 David S. Miller <davem@sunset.davemloft.net>
1694
1695 * config/sparc/linux.mt (TDEPFILES): Add sol2-tdep.o.
1696 * config/sparc/linux64.mt (TDEPFILES): Likewise.
1697
1698 2006-02-27 Alan Modra <amodra@bigpond.net.au>
1699
1700 * ppc-linux-nat.c (ppc_linux_insert_watchpoint): Correct return type.
1701 (ppc_linux_remove_watchpoint): Likewise, and args.
1702
1703 2006-02-26 Mark Kettenis <kettenis@gnu.org>
1704
1705 * i386obsd-tdep.c (i386obsd_trapframe_sniffer): Also recognize
1706 "soft" interrupts.
1707
1708 2006-02-24 Charles Wilson <cygwin@cwilson.fastmail.fm>
1709
1710 * gdb/defs.h: unconditionally include <fcntl.h>, and
1711 ensure that O_BINARY is defined.
1712 * gdb/solib.c(solib_open): ensure solib files are opened in
1713 binary mode.
1714 * gdb/corelow.c: Remove O_BINARY macro definition.
1715 * gdb/exec.c: Remove O_BINARY macro definition
1716 * gdb/remote-rdp.c: Remove O_BINARY macro definition
1717 * gdb/source.c: Remove O_BINARY macro definition
1718 * gdb/symfile.c: Remove O_BINARY macro definition
1719
1720 2006-02-24 Randolph Chung <tausq@debian.org>
1721
1722 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Initialize
1723 argreg.
1724 * solib-som.c (som_solib_remove_inferior_hook): Remove unused
1725 function.
1726
1727 2006-02-24 Wu Zhou <woodzltc@cn.ibm.com>
1728
1729 * f-exp.y: Symbol '%' is not used as the modulus operator in
1730 Fortran. Delete this from Fortran expression.
1731 It is now used by Fortran 90 and later to access the member
1732 of derived type. Add this into Fortran expression.
1733 * f-valprint.c (f_val_print): Add code to handle TYPE_CODE_STRUCT.
1734 Print each elements in the derived type.
1735 * f-typeprint.c (print_equivalent_f77_float_type): Add a parameter
1736 level into the function definition to do indented printing. And
1737 call fprintfi_filtered instead to do indented printing.
1738 (f_type_print_base): Replace fprintf_filtered with the indented
1739 version (fprintfi_filtered).
1740 (f_type_print_base): Call indented print_equivalent_f77_float_type.
1741 (f_type_print_base): Add code to handle TYPE_CODE_STRUCT. Print
1742 the definition of the derived type.
1743
1744 2006-02-23 Daniel Jacobowitz <dan@codesourcery.com>
1745
1746 * gdb_curses.h: Provide a fallback prototype for tgetnum.
1747
1748 2006-02-23 Daniel Jacobowitz <dan@codesourcery.com>
1749
1750 * doublest.h: Conditionalize DOUBLEST on PRINTF_HAS_LONG_DOUBLE
1751 also.
1752 (DOUBLEST_FORMAT): Rename to DOUBLEST_PRINT_FORMAT.
1753 (DOUBLEST_SCAN_FORMAT): New.
1754 * ada-lex.l (PRINTF_HAS_LONG_DOUBLE): Remove redefinitions.
1755 (processReal): Use DOUBLEST_SCAN_FORMAT.
1756 * c-exp.y (parse_number): Likewise.
1757 * jv-exp.y (parse_number): Likewise.
1758 * objc-exp.y (parse_number): Likewise.
1759 * p-exp.y (parse_number): Likewise.
1760
1761 2006-02-23 Daniel Jacobowitz <dan@codesourcery.com>
1762
1763 * event-top.c (async_do_nothing, async_disconnect)
1764 (async_stop_sig, async_float_handler): Remove duplicated
1765 prototypes.
1766 (handle_sighup): Guard prototype with SIGHUP.
1767 (async_do_nothing): Guard function and prototype with
1768 SIGQUIT || SIGHUP.
1769 (async_disconnect): Guard prototype with SIGHUP.
1770 (async_stop_sig): Guard prototype with STOP_SIGNAL.
1771
1772 2006-02-23 Daniel Jacobowitz <dan@codesourcery.com>
1773
1774 * maint.c (maintenance_dump_me): Remove unnecessary prototype.
1775
1776 2006-02-23 Daniel Jacobowitz <dan@codesourcery.com>
1777
1778 * win32-termcap.c (tputs): Return 0.
1779
1780 2006-02-21 Mark Kettenis <kettenis@gnu.org>
1781
1782 * configure.ac: Introduce ---enable-werror, which adds -Werror to
1783 the compiler command line. Enabled by default. Disable with
1784 --disable-werror.
1785 * configure regenerate.
1786
1787 2006-02-21 Daniel Jacobowitz <dan@codesourcery.com>
1788
1789 * elfread.c (elf_symtab_read): Skip symbols which BFD considers
1790 special.
1791
1792 2006-02-21 Andrew Stubbs <andrew.stubbs@st.com>
1793
1794 * defs.h (directory_switch): Add prototype.
1795 * main.c (captured_main): Use directory_switch() instead of
1796 directory_command() to add directories from the -d switch.
1797 * source.c (directory_switch): New function.
1798 (add_path): Use buildargv() to parse spaces in filenames properly.
1799 Strip multiple trailing '/' rather than just one.
1800
1801 2006-02-21 Andrew Stubbs <andrew.stubbs@st.com>
1802
1803 * symfile.c (add_symbol_file_command): Use buildargv(), instead of
1804 hand decoding the command line, to allow use of quotes and spaces.
1805 (_initialize_symfile): Reorganize the help message for add-symbol-file
1806 such that 'help files' shows a better message.
1807
1808 2006-02-21 Andrew Stubbs <andrew.stubbs@st.com>
1809
1810 * sh-tdep.c (sh_generic_show_regs): Reformat both code and output.
1811 (sh3_show_regs, sh2e_show_regs, sh2a_show_regs): Likewise.
1812 (sh2a_nofpu_show_regs, sh3e_show_regs, sh3_dsp_show_regs): Likewise.
1813 (sh4_show_regs, sh4_nofpu_show_regs, sh_dsp_show_regs): Likewise.
1814
1815 2006-02-20 Daniel Jacobowitz <dan@codesourcery.com>
1816
1817 * linux-nat.c (lin_thread_get_thread_signals): Default to __SIGRTMIN
1818 and __SIGRTMIN + 1.
1819
1820 2006-02-20 Daniel Jacobowitz <dan@codesourcery.com>
1821
1822 * remote.c: Add an enumeration for configurable remote
1823 packets.
1824 (remote_protocol_packets, set_remote_protocol_packet_cmd)
1825 (show_remote_protocol_packet_cmd): New.
1826 (remote_protocol_vcont)
1827 (set_remote_protocol_vcont_packet_cmd)
1828 (show_remote_protocol_vcont_packet_cmd)
1829 (remote_protocol_qSymbol)
1830 (set_remote_protocol_qSymbol_packet_cmd)
1831 (show_remote_protocol_qSymbol_packet_cmd)
1832 (remote_protocol_P, set_remote_protocol_P_packet_cmd)
1833 (show_remote_protocol_P_packet_cmd)
1834 (remote_protocol_Z)
1835 (set_remote_protocol_Z_software_bp_packet_cmd)
1836 (show_remote_protocol_Z_software_bp_packet_cmd)
1837 (set_remote_protocol_Z_hardware_bp_packet_cmd)
1838 (show_remote_protocol_Z_hardware_bp_packet_cmd)
1839 (set_remote_protocol_Z_write_wp_packet_cmd)
1840 (show_remote_protocol_Z_write_wp_packet_cmd)
1841 (set_remote_protocol_Z_read_wp_packet_cmd)
1842 (show_remote_protocol_Z_read_wp_packet_cmd)
1843 (set_remote_protocol_Z_access_wp_packet_cmd)
1844 (show_remote_protocol_Z_access_wp_packet_cmd)
1845 (remote_protocol_binary_download)
1846 (set_remote_protocol_binary_download_cmd)
1847 (show_remote_protocol_binary_download_cmd)
1848 (remote_protocol_qPart_auxv)
1849 (set_remote_protocol_qPart_auxv_packet_cmd)
1850 (show_remote_protocol_qPart_auxv_packet_cmd)
1851 (remote_protocol_qGetTLSAddr)
1852 (set_remote_protocol_qGetTLSAddr_packet_cmd)
1853 (show_remote_protocol_qGetTLSAddr_packet_cmd)
1854 (remote_protocol_p)
1855 (set_remote_protocol_p_packet_cmd)
1856 (show_remote_protocol_p_packet_cmd): Delete.
1857
1858 (init_all_packet_configs): Simplify.
1859 (set_remote_protocol_Z_packet_cmd)
1860 (show_remote_protocol_Z_packet_cmd)
1861 (remote_check_symbols, remote_vcont_probe, remote_vcont_resume)
1862 (remote_fetch_registers, remote_prepare_to_store)
1863 (remote_store_registers, check_binary_download)
1864 (remote_write_bytes, remote_insert_breakpoint)
1865 (remote_remove_breakpoint, remote_insert_watchpoint)
1866 (remote_remove_watchpoint, remote_insert_hw_breakpoint)
1867 (remote_remove_hw_breakpoint, remote_xfer_partial)
1868 (remote_get_thread_local_address): Update for packet array.
1869 (_initialize_remote): Likewise; also update for common
1870 set/show commands.
1871
1872 2006-02-20 Daniel Jacobowitz <dan@codesourcery.com>
1873
1874 * symfile.c (place_section): Correct retry logic.
1875
1876 2006-02-19 Christopher Faylor <cgf@timesys.com>
1877
1878 * win32_nat.c (cygwin_load_start): New variable.
1879 (cygwin_load_end): Ditto.
1880 (have_saved_context): Ditto.
1881 (saved_context): Ditto.
1882 (max_dll_name_len): Delete obsolete variable.
1883 (do_win32_fetch_inferior_registers): Use context saved from cygwin1.dll
1884 if we are in a cygwin signal rather than a windows signal.
1885 (solib_symbols_add): Detect and store beginning and end of cygwin DLL
1886 if dll being loaded is the cygwin DLL.
1887 (register_loaded_dll): Remove calculation of max_dll_name_len.
1888 (win32_clear_solib): Ditto.
1889 (handle_load_dll): Delete obsolete variable. Remove unneeded call to
1890 solib_add.
1891 (handle_output_debug_string): Detect and store signal information sent
1892 by Cygwin here.
1893 (handle_exception): Silently pass on errors in the cygwin DLL. Return
1894 -1 on first pass exception.
1895 (win32_continue): Remove spurious clearing of continue_status.
1896 (get_win32_debug_event): Deal differently first chance exception.
1897
1898 2006-02-19 Randolph Chung <tausq@debian.org>
1899
1900 * hppa-tdep.c (hppa_in_solib_call_trampoline): Only use if no
1901 unwind entry.
1902
1903 2006-02-16 Fred Fish <fnf@specifix.com>
1904
1905 * eval.c (evaluate_subexp_standard): For OP_TYPE, return
1906 a non lval value zero, of the appropriate type, when avoiding
1907 side effects.
1908 * typeprint.c (ptype_eval): Remove function and declaration.
1909 (ptype_command): Simplify to just a call to whatis_exp.
1910
1911 2006-02-15 Paul Brook <paul@codesourcery.com>
1912
1913 * arm-tdep.c (arm_skip_prologue, thumb_get_next_pc, arm_get_next_pc):
1914 Load insn opcodes as unsigned values.
1915
1916 2006-02-14 Alexandre Oliva <aoliva@redhat.com>
1917
1918 * doublest.h (DOUBLEST): Use long double only if we can scan
1919 it in. Undefine HAVE_LONG_DOUBLE otherwise.
1920 (DOUBLEST_FORMAT): New.
1921 * c-exp.y (parse_number): Use it.
1922 * jv-exp.y (parse_number): Likewise.
1923 * objc-exp.y (parse_number): Likewise.
1924 * p-exp.y (parse_number): Likewise.
1925 * varobj.c (free_variable): Silence type-punning warnings.
1926 * tui/tui-data.h (struct tui_list): Change type of list member.
1927 * tui/tui-data.c: Remove no-longer-needed type casts.
1928 (source_windows): Silence type-punning warnings.
1929 * tui/tui-stack.c, tui/tui-win.c, tui/tui-winsource.c: Likewise.
1930
1931 2006-02-13 Mark Kettenis <kettenis@gnu.org>
1932
1933 Fix PR breakpoints/2080.
1934 * i386-tdep.c (struct i386_frame_cache): Add stack_align member.
1935 (i386_analyze_stack_align): New function.
1936 (i386_analyze_prologue): Use i386_analyze_stack_align.
1937 (i386_frame_cache): Deal with stack realignment.
1938
1939 2006-02-14 Nick Roberts <nickrob@snap.net.nz>
1940
1941 * mi/gdb-mi.el: Use more functions from gdb-ui.el.
1942 (gdb-break-list-regexp): Match "what" field if present.
1943 (gdb-stack-list-frames-regexp): Match "from" field if present.
1944 (gdb-stack-list-frames-handler): Present output like "info
1945 breakpoints" so regexps can be shared with gdb-ui
1946
1947 2006-02-10 Daniel Jacobowitz <dan@codesourcery.com>
1948
1949 * NEWS: Mention native Windows support.
1950 * Makefile.in (gdb_select_h, ser_tcp_h): New.
1951 (ALLDEPFILES): Add ser-mingw.c.
1952 (event-loop.o, inflow.o, mingw-hdep.o, posix-hdep.o, ser-base.o)
1953 (ser-tcp.o, ser-unix.o): Update.
1954 (ser-mingw.o): New rule.
1955 * configure: Regenerated.
1956 * configure.ac: Add ser-mingw.o for mingw32.
1957 * ser-mingw.c: New file.
1958 * event-loop.c: Include "gdb_select.h".
1959 (gdb_select): Remove, moved to mingw-hdep.c and posix-hdep.c.
1960 * ser-base.c: Include "gdb_select.h".
1961 (ser_base_wait_for): Use gdb_select.
1962 * serial.c (serial_for_fd): New function.
1963 (serial_fdopen): Try "terminal" before "hardwire". Initialize
1964 the allocated struct serial.
1965 (serial_wait_handle): New function.
1966 * serial.h (serial_for_fd, serial_wait_handle): New prototypes.
1967 (struct serial_ops) [USE_WIN32API]: Add wait_handle.
1968 * gdb_select.h: New file.
1969 * ser-tcp.c: Include "ser-tcp.h". Remove unused "ser-unix.h" include.
1970 (net_close, net_read_prim, net_write_prim): Make global.
1971 (net_open): Likewise. Pass an exception set to select. Whitespace fix.
1972 Document why we can not use gdb_select.
1973 (_initialize_ser_tcp) [USE_WIN32API]: Do not register TCP support here.
1974 * ser-tcp.h: New file.
1975 * inflow.c (gdb_has_a_terminal): Don't initialize stdin_serial here.
1976 (handle_sigio): Use gdb_select.
1977 (initialize_stdin_serial): New function.
1978 * terminal.h (initialize_stdin_serial): New prototype.
1979 * top.c (gdb_init): Call initialize_stdin_serial.
1980 * mingw-hdep.c (gdb_select): New function, moved from gdb_select in
1981 event-loop.c. Add exception condition support. Use serial_for_fd
1982 and serial_wait_handle. Fix timeout handling.
1983 * posix-hdep.c: Include "gdb_select.h".
1984 (gdb_select): New function.
1985 * remote-st.c (connect_command): Use gdb_select.
1986 * ser-unix.c: Include "gdb_select.h".
1987 (hardwire_send_break, wait_for): Use gdb_select.
1988
1989 2006-02-10 Daniel Jacobowitz <dan@codesourcery.com>
1990
1991 * Makefile.in (mingw-hdep.o, posix-hdep.o): New dependencies.
1992 (ALLDEPFILES): Add mingw-hdep.c and posix-hdep.c.
1993 * configure.ac: Add gdb_host_obs to CONFIG_OBS. Set gdb_host_obs
1994 to posix-hdep.o by default.
1995 * configure: Regenerated.
1996 * configure.host: Document gdb_host_obs. Add an entry for
1997 i[34567]86-*-mingw32*.
1998 * mingw-hdep.c, posix-hdep.c: New files.
1999 * utils.c (safe_strerror): Remove, moved to posix-hdep.o.
2000
2001 2006-02-10 Joel Brobecker <brobecker@adacore.com>
2002
2003 * defs.h (gdb_osabi): New enum value GDB_OSABI_AIX.
2004 * osabi.c (gdb_osabi_name): Add name of new value GDB_OSABI_AIX.
2005 * rs6000-tdep.h: New file.
2006 * rs6000-tdep.c: Include "rs6000-tdep.h".
2007 (rs6000_gdbarch_init): Remove enabling of software single step.
2008 Will be done in the AIX-specific initialization routine.
2009 * rs6000-aix-tdep.c: New file.
2010 * config/powerpc/aix.mt (TDEPFILES): Add rs6000-aix-tdep.o.
2011 * Makefile.in (rs6000_tdep_h): New variable.
2012 (rs6000-tdep.o): Update dependencies.
2013 (rs6000-aix-tdep.o): New rule.
2014
2015 2006-02-10 Joel Brobecker <brobecker@adacore.com>
2016
2017 * aix-thread.c (_initialize_aix_thread): Use add_setshow_boolean_cmd
2018 instead of add_setshow_zinteger_cmd to defined the aix-thread
2019 boolean setting.
2020
2021 2006-02-10 Nick Roberts <nickrob@snap.net.nz>
2022
2023 * mi/gdb-mi.el: Update to reflect changes in Emacs 22.0.50.
2024
2025 2006-02-09 Daniel Jacobowitz <dan@codesourcery.com>
2026
2027 * dwarf2read.c (struct dwarf2_per_cu_data): Reduce length to
2028 30 bits. Add load_all_dies flag.
2029 (load_partial_dies): Load all DIEs if per_cu->load_all_dies is set.
2030 Load DW_TAG_member by default. Remove internal_error call.
2031 (find_partial_die): Reload the compilation unit if we can not find
2032 a DIE in the cache. Call internal_error here if we still can not
2033 find the DIE.
2034
2035 2006-02-10 Nick Roberts <nickrob@snap.net.nz>
2036
2037 * breakpoint.c (print_one_breakpoint): Add break to case
2038 bp_catch_vfork in switch statement.
2039
2040 2006-02-08 Wu Zhou <woodzltc@cn.ibm.com>
2041
2042 * config/i386/nm-i386sol2.h: Update copyright year.
2043 * config/mips/nm-irix5.h: Ditto.
2044 * config/sparc/nm-sol2.h: Ditto.
2045 * s390-nat.c: Ditto.
2046 * ppc-linux-nat.c: Ditto.
2047
2048 2006-02-08 Wu Zhou <woodzltc@cn.ibm.com>
2049
2050 * breakpoint.c (TARGET_REGION_OK_FOR_HW_WATCHPOINT): Delete.
2051 * config/i386/nm-i386sol2.h (TARGET_REGION_OK_FOR_HW_WATCHPOINT): New.
2052 (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete.
2053 * config/mips/nm-irix5.h (TARGET_REGION_OK_FOR_HW_WATCHPOINT): New.
2054 (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete.
2055 * config/sparc/nm-sol2.h (TARGET_REGION_OK_FOR_HW_WATCHPOINT): New.
2056 (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete.
2057 * inf-ttrace.c (inf_ttrace_region_ok_for_hw_watchpoint): New.
2058 (inf_ttrace_region_size_ok_for_hw_watchpoint): Delete.
2059 (inf_ttrace_target): Delete to_region_size_ok_for_hw_watchpoint and
2060 add to_region_ok_for_hw_watchpoint.
2061 * s390-nat.c (s390_region_size_ok_for_hw_watchpoint): Delete.
2062 (s390_region_ok_for_hw_watchpoint): New.
2063 (_initialize_s390_nat): Delete to_region_size_ok_for_hw_watchpoint
2064 and add to_region_ok_for_hw_watchpoint.
2065 * target.c (default_region_size_ok_for_hw_watchpoint,
2066 debug_to_region_size_ok_for_hw_watchpoint): Delete prototype.
2067 (update_current_target): Delete to_region_size_ok_for_hw_watchpoint
2068 inheritance and default_region_size_ok_for_hw_watchpoint.
2069 (default_region_ok_for_hw_watchpoint): If len is less than or equal
2070 the length of void pointer, return ok.
2071 (default_region_size_ok_for_hw_watchpoint): Delete.
2072 (debug_to_region_size_ok_for_hw_watchpoint): Delete.
2073 (setup_target_debug): Delete to_region_size_ok_for_hw_watchpoint.
2074 * target.h (struct target_ops): Delete
2075 to_region_size_ok_for_hw_watchpoint.
2076 (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete.
2077
2078 2006-02-08 Ben Elliston <bje@au1.ibm.com>
2079 Wu Zhou <woodzltc@cn.ibm.com>
2080
2081 * ppc-linux-nat.c (PTRACE_GET_DEBUGREG, PTRACE_SET_DEBUGREG,
2082 PTRACE_GETSIGINFO): Define.
2083 (last_stopped_data_address): New.
2084 (ppc_linux_check_watch_resources): New function.
2085 (ppc_linux_region_ok_for_hw_watchpoint): New function.
2086 (ppc_linux_insert_watchpoint): New function.
2087 (ppc_linux_remove_watchpoint): New function.
2088 (ppc_linux_stopped_data_address): New function.
2089 (ppc_linux_stopped_by_watchpoint): New function.
2090 (_initialize_ppc_linux_nat): Set the above hardware watchpoint
2091 related target vectors.
2092 * rs6000-tdep.c (rs6000_gdbarch_init): Set PPC architectures
2093 to have nonsteppable watchpoint.
2094 * target.c (default_region_ok_for_hw_watchpoint,
2095 debug_to_region_ok_for_hw_watchpoint): New prototypes.
2096 (update_current_target): Inherit to_region_ok_for_hw_watchpoint
2097 and set default to_region_ok_for_hw_watchpoint.
2098 (default_region_ok_for_hw_watchpoint): New function.
2099 (debug_to_region_ok_for_hw_watchpoint): New function.
2100 (setup_target_debug): Set to_region_ok_for_hw_watchpoint of
2101 debug_target.
2102 * target.h (struct target_ops): Add a new target vector
2103 to_region_ok_for_hw_watchpoint.
2104 (TARGET_REGION_OK_FOR_HW_WATCHPOINT): Define this if it is not
2105 defined anyplace else.
2106
2107 2005-02-07 Joel Brobecker <brobecker@adacore.com>
2108 * symfile.c (add_symbol_file_command): Abort if the user forgot
2109 to provide the address when the file has been loaded.
2110
2111 2006-02-07 Daniel Jacobowitz <dan@codesourcery.com>
2112
2113 * MAINTAINERS: Update file based on maintainers survey. Add
2114 a note to Past Maintainers. Move unresponsive or inactive
2115 maintainers to Authorized Committers or Past Maintainers as
2116 appropriate. Correct Jim Kingdon's email address. Remove
2117 vacant areas of responsibility.
2118
2119 2006-02-06 Vladimir Prus <ghost@cs.msu.su>
2120
2121 * breakpoint.c (print_one_breakpoint): For MI-like UI, output
2122 fullname field.
2123
2124 2006-02-03 Daniel Jacobowitz <dan@codesourcery.com>
2125
2126 * exceptions.h (enum errors): Rename NO_ERROR to GDB_NO_ERROR.
2127 * exceptions.c (exception_none, exceptions_state_mc_init)
2128 (throw_vfatal): Use GDB_NO_ERROR.
2129
2130 2006-02-02 Mark Kettenis <kettenis@gnu.org>
2131
2132 * solib-svr4.h (struct link_map_offsets): Remove r_debug_size and
2133 r_map_size members. Add r_version_offset, r_version_size and
2134 r_ldsomap_offset members.
2135 * solib-svr4.c (solib_svr4_r_map): Renamed from
2136 fetch_link_map_member. Simplify using read_memory_typed_address.
2137 (solib_svr4_r_ldsomap): New function.
2138 (open_symbol_file_object): Use solib_svr_r_map.
2139 (svr4_current_sos): Use solib_svr4_r_map and look for the dynamic
2140 linker by using solib_svr4_r_ldsomap.
2141 (svr4_ilp32_fetch_link_map_offsets)
2142 (svr4_lp64_fetch_link_map_offsets): Adjust for changes to `struct
2143 link_map_offsets'.
2144 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets): Adjust for
2145 changes to `struct link_map_offsets'.
2146 * mipsnbsd-tdep.c (mipsnbsd_ilp32_fetch_link_map_offsets)
2147 (mipsnbsd_lp64_fetch_link_map_offsets): Adjust for changes to
2148 `struct link_map_offsets'.
2149
2150 2006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
2151
2152 * linux-nat.c (struct saved_ptids, threads_to_delete)
2153 (record_dead_thread, prune_lwps, find_thread_from_lwp)
2154 (exit_lwp): New.
2155 (linux_nat_resume): Call prune_lwps.
2156 (wait_lwp, linux_nat_wait): Call exit_lwp.
2157
2158 2006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
2159
2160 * printcmd.c (printf_command): Make format string checking
2161 stricter. Add separate cases for long_arg, ptr_arg, and
2162 long_double_arg.
2163 * utils.c (xstrvprintf): Improve the error message issued
2164 for a bad format string.
2165 * Makefile.in (GDB_WARN_CFLAGS_NO_FORMAT, INTERNAL_CFLAGS_BASE):
2166 New variables.
2167 (gnu-v3-abi.o, monitor.o, procfs.o, linux-thread-db.o): Remove
2168 $(NO_WERROR_CFLAGS).
2169 (printcmd.o): Likewise. Use $(GDB_WARN_CFLAGS_NO_FORMAT) and
2170 enable -Werror.
2171
2172 2006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
2173
2174 * Makefile.in (remote.o): Update.
2175 * remote.c (show_packet_config_cmd): Shorten messages.
2176 (remote_set_cmdlist, remote_show_cmdlist): Make file-static.
2177 (show_remote_cmd): Iterate.
2178 (_initialize_remote): Remove remote_set_cmdlist,
2179 remote_show_cmdlist.
2180
2181 2006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
2182
2183 * Makefile.in (gdbtypes_h, gdbtypes.o, utils.o): Update.
2184 * defs.h (hashtab_obstack_allocate, dummy_obstack_deallocate): Add
2185 prototypes.
2186 * dwarf2read.c (read_subroutine_type): Use TYPE_ZALLOC.
2187 (hashtab_obstack_allocate, dummy_obstack_deallocate): Moved to...
2188 * utils.c (hashtab_obstack_allocate, dummy_obstack_deallocate):
2189 ...here.
2190 * gdbtypes.c: Include "hashtab.h".
2191 (build_gdbtypes): Remove extra prototype.
2192 (struct type_pair, type_pair_hash, type_pair_eq)
2193 (create_copied_types_hash, copy_type_recursive): New.
2194 * gdbtypes.h: Include "hashtab.h".
2195 (TYPE_ZALLOC): New.
2196 (create_copied_types_hash, copy_type_recursive): New prototypes.
2197 * objfiles.c (free_objfile): Call preserve_values.
2198 * symfile.c (reread_symbols): Likewise.
2199 (clear_symtab_users): Remove calls to clear_value_history and
2200 clear_internalvars.
2201 * value.c (clear_value_history, clear_internalvars): Removed.
2202 (preserve_one_value, preserve_values): New functions.
2203 * value.h (clear_value_history, clear_internalvars): Removed.
2204 (preserve_values): New prototype.
2205
2206 * tracepoint.c (_initialize_tracepoint): Do not initialize convenience
2207 variables here.
2208
2209 2006-01-29 Mark Kettenis <kettenis@gnu.org>
2210
2211 * amd64-tdep.c (amd64_classify): Handle TYPE_CODE_BOOL.
2212 Fixes PR tdep/2075.
2213
2214 2006-01-27 Joel Brobecker <brobecker@adacore.com>
2215
2216 * MAINTAINERS: Use a consistent email address for brobecker.
2217
2218 2006-01-27 Joel Brobecker <brobecker@adacore.com>
2219
2220 * infcmd.c (post_create_inferior): Fix copy/paste error introduced
2221 in the previous change.
2222
2223 2006-01-24 Daniel Jacobowitz <dan@codesourcery.com>
2224
2225 PR gdb/1914
2226 * fork-child.c (fork_inferior): Don't call
2227 solib_create_inferior_hook.
2228 * infcmd.c (post_create_inferior): Call solib_add,
2229 solib_create_inferior_hook, and re_enable_breakpoints_in_shlibs.
2230 (attach_command): Don't call solib_add or
2231 re_enable_breakpoints_in_shlibs. Call post_create_inferior
2232 instead.
2233 * remote.c (remote_open_1): Don't call solib_create_inferior_hook
2234 or observer_notify_inferior_created. Call post_create_inferior
2235 instead.
2236 * corelow.c: Don't include "observer.h".
2237 (solib_add_stub): Deleted.
2238 (core_open): Don't call observer_notify_inferior_created or
2239 solib_add_stub. Call post_create_inferior instead.
2240 * inf-ptrace.c: Don't include "observer.h".
2241 (inf_ptrace_attach): Don't call observer_notify_inferior_created.
2242 * inf-ttrace.c: Don't include "observer.h".
2243 (inf_ttrace_attach): Don't call observer_notify_inferior_created.
2244 * inferior.h (solib_create_inferior_hook): Remove redundant
2245 prototype.
2246 * inftarg.c: Don't include "observer.h".
2247 (child_attach): Don't call observer_notify_inferior_created.
2248 * Makefile.in: Update dependencies.
2249
2250 2006-01-24 Daniel Jacobowitz <dan@codesourcery.com>
2251
2252 * infcmd.c: Include "observer.h".
2253 (post_create_inferior): New function.
2254 (run_command_1): Call it. Also call proceed.
2255 * inferior.h (post_create_inferior): New prototype.
2256 * Makefile.in (infcmd.o): Update.
2257
2258 * gnu-nat.c (gnu_create_inferior): Don't call proceed.
2259 * go32-nat.c (go32_create_inferior): Likewise.
2260 * nto-procfs.c (procfs_create_inferior): Likewise.
2261 * procfs.c (procfs_create_inferior): Likewise.
2262 * remote-sim.c (gdbsim_create_inferior): Likewise.
2263 * remote.c (extended_remote_create_inferior)
2264 (extended_remote_async_create_inferior): Likewise.
2265 * win32-nat.c (win32_create_inferior): Likewise.
2266 * wince.c (child_create_inferior): Likewise.
2267
2268 * monitor.c (monitor_create_inferior): Don't call proceed.
2269 Set the PC manually.
2270 * ocd.c (ocd_create_inferior): Likewise.
2271 * remote-e7000.c (e7000_create_inferior): Likewise.
2272 * remote-m32r-sdi.c (m32r_create_inferior): Likewise.
2273 * remote-mips.c (mips_create_inferior): Likewise.
2274 * remote-rdp.c (remote_rdp_create_inferior): Likewise.
2275 * remote-sds.c (sds_create_inferior): Likewise.
2276 * remote-st.c (st2000_create_inferior): Likewise.
2277
2278 * inf-ptrace.c (inf_ptrace_create_inferior): Don't call
2279 proceed or observer_notify_inferior_created.
2280 * inf-ttrace.c (inf_ttrace_create_inferior): Likewise.
2281 * inftarg.c (child_create_inferior): Likewise.
2282
2283 2006-01-24 Daniel Jacobowitz <dan@codesourcery.com>
2284
2285 * linux-thread-db.c (thread_db_mourn_inferior): Remove breakpoints
2286 after mourning the inferior.
2287
2288 2006-01-24 Jim Blandy <jimb@redhat.com>
2289
2290 * valarith.c (binop_user_defined_p): Handle refs to typedefs.
2291
2292 2006-01-24 Fred Fish <fnf@specifix.com>
2293
2294 * parse.c (source.h): Include.
2295 (parse_exp_in_context): Use static source context if no
2296 other context found.
2297
2298 2006-01-23 Andrew Stubbs <andrew.stubbs@st.com>
2299
2300 * sh-tdep.c: Include reggroups.h.
2301 (sh_register_reggroup_p): New function.
2302 (sh_gdbarch_init): Add call to set_gdbarch_register_reggroup_p.
2303 * Makefile.in (sh-tdep.o): Add dependency on reggroups.h.
2304
2305 2006-01-23 Andrew Stubbs <andrew.stubbs@st.com>
2306
2307 * cli/cli-cmds.c: Include fcntl.h.
2308 (source_command): Use the GDB search path to find script files.
2309
2310 2006-01-22 Daniel Jacobowitz <dan@codesourcery.com>
2311
2312 PR tdep/2029
2313 Suggested by Till Straumann <strauman@slac.stanford.edu>:
2314 * rs6000-tdep.c (skip_prologue): Update check for later mtlr
2315 instructions. Handle PIC bcl.
2316
2317 2006-01-22 Daniel Jacobowitz <dan@codesourcery.com>
2318
2319 * config/djgpp/README: Typo fix.
2320 * config/djgpp/fnchange.lst: Update.
2321
2322 2006-01-22 Mark Kettenis <kettenis@gnu.org>
2323
2324 * sparc-tdep.h (struct gdbarch_tdep): Add step_trap member.
2325 (sparc_address_from_register): New prototype.
2326 (sparcnbsd_step_trap): New prototype.
2327 * sparc-tdep.c (sparc_address_from_register): Make globally
2328 visible.
2329 (sparc_analyze_control_transfer): Change prototype to accept
2330 `struct gdbarch *' as first argument. Allow for optional hnadling
2331 for trap instructions.
2332 (sparc_step_trap): New function.
2333 (sparc_software_single_step): Adjust call to
2334 sparc_analyze_control_trabsfer.
2335 (sparc32_gdbarch_init): Initialize TDEP->step_trap.
2336 * sparcnbsd-tdep.c (sparcnbsd_step_trap): New function.
2337 (sparc32nbsd_init_abi): Set TDEP->step_trap.
2338 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Set TDEP->step_trap.
2339 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Set TDEP->step_trap.
2340
2341 * sparc-tdep.c (sparc32_return_value): Convert to use
2342 RETURN_VALUE_ABI_PRESERVES_ADDRESS instead of
2343 RETURN_VALUE_STRUCT_CONVENTION.
2344 (sparc32_extract_struct_value_address): Remove.
2345
2346 2006-01-21 Daniel Jacobowitz <dan@codesourcery.com>
2347
2348 * avr-tdep.c (avr_address_to_pointer, avr_pointer_to_address)
2349 (avr_extract_return_value, avr_frame_prev_register): Use gdb_byte.
2350
2351 2006-01-21 Daniel Jacobowitz <dan@codesourcery.com>
2352
2353 * solib.c (info_sharedlibrary_command): Avoid internal_error.
2354
2355 2006-01-21 Mark Kettenis <kettenis@gnu.org>
2356
2357 * i386-tdep.c (i386_mxcsr_type): New variable.
2358 (i386_init_types): Initialize i386_mxcsr_type.
2359 (i386_register_type): Return i386_mxcsr_type for %mxcsr.
2360 * i386-tdep.c (i386_mxcsr_type): New extern.
2361 * amd64-tdep.c (amd64_register_info): Return i386_mxcsr_type for
2362 %mxcsr.
2363
2364 2006-01-20 Mark Mitchell <mark@codesourcery.com>
2365
2366 * Makefile.in (remote-rdi.o): Remove.
2367 (rdi-share/libangsd.a): Likewise.
2368 * README: Don't mention remote-rdi.c.
2369 * NEWS: Mention removal of rdi-share.
2370 * configure.ac: Don't configure rdi-share subdirectory.
2371 * remote-rdi.c: Remove.
2372 * config/arm/embed.mt (TDEPFILES): Remove remote-rdi.o.
2373 (TDEPLIBS): Remove rdi-share/libangsd.a.
2374 * rdi-share/Makefile.am: Remove.
2375 * rdi-share/Makefile.in: Likewise.
2376 * rdi-share/README.CYGNUS: Likewise.
2377 * rdi-share/aclocal.m4: Likewise.
2378 * rdi-share/adp.h: Likewise.
2379 * rdi-share/adperr.h: Likewise.
2380 * rdi-share/angel.h: Likewise.
2381 * rdi-share/angel_bytesex.c: Likewise.
2382 * rdi-share/angel_bytesex.h: Likewise.
2383 * rdi-share/angel_endian.h: Likewise.
2384 * rdi-share/ardi.c: Likewise.
2385 * rdi-share/ardi.h: Likewise.
2386 * rdi-share/armdbg.h: Likewise.
2387 * rdi-share/buffers.h: Likewise.
2388 * rdi-share/chandefs.h: Likewise.
2389 * rdi-share/channels.h: Likewise.
2390 * rdi-share/chanpriv.h: Likewise.
2391 * rdi-share/configure: Likewise.
2392 * rdi-share/configure.in: Likewise.
2393 * rdi-share/crc.c: Likewise.
2394 * rdi-share/crc.h: Likewise.
2395 * rdi-share/dbg_conf.h: Likewise.
2396 * rdi-share/dbg_cp.h: Likewise.
2397 * rdi-share/dbg_hif.h: Likewise.
2398 * rdi-share/dbg_rdi.h: Likewise.
2399 * rdi-share/devclnt.h: Likewise.
2400 * rdi-share/devices.h: Likewise.
2401 * rdi-share/devsw.c: Likewise.
2402 * rdi-share/devsw.h: Likewise.
2403 * rdi-share/drivers.c: Likewise.
2404 * rdi-share/drivers.h: Likewise.
2405 * rdi-share/etherdrv.c: Likewise.
2406 * rdi-share/ethernet.h: Likewise.
2407 * rdi-share/host.h: Likewise.
2408 * rdi-share/hostchan.c: Likewise.
2409 * rdi-share/hostchan.h: Likewise.
2410 * rdi-share/hsys.c: Likewise.
2411 * rdi-share/hsys.h: Likewise.
2412 * rdi-share/logging.c: Likewise.
2413 * rdi-share/logging.h: Likewise.
2414 * rdi-share/msgbuild.c: Likewise.
2415 * rdi-share/msgbuild.h: Likewise.
2416 * rdi-share/params.c: Likewise.
2417 * rdi-share/params.h: Likewise.
2418 * rdi-share/rx.c: Likewise.
2419 * rdi-share/rxtx.h: Likewise.
2420 * rdi-share/serdrv.c: Likewise.
2421 * rdi-share/serpardr.c: Likewise.
2422 * rdi-share/sys.h: Likewise.
2423 * rdi-share/tx.c: Likewise.
2424 * rdi-share/unixcomm.c: Likewise.
2425 * rdi-share/unixcomm.h: Likewise.
2426
2427 2006-01-21 Mark Kettenis <kettenis@gnu.org>
2428
2429 * hppa-linux-tdep.c (hppa_linux_sigtramp_frame_prev_register):
2430 Change type of last argument to `gdb_byte *'.
2431
2432 2006-01-20 Mark Kettenis <kettenis@gnu.org>
2433
2434 * hppa-tdep.h (hppa_in_solib_call_trampoline)
2435 (hppa_skip_trampoline_code): New prototypes.
2436 * hppa-tdep.c (struct insn_pattern): New.
2437 (hppa_long_branch_stub, hppa_long_branch_pic_stub)
2438 (hppa_import_stub, hppa_import_pic_stub, hppa_plt_stub): Moved
2439 here from hppa-linux-tdep.c
2440 (HPPA_MAX_INSN_PATTERN_LEN): New define.
2441 (hppa_match_insns, hppa_match_insns_relaxed, hppa_in_dyncall)
2442 (hppa_in_solib_call_trampoline, hppa_skip_trampoline_code): New
2443 functions based on functions removed from hppa-linux-tdep.c.
2444 * hppa-linux-tdep.c (hppa_long_branch_stub)
2445 (hppa_long_branch_pic_stub, hppa_import_stub)
2446 (hppa_import_pic_stub, hppa_plt_stub): Moved to hppa-tdep.c.
2447 (insns_match_pattern_relaxed, hppa_linux_in_dyncall)
2448 (hppa_linux_in_solib_call_trampoline)
2449 (hppa_linux_skip_trampoline_code): Removed.
2450 (hppa_linux_init_abi): Set TDEP->in_solib_call_tranpoline to
2451 hppa_in_solib_call_trampoline and skip_trampoline_code to
2452 hppa_skip_trampoline_code.
2453 * hppabsd-tdep.c (hppabsd_init_abi): Set
2454 TDEP->in_solib_call_trampoline and skip_trampoline_code.
2455
2456 2006-01-20 Jim Blandy <jimb@redhat.com>
2457
2458 * MAINTAINERS: Change my E-mail address.
2459
2460 * configure.ac: Add -Wno-pointer-sign to list of build warnings.
2461 * configure: Regenerated.
2462
2463 2006-01-20 Daniel Jacobowitz <dan@codesourcery.com>
2464
2465 * MAINTAINERS: Overhaul.
2466
2467 2006-01-18 Mark Kettenis <kettenis@gnu.org>
2468
2469 Based on a previous patch form Michal Ludvig:
2470 * amd64-tdep.c (amd64_sse_type): Remove.
2471 (amd64_register_info): Use i386_eflags_type and i386_sse_type
2472 where appropriate.
2473 (AMD64_NUM_REGS): Use ARRAY_SIZE.
2474 (amd64_register_type): Remove code to build amd_sse_type.
2475 * i386-tdep.c (i386_eflag_type): New variable.
2476 (i386_mmx_type, i386_sse_type): Make global.
2477 (i386_init_types): New function.
2478 (i386_build_mmx_type, i386_build_sse_type): Remove functions.
2479 (i386_register_type): Return i386_eflag_type, i386_sse_type and
2480 i386_mmx_type when appropriate.
2481 (_initialize_i386_tdep): Call i386_init_types.
2482 * i386-tdep.h (i386_eflags_type, i386_mmx_type, i386_sse_type):
2483 Declare extern.
2484
2485 Based on a previous patch form Michal Ludvig:
2486 * gdbtypes.c (append_flags_type_flag, init_flags_type): New
2487 functions.
2488 (is_integral_type, rank_one_type, recursive_dump_type): Add
2489 support for TYPE_CODE_FLAGS.
2490 * gdbtypes.h (enum type_code): Add TYPE_CODE_FLAGS.
2491 (append_flags_type_field, init_flags_type): New prototypes.
2492 * ada-valprint.c (ada_val_print_1): Add support for
2493 TYPE_CODE_FLAGS.
2494 * c-valprint.c (c_val_print): Likewise.
2495 * f-valprint.c (f_val_print): Likewise.
2496 * p-valprint.c (pascal_val_print): Likewise.
2497 * valprint.c (val_print_type_code_flags): New function.
2498 * valprint.h (val_print_type_code_flags): New prototype.
2499 * value.c (unpack_long, value_from_longest): Add support for
2500 TYPE_CODE_FLAGS.
2501
2502 2006-01-17 Christopher Faylor <cgf@timesys.com>
2503
2504 * MAINTAINERS: Very belatedly remove myself from from the list of
2505 people caught up in the paper trail.
2506
2507 2006-01-17 Jim Blandy <jimb@redhat.com>
2508
2509 * symtab.h (struct general_symbol_info): Use gdb_byte for
2510 value.bytes.
2511 * stabsread.c (define_symbol): Use gdb_byte for the buffer holding
2512 a floating-point constant's value.
2513 * dwarf2read.c (dwarf2_const_value): Remove casts of value buffer
2514 to char *.
2515 * findvar.c (read_var_value): Eliminate needless temporary.
2516
2517 * dwarf2-frame.c (dwarf2_read_section): Update forward declaration
2518 to match prior change to dwarf2_read_section's type.
2519
2520 2006-01-16 Paul Gilliam <pgilliam@us.ibm.com>
2521
2522 * ppc-tdep.h (PPC_MAX_EPILOGUE_INSTRUCTIONS): New define.
2523 * rs6000-tdep.c (insn_changes_sp_or_jumps)
2524 (rs6000_in_function_epilogue_p): New functions.
2525 (rs6000_gdbarch_init): Set in_function_epilogue_p.
2526
2527 2006-01-17 Jim Blandy <jimb@redhat.com>
2528
2529 * dwarf2read.c (struct dwarf2_per_objfile, struct comp_unit_head)
2530 (struct line_header, struct partial_die_info, struct dwarf_block):
2531 Use gdb_byte for members that refer to Dwarf section contents.
2532 (dwarf2_read_abbrevs, dwarf2_read_section, dwarf_decode_lines,
2533 dwarf_decode_macros, load_comp_unit, load_partial_dies,
2534 locate_pdi_sibling, partial_read_comp_unit_head, peek_die_abbrev,
2535 read_1_byte, read_1_signed_byte, read_2_bytes, read_4_bytes,
2536 read_8_bytes, read_address, read_attribute, read_attribute_value,
2537 read_comp_unit, read_comp_unit_head, read_die_and_children,
2538 read_die_and_siblings, read_full_die, read_indirect_string,
2539 read_initial_length, read_n_bytes, read_offset, read_partial_die,
2540 read_signed_leb128, read_string, read_unsigned_leb128,
2541 skip_children, skip_leb128, skip_one_die): Same.
2542
2543 2006-01-17 Daniel Jacobowitz <dan@codesourcery.com>
2544
2545 * complaints.c (stop_whining): Make signed.
2546 * linux-thread-db.c (thread_db_store_registers): Use gdb_byte.
2547
2548 2006-01-17 Daniel Jacobowitz <dan@codesourcery.com>
2549
2550 * dwarf2read.c, remote-fileio.c, remote.h: Update copyright
2551 notices.
2552
2553 2006-01-17 Daniel Jacobowitz <dan@codesourcery.com>
2554
2555 * dwarf2read.c (peek_die_abbrev, read_address, read_initial_length)
2556 (read_offset): Change BYTES_READ argument to unsigned int.
2557 (dwarf2_build_psymtabs_easy, read_comp_unit_head)
2558 (create_all_comp_units, dwarf2_get_pc_bounds)
2559 (dwarf_decode_line_header, var_decode_location)
2560 (dwarf_decode_macros): Change local BYTES_READ variables to
2561 unsigned int.
2562 (read_indirect_string): Remove obsolete cast.
2563
2564 2006-01-17 Daniel Jacobowitz <dan@codesourcery.com>
2565
2566 * remote-fileio.c (remote_fileio_return_success): Take a gdb_byte
2567 argument.
2568 (remote_fileio_func_open, remote_fileio_func_rename)
2569 (remote_fileio_func_unlink, remote_fileio_func_stat)
2570 (remote_fileio_func_fstat, remote_fileio_func_gettimeofday)
2571 (remote_fileio_func_system): Cast the arguments to
2572 remote_read_bytes and remote_write_bytes.
2573 (remote_fileio_func_read, remote_fileio_func_write): Use a
2574 gdb_byte buffer.
2575 * remote.h (remote_read_bytes, remote_write_bytes): Update
2576 prototypes.
2577 * remote.c (hex2bin, bin2hex): Use gdb_byte for the BIN argument.
2578 (threadref_to_int): Replace bogus char * cast.
2579 (remote_unpack_thread_info_response): Use int for tag.
2580 (remote_threads_extra_info, remote_check_symbols): Cast string
2581 arguments to hex2bin.
2582 (remote_wait): Use a char buffer for packets and a gdb_byte
2583 buffer for registers.
2584 (remote_async_wait): Likewise.
2585 (remote_prepare_to_store, store_register_using_P)
2586 (remote_store_registers): Use gdb_byte buffers.
2587 (remote_write_bytes, remote_read_bytes): Use a gdb_byte pointer
2588 for MYADDR and char buffers for strings.
2589 (remote_xfer_partial): Add casts for string operations on READBUF.
2590 (remote_rcmd): Cast strings passed to bin2hex.
2591
2592 2006-01-16 Mark Mitchell <mark@codesourcery.com>
2593
2594 * aclocal.m4: Regenerate.
2595
2596 2006-01-16 Nathan Sidwell <nathan@codesourcery.com>
2597
2598 * mt-tdep.c (enum mt_gdb_regnums): Add MT_COPRO_PSEUDOREG_ARRAY,
2599 MT_COPRO_PSEUDOREG_DIM_1, MT_COPRO_PSEUDOREG_DIM_2,
2600 MT_COPRO_PSEUDOREG_REGS members. Adjust MT_NUM_PSEUDO_REGS.
2601 (mt_register_name): Lazily synthesize name for coprocessor pseudo
2602 array registers.
2603 (mt_copro_register_type): New. Broken out of ...
2604 (mt_register_type): ... here. Use it. Deal with coprocessor
2605 pseudo array.
2606 (mt_select_coprocessor): New.
2607 (mt_pseudo_register_read, mt_pseudo_register_write): Deal with
2608 coprocessor pseudo array.
2609
2610 2006-01-16 Andrew Stubbs <andrew.stubbs@st.com>
2611
2612 * breakpoint.c (insert_breakpoints): Check that a thread exists
2613 before inserting thread specific breakpoints.
2614
2615 2006-01-15 Mark Kettenis <kettenis@gnu.org>
2616
2617 * osabi.c (generic_elf_osabi_sniffer): Fix typo in previous
2618 commit.
2619
2620 * alpha-tdep.c (alpha_gdbarch_init): Set cannot_step_breakpoint.
2621 * config/alpha/nm-osf.h (CANNOT_STEP_BREAKPOINT): Remove.
2622 * config/alpha/nm-linux.h (CANNOT_STEP_BREAKPOINT): Remove.
2623 * config/alpha/nm-nbsd.h: Remove file.
2624 * config/alpha/nm-fbsd.h: Remove file
2625 * config/alpha/nbsd.mh (NAT_FILE): Remove.
2626 * config/alpha/fbsd.mh (NAT_FILE): Remove.
2627
2628 2006-01-15 Daniel Jacobowitz <dan@codesourcery.com>
2629
2630 * macroexp.c (expand): Initialize argc.
2631 * stabsread.c (read_type): Handle errors from read_args.
2632 (read_args): Return NULL for errors.
2633
2634 2006-01-15 Mark Kettenis <kettenis@gnu.org>
2635
2636 * osabi.c (generic_elf_osabi_sniffer): Use memcmp instead of
2637 strcmp to compare string to a byte buffer.
2638
2639 2006-01-15 Daniel Jacobowitz <dan@codesourcery.com>
2640
2641 * printcmd.c (output_command): Always initialize fmt.size.
2642 (printf_command): Use gdb_byte.
2643 * symfile.c (separate_debug_file_exists): Use gdb_byte.
2644 (load_section_callback, read_target_long_array): Likewise.
2645 (simple_read_overlay_table, simple_read_overlay_region_table)
2646 (simple_overlay_update_1): Correct calls to read_target_long_array.
2647 * valprint.c (partial_memory_read): Change MYADDR to a gdb_byte *.
2648 Also change local pointers.
2649 (val_print_string): Use gdb_byte.
2650
2651 2006-01-15 Mark Kettenis <kettenis@gnu.org>
2652
2653 * alphafbsd-tdep.c: Include "solib-svr4.h".
2654 (alphafbsd_init_abi): Set solib_svr4_fetch_link_map_offsets to
2655 svr4_lp64_fetch_link_map_offsets.
2656 * Makefile.in (alphafbsd-tdep.o): Update dependencies.
2657 * config/alpha/fbsd.mt (TDEPFILES): Add corelow.o, solib.o and
2658 solib-svr4.o.
2659 * config/alpha/fbsd.mh (NATDEPFILES): Remove solib.o, solib-svr4.o
2660 and solib-legacy.o.
2661 * config/alpha/nm-fbsd.h: Don't include "solib.h".
2662
2663 2006-01-15 Daniel Jacobowitz <dan@codesourcery.com>
2664
2665 * source.c (_initialize_source): Use add_setshow_integer_cmd.
2666
2667 2006-01-15 Daniel Jacobowitz <dan@codesourcery.com>
2668
2669 * linux-fork.c (delete_fork_command, detach_fork_command): Use
2670 PIDGET.
2671
2672 2006-01-15 Mark Kettenis <kettenis@gnu.org>
2673
2674 * arm-linux-tdep.c (arm_linux_svr4_fetch_link_map_offsets):
2675 Remove.
2676 (arm_linux_init_abi): Set solib_svr4_fetch_link_map_offsets to
2677 svr4_ilp32_fetch_link_map_offsets.
2678 * cris-tdep.c (cris_linux_svr4_fetch_link_map_offsets): Remove
2679 function.
2680 (cris_gdbarch_init): Set solib_svr4_fetch_link_map_offsets to
2681 svr4_ilp32_fetch_link_map_offsets.
2682 * mips-linux-tdep.c (mips_linux_svr4_fetch_link_map_offsets)
2683 (mips64_linux_svr4_fetch_link_map_offsets): Remove functions.
2684 (mips_linux_init_abi): Set solib_svr4_fetch_link_map_offsets to
2685 svr4_ilp32_fetch_link_map_offsets or svr4_lp64_fetch_link_map_offsets
2686 where appropriate.
2687 * nbsd-tdep.c (nbsd_ilp32_solib_svr4_fetch_link_map_offsets):
2688 Simply call svr4_ilp32_fetch_link_map_offsets.
2689 (nbsd_lp64_solib_svr4_fetch_link_map_offsets): Simply call
2690 svr4_lp64_fetch_link_map_offsets.
2691 * ppc-linux-tdep.c (ppc_linux_svr4_fetch_link_map_offsets): Remove
2692 function.
2693 (ppc_linux_init_abi): Set solib_svr4_fetch_link_map_offsets to
2694 svr4_ilp32_fetch_link_map_offsets.
2695 * s390-tdep.c (s390_svr4_fetch_link_map_offsets)
2696 (s390x_svr4_fetch_link_map_offsets): Remove functions.
2697 (s390_gdbarch_init): Set solib_svr4_fetch_link_map_offsets to
2698 svr4_ilp32_fetch_link_map_offsets or svr4_lp64_fetch_link_map_offsets
2699 where appropriate.
2700
2701 2006-01-15 Mark Kettenis <kettenis@gnu.org>
2702
2703 * arm-tdep.c (arm_return_value): Change type of readbuf and
2704 writebuf arguments to `gdb_byte *'.
2705
2706 * s390-tdep.c: Do not include "tm.h" and "../bfd/bfd.h".
2707 * Makefile.in (s390-tdep.o): Update dependencies.
2708
2709 2006-01-14 Mark Kettenis <kettenis@gnu.org>
2710
2711 * sol2-tdep.h. sol2-tdep.c: New files.
2712 * amd64-sol2-tdep.c: Include "sol2-tdep.h".
2713 (amd64_sol2_init_abi): Set skip_solib_resolver.
2714 * i386-sol2-tdep.c: Include "sol2-tdep.h".
2715 (i386_sol2_init_abi): Set skip_solib_resolver.
2716 * sparc-sol2-tdep.c: Include "sol2-tdep.h".
2717 (sparc32_sol2_init_abi): Set skip_solib_resolver.
2718 * sparc64-sol2-tdep.c: Include "sol2-tdep.h".
2719 (sparc64_sol2_init_abi): Set skip_solib_resolver.
2720 * Makefile.in (sol2_tdep_h): New variable.
2721 (ALLDEPFILES): Add sol2-tdep.c.
2722 (sol2-tdep.o): New target.
2723 (amd64-sol2-tdep.o, i386-sol2-tdep.o, sparc-sol2-tdep.o)
2724 (sparc64-sol2-tdep.o): Update dependencies
2725 * config/i386/i386sol2.mt (TDEPFILES): Add sol2-tdep.o.
2726 * config/i386/sol2-64.mt (TDEPFILES): Add sol2-tdep.o.
2727 * config/sparc/sol2.mt (TDEPFILES): Add sol2-tdep.o.
2728 * config/sparc/sol2-64.mt (TDEPFILES): Add sol2-tdep.o.
2729
2730 * hppa-linux-tdep.c: Fix copyright indentation.
2731
2732 * hppa-tdep.h (enum hppa_regnum): Add HPPA_FP31R_REGNUM.
2733 * hppabsd-nat.c (hppabsd_fpregset_supplies_p)
2734 (hppabsd_supply_fpregset, hppabsd_collect_fpregset): New
2735 functions.
2736 (hppabsd_fetch_registers, hppabsd_store_registers): Handle
2737 floating-point registers.
2738
2739 2006-01-13 Mark Mitchell <mark@codesourcery.com>
2740
2741 * event-loop.c (gdb_select): Detect file descriptors that have
2742 been closed.
2743
2744 2006-01-13 Mark Kettenis <kettenis@gnu.org>
2745
2746 * hppabsd-tdep.c (hppabsd_init_abi): Set long_double_bit to 64,
2747 and long_double_format accordingly.
2748
2749 2006-01-12 Paul N. Hilfinger <hilfinger@adacore.com>
2750
2751 * ada-exp.y (yyerror): Change message to ignore the argument, avoiding
2752 translation problems.
2753 * ada-lang.c (ada_value_struct_elt): Change interface and handling
2754 of errors to avoid translation problem (and less than optimal error
2755 messages).
2756 (ada_value_tag, ada_tag_name_1, ada_tag_name_2, ada_evaluate_subexp):
2757 Use new interface to ada_value_struct_elt.
2758 * ada_lang.h (ada_value_struct_elt): Update declaration to new
2759 interface.
2760
2761 * ChangeLog: remove reference to ada-tasks.c from entry of
2762 2006-01-07.
2763
2764 2006-01-11 Mark Kettenis <kettenis@gnu.org>
2765
2766 * remote.c (get_memory_packet_size, set_thread)
2767 (remote_unpack_thread_info_response, remote_get_threadinfo)
2768 (parse_threadlist_response, remote_get_threadlist)
2769 (remote_current_thread, remote_threads_info)
2770 (remote_threads_extra_info, extended_remote_restart, get_offsets)
2771 (remote_check_symbols, remote_open_1, remote_detach)
2772 (remote_async_wait, remote_fetch_registers)
2773 (remote_store_registers, check_binary_download, putpkt_binary)
2774 (remote_insert_breakpoint, remote_insert_watchpoint)
2775 (remote_remove_watchpoint, remote_insert_hw_breakpoint)
2776 (remote_remove_hw_breakpoint, remote_xfer_partial, remote_rcmd)
2777 (packet_command): Remove redundant parenthesis.
2778
2779 2006-01-10 Mark Kettenis <kettenis@gnu.org>
2780
2781 * corefile.c (read_memory_integer, read_memory_unsigned_integer)
2782 (read_memory_typed_address, write_memory)
2783 (write_memory_unsigned_integer, write_memory_signed_integer): Use
2784 gdb_byte where appropriate.
2785
2786 * mi/mi-main.c (mi_cmd_data_read_memory): Change type of mbus into
2787 'gdb_byte *'.
2788
2789 * target.h (target_read_memory_partial, target_write_memory_partial):
2790 Change second argument to 'gdb_byte *'.
2791 * target.c (target_xfer_memory_partial): Change third argument to
2792 'gdb_byte *'.
2793 (target_read_memory_partial, target_write_memory_partial): Change
2794 second argument to 'gdb_byte *'.
2795
2796 * linespec.c (decode_objc): Make i1 and i2 unsigned.
2797 (find_method): Set values.sals to NULL.
2798
2799 2006-01-09 Mark Kettenis <kettenis@gnu.org>
2800
2801 * amd64obsd-nat.c (amd64obsd_supply_pcb): Use 'gdb_byte *' instead
2802 of 'char *' in cast.
2803
2804 2006-01-07 Paul N. Hilfinger <hilfinger@adacore.com>
2805
2806 * ada-exp.y, ada-lex.l, ada-typeprint.c: I18n markup.
2807 * ada-lang.c: I18n markup.
2808 Editorial: change "can not" => "cannot" throughout.
2809
2810 2006-01-07 Mark Kettenis <kettenis@gnu.org>
2811
2812 * Makefile.in: Sort dependencies.
2813
2814 2006-01-07 Eli Zaretskii <eliz@gnu.org>
2815
2816 * top.c (control_level): Remove unused variable.
2817
2818 2006-01-06 Fred Fish <fnf@specifix.com>
2819
2820 * objfiles.c (source.h): Include.
2821 (free_objfile): Update comment about clear_symtab_users().
2822 (free_objfile): Check all symtabs of objfile being freed and if
2823 one of them is the current source symtab, call
2824 clear_current_source_symtab_and_line().
2825
2826 2006-01-04 Michael Snyder <msnyder@redhat.com>
2827
2828 Checkpoint/Restart for Linux.
2829 * linux-nat.c: Add support for debugging multiple forks.
2830 Add #include for linux-fork.h (interface spec).
2831 (super_mourn_inferior): New function pointer.
2832 (child_mourn_inferior): New function / target method.
2833 (linux_target): Claim to_mourn_inferior method pointer.
2834 (child_follow_fork): Call interface to linux-fork, conditionally
2835 add new fork processes to list of debugged processes.
2836 (kill_inferior): Use interface to linux-fork to kill
2837 multiple processes.
2838
2839 * linux-fork.h: New file.
2840 * linux-fork.c: New file. Support for debugging multiple forks
2841 of the same program. Support for checkpoint and restart commands.
2842
2843 * infrun.c (nullify_last_target_wait_ptid): New function.
2844
2845 * Makefile.in: Add linux-fork.
2846 * config/*/linux.mh: Add linux-fork.
2847 * NEWS: Mention new functionality.
2848
2849 2006-01-02 Paul Hilfinger <hilfingr@nile.gnat.com>
2850
2851 * ada-exp.y (syntax definitions,write_var_or_type,write_name_assoc):
2852 Change uses of "illegal" to "invalid".
2853
2854 2006-01-02 Paul N. Hilfinger <hilfinger@adacore.com>
2855
2856 * ada-exp.y: Considerable reorganization to move functionality
2857 from ada-lex.l to here, where it is logically more appropriate.
2858 The original reason, however, was to prevent premature name
2859 lookups for selector names in record aggregates.
2860 (BLOCKNAME, TYPENAME, OBJECT_RENAMING): Remove; lexer now returns
2861 NAME for all of these.
2862 (VAR): New artificial token to clarify precedence rules.
2863 (OTHERS): New lexeme.
2864 (empty_stoken): New symbol.
2865 (%union): Remove ssym, voidval.
2866 (%type): Remove <voidval> type declarations.
2867 (syntax definitions): Add aggregates.
2868 Remove distinction between NAME, TYPENAME, BLOCKNAME, OBJECT_RENAMING.
2869 Rename some non-terminals to be closer to reference manual usage.
2870 Tighten up expression syntax to disallow certain non-Ada
2871 constructions such as X and then Y or else Z.
2872 (ada_parse): Remove initialization of left_block_context.
2873 (write_var_from_name): Remove.
2874 (write_var_or_type): New function, containing previous code from
2875 defunct write_var_from_name and name_lookup.
2876 (block_lookup): New function, moved from ada-lex.l
2877 (select_possible_type_sym): New function, factored out of
2878 name_lookup, which used to be in ada-lex.l.
2879 (find_primitive_type): Ditto.
2880 (chop_selector): Ditto.
2881 (write_ambiguous_var): New function, factored out of defunct
2882 write_var_from_name.
2883 (write_selectors): New function.
2884 (write_name_assoc): New function.
2885 (write_exp_op_with_string): New function.
2886
2887 * ada-lex.l (processId): Change interface to return stoken.
2888 (tempbuf, resize_tempbuf, tempbuf_size, tempbuf_len): Remove.
2889 (block_lookup, name_lookup): Remove. Functionality moved to
2890 ada-exp.y.
2891 (state IN_STRING): Remove.
2892 (rules): Handle string escapes in processString.
2893 Add 'others' token.
2894 Return all NAMEs, BLOCKNAMEs, OBJECT_RENAMINGs, TYPENAMEs in
2895 yylval.sval (as simple strings).
2896 All name look-ups now handled in ada-exp.y.
2897 Introduce "::" (COLONCOLON) token and return as separate token.
2898 (processId): Change return convention. Comment.
2899 Leave leading "'" in place.
2900 (processString): New function.
2901 (find_dot_all): Add note to comment.
2902 Fix problem that allowed match only at the end.
2903
2904 * ada-lang.c: Introduce aggregates.
2905 (find_struct_field): Add new parameter to count fields skipped, and
2906 allow other output parameters to be NULL.
2907 (value_tag_from_contents_and_address, ada_value_struct_elt): Use
2908 new find_struct_field.
2909 (ada_index_struct_field, assign_aggregate, ada_is_array_type)
2910 (num_visible_fields, ada_index_struct_field_1, ada_index_struct_field)
2911 (num_component_specs, assign_component, assign_aggregate):
2912 (aggregate_assign_from_choices,aggregate_assign_positional)
2913 (aggregate_assign_others,add_component_interval):
2914 New functions.
2915 (ada_evaluate_subexp): Declare.
2916 Add aggregate-related operators.
2917 (ada_forward_operator_length): Declare.
2918 (resolve_subexp): Add cases for new aggregate operators and OP_NAME.
2919 Consolidate Ada operators, using ada_forward_operator_length.
2920 (ada_search_struct_field): Search in forward order.
2921 (ADA_OPERATORS): Add new aggregate operators.
2922 (ada_operator_length, ada_op_name, ada_forward_operator_length)
2923 (ada_dump_subexp_body, ada_print_subexp): Handle new aggregate
2924 operators and OP_NAME.
2925 (ada_type_of_array): Use longest_to_int.
2926 (value_assign_to_component): New function.
2927 (ada_forward_operator_length, ada_op_name, ada_dump_subexp_body):
2928 Add OP_NAME case.
2929 (ada_forward_operator_length, ada_dump_subexp_body):
2930 Add OP_STRING case.
2931
2932 * ada-lang.h (enum ada_operator): Add OP_AGGREGATE, OP_OTHERS,
2933 OP_CHOICES, OP_DISCRETE_RANGE, OP_POSITIONAL.
2934
2935 2006-01-02 Paul N. Hilfinger <hilfinger@adacore.com>
2936
2937 * ada-lang.c (process_raise_exception_name): Remove extraneous
2938 definition from unsubmitted code.
2939
2940 (is_lower_alphanum): New function.
2941 (ada_decode): Add support for decoding protected object subprograms
2942 and entries, and of entities declared inside protected object
2943 subprograms.
2944 Also add missing handling for__{DIGITS}+ suffixes.
2945 Allow '$<digits>' as valid overloading suffix.
2946 (is_name_suffix): Add handling for protected type entriy suffixes.
2947 Also add support for protected type subprogram suffixes, but keep
2948 it commented out for now, as there is an ambiguity between these
2949 entities and other internally generated entities.
2950 Allow '$<digits>' as valid overloading suffix.
2951 (is_valid_name_for_wild_match): New function.
2952 (wild_match): Add an exra level of verification of the entity name
2953 before declaring it a match for the given pattern.
2954
2955 (ada_type_of_array, ada_evaluate_subexp): Use more proper
2956 longest_to_int rather than cast.
2957
2958 (ada_evaluate_subexp): Use "invalid" rather than "illegal" in comment.
2959
2960 (ada_coerce_to_simple_array): Call check_size to make sure
2961 that the object size is reasonable.
2962
2963 (ada_value_primitive_packed_val): Use correct location in target
2964 buffer for extracting packed record fields that are themselves records.
2965
2966 (add_defn_to_vec): Do not try to replace a stub type by its full
2967 type. Avoids a potential infinite loop.
2968
2969 (ada_lookup_symbol): Move return incorrectly placed return statement,
2970 causing a loop that should be scanning all object files to only
2971 scan the first one.
2972
2973 (ada_tag_name_2): New function.
2974 (ada_tag_name_1): If no 'tsd' field found in the dispatching table,
2975 use alternative representation.
2976
2977 (ada_find_renaming_symbol): Strip the function name suffix when
2978 computing the XR type name.
2979
2980 (ada_to_fixed_type): Try determining the tag only if we have the
2981 object's address.
2982 (to_fixed_array_type): Add comments.
2983
2984 (ada_check_typedef): Replace expression checking whether the given
2985 type is a stub or not by a "call" to TYPE_STUB. Clearer and more
2986 consistent.
2987
2988 * ada-lang.h (ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS): Allow
2989 '$' in addition to '.' for runtime auxiliary function name suffixes.
2990 See changes to ada_decode above.
2991
2992 (struct task_control_block): Add field called_task. (This change is
2993 to keep synchronized with our local sources; it does not affect the
2994 public version yet.)
2995
2996 * ada-typeprint.c (ada_print_type): Use int_string for printing
2997 modulus of modular type.
2998
2999 (print_range): Trivial editorial comment fix.
3000
3001 * ada-valprint.c (ada_emit_char): Use normal Ada syntax for
3002 double quote in string.
3003
3004 2006-01-01 Joel Brobecker <brobecker@adacore.com>
3005
3006 * top.c: Add 2006 to list of copyright years in file header.
3007
3008 2006-01-01 Joel Brobecker <brobecker@adacore.com>
3009
3010 * top.c (print_gdb_version): Update copyright year to 2006.
3011
3012 2006-01-01 Roger Sayle <roger@eyesopen.com>
3013 Elena Zannoni <ezannoni@redhat.com>
3014
3015 PR symtab/1651
3016 * xcoffread.c (xcoff_next_symbol_text): Check this_symtab_psymtab
3017 for NULL before assigning this_symtab_psymtab->objfile to objfile.
3018 (scan_xcoff_symtab): Initialize next_symbol_text_func.
3019 (Committed by Jim Blandy)
3020
3021 For older changes see ChangeLog-2005.
3022 \f
3023 Local Variables:
3024 mode: change-log
3025 left-margin: 8
3026 fill-column: 74
3027 version-control: never
3028 End:
This page took 0.103094 seconds and 4 git commands to generate.