* value.h (find_function_in_inferior): Add const keyword to
[external/binutils.git] / gdb / ChangeLog
1 2002-09-12  Joel Brobecker  <brobecker@gnat.com>
2
3         * value.h (find_function_in_inferior): Add const keyword to
4         one of the parameters. Allows us to invoke this function with
5         a const char *.
6         * valops.c (find_function_in_inferior): Likewise.
7
8 2002-09-12  Joel Brobecker  <brobecker@gnat.com>
9
10         * exec.c (xfer_memory): Fix compilation warning with old versions
11         of GCC.
12         * tracepoint.c (trace_find_tracepoint_command): Likewise.
13
14 2002-09-12  David Carlton  <carlton@math.stanford.edu>
15
16         * symtab.h: Run through gdb_indent.h.
17         Add 2002 to Copyright year list.
18
19 2002-09-12  Alan Modra  <amodra@bigpond.net.au>
20
21         * x86-64-tdep.c (_initialize_x86_64_tdep): Don't use hard-coded
22         mach constants.
23         * MAINTAINERS: Add myself to write after approval list.
24
25 2002-09-11  J. Brobecker  <brobecker@gnat.com>
26
27         * osabi.c (gdb_osabi_name): Add entry for GDB_OSABI_INTERIX.
28
29 2002-09-11  J. Brobecker  <brobecker@gnat.com>
30
31         * osabi.h (gdb_osabi): Add new GDB_OSABI_INTERIX enum value for
32         Interix.
33
34 2002-06-05  Paul N. Hilfinger  <hilfingr@otisco.mckusick.com>
35
36         * procfs.c (do_detach): Clear current signal, not just fault.
37         Corrects problem with breakpoint trap signal leaking to detached
38         process on Tru64.
39
40 2002-09-10  Michael Snyder  <msnyder@redhat.com>
41
42         * buildsym.c (finish_block): Protect against null pointer.
43
44 2002-09-10  Andrew Cagney  <cagney@redhat.com>
45
46         * infcmd.c (default_print_registers_info): Send all output to
47         ``file'' instead of ``gdb_stdout''.
48
49 2002-09-10  Michael Snyder  <msnyder@redhat.com>
50
51         * mips-tdep.c (mips_extract_struct_value_address): Make val a
52         LONGEST, and use signed register read (addresses are sign-
53         extended for mips).
54
55 2002-09-10  Stephane Carrez  <stcarrez@nerim.fr>
56
57         * event-loop.c (gdb_do_one_event): Make public.
58         * event-loop.h (gdb_do_one_event): Declare.
59
60 2002-09-10  Jeff Law  <law@redhat.com>
61
62         * infttrace.c (child_resume): Simplify and rework to avoid
63         TT_PROC_CONTINUE.
64
65 2002-09-09  Fred Fish  <fnf@intrinsity.com>
66
67         * printcmd.c (print_scalar_formatted): "len" is the number of
68         target bytes, NOT the number of target bits.
69
70 2002-09-09  Elena Zannoni  <ezannoni@redhat.com>
71
72         From: Emmanuel Thome'  <thome@lix.polytechnique.fr>
73         * top.c (init_main): Set rl_terminal_name.
74
75 2002-09-08  Aidan Skinner <aidan@velvet.net>
76
77         * ada-lang.c (ada_array_bound, ada_type_match,
78         _initialize_ada_language): Fix K&R definitions.
79         * ada-tasks.c (get_current_task): Fix K&R definitions.
80         * ada-valprint.c (adjust_type_signedness): Fix K&R definitions.
81                         
82 2002-09-07  Christopher Faylor  <cgf@redhat.com>
83
84         * MAINTAINERS: Remove CE from list of maintainership responsibilities.
85         Add XP.
86
87 2002-09-06  Mark Kettenis  <kettenis@gnu.org>
88
89         * i386-tdep.c (i386_register_virtual_type,
90         i386_register_convertible, i386_register_convert_to_virtual,
91         i386_register_comvert_to_raw): Use FP_REGNUM_P and SSE_REGNUM_P
92         instead of IS_FP_REGNUM and IS_SSE_REGNUM.
93         (i386_gdbarch_init): Fix comment.  Add comments on calls that set
94         sp_regnum, fp_regnum, pc_regnum, ps_regnum and fp0_regnum.
95         Don't set push_arguments twice.
96
97         * i386bsd-tdep.c (i386bsd_init_abi): Set sigtramp_start and
98         sigtramp_end to i386bsd_sigtramp_start and i386bsd_sigtramp_end.
99         * i386nbsd-tdep.c (i386nbsd_init_abi): Set sigtramp_start and
100         sigtramp_end to NULL.
101         * config/i386/tm-fbsd.h (SIGTRAMP_START, SIGTRAMP_END): Remove
102         defines.
103         (i386bsd_sigtramp_start, i386_sigtramp_end): Remove prototypes.
104
105         * i386nbsd-tdep.c (i386nbsd_pc_in_sigtramp): Remove spurious
106         whitespace.
107
108         * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): New methods.
109         * gdbarch.h, gdbarch.c: Re-generate.
110         * blockframe.c (find_pc_sect_partial_function): Convert to use
111         SIGTRAMP_START_P predicate.
112
113 2002-09-05  Michael Snyder  <msnyder@redhat.com>
114
115         * arm-tdep.c (arm_init_extra_frame_info): Distinguish between
116         generic_dummy_frame method and old method.  Also distinguish
117         between ARM_FP_REGNUM and THUMB_FP_REGNUM.
118         (arm_extract_return_value): Use new regcache method.
119
120         * mips-tdep.c (mips_n32n64_push_arguments): Remove alignment
121         adjustment that doesn't conform to the ABI.
122         (mips_extract_struct_value_address): Retrieve V0_REGNUM from
123         saved regcache, not from current regcache.
124
125 2002-09-05  Andrew Cagney  <ac131313@redhat.com>
126
127         * NEWS: Update for 5.3.  Add new section ``Changes since 5.3''.
128         * README: Update.
129
130 2002-09-04  Jason Thorpe  <thorpej@wasabisystems.com>
131
132         * arm-tdep.c (arm_addr_bits_remove): Don't check for Thumb mode
133         if arm_apcs_32 is false.
134
135 2002-09-04  Andrew Cagney  <ac131313@redhat.com>
136
137         GDB 5.3 branch created.
138
139 2002-09-03  Theodore A. Roth  <troth@verinet.com>
140
141         * gdb/avr-tdep.c (avr_gdbarch_init): Use
142         generic_unwind_get_saved_register.
143
144 2002-09-03  David Carlton  <carlton@math.stanford.edu>
145
146         * dwarf2read.c (dwarf2_add_member_fn): Add the 'type'
147         argument (PR gdb/653).  Update call to smash_to_method_type.
148         (read_structure_scope): Update call to dwarf2_add_member_fn.
149
150 2002-09-03  Michal Ludvig  <mludvig@suse.cz>
151
152         * x86-64-linux-tdep.c: Include gdb_string.h
153         * x86-64-linux-nat.c: Ditto.
154
155 2002-09-02  Jason Thorpe  <thorpej@wasabisystems.com>
156
157         * ada-exp.y (yyname, yyrule): Remap global variables that appear
158         when YYDEBUG is set to 1.  
159         * c-exp.y: Likewise.
160         * f-exp.y: Likewise.
161         * jv-exp.y: Likewise.
162         * m2-exp.y: Likewise.
163         * p-exp.y: Likewise.
164
165 2002-09-02  Jason Thorpe  <thorpej@wasabisystems.com>
166
167         * Makefile.in (i386nbsd-tdep.o): Add $(solib_svr4_h) to
168         dependency list.
169         * i386nbsd-tdep.c (i386nbsdelf_init_abi): Set
170         solib_svr4_fetch_link_map_offsets to
171         nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
172         * config/i386/nbsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
173         * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
174         * config/i386/nbsdelf.mh (NATDEPFILES): Remove solib.o,
175         solib-svr4.o, and solib-legacy.o.
176         * config/i386/tm-nbsd.h: Include solib.h.
177
178 2002-09-02  Jason Thorpe  <thorpej@wasabisystems.com>
179
180         * configure.tgt (i[3456]86-*-netbsdelf*): Merge with... 
181         (i[3456]86-*-netbsd*): ...this.  Set gdb_target to nbsd. 
182         (i[3456]86-*-openbsd*): Make this a separate entry.  Add a
183         comment noting that this needs its own target configuration.
184         * config/i386/nbsd.mt: New file.
185         * config/i386/nbsdaout.mt: Remove.
186         * config/i386/nbsdelf.mt: Ditto.
187         * config/i386/tm-nbsdaout.h: Ditto. 
188
189 2002-09-02  Jason Thorpe  <thorpej@wasabisystems.com>
190
191         * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): New function. 
192         (i386nbsd_pc_in_sigtramp): Rewrite to use i386nbsd_sigtramp_offset. 
193         (i386nbsd_init_abi): Don't initialize tdep->sigtramp_start or
194         tdep->sigtramp_end.
195         (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end): Remove. 
196         * config/i386/tm-nbsd.h (SIGTRAMP_START, SIGTRAMP_END)
197         (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove.
198
199 2002-09-02  Jason Thorpe  <thorpej@wasabisystems.com>
200
201         * Makefile.in (i386nbsd-tdep.o): Add $(arch_utils_h),
202         $(i386_tdep_h), and $(nbsd_tdep_h) to dependency list.
203         * i386-tdep.h (i386bsd_init_abi): New prototype.
204         * i386bsd-tdep.c (i386bsd_init_abi): Remove "static" from
205         function declaration.
206         (_initialize_i386bsd_tdep): Don't register OS ABI handlers
207         for NetBSD-a.out or NetBSD-ELF.
208         (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end)
209         (i386nbsd_sc_pc_offset, i386nbsd_sc_sp_offset)
210         (i386nbsd_init_abi, i386nbsdelf_init_abi): Move to...
211         * i386nbsd-tdep.c: ...here.  Include arch-utils.h, i386-tdep.h,
212         and nbsd-tdep.h.
213         (i386nbsd_pc_in_sigtramp): New function.
214         (i386nbsd_init_abi): Set gdbarch_pc_in_sigtramp to
215         i386nbsd_pc_in_sigtramp.
216         (_initialize_i386nbsd_tdep): Register i386nbsd_init_abi
217         and i386nbsdelf_init_abi OS ABI handlers.
218         * config/i386/nbsdaout.mt (TDEPFILES): Add nbsd-tdep.o.
219         * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
220
221 2002-09-02  Mark Kettenis  <kettenis@gnu.org>
222
223         * i386-linux-nat.c (dummy_sse_values): Only try to fill in the SSE
224         registers if the target really has them.
225
226 2002-08-31  Jason Thorpe  <thorpej@wasabisystems.com>
227
228         * Makefile.in (mipsnbsd-tdep.o): Use $(nbsd_tdep_h) rather
229         than nbsd-tdep.h.
230
231 2002-08-31  Jason Thorpe  <thorpej@wasabisystems.com>
232
233         * Makefile.in (alphanbsd-tdep.o): Add $(frame_h) to dependency
234         list.
235         * alphanbsd-tdep.c (alphanbsd_sigcontext_addr)
236         (alphanbsd_skip_sigtramp_frame): New functions. 
237         (alphanbsd_init_abi): Set tdep->skip_sigtramp_frame to
238         alphanbsd_skip_sigtramp_frame.  Set tdep->sigcontext_addr
239         to alphanbsd_sigcontext_addr. 
240
241 2002-08-31  Jason Thorpe  <thorpej@wasabisystems.com>
242
243         * Makefile.in (mipsnbsd-tdep.o): Add nbsd-tdep.h to dependency
244         list.
245         (nbsd-tdep.o): Add $(gdb_string_h) to dependency list. 
246         * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): Use
247         nbsd_pc_in_sigtramp. 
248         * mipsnbsd-tdep.c: Include nbsd-tdep.h.
249         (mipsnbsd_pc_in_sigtramp): Use nbsd_pc_in_sigtramp.
250         * nbsd-tdep.c: Include gdb_string.h.
251         (nbsd_pc_in_sigtramp): New function. 
252         * nbsd-tdep.h (nbsd_pc_in_sigtramp): New prototype. 
253         * ppcnbsd-tdep.c (ppcnbsd_pc_in_sigtramp): New function.
254         (ppcnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
255         ppcnbsd_pc_in_sigtramp. 
256         * shnbsd-tdep.c (shnbsd_pc_in_sigtramp): New function.
257         (shnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
258         shnbsd_pc_in_sigtramp. 
259         * sparcnbsd-tdep.c (sparcnbsd_init_abi_elf): Set
260         gdbarch_pc_in_sigtramp to nbsd_pc_in_sigtramp. 
261         * config/mips/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
262
263 2002-08-30  Pierre Muller  <muller@ics.u-strasbg.fr>
264
265         * breakpoint.c (breakpoint_init_inferior): Reset the val field of
266         watchpoints to NULL.
267         (insert_breakpoints): set val field of watchpoints if NULL.
268
269
270 2002-08-29  Jim Blandy  <jimb@redhat.com>
271
272         * symtab.c (lookup_symbol_aux): In the cases where we find a
273         minimal symbol of an appropriate name and use its address to
274         select a symtab to read and search, use `name' (as passed to us)
275         as the demangled name when searching the symtab's global and
276         static blocks, not the minsym's name.
277
278 2002-08-29  Keith Seitz  <keiths@redhat.com>
279
280         * stack.c (print_frame_info_base): Always set current_source_symtab
281         and current_source_line.
282
283 2002-08-29  Donn Terry  <donnte@microsoft.com>
284
285         * proc-api.c (rw_table): Fix typo in #ifdef PCSHOLD (missing S).
286
287 2002-08-28  Keith Seitz  <keiths@redhat.com>
288
289         * stack.c (select_frame): Add FIXME concerning selected-frame
290         events.
291         (select_frame_command): Send selected-frame-level-changed
292         event notification, but only if the level actually changed.
293         (up_silently_base): Add selected-frame-level-changed event
294         notification.
295         (down_silently_base): Likewise.
296
297 2002-08-28  Andrew Cagney  <ac131313@redhat.com>
298
299         * Makefile.in: Update dependencies for all gdb/*.c files.
300
301 2002-08-27  Tom Tromey  <tromey@redhat.com>
302
303         * Makefile.in (osabi.o, i387-tdep.o, i386-linux-nat.o, lin-lwp.o,
304         ax-gdb.o, signals.o, jv-valprint.o, c-valprint.o, cp-abi.o):
305         Update dependencies.
306         * i387-tdep.c: Include gdb_string.h.
307         * osabi.c: Likewise.
308         * i386-linux-nat.c: Likewise.
309         * lin-lwp.c: Likewise.
310         * ax-gdb.c: Likewise.
311         * signals/signals.c: Likewise.
312         * jv-valprint.c: Likewise.
313         * p-lang.c: Likewise.
314         * c-valprint.c: Likewise.
315         * cp-abi.c: Likewise.
316
317 2002-08-27  Elena Zannoni  <ezannoni@redhat.com>
318
319         * cli/cli-script.h (copy_command_lines): Export.
320         * breakpoint.c: Include cli/cli-script.h.
321         * Makefile.in (breakpoint.o): Update dependencies.
322
323 2002-08-26  Michael Snyder  <msnyder@redhat.com>
324
325         * breakpoint.c (insert_breakpoints): Protect all references
326         to 'process_warning'.  Shorten long lines.
327
328 2002-08-26  Joel Brobecker  <brobecker@gnat.com>
329
330         * cli/cli-script.c (copy_command_lines): New function.
331         * defs.h (copy_command_lines): Export.
332         * testsuite/gdb.base/commands.exp: New tests for commands
333         attached to a temporary breakpoint, and for commands that
334         delete the breakpoint they are attached to.
335         
336 2002-08-26  Michael Snyder  <msnyder@redhat.com>
337
338         * breakpoint.c (bpstat_stop_status): Instead of copying the 
339         pointer to the breakpoint commands struct, make a new copy
340         of the struct and point to that.
341         (bpstat_clear): Free the commands struct.
342         (bpstat_clear_actions): Free the commands struct.
343         (bpstat_do_actions): Free the command actions.  Also execute
344         the local cleanups, instead of deleting them.
345         (delete_breakpoint): Leave the commands field of the bpstat
346         chain alone -- it will be freed later.
347
348 2002-08-26  Kevin Buettner  <kevinb@redhat.com>
349
350         * rs6000-tdep.c (altivec_register_p): Restore function inadvertently
351         deleted in 2002-08-20 commit.  This function is still used by
352         ppc-linux-nat.c.
353
354 2002-08-26  Keith Seitz  <keiths@redhat.com>
355
356         * gdb-events.sh: Add selected-frame-level-changed event.
357         * gdb-events.c: Regenerated.
358         * gdb-events.h: Regenerated.
359         
360 2002-08-26  Stephane Carrez  <stcarrez@nerim.fr>
361
362         Fix PR gdb/393:
363         * inflow.c (terminal_save_ours): New function to save terminal
364         settings.
365         * inferior.h (terminal_save_ours): Declare.
366         * target.c (debug_to_terminal_save_ours): New function.
367         (cleanup_target): Defaults to_terminal_save_ours.
368         (update_current_target): Inherit to_terminal_save_ours.
369         (setup_target_debug): Set to_terminal_save_ours.
370         * target.h (target_terminal_save_ours): New to save terminal settings.
371         (target_ops): New member to_terminal_save_ours.
372         * gnu-nat.c (init_gnu_ops): Set to_terminal_save_ours.
373         * hpux-thread.c (init_hpux_thread_ops): Likewise.
374         * inftarg.c (init_child_ops): Likewise.
375         * m3-nat.c (init_m3_ops): Likewise.
376         * procfs.c (init_procfs_ops): Likewise.
377         * wince.c (init_child_ops): Likewise.
378         * win32-nat.c (init_child_ops): Likewise.
379         * sol-thread.c (init_sol_thread_ops): Likewise.
380
381 2002-08-26  Mark Kettenis  <kettenis@gnu.org>
382
383         * i386-tdep.c (i386_store_return_value): Undeprecate.  Convert to
384         use regcache_* functions.
385         (i386_gdbarch_init): Set store_return_value instead of
386         deprecated_store_return_value.
387
388         * regcache.c (regcache_raw_write_signed,
389         regcache_raw_write_unsigned): New functions.
390         * regcache.h (regcache_raw_write_signed,
391         regcache_raw_write_unsigned): New prototypes.
392
393 2002-08-25  Andrew Cagney  <ac131313@redhat.com>
394
395         * Makefile.in (c-exp.tab.o, jv-exp.tab.o, f-exp.tab.o)
396         (m2-exp.tab.o, p-exp.tab.o, ada-exp.tab.o): Move to before the
397         source file dependencies.  Cleanup corresponding generator rules.
398
399 2002-08-25  Andrew Cagney  <ac131313@redhat.com>
400
401         * regcache.h (register_offset_hack): Declare.
402         (regcache_cooked_read_using_offset_hack): Declare.
403         (regcache_cooked_write_using_offset_hack): Declare.
404
405         * regcache.c (register_offset_hack): New function.
406         (regcache_cooked_read_using_offset_hack): New function.
407         (regcache_cooked_write_using_offset_hack): New function.
408         (regcache_dump): Check that the registers, according to their
409         offset, are packed hard against each other.
410         (cooked_xfer_using_offset_hack): New function.
411
412 2002-08-25  Andrew Cagney  <ac131313@redhat.com>
413
414         * regcache.c (struct regcache_descr): Add field register_type.
415         (init_legacy_regcache_descr): Pass a pre-allocated regcache_descr
416         in as a parameter
417         (init_regcache_descr): Initialize register_type.  Pass the descr
418         to init_legacy_regcache_descr.  Use register_type instead of
419         REGISTER_VIRTUAL_TYPE.
420         (register_type): New function.
421         (regcache_dump): Replace REGISTER_VIRTUAL_TYPE with register_type.
422         * regcache.h (register_type): Declare.
423
424 2002-08-25  Andrew Cagney  <ac131313@redhat.com>
425
426         * rs6000-tdep.c (rs6000_gdbarch_init): Set store_struct_return
427         instead of deprecated_store_return_value.  Fix fallout from
428         2002-08-23 Andrew Cagney <cagney@redhat.com>.
429
430 2002-08-25  Andrew Cagney  <ac131313@redhat.com>
431
432         * regcache.c (max_register_size): New function.
433         (init_legacy_regcache_descr): Ensure that max_register_size is
434         large enough for REGISTER_VIRTUAL_SIZE.
435         * regcache.h (max_register_size): Declare.
436
437 2002-08-24  Andrew Cagney  <ac131313@redhat.com>
438
439         * rs6000-tdep.c (rs6000_gdbarch_init): Use deprecated version of
440         store_return_value.
441         (e500_extract_return_value): Change type of valbuf pointer to
442         void.
443
444 2002-08-24  Mark Kettenis  <kettenis@gnu.org>
445
446         * PROBLEMS: Clarify problems with FreeBSD's compiler and suggest
447         workaround.
448
449         * valprint.c (print_longest) [CC_HAS_LONG_LONG &&
450         PRINTF_HAS_LONG_LONG]: Cast val_long to (long long) or (unsigned
451         long long) to prevent compiler warning on 64-bit systems.
452
453 2002-08-23  Andrew Cagney  <cagney@redhat.com>
454
455         * gdbarch.sh (STORE_RETURN_VALUE): Add regcache parameter.
456         (DEPRECATED_STORE_RETURN_VALUE): New method.
457         (EXTRACT_RETURN_VALUE): Make buffer parameter a void pointer.
458         * gdbarch.h, gdbarch.c: Re-generate.
459
460         * values.c (set_return_value): Pass current_regcache to
461         STORE_RETURN_VALUE.
462         * arch-utils.h (legacy_store_return_value): Declare.
463         * arch-utils.c (legacy_store_return_value): New function.
464         (legacy_extract_return_value): Update parameters.
465
466         * config/pa/tm-hppa.h (DEPRECATED_STORE_RETURN_VALUE): Rename
467         STORE_RETURN_VALUE.
468         * config/pa/tm-hppa64.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
469         * config/sparc/tm-sparc.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
470         * config/z8k/tm-z8k.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
471         * config/sparc/tm-sparclet.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
472         * config/mn10200/tm-mn10200.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
473         * config/m68k/tm-linux.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
474         * config/m68k/tm-delta68.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
475         * config/m32r/tm-m32r.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
476         * config/h8500/tm-h8500.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
477         * config/h8300/tm-h8300.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
478
479         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
480         * i386-tdep.c (i386_extract_return_value): Update.
481         * arch-utils.c (legacy_extract_return_value): Update.
482         * frv-tdep.c (frv_gdbarch_init): Update.
483         * cris-tdep.c (cris_gdbarch_init): Update.
484         * d10v-tdep.c (d10v_gdbarch_init): Update.
485         * rs6000-tdep.c (rs6000_gdbarch_init): Update.
486         * m68k-tdep.c (m68k_gdbarch_init): Update.
487         * mcore-tdep.c (mcore_gdbarch_init): Update.
488         * mn10300-tdep.c (mn10300_gdbarch_init): Update.
489         * s390-tdep.c (s390_gdbarch_init): Update.
490         * sparc-tdep.c (sparc_gdbarch_init): Update.
491         * sh-tdep.c (sh_gdbarch_init): Update.
492         * x86-64-tdep.c (x86_64_gdbarch_init): Update.
493         * v850-tdep.c (v850_gdbarch_init): Update.
494         * avr-tdep.c (avr_gdbarch_init): Update.
495         * ia64-tdep.c (ia64_gdbarch_init): Update.
496         * ns32k-tdep.c (ns32k_gdbarch_init): Update.
497         * vax-tdep.c (vax_gdbarch_init): Update.
498         * alpha-tdep.c (alpha_gdbarch_init): Update.
499         * arm-tdep.c (arm_gdbarch_init): Update.
500         * mips-tdep.c (mips_gdbarch_init): Update.
501         * i386-tdep.c (i386_gdbarch_init): Update.
502
503 2002-08-23  Andrew Cagney  <ac131313@redhat.com>
504
505         * config/djgpp/fnchange.lst: Add entries for bfd/elf32-ppcqnx.c,
506         bfd/elf32-ppc.c, bfd/elf32-sh.c and bfd/elf32-shqnx.c.
507
508 2002-08-24  Mark Kettenis  <kettenis@gnu.org>
509
510         * PROBLEMS: Refer to GDB 5.3 instead of 5.2.  Mention FreeBSD
511         problems.
512
513 2002-08-23  Joel Brobecker  <brobecker@gnat.com>
514
515         * infrun.c (handle_inferior_event): Move a comment outside of a
516         function call, in order to avoid indent reformatting this part
517         of the code in an unreadable way.
518
519 2002-08-23  Grace Sainsbury  <graces@redhat.com>
520
521         * infrun.c (normal_stop, proceed): Remove call to print_sys_errmsg
522         when breakpoints fail. Move general breakpoint error messages to
523         insert_breakpoints.  
524         * breakpoint.c (insert_breakpoints): Change warnings when
525         breakpoints are nto inserted to specify the type. Remove call to
526         memory_error when hardware breakpoints can't be inserted. Remove
527         multiple calls to warning so all messages are sent to the user at
528         once.
529         (delete_breakpoints): Make insert error messsages more explicit.
530
531 2002-08-23  Daniel Jacobowitz  <drow@mvista.com>
532
533         * ChangeLog: Move gdbserver entries after GDB 5.2 to
534         gdbserver/ChangeLog.
535
536 2002-08-23  Mark Kettenis  <kettenis@gnu.org>
537
538         * i386-tdep.c: Include "objfiles.h".
539         (i386_svr4_init_abi): Set in_solib_call_trampoline and
540         skip_trampoline_code.
541         * config/i386/tm-i386v4.h: Don't include "config/tm-sysv4.h".
542         (CPLUS_MARKER): Define to '.'.
543
544         * linux-proc.c (struct linux_corefile_thread_data): Add num_notes
545         member.
546         (linux_corefile_thread_callback): Increase args->num_notes.
547         (linux_make_note_section): Initialize thread_args.num_notes, and
548         use it to determine whether notes for any threads were created.
549
550 2002-08-23  Donn Terry  <donnte@microsoft.com>
551
552         * proc-api.c (rw_table): Do not include a row for PCDSTOP if the
553         corresponding macro is not defined. Likewise for PCNICE, PCSHOLD
554         and PCUNKILL.
555         (write_with_trace): Conditionalize out the switch branch handling
556         PCSHOLD if the corresponding macro is not defined. Likewise for
557         PRSABORT and PRSTOP.
558         This change will be needed by the Interix port.
559
560 2002-08-22  Elena Zannoni  <ezannoni@redhat.com>
561
562         * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): use
563         write_register wherever possible instead of manipulating the
564         register bytes directly.
565         Assign VALUE_CONTENTS to a variable and use that.
566         The GPR numbers are now dependent on the architecture.
567         
568 2002-08-22  Elena Zannoni  <ezannoni@redhat.com>
569
570         * rs6000-tdep.c (struct rs6000_framedata): Add saved_ev and
571         ev_offset fields.
572         (skip_prologue): Add support for BookE/e500 instructions.
573         (e500_extract_return_value): New function.
574         (frame_get_saved_regs): Add support for saving ev registers and
575         pseudo gpr's.
576         (e500_store_return_value): New function.
577         (rs6000_gdbarch_init): Move up default intializations of
578         deprecated_extract_return_value and store_return_value.  Overwrite
579         init of store_return_value with e500 specific version.
580         Set extract_return_value for e500.
581         
582 2002-08-22  Elena Zannoni  <ezannoni@redhat.com>
583
584         * blockframe.c (generic_call_dummy_register_unwind): Use
585         regcache_cooked_read to catch cases in which the variable is
586         stored in a pseudo register.
587
588 2002-08-22  Andrew Cagney  <cagney@redhat.com>
589
590         * NEWS: Mention that the i960 has been made obsolete.
591         * Makefile.in (SFILES): Delete remote-nrom.c, remote-nindy.c and
592         i960-tdep.c
593         (remote-nrom.o): Obsolete target.
594         (remote-nindy.o, i960-tdep.o): Ditto.
595         * remote-nrom.c: Make file obsolete.
596         * remote-nindy.c, remote-vx960.c: Ditto.
597         * config/i960/vxworks960.mt, config/i960/nindy960.mt: Ditto.
598         * config/i960/mon960.mt, config/i960/tm-i960.h: Ditto.
599         * config/i960/tm-vx960.h, config/i960/tm-nindy960.h: Ditto.
600         * config/i960/tm-mon960.h, i960-tdep.c: Ditto.
601         * configure.tgt: Make i960-*-bout*, i960-nindy-coff*,
602         i960-*-coff*, i960-nindy-elf*, i960-*-elf*, i960-*-nindy* and
603         i960-*-vxworks* obsolete.
604         * MAINTAINERS: Note that the i960 is obsolete.
605
606 2002-08-21  Corinna Vinschen  <vinschen@redhat.com
607
608         * aix-thread.c (aix_thread_detach): Disable thread debugging on
609         detach to allow reinitialization.
610
611 2002-08-22  Andrew Cagney  <ac131313@redhat.com>
612
613         * MAINTAINERS: Change the s390 target to s390-linux-gnu (second
614         attempt).
615
616 2002-08-22  Jim Blandy  <jimb@redhat.com>
617
618         * coffread.c (coff_symfile_read): Don't try to read the line
619         number table from disk if the image file doesn't have a symbol
620         table; we'll never actually look at the info anyway, and Windows
621         ships DLL's with bogus file offsets for the line number data.
622
623 2002-08-21  Elena Zannoni  <ezannoni@redhat.com>
624
625         * rs6000-tdep.c (rs6000_gdbarch_init): Figure out whether we have
626         an e500 executable.
627
628 2002-08-21  Michael Snyder  <msnyder@redhat.com>
629
630         * mips-tdep.c (MSYMBOL_IS_SPECIAL): Replace macro with function.
631         (MSYMBOL_SIZE): Replace macro with function.
632         (DEFAULT_MIPS_TYPE): Delete unused macro.
633         * config/mips/tm-mips.h (DEFAULT_MIPS_TYPE): Delete unused macro.
634         * config/mips/tm-embed.h (DEFAULT_MIPS_TYPE): Delete unused macro.
635
636 2002-08-21  Jim Blandy  <jimb@redhat.com>
637
638         * valops.c (value_cast): Simplify and correct logic for doing a
639         static cast from a pointer to a base class to a pointer to a
640         derived class.
641
642 2002-08-21  Andrew Cagney  <ac131313@redhat.com>
643
644         * infcmd.c (default_print_registers_info): Replace
645         do_registers_info.
646         (registers_info): Use gdbarch_print_registers_info instead of
647         DO_REGISTERS_INFO.
648         * inferior.h (default_print_registers_info): Replace
649         do_registers_info.
650         * gdbarch.sh (PRINT_REGISTERS_INFO): New method.
651         (DO_REGISTERS_INFO): Change to a predicate function.
652         * gdbarch.h, gdbarch.c: Regenerate.
653         
654 2002-08-21  Keith Seitz  <keiths@redhat.com>
655
656         * gdb-events.sh: Add target-changed event.
657         * gdb-events.c: Regenerated.
658         * gdb-events.c: Regenerated.
659         * valops.c (value_assign): Add target-changed event notification
660         to inlval_register, lval_memory, and lval_reg_frame_relative.
661
662 2002-08-21  Joel Brobecker  <brobecker@gnat.com>
663
664         * NEWS: Add an entry regarding the improvement of the next/step
665         operation on Alpha Tru64 multi-processor machines.
666
667 2002-08-21  Andrew Cagney  <ac131313@redhat.com>
668
669         * Makefile.in: Update dependencies for mi/ cli/ and tui/
670         directores.
671         * Makefile.in: Update all _h macro definitions.
672         * Makefile.in (install-gdbtk): Move to install section.
673         (rdi-share/libangsd.a): Move to end of file.
674
675 2002-08-19  Andrew Cagney  <ac131313@redhat.com>
676
677         * frame.c (frame_register_unwind): When a register, set addrp to
678         the register's byte.
679
680 2002-08-20  Michael Snyder  <msnyder@redhat.com>
681
682         * mips-tdep.c (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): These are only
683         used locally, so move them from the target machine header to here.
684         (mips_set_processor_type, mips_register_name, mips32_next_pc, 
685         mips16_next_pc, cached_proc_desc, mips_set_processor_type): 
686         Make static.
687         * config/mips/tm-mips.h (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Delete.
688
689 2002-08-20  Andrew Cagney  <cagney@redhat.com>
690
691         * NEWS: Mention that the Apollo line was made obsolete.
692         * configure.tgt: Make m68*-apollo*-bsd*, m68*-hp-bsd*, and
693         m68*-hp-hpux* obsolete.
694         * configure.host: Make m68*-apollo*-sysv*, m68*-apollo*-bsd*,
695         m68*-hp-bsd* and m68*-hp-hpux* obsolete.
696         * buildsym.c (make_blockvector): Make static.
697         * buildsym.h (make_blockvector): Make extern declaration obsolete.
698         * Makefile.in (HFILES_NO_SRCDIR): Remove dst.h
699         (ALLDEPFILES): Remove dstread.c.
700         (dstread.o): Obsolete make rule.
701         * dstread.c: Makefile obsolete.
702         * dst.h: Ditto.
703         * config/m68k/hp300hpux.mt: Ditto.
704         * config/m68k/hp300hpux.mh: Ditto.
705         * config/m68k/hp300bsd.mt: Ditto.
706         * config/m68k/hp300bsd.mh: Ditto.
707         * config/m68k/apollo68b.mt: Ditto.
708         * config/m68k/apollo68v.mh: Ditto.
709         * config/m68k/apollo68b.mh: Ditto.
710
711 2002-08-20  Michael Snyder  <msnyder@redhat.com>
712
713         * mips-tdep.c (mips_in_return_stub): Make static.
714         (mips_gdbarch_init): Set in_solib_return_trampoline.
715         * config/mips/tm-mips.h (IN_SOLIB_RETURN_TRAMPOLINE): Delete.
716
717 2002-08-20  Michael Snyder  <msnyder@redhat.com>
718
719         * gdbarch.sh (IN_SOLIB_RETURN_TRAMPOLINE): Add.
720         * gdbarch.c, gdbarch.h: Regenerate.
721         * arch-utils.c, arch-utils.h (generic_in_solib_return_trampoline):
722         Add.
723         * infrun.c (IN_SOLIB_RETURN_TRAMPOLINE): Delete default definition.
724
725 2002-08-20  Michael Snyder  <msnyder@redhat.com>
726
727         * mips-tdep.c (mips_skip_stub, mips_in_call_stub): Make static.
728         (mips_gdbarch_init): Set skip_trampoline_code, 
729         in_solib_call_trampoline.
730         * config/mips/tm-mips.h (REGISTER_NAME): Delete.
731         (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE): Delete.
732
733 2002-08-20  Elena Zannoni  <ezannoni@redhat.com>
734
735         * ppc-tdep.h (struct gdbarch_tdep): Add ev registers.
736
737         * rs6000-tdep.c (rs6000_register_virtual_type): Return 64 bit
738         vector type for ev registers.
739         (e500_pseudo_register_read): New function.
740         (e500_pseudo_register_write): New function.
741         (e500_dwarf2_reg_to_regnum): New function.
742         (PPC_UISA_NOFP_SPRS): New macro.
743         (PPC_EV_REGS): New macro.
744         (PPC_GPRS_PSEUDO_REGS): New macro.
745         (registers_e500): New register set for e500.
746         (variants): Add e500 variant.
747         (rs6000_gdbarch_init): Move setting of pc, sp, fp regnums to
748         before setting architectural dependent variations.  Initialize ev
749         registers numbers.  Add case for e500 architecture.  Set the
750         number of pseudo registers.
751
752 2002-08-20  Elena Zannoni  <ezannoni@redhat.com>
753
754         * rs6000-tdep.c: Clean up comments.
755
756 2002-08-20  Andrew Cagney  <cagney@redhat.com>
757
758         * h8300-tdep.c: Re-indent file.
759
760 2002-08-20  Jim Blandy  <jimb@redhat.com>
761
762         * Makefile.in (LDFLAGS): Allow the configure script to establish a
763         default for this.
764
765 2002-08-20  Keith Seitz  <keiths@redhat.com>
766
767         * breakpoints.c (watch_command_1): Use internal breakpoint
768         when setting a watchpoint_scope breakpoint.
769
770 2002-08-20  Elena Zannoni  <ezannoni@redhat.com>
771
772         * gdbtypes.c (build_builtin_type_vec64): Add name to type.
773         (build_builtin_type_vec64i): Ditto.
774         (build_builtin_type_vec128): Ditto.
775         (build_builtin_type_vec128i): Ditto.
776
777 2002-08-19  Michael Snyder  <msnyder@redhat.com>
778
779         * config/mips/tm-mips.h (ELF_MAKE_MSYMBOL_SPECIAL): Delete.
780         (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Change into functions.
781         (FIX_CALL_DUMMY, PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME,
782         POP_FRAME, INIT_EXTRA_FRAME_INFO): Delete.
783         (CALL_DUMMY_START_OFFSET, CALL_DUMMY_BREAKPOINT_OFFSET,
784         CALL_DUMMY_ADDRESS): Delete.
785         * mips-tdep.c (mips_elf_make_msymbol_special, mips_msymbol_size,
786         mips_msymbol_is_special, mips_fix_call_dummy): New functions.
787         (mips_gdbarch_init): Set elf_make_msymbol_special, pop_frame, 
788         push_dummy_frame, fix_call_dummy, init_extra_frame_info, 
789         push_return_address.
790         (mips_register_raw_size, mips_eabi_use_struct_convention, 
791         mips_n32n64_use_struct_convention, mips_o32_use_struct_convention,
792         mips_o32_reg_struct_has_addr, mips_frame_saved_pc, mips_frame_chain,
793         mips_init_extra_frame_info, mips_eabi_push_arguments, 
794         mips_n32n64_push_arguments, mips_push_return_address,
795         mips_push_dummy_frame, mips_pop_frame, mips_skip_prologue,
796         mips_breakpoint_from_pc, mips_call_dummy_address): Make static.
797
798 2002-08-19  Michael Snyder  <msnyder@redhat.com>
799
800         * mips-tdep.c (mips_frame_num_args): New function.
801         (mips_gdbarch_init): Set frame_chain, frameless_function_invocation,
802         frame_saved_pc, frame_args_address, frame_locals_address, 
803         frame_num_args, and frame_args_skip.
804         * config/mips/tm-mips.h (FRAME_CHAIN, FRAMELESS_FUNCTION_INVOCATION,
805         FRAME_SAVED_PC, FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS, 
806         FRAME_NUM_ARGS, FRAME_ARGS_SKIP): Delete.
807         * config/mips/tm-mipsv4.h (FRAME_CHAIN_VALID): Delete.
808
809 2002-08-20  Michael Snyder  <msnyder@redhat.com>
810
811         * config/mips/tm-mips.h (STORE_STRUCT_RETURN): Delete.
812         (EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
813         * mips-tdep.c (mips_store_struct_return): New function.
814         (mips_extract_struct_value_address): New function.
815         (mips_gdbarch_init): Set store_struct_return and
816         extract_struct_value_address.
817
818 2002-08-20  David Carlton  <carlton@math.stanford.edu>
819
820         * dwarf2read.c (dwarf2_build_psymtabs): Check that
821         dwarf_line_offset is nonzero before creating dwarf_line_buffer.
822         (read_file_scope): Check that line_header is nonzero before
823         decoding macro information.
824
825 2002-08-20  Mark Kettenis  <kettenis@gnu.org>
826
827         * i386-tdep.h (FP_REGNUM_P): Change such that we don't incorrectly
828         flag the general-purpose registers as floating-point on targets
829         that don't support the floating-point registers.
830
831 2002-08-20  Elena Zannoni  <ezannoni@redhat.com>
832
833         * rs6000-tdep.c (altivec_register_p): Delete.
834         (rs6000_do_altivec_registers): Delete.
835         (rs6000_altivec_registers_info): Delete.
836         (rs6000_do_registers_info): Delete.
837         (_initialize_rs6000_tdep): Remove command 'info powerpc altivec'.
838         (rs6000_gdbarch_init): Remove setting of do_registers_info.
839
840 2002-08-20  Elena Zannoni  <ezannoni@redhat.com>
841
842         * infcmd.c (do_registers_info): Print vector registers in hex
843         format only.
844         (print_vector_info): Check that printing registers
845         makes sense.
846         (print_float_info): Ditto.
847
848 2002-08-20  Andrew Cagney  <ac131313@redhat.com>
849
850         * mips-tdep.c (mips_gdbarch_init): Update.
851         (mips_o32_extract_return_value): Rewrite.
852         (mips_o32_store_return_value): Rewrite.
853         (mips_o32_xfer_return_value): New function.
854         (mips_xfer_register): Tweak debug print message.  Allow for
855         buf_offset when dumping the value transfered.
856
857 2002-08-20  Andrew Cagney  <ac131313@redhat.com>
858
859         * config/mips/tm-nbsd.h (MIPS_DEFAULT_ABI): Delete.
860         * config/mips/tm-linux.h (MIPS_DEFAULT_ABI): Delete.
861         * config/mips/tm-irix5.h (MIPS_DEFAULT_ABI): Delete.
862         * config/mips/tm-irix6.h (MIPS_DEFAULT_ABI): Delete.
863         * mips-tdep.c (mips_gdbarch_init) [MIPS_DEFAULT_ABI]: Delete code.
864
865 2002-08-14  Michael Snyder  <msnyder@redhat.com>
866
867         * mips-tdep.c (mips_frame_chain): Check for call-dummy frames.
868
869 2002-08-19  Elena Zannoni  <ezannoni@redhat.com>
870
871         * rs6000-tdep.c (struct reg): Add field to indicate a pseudo
872         register.
873         (P): New macro to define a register as a pseudo register.
874         (R, R4, R8, R16, FR32, R64, R0): Updated.
875         (struct variant): Add new fields for number of pseudo registers
876         and number of total registers.
877         (tot_num_registers): New macro replacing....
878         (num_registers): ...deleted macro.
879         (num_registers): New function.
880         (num_pseudo_registers): New function.
881         (variants): Update all variants to intialize new fields correctly.
882         Postpone initialization of number of pseudo regs and real regs.
883         (init_variants): New function.
884         (rs6000_gdbarch_init): Initialize variants.  Update calculation of
885         registers offsets.
886
887 2002-08-19  David Carlton  <carlton@math.stanford.edu>
888
889         * valops.c (search_struct_field): Change error message to treat
890         return value of 0 from value_static_field as meaning that field is
891         optimized out.
892         (value_struct_elt_for_reference): Ditto.
893         * values.c (value_static_field): Treat an unresolved location the
894         same as a nonexistent symbol.  Fix PR gdb/635.
895         * gnu-v2-abi.c (gnuv2_value_rtti_type): Eliminate test for being
896         enclosed.  Fix PR gdb/574.
897         * MAINTAINERS: Add self to Write After Approval list.
898
899 2002-08-19  Andrew Cagney  <ac131313@redhat.com>
900
901         * mips-tdep.c (mips_xfer_register): New function.
902         (mips_n32n64_extract_return_value): Rewrite.
903         (mips_gdbarch_init): For N32 and N64, set extract_return_value
904         instead of deprecated_extract_return_value.
905
906 2002-08-19  Elena Zannoni  <ezannoni@redhat.com>
907
908         * rs6000-tdep.c (TDEP): Delete macro.
909         (branch_dest): Replace use of TDEP macro with its body.
910         (rs6000_pop_frame): Ditto.
911         (rs6000_push_arguments): Ditto.
912         (rs6000_skip_trampoline_code): Ditto.
913         (rs6000_frame_saved_pc): Ditto.
914         (rs6000_frame_chain): Ditto.
915         (rs6000_register_name): Ditto.
916         (rs6000_register_byte): Ditto.
917         (rs6000_register_raw_size): Ditto.
918         (rs6000_register_virtual_type): Ditto.
919         (rs6000_register_convertible): Ditto.
920         (rs6000_convert_from_func_ptr_addr): Ditto.
921
922 2002-08-19  Daniel Jacobowitz  <drow@mvista.com>
923
924         * config/mips/tm-linux.h (REALTIME_LO, REALTIME_HI): Define
925         conditionally.
926         (JB_PC, JB_ELEMENT_SIZE): Rename to MIPS_LINUX_JB_PC and
927         MIPS_LINUX_JB_ELEMENT_SIZE.
928         * mips-linux-tdep.c (supply_gregset, fill_gregset): Use alloca
929         for MAX_REGISTER_RAW_SIZE arrays.
930         (mips_linux_get_longjmp_target): Use MIPS_LINUX_JB_PC and
931         MIPS_LINUX_JB_ELEMENT_SIZE.
932
933 2002-08-19  Pierre Muller  <muller@ics.u-strasbg.fr>
934
935         * i387-tdep.c (i387_print_float_info): Fix typo in comment.
936
937 2002-08-19  Aidan Skinner <aidan@velvet.net>
938
939         * Makefile.in (SFILES): Add ada-exp.y ada-lang.c ada-typeprint.c
940         ada-valprint.c ada-tasks.c.
941         (YYFILES): Add ada-exp.y.
942         (ada-exp.tab.c ada-lex.c ada-lang.o): New target.
943         (ada-tasks.o ada-typeprint.o ada-valprint.o): New target.
944         (ada-exp.tab.o): New target.
945                 
946 2002-08-18  Andrew Cagney  <ac131313@redhat.com>
947
948         * regcache.c (regcache_xfer_part): New function.
949         (regcache_raw_read_part): New function.
950         (regcache_raw_write_part): New function.
951         (regcache_cooked_read_part): New function.
952         (regcache_cooked_write_part): New function.
953         * regcache.h (regcache_raw_read_part): Declare.
954         (regcache_raw_write_part): Declare.
955         (regcache_cooked_read_part): Declare.
956         (regcache_cooked_write_part): Declare.
957
958 2002-08-18  Daniel Jacobowitz  <drow@mvista.com>
959
960         * remote.c (remote_open_1): Add async_p.
961         (remote_async_open_1): Delete.
962         (open_remote_target): Delete.
963         (remote_open, extended_remote_open): Update calls to remote_open_1.
964         (remote_async_open, extended_remote_async_open): Call
965         remote_open_1 instead of remote_async_open_1.
966
967 2002-08-19  Mark Kettenis  <kettenis@gnu.org>
968
969         * blockframe.c: Fix a few coding standard violations.
970
971 2002-08-19  Mark Kettenis  <kettenis@gnu.org>
972
973         * config/i386/nm-i386sco5.h (START_INFERIOR_TRAPS_EXPECTED): Moved
974         here from ...
975         * config/i386/tm-i386sco5.h: ... here.  File removed.
976         * config/i386/i386sco5.mt (TM_FILE): Set to tm-i386v4.h.
977
978         * config/i386/nm-i386v.h (START_INFERIOR_TRAPS_EXPECTED): New define.
979         * config/i386/i386aout.mt (TDEPFILES): Add i387-tdep.o
980         (TM_FILE): Set to tm-i386.h.
981         * config/i386/i386v.mt (TM_FILE): Set to tm-i386.h.
982         * config/i386/tm-i386v.h: Remove file.
983         * config/i386/tm-ptx.h [!SEQUENT_PTX4]: Include "i386/tm-i386.h"
984         instead of "i386/tm-i386v.h".
985         (START_INFERIOR_TRAPS_EXPECTED): Remove define.
986         * config/i386/tm-symmetry: Include "i386/tm-i386.h" instead of
987         "i386/tm-i386v.h".
988         (START_INFERIOR_TRAPS_EXPECTED): Remove define.
989         * config/i386/tm-vxworks.h: Include "i386/tm-i386.h" instead of
990         "i386/tm-i386.h".
991
992 2002-08-18  Mark Kettenis  <kettenis@gnu.org>
993
994         * config/i386/nm-i386v.h: Add protection against
995         multiple-inclusion.
996         (i386_register_u_addr): Remove prototype.
997         (register_u_addr): New prototype.
998         (REGISTER_U_ADDR): Redefine accordingly.
999         * i386v-nat.c: Improve several comments.
1000         (i386_register_u_addr): Change signature and rename to
1001         register_u_addr.  Use FP_REGNUM_P.  Rewrite slightly to get rid of
1002         ubase variable.
1003
1004 2002-08-18  Andrew Cagney  <ac131313@redhat.com>
1005
1006         * config/mips/tm-mips.h (STORE_RETURN_VALUE): Delete macro.
1007         (DEPRECATED_EXTRACT_RETURN_VALUE): Delete macro.
1008         * mips-tdep.c (mips_gdbarch_init): Set store_return_value and
1009         deprecated_extract_return_value.
1010         (mips_o32_push_arguments, mips_o64_push_arguments): Clone and
1011         rename mips_o32o64_push_arguments.
1012         (mips_gdbarch_init): Update.
1013         (mips_extract_return_value): Delete.
1014         (mips_o32_extract_return_value): Clone mips_extract_return_value.
1015         (mips_o64_extract_return_value): Clone mips_extract_return_value.
1016         (mips_eabi_extract_return_value): Clone mips_extract_return_value.
1017         (mips_n32n64_extract_return_value): Clone
1018         mips_extract_return_value.
1019         (mips_store_return_value): Delete.
1020         (mips_o32_store_return_value): Clone mips_store_return_value.
1021         (mips_o64_store_return_value): Clone mips_store_return_value.
1022         (mips_eabi_store_return_value): Clone mips_store_return_value.
1023         (mips_n32n64_store_return_value): Clone mips_store_return_value.
1024
1025 2002-08-18  Aidan Skinner <aidan@velvet.net>
1026
1027         * ada-lang.c: Use gdb_string.h instead of <string.h>.
1028         * ada-typeprint.c: Use gdb_string.h instead of <string.h>.
1029                 
1030 2002-08-18  Aidan Skinner <aidan@velvet.net>
1031
1032         * ada-lang.c: Run through gdb_indent.sh.
1033         * ada-lang.h: Run through gdb_indent.sh.
1034         * ada-tasks.c: Run through gdb_indent.sh.
1035         * ada-typeprint.c: Run through gdb_indent.sh.
1036         * ada-valprint.c: Run through gdb_indent.sh.
1037
1038 2002-08-18  Andrew Cagney  <ac131313@redhat.com>
1039
1040         * osabi.c (gdbarch_init_osabi): Don't complain about an unknown
1041         ABI.
1042
1043 2002-08-18  Mark Kettenis  <kettenis@gnu.org>
1044
1045         * i386b-nat.c [FETCH_INFERIOR_REGISTERS]: Remove dead code.
1046
1047         * config/i386/nm-i386bsd.h (FLOAT_INFO): Remove redundant #undef.
1048         * i386b-nat.c [FLOAT_INFO]: Remove dead code.
1049
1050         * i386-tdep.c (i386_do_pop_frame, i386_store_return_value): Call
1051         write_register_gen instead of write_register_bytes.
1052
1053         * NEWS: Mention that the i[3456]-*mach3*, i[3456]-*-mach* and
1054         i[3456]-*-osf1mk* configurations have been made obsolete.
1055         * configure.host: Make i[3456]86-*-mach3*, i[3456]86-*mach* and
1056         i[3456]86-*-osf1mk* hosts obsolete.
1057         * confighure.tgt: Make i[3456]86-*-mach3*, i[3456]86-*-osf1mk*
1058         targets obsolete.
1059         * config/i386/i386mach.mh, config/i386/nm-i386mach.h,
1060         config/i386/xm-i386mach.h, config/i386/i386m3.mh,
1061         config/i386/i386m3.mt, config/i386/nm-m3.h,
1062         config/i386/tm-i386m3.h, config/i386/xm-i386m3.h,
1063         config/i386/i386mk.mh, config/i386/i386mk.mt,
1064         config/i386/tm-i386mk.h, config/i386/xm-i386mk.h: Make files
1065         obsolete.
1066         * i386mach-nat.c, i386m3-nat.c: Make files obsolete.
1067         * Makefile.in (ALLDEPFILES): Remove i386mach.c i386m3-nat.c
1068         (i386mach-nat.o, i386m3-nat.o):Make targets obsolete.
1069
1070 2002-08-18  Andrew Cagney  <ac131313@redhat.com>
1071
1072         * config/pa/tm-hppa.h (hppa_store_return_value): Declare.
1073         (hppa_value_returned_from_stack): Declare.
1074         (hppa_extract_return_value): Declare.
1075         * config/pa/hppa.mt: New file.
1076         * configure.tgt: Recognize hppa*-*-*.
1077         * MAINTAINERS: Change HPPA target to hppa-elf.  Still broken.
1078
1079 2002-08-18  Mark Kettenis  <kettenis@gnu.org>
1080
1081         * i386-sol2-tdep.c (_initialize_i386_sol2_tdep): Fix typo in
1082         comment.
1083
1084 2002-08-17  Mark Kettenis  <kettenis@gnu.org>
1085
1086         * top.c (gdb_rl_operate_and_get_next): Make sure
1087         operate-and-get-next functions correctly even when the history
1088         list is completely filled.
1089
1090 2002-08-18  Andrew Cagney  <ac131313@redhat.com>
1091
1092         * MAINTAINERS (Target Instruction Set Architectures): Rename
1093         Target/Architectures.  Replace vax-dec-vms5.5 with vax-netbsd.
1094         Replace s390-linux with s390-linux-gnu.  Remove i386-aout,
1095         mcore-pe, mips64-elf, sparc64-elf.  Remove i586-pc-msdosdjgpp,
1096         already listed under Host/Native.
1097
1098         * configure.tgt: Combine i[3456]86-*-coff*, i[3456]86-*-elf*,
1099         i[3456]86-*-pe*, and i[3456]86-*-aout* into i[3456]86-*-*.  Add
1100         mips*-*-*.
1101
1102 2002-08-17  Andrew Cagney  <ac131313@redhat.com>
1103
1104         * config/ia64/ia64.mt: New file.
1105         * config/alpha/alpha.mt: New file.
1106         * MAINTAINERS: Change the alpha target to alpha-elf and IA-64 to
1107         ia64-linux-gnu.  Mention that ia64-elf is broken.
1108         * configure.tgt: Add alpha*-*-* and ia64*-*-* patterns.
1109
1110 2002-08-17  Mark Kettenis  <kettenis@elgar.kettenis.dyndns.org>
1111
1112         * i386-tdep.c (i386_svr4_init_abi, i386_nw_init_abi): Use
1113         generic_func_frame_valid instead of func_frame_valid.
1114
1115 2002-08-16  Joel Brobecker  <brobecker@gnat.com>
1116
1117         * alpha-osf1-tdep.c (alpha_osf1_init_abi): Unfortunately,
1118         procfs appears to be broken when debugging on multi-processor
1119         machines. So enable software single stepping in order to avoid
1120         using the procfs interface to do next/step operations, using
1121         internal breakpoints instead.
1122
1123         * infrun.c (handle_inferior_event): Readjust the stop_pc by
1124         DECR_PC_AFTER_BREAK when hitting a single step breakpoint, to
1125         make this pc address equal to the value it would have if the
1126         system stepping capability was used. Also set a new flag used
1127         to ensure that we don't readjust the PC one more time later.
1128
1129         * breakpoint.c (bpstat_stop_status): Do not adjust the PC
1130         address by DECR_PC_AFTER_BREAK when software single step is
1131         in use for this architecture, as this has already been taken
1132         care of in handle_inferior_event().
1133
1134 2002-08-16  Joel Brobecker  <brobecker@gnat.com>
1135
1136         * infrun.c (handle_inferior_event): Minor reformatting, to make
1137         a rather long condition expression easier to read.
1138
1139 2002-08-16  Andrew Cagney  <ac131313@redhat.com>
1140
1141         * Makefile.in (gdbtk.o): Move to end of file.
1142         (gdbtk-bp.o, gdbtk-cmds.o): Ditto.
1143         (gdbtk-hooks.o, gdbtk-register.o): Ditto.
1144         (gdbtk-stack.o, gdbtk-varobj.o): Ditto.
1145         (gdbtk-wrapper.o, gdbres.o): Ditto.
1146
1147 2002-08-16  Andrew Cagney  <ac131313@redhat.com>
1148
1149         * Makefile.in (copying.o): Separate out compile rule.
1150         (hpux-thread.o, procfs.o, signals.o): Ditto.
1151         (v850ice.o, z8k-tdep.o): Ditto.
1152         (tui-file.o): Move to TUI section.
1153         (xdr_ptrace.o, xdr_rdb.o, xdr_ld.o): Move to separate section.
1154         (nindy.o, Onindy.o, ttyflush.o): Move to separate section.
1155
1156 2002-08-16  Joel Brobecker  <brobecker@gnat.com>
1157
1158         * i386-tdep.c (i386_pe_skip_trampoline_code): renamed from
1159         skip_trampoline_code, for better namespace-proofing.   
1160
1161         * i386-tdep.h (i386_pe_skip_trampoline_code): Add declaration.
1162
1163 2002-08-16  Joel Brobecker  <brobecker@gnat.com>
1164
1165         * config/i386/tm-cygwin.h: Remove some "#if 0"'ed macros.
1166
1167 2002-08-16  Joel Brobecker  <brobecker@gnat.com>
1168
1169         * infrun.c (handle_inferior_event): When receiving a SIGTRAP
1170         signal, check whether we hit a breakpoint before checking for a
1171         single step breakpoint. Otherwise, GDB fails to notice that a
1172         breakpoint has been hit when stepping onto a breakpoint.
1173
1174 2002-08-16  Keith Seitz  <keiths@redhat.com>
1175
1176         * gdb-events.sh (clear_gdb_event_hooks): New function.
1177         * gdb-events.c: Regenerate.
1178         * gdb-events.h: Regenerate.
1179
1180 2002-08-16  Andrew Cagney  <ac131313@redhat.com>
1181
1182         * breakpoint.c (bpstat_stop_status): Rename not_a_breakpoint to
1183         not_a_sw_breakpoint.
1184         * breakpoint.h (bpstat_stop_status): Add parameter names.
1185
1186 2002-08-16  Grace Sainsbury  <graces@redhat.com>
1187
1188         * remote.c (remote_insert_hw_breakpoint)
1189         (remote_remove_hw_breakpoint): Fix calculation of length field
1190         for Z-packet.
1191
1192 2002-08-15  Michael Snyder  <msnyder@redhat.com>
1193
1194         * irix5-nat.c (supply_gregset): Allocate plenty-big buffer
1195         (32 bytes) instead of using MAX_REGISTER_RAW_SIZE.
1196         (supply_fpregset): Ditto.
1197         
1198         * config/mips/tm-mips.h (REGISTER_CONVERT_TO_VIRTUAL, 
1199         REGISTER_CONVERT_TO_RAW, REGISTER_CONVERTIBLE, 
1200         MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE): Delete.
1201         (TARGET_READ_SP): Delete.
1202         (DO_REGISTERS_INFO): Delete.
1203         (FUNCTION_START_OFFSET, IN_SIGTRAMP, REGISTER_VIRTUAL_SIZE):
1204         Delete.
1205         (REGISTER_CONVERT_FROM_TYPE, REGISTER_CONVERT_TO_TYPE): Convert
1206         from macros to functions.
1207
1208         * mips-tdep.c (mips_gdbarch_init): Set the above in the gdbarch.
1209         (mips_register_convertible, mips_register_convert_to_virtual,
1210         mips_register_convert_to_raw): Make static.
1211         (mips_read_sp): New function.
1212         (mips_gdbarch_init): Set gdbarch read_sp to mips_read_sp.
1213         (mips_do_registers_info): Make static.
1214         (mips_gdbarch_init): Insert mips_do_registers_info into gdbarch.
1215         (in_sigtramp): Make static, rename to mips_pc_in_sigtramp.
1216         (mips_register_convert_from_type, mips_register_convert_to_type):
1217         New functions.
1218         (mips_gdbarch_init): Set up function_start_offset, 
1219         register_virtual_size, pc_in_sigtramp.
1220
1221 2002-08-15  Andrew Cagney  <ac131313@redhat.com>
1222
1223         * infcmd.c (vector_info): New function.
1224         (_initialize_infcmd): Add command "info vector".
1225         (print_vector_info): New function.
1226
1227         * gdbarch.sh (PRINT_VECTOR_INFO): New method
1228         * gdbarch.h, gdbarch.c: Regenerate.
1229
1230 2002-08-15  Andrew Cagney  <ac131313@redhat.com>
1231
1232         * infcmd.c (do_registers_info): Rename parameter ``fpregs'' to
1233         ``print_all''.  Only print vector registers when ``print_all''.
1234
1235 2002-08-15  Andrew Cagney  <ac131313@redhat.com>
1236
1237         * i387-tdep.h (i387_print_float_info): Add `args' parameter.
1238         * i387-tdep.c (i387_print_float_info): Add `args' parameter.
1239
1240         * gdbarch.sh (PRINT_FLOAT_INFO): Change to a predicate method.
1241         Add `args' parameter.
1242         * gdbarch.h, gdbarch.c: Regenerate.
1243         
1244         * arm-tdep.c (arm_print_float_info): Add the parameter `args'.
1245         
1246         * infcmd.c (float_info): Call print_float_info.
1247         (print_float_info): New function.  By default, print the
1248         floating-point registers.
1249
1250         * arch-utils.h (default_print_float_info): Delete declaration.
1251         * arch-utils.c (default_print_float_info): Delete function.
1252         
1253 2002-08-16  Mark Kettenis  <kettenis@gnu.org>
1254
1255         * config/i386/nm-i386v.h (FLOAT_INFO): Remove already commented
1256         out define.
1257
1258         * i387-tdep.c (i387_print_float_info): Add comment about ignoring
1259         FRAME.
1260
1261         * NEWS: Mention that the i[3456]-*-aix target has been made obsolete.
1262         * configure.host: Make i[3456]86-*-aix host obsolete.
1263         * configure.tgt: Make i[3456]86-*-aix target obsolete.
1264         * config/i386/i386aix.mh, config/i386/i386aix.mt,
1265         config/i386/nm-i386aix.h, condig/i386/tm-i386aix.h,
1266         config/i386/xm-i386aix.h: Make files obsolete.
1267         * i386aix-nat.c: Make file obsolete.
1268         * Makefile.in (ALLDEPFILES): Remove i386aix-nat.c.
1269         (i386aix-nat.o): Make target obsolete.
1270
1271         * config/i386/nm-gnu.h: Removed.
1272         * config/i386/nm-i386gnu.h: New file.
1273         (THREAD_STATE_FLAVOR, THREAD_STATE_SIZE,
1274         THREAD_STATE_SET_TRACED, THREAD_STATE_CLEAR_STATE, ATTACH_DETACH):
1275         Moved here from ...
1276         * config/i386/tm-i386gnu.h: ... here.  Removed.
1277         * config/i386/xm-i386gnu.h: Removed.
1278         * config/i386/i386gnu.mh (XM_FILE): Set to xm-i386.h.
1279         (NAT_FILE): Set to nm-i386gnu.h.
1280         * config/i386/i386gnu.mt (TDEPFILES): Add i386gnu-tdep.o.
1281         * i386-tdep.c: New file.
1282         * Makefile.in (ALLDEPFILES): Add i386gnu-nat.c and i386gnu-tdep.c.
1283         (i386gnu-tdep.o): Specify dependencies.
1284
1285 2002-08-15  Mark Kettenis  <kettenis@gnu.org>
1286
1287         * config/i386/tm-i386sco5.h: Include "i386/tm-i386v4.h" instead of
1288         "i386/tm-i386.h", "i386/tm-i386v.h" and "config/tm-sysv.h".
1289         Adjust a few comments to reflect reality a bit closer.
1290         (KERNEL_U_SIZE, TARGET_HAS_HARDWARE_WATCHPOINTS,
1291         TARGET_CAN_USE_HARDWARE_WATCHPOINT, HAVE_CONTINUEABLE_WATCHPOINT,
1292         HAVE_STEPPABLE_WATCHPOINT, STOPPED_BY_WATCHPOINT,
1293         target_insert_watchpoint, target_remove_watchpoint):
1294         Move defines to ...
1295         * config/i386/nm-i386sco5.h: ... here.
1296         (kernel_u_size): Add prototype.  Improve a few comments and add
1297         protection against multiple inclusion.
1298         
1299         * config/i386/nm-i386sco.h (FLOAT_INFO): Remove already commented
1300         out define.
1301
1302         * uw-thread.c (SP_ARG0): Define if not already defined.
1303         * config/i386/tm-i386.h (SO_ARG0): Remove define.
1304
1305         * config/i386/tm-i386v4.h (HAVE_I387_REGS): Remove define.
1306
1307         * config/i386/tm-i386.h: Don't include "regcache.h".
1308
1309         * i387-tdep.h (i387_print_float_info): New prototype.
1310         * i387-tdep.c (print_i387_value, print_i387_ext,
1311         print_i387_status_word, print_i387_control_word): Add `struct
1312         ui_file *' argument and use it for output.
1313         (i387_print_float_info): Renamed from i387_float_info.  Add
1314         `struct gdbarch *' and `struct ui_file *' arguments and use the
1315         latter for output.
1316         * i386-tdep.c: Include "i387-tdep.h".
1317         (i386_gdbarch_init): Set print_float_info.
1318         * config/i386/tm-i386.h (i387_float_info): Remove prototype.
1319         (FLOAT_INFO): Remove define.
1320
1321 2002-08-13  Michael Snyder  <msnyder@redhat.com>
1322
1323         * mips-tdep.c (mips_push_arguments): Rename to
1324         mips_eabi_push_arguments, and tune for EABI.
1325         (MIPS_REGS_HAVE_HOME_P): Delete.
1326         (struct gdbarch_tdep): Remove mips_regs_have_home_p field.
1327         (mips_gdbarch_init): Set gdbarch push_arguments for eabi.
1328         Delete references to mips_regs_have_home_p.
1329
1330 2002-08-14  Keith Seitz  <keiths@redhat.com>
1331
1332         * Makefile.in (install-gdbtk): Create insight plugin directory.
1333         Install plugins.tcl file.
1334
1335 2002-08-14  Keith Seitz  <keiths@redhat.com>
1336
1337         * configure.in: Move SUBDIRS to near top of the file so that
1338         --enable options may add things to it.
1339         If gdbtk is enabled, add gdbtk directory to SUBDIRS and configdirs.
1340         * configure: Regenerate.
1341
1342 2002-08-13  Michael Snyder  <msnyder@redhat.com>
1343
1344         * mips-tdep.c (mips_o32o64_push_arguments):  New function, 
1345         cloned from mips_push_arguments, tuned for o32/o64 ABI.
1346         (mips_gdbarch_init): Set gdbarch_push_arguments to new func.
1347
1348 2002-08-13  Andrew Cagney  <ac131313@redhat.com>
1349
1350         * vax-tdep.c (vax_get_saved_register): Delete function.
1351         (vax_gdbarch_init): Update.
1352         * ns32k-tdep.c (ns32k_get_saved_register): Delete function.
1353         (ns32k_gdbarch_init): Update.
1354         * alpha-tdep.c (alpha_get_saved_register): Delete function.
1355         (alpha_gdbarch_init): Update.
1356
1357 2002-08-13  Andrew Cagney  <cagney@redhat.com>
1358
1359         * regcache.c (init_regcache_descr): Overallocate the
1360         raw_register_valid_p array including space for NUM_PSEUDO_REGS.
1361         (registers_changed): Replace NUM_REGS+NUM_PSEUDO_REGS with
1362         nr_raw_registers.
1363         (set_register_cached): Add range checking assertions.  Use
1364         current_regcache.
1365
1366 2002-08-13  Mark Kettenis  <kettenis@gnu.org>
1367
1368         * i386-tdep.c (i386_stab_reg_to_regnum): Return correct register
1369         numbers for MMX registers.
1370
1371 2002-08-13  Andrew Cagney  <cagney@redhat.com>
1372
1373         * i386-tdep.c (i386_gdbarch_init): Use
1374         generic_unwind_get_saved_register.
1375
1376 2002-08-13  Kevin Buettner  <kevinb@redhat.com>
1377
1378         * procfs.c (procfs_can_use_hw_breakpoint): New function.
1379         (init_procfs_ops): Define ``to_can_use_hw_breakpoint'' for procfs
1380         target vector.
1381         * config/mips/nm-irix5.h (TARGET_CAN_USE_HARDWARE_WATCHPOINT):
1382         Delete.  Add comment regarding this now-deleted target method.
1383
1384 2002-08-13  Stephane Carrez  <stcarrez@nerim.fr>
1385
1386         * m68hc11-tdep.c (M68HC12_NUM_PSEUDO_REGS): New define.
1387         (M68HC12_HARD_PC_REGNUM): Define specific PC for 68HC12 (pseudo reg).
1388         (m68hc11_pseudo_register_read): Compute the 68HC12 PC using the
1389         real PC and the page number (if it's within the memory bank window).
1390         (m68hc11_pseudo_register_write): Likewise when saving.
1391         (m68hc11_register_name): Name the virtual pc 'pc' and the real one ppc.
1392         (m68hc11_register_virtual_type): Return uint32 for virtual pc.
1393         (m68hc11_register_raw_size): And use 32-bit for it.
1394         (m68hc11_gdbarch_init): Use 32-bit address for 68HC12 if the
1395         16K memory bank is used by the prog; also use the virtual pc.
1396
1397 2002-08-13  Stephane Carrez  <stcarrez@nerim.fr>
1398
1399         * m68hc11-tdep.c (m68hc11_elf_make_msymbol_special): New function.
1400         (m68hc11_gdbarch_init): Install it in gdbarch.
1401         (MSYMBOL_SET_RTC, MSYMBOL_SET_RTI): New to set symbol specific flags.
1402         (MSYMBOL_IS_RTC, MSYMBOL_IS_RTI): New to test these flags.
1403         (MSYMBOL_SIZE): New for documentation.
1404         (insn_return_kind): Enum to specify how a function returns.
1405         (frame_extra_info): Cleanup and record the return mode.
1406         (gdbarch_tdep, USE_PAGE_REGISTER): New to control the use of page 
1407         register in address computation.
1408         (m68hc11_get_return_insn): New to obtain the return instruction used
1409         by the function.
1410         (m68hc11_frame_init_saved_regs): Take into account the return
1411         instruction used by the function for far and interrupt functions.
1412         (m68hc11_init_extra_frame_info): Take into account page register.
1413         (m68hc11_frame_args_address): Adjust according to the return mode.
1414         (show_regs): Print page register only when it's used.
1415
1416 2002-08-13  Stephane Carrez  <stcarrez@nerim.fr>
1417
1418         * m68hc11-tdep.c (HARD_PAGE_REGNUM): Define for 68HC12 page register.
1419         (M68HC11_LAST_HARD_REG, m68hc11_register_names): Update.
1420         (m68hc11_register_virtual_type): Return a 8-bit type for 8-bit
1421         registers.
1422         (m68hc11_register_raw_size): Likewise.
1423
1424 2002-08-13  Andrew Cagney  <cagney@redhat.com>
1425
1426         * i386-tdep.c (i386_register_name): Handle mmx registers.
1427         (mmx_regnum_p): New function.
1428         (i386_mmx_names): New array.
1429         (mmx_num_regs): New variable.
1430         (i386_pseudo_register_read): New function.
1431         (i386_pseudo_register_write): New function.
1432         (mmx_regnum_to_fp_regnum): New function. Code from Fernando Nasser.
1433
1434         * regcache.c (regcache_raw_read_unsigned): New function.
1435         (regcache_raw_read_signed): New function.
1436         * regcache.h (regcache_raw_read_unsigned): Declare.
1437         (regcache_raw_read_signed): Declare.
1438
1439 2002-08-13  Andrew Cagney  <cagney@redhat.com>
1440
1441         * regcache.c (regcache_raw_read_as_address): Delete function.
1442         (regcache_cooked_read_signed): New function.
1443         (regcache_cooked_read_unsigned): New function.
1444         * regcache.h (regcache_cooked_read_signed): Declare.
1445         (regcache_cooked_read_unsigned): Declare.
1446         (regcache_raw_read_as_address): Delete declaration.
1447
1448         * blockframe.c (generic_read_register_dummy): Use
1449         regcache_cooked_read_unsigned.
1450         * i386-tdep.c (i386_extract_struct_value_address): Use
1451         regcache_cooked_read_unsigned.
1452
1453 2002-08-13  Stephane Carrez  <stcarrez@nerim.fr>
1454
1455         * m68hc11-tdep.c (m68hc11_gdbarch_init): Set int, double and long
1456         double sizes according to ELF ABI flags.
1457         (gdbarch_tdep): Record elf_flags.
1458
1459 2002-08-13  Stephane Carrez  <stcarrez@nerim.fr>
1460
1461         * m68hc11-tdep.c (M6812_OP_PSHX, M6812_OP_PSHY): New defines.
1462         (m6812_prolog): They can appear in 68HC12 function prologue.
1463         (m68hc11_frame_chain): Cleanup.
1464
1465 2002-08-12  Andrew Cagney  <cagney@redhat.com>
1466
1467         * i386-tdep.h (i386_register_byte, i386_register_raw_size): Delete
1468         declarations.
1469         * i386-linux-tdep.c (i386_linux_register_byte): Delete function.
1470         (i386_linux_register_raw_size): Delete function.
1471         (i386_linux_init_abi): Update.
1472         * i386-tdep.c (i386_register_raw_size): Delete function.
1473         (i386_register_byte): Delete function.
1474         (i386_gdbarch_init): Update.
1475         (i386_register_size): Delete array.
1476         (i386_register_offset): Delete array.
1477
1478         * config/i386/tm-symmetry.h (REGISTER_BYTE): Delete macro.
1479         (REGISTER_RAW_SIZE): Delete macro.
1480         * config/i386/tm-ptx.h (REGISTER_RAW_SIZE): Delete macro.
1481         (REGISTER_BYTE): Delete macro.
1482
1483 2002-08-11  Aidan Skinner <aidan@velvet.net>
1484
1485         * ada-lang.c (ada_lookup_partial_symbol)
1486         (to_fixed_variant_branch_type) (find_line_in_linetable): Fix
1487         prototype names so that grep ^func works properly.
1488
1489         * ada-lang.c (ada_array_element_type)
1490         (ada_lookup_partial_symbol): Fix typos in parameter list.
1491
1492         * ada-valprint.c (val_print_packed_array_elements) (ada_val_print_1):
1493         Fix prototype names so that grep ^func works properly.
1494         
1495 2002-08-10  Andrew Cagney  <cagney@redhat.com>
1496             Elena Zannoni  <ezannoni@redhat.com>
1497             Martin M. Hunt  <hunt@redhat.com>
1498
1499         * gdbtypes.c (build_builtin_type_vec128): Set the vector bit.
1500         (build_builtin_type_vec128i): Set the vector bit.
1501         * gdbtypes.h (builtin_type_vec64, builtin_type_vec64i): Declare.
1502         * gdbtypes.c (builtin_type_vec64, builtin_type_vec64i): Define.
1503         (build_builtin_type_vec64): New function.
1504         (build_builtin_type_vec64i): New function.
1505         (build_gdbtypes): Initialize builtin_type_vec64 and
1506         builtin_type_vec64i.
1507
1508 2002-08-09  Andrew Cagney  <cagney@redhat.com>
1509
1510         * regcache.c (regcache_dump): Compare the register offset
1511         with REGISTER_BYTE.
1512         * arch-utils.c (generic_register_byte): New function.
1513         * arch-utils.h (generic_register_byte): Declare.
1514         * gdbarch.sh (REGISTER_BYTE): Default to generic_register_byte.
1515         * gdbarch.h, gdbarch.c: Regenerate.
1516
1517 2002-08-09  Andrew Cagney  <cagney@redhat.com>
1518
1519         * regcache.c: Include "gdbcmd.h"
1520         (_initialize_regcache): Add commands "maintenance print
1521         registers", "maintenance print raw-registers" and "maintenance
1522         print cooked-registers".
1523         (enum regcache_dump_what): Define.
1524         (dump_endian_bytes): New function.
1525         (regcache_dump): New function.
1526         (regcache_print): New function.
1527         (maintenance_print_registers): New function.
1528         (maintenance_print_raw_registers): New function.
1529         (maintenance_print_cooked_registers): New function.
1530         * Makefile.in (regcache.o): Update dependencies.
1531
1532 2002-08-09  Michael Snyder  <msnyder@redhat.com>
1533
1534         * mips-tdep.c (ROUND_DOWN, ROUND_UP): Move to global scope.
1535         (mips_push_arguments): Correct some comments.  Use paddr_nz
1536         for printing addresses in debug output.  Replace static
1537         allocation using MAX_REGISTER_RAW_SIZE with alloca.
1538         (mips_n32n64_push_arguments): New function, cloned from
1539         mips_push_arguments and tuned for the n32/n64 ABI.
1540         (mips_push_register): Buffer needs dynamic allocation.
1541         (mips_print_register): Ditto.
1542         (do_gp_register_row): Ditto.
1543         (mips_store_return_value): Ditto.
1544         (mips_gdbarch_init): Set gdbarch_push_arguments per ABI.
1545
1546 2002-08-09  Don Howard  <dhoward@redhat.com>
1547
1548         * memattr.c (mem_info_command): Print special case of upper bound
1549         as max CORE_ADDR + 1.
1550
1551 2002-08-08  Michael Snyder  <msnyder@redhat.com>
1552
1553         * mips-tdep.c (mips_n32n64_use_struct_convention): N32 only 
1554         returns structs by ref if they're too big to fit in two registers.
1555
1556 2002-08-09  Kevin Buettner  <kevinb@redhat.com>
1557
1558         * mips-tdep.c (mips_init_extra_frame_info): Initialize SP_REGNUM's
1559         saved regs value.
1560         (read_next_frame_reg): Call FRAME_INIT_SAVED_REGS instead of
1561         mips_find_saved_regs().
1562         (mips_pop_frame): Likewise.
1563
1564 2002-08-09  Kevin Buettner  <kevinb@redhat.com>
1565
1566         * blockframe.c (frame_saved_regs_register_unwind): Revise
1567         PC_IN_CALL_DUMMY assertion to only apply when generic dummy
1568         frames are in use.
1569
1570 2002-08-09  Grace Sainsbury  <graces@redhat.com>
1571         
1572         * remote.c: (remote_wait, remote_async_wait): Add check for awatch
1573         T-packets; the 'a' is not taken as a register number.
1574         (remote_check_watch_resources, remote_stopped_by_watchpoint)
1575         (remote_stopped_data_address): New functions; add to target
1576         vector.
1577         (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Change
1578         prototypes to match other implementations of this
1579         function. replace integer argument with pointer -- the length
1580         field in the Z-packet is the length of what is pointed to or 1 if
1581         pointer is null. Add to target vector.
1582         (remote_insert_watchpoint, remote_remove_watchpoint): Add to
1583         target vector.
1584
1585         From Mark Salter:
1586         * remote.c (remote_wait): Add support to extract optional
1587         watchpoint information from T-packet. Ignore unrecognized
1588         optional info in T-packet.
1589         (remote_async_wait): Ditto.
1590
1591 2002-08-09  Corinna Vinschen  <vinschen@redhat.com>
1592
1593         * cli/cli-dump.c: Change fopen modes to use binary open modes
1594         as defined in include/fopen-bin.h throughout.
1595
1596 2002-08-08  Michael Snyder  <msnyder@redhat.com>
1597
1598         * mips-tdep.c: Minor whitespace and indentation clean-ups.
1599
1600 2002-08-08  Kevin Buettner  <kevinb@redhat.com>
1601
1602         * doublest.c (store_floating): Avoid floatformat_from_doublest()
1603         assertion failure by returning early after a warning.
1604
1605 2002-08-08  Kevin Buettner  <kevinb@redhat.com>
1606
1607         * mips-tdep.c (mips_find_saved_regs): Make static.
1608         (mips_frame_init_saved_regs): New function.
1609         (mips_gdbarch_init): Setup FRAME_INIT_SAVED_REGS method.
1610         * config/mips/tm-mips.h (FRAME_INIT_SAVED_REGS): Delete macro.
1611         (mips_find_saved_regs): Delete declaration.
1612
1613 2002-08-08  Grace Sainsbury  <graces@redhat.com>
1614
1615         * remote.c (remote_wait, remote_async_wait): Change
1616         thread_num from int to ULONGEST.
1617         (unpack_varlen_hex): Change result parameter from
1618         int * to ULONGEST *.
1619
1620 2002-08-08  Andrew Cagney  <ac131313@redhat.com>
1621
1622         * configure.tgt: Replace powerpc-*-sysv*, powerpc-*-elf*,
1623         powerpcle-*-eabi*, powerpcle-*-sysv* and powerpcle-*-elf* with
1624         powerpc*-*-*.
1625         * MAINTAINERS: Remove redundant rs6000-ibm-aix4.1 target.
1626
1627 2002-08-08  Andrew Cagney  <cagney@redhat.com>
1628
1629         * gcore.c (override_derive_stack_segment): Delete variable.
1630         (preempt_derive_stack_segment): Delete function.
1631         (derive_stack_segment): Delete function.
1632         (default_derive_stack_segment): Renamed to derive_stack_segment.
1633         (override_derive_heap_segment): Delete variable.
1634         (preempt_derive_heap_segment): Delete function.
1635         (derive_heap_segment): Delete function.
1636         (default_derive_heap_segment): Rename to derive_heap_segment.
1637
1638 2002-08-06  Michael Snyder  <msnyder@redhat.com>
1639
1640         * config/mips/tm-mips.h: Remove #define USE_STRUCT_CONVENTION.
1641         * mips-tdep.c (mips_EABI_use_struct_convention, 
1642         mips_OABI_use_struct_convention, mips_NABI_use_struct_convention):
1643         New functions.  (mips_use_struct_convention): Delete.
1644         (mips_gdbarch_init): set use_gdbarch_convention.
1645
1646 2002-08-06  Michael Snyder  <msnyder@redhat.com>
1647
1648         *  mips-tdep.c: gdbarch-ify reg_struct_has_addr.
1649         (mips_eabi_reg_struct_has_addr, mips_n32n64_reg_struct_has_addr, 
1650         mips_o32_reg_struct_has_addr): New functions.
1651         (mips_gdbarch_init): Set gdbarch reg_struct_has_addr.
1652
1653 2002-08-07  Andrew Cagney  <ac131313@redhat.com>
1654
1655         * regcache.c (pseudo_register): Delete function.
1656         (fetch_register): Delete function.
1657         (store_register): Delete function.
1658         (regcache_raw_read, legacy_read_register_gen): Use
1659         target_fetch_registers instead of fetch_register.
1660         (legacy_write_register_gen, regcache_raw_write): Use
1661         target_store_register instead of store_register.
1662         (write_register_bytes): Ditto.
1663
1664         * gdbarch.sh (FETCH_PSEUDO_REGISTER): Delete.
1665         (STORE_PSEUDO_REGISTER): Delete.
1666         * gdbarch.h, gdbarch.c: Regenerate.
1667
1668 2002-08-06  Corinna Vinschen  <vinschen@redhat.com>
1669
1670         * cli/cli-dump.c (add_dump_command): Explicitely use "b" flag to
1671         write dump file binary.
1672
1673 2002-08-05  Michael Snyder  <msnyder@redhat.com>
1674
1675         *  mips-tdep.c (mips_find_saved_regs): Adjust stack according
1676         to MIPS_SAVED_REGSIZE, not GDB_TARGET_IS_MIPS64.  Enhance comment.
1677         (mips_gdbarch_init): Set N32 target to be mips64.
1678
1679 2002-08-06  Kevin Buettner  <kevinb@redhat.com>
1680
1681         * frame.c (find_saved_register): Break out of loop once saved
1682         register address is found.  Don't mention sparc in loop comment
1683         anymore.
1684
1685 2002-08-06  Kevin Buettner  <kevinb@redhat.com>
1686
1687         * mips-tdep.c (mips_gdbarch_init): For the N32 ABI, set
1688         mips_default_saved_regsize to 8.
1689
1690 2002-08-06  Andrew Cagney  <ac131313@redhat.com>
1691
1692         * gcore.c: Do not include <sys/procfs.h>.
1693         * Makefile.in (gcore.o): Update dependencies.
1694
1695 2002-08-06  Andrew Cagney  <cagney@redhat.com>
1696
1697         * configure.tgt: Make arc-*-* obsolete.
1698         * NEWS: Mention that arc-*-* has been identifed as obsolete.
1699         * MAINTAINERS: Make arc-elf obsolete.
1700         * arc-tdep.c: Make file obsolete.
1701         * config/arc/arc.mt: Ditto.
1702         * config/arc/tm-arc.h: Ditto.
1703
1704 2002-08-05  Theodore A. Roth  <troth@verinet.com>
1705
1706         * avr-tdep.c (avr_skip_prologue): Fix to return the correct pc.
1707
1708 2002-08-05  Andrew Cagney  <ac131313@redhat.com>
1709
1710         * mcore-tdep.c (mcore_gdbarch_init): Use
1711         generic_unwind_get_saved_register instead of
1712         generic_get_saved_register.
1713         * v850-tdep.c (v850_gdbarch_init): Ditto.
1714         * frv-tdep.c (frv_gdbarch_init): Ditto.
1715         * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
1716         * s390-tdep.c (s390_gdbarch_init): Ditto.
1717         * d10v-tdep.c (d10v_gdbarch_init): Ditto.
1718         * config/mn10200/tm-mn10200.h (GET_SAVED_REGISTER): Ditto.
1719         * config/h8300/tm-h8300.h (GET_SAVED_REGISTER): Ditto.
1720
1721 2002-08-05  Joel Brobecker  <brobecker@gnat.com>
1722
1723         * objfiles.h: Add missing #include "symfile.h"
1724
1725         * Makefile.in (objfiles_h): Add dependency on symfile.h and dependents.
1726
1727 2002-08-04  Andrew Cagney  <ac131313@redhat.com>
1728
1729         From 2002-08-01 david carlton <carlton@math.stanford.edu>:
1730         * hpread.c (hpread_read_struct_type): Deleted superfluous setting
1731         of FIELD_BITSIZE.
1732
1733 2002-08-04  Daniel Jacobowitz  <drow@mvista.com>
1734
1735         * NEWS: Cleanup and nitpick.
1736
1737 2002-08-03  Andrew Cagney  <ac131313@redhat.com>
1738
1739         * NEWS: Cleanup.  Use *-linux*-gnu*.  Only use `*' for headings.
1740
1741 2002-08-03  Andrew Cagney  <ac131313@redhat.com>
1742
1743         * Makefile.in (gdbtk-bp.o): Update dependencies.
1744         (gdbtk-register.o): Ditto.
1745         (gdbtk-varobj.o): Ditto.
1746
1747 2002-08-03  Andrew Cagney  <cagney@redhat.com>
1748
1749         * m68hc11-tdep.c (m68hc11_pseudo_register_read): Replace
1750         m68hc11_fetch_pseudo_register.
1751         (m68hc11_pseudo_register_write): Replace
1752         m68hc11_store_pseudo_register.
1753         (m68hc11_gdbarch_init): Update.
1754
1755 Fri Aug  2 15:53:50 2002  Andrew Cagney  <cagney@redhat.com>
1756
1757         * gdbarch.sh: Include "gdb_string.h".
1758         * gdbarch.c: Regenerate.
1759
1760         * regcache.c: Include "gdb_string.h".
1761         * ax-general.c: Ditto.
1762         * varobj.c: Ditto.
1763         * std-regs.c: Ditto.
1764         * fbsd-proc.c: Ditto.
1765         * thread.c: Ditto.
1766
1767         * Makefile.in (regcache.o): Update dependencies.
1768         (thread.o, gdbarch.o): Ditto.
1769         (ax-general.o, gdbarch.o): Ditto.
1770         (varobj.o, std-regs.o): Ditto.
1771         (fbsd-proc.o): Specify dependencies.
1772
1773 2002-08-02  Andrew Cagney  <cagney@redhat.com>
1774
1775         * regcache.c (regcache_cooked_read): Rename rawnum parameter to
1776         regnum.
1777         (regcache_cooked_write): Ditto.
1778
1779 2002-08-02  Andrew Cagney  <ac131313@redhat.com>
1780
1781         * regcache.c (regcache_cooked_read): New function.
1782         (regcache_cooked_write): New function.
1783         (read_register_gen): Rewrite using regcache_cooked_read.
1784         (write_register_gen): Rewrite using regcache_cooked_write.
1785
1786         * regcache.h (regcache_cooked_read, regcache_cooked_write):
1787         Declare.
1788
1789 2002-08-02  Andrew Cagney  <cagney@redhat.com>
1790
1791         * gdbarch.sh (pseudo_register_read, pseudo_register_write):
1792         Replace the architecture methods register_read and register_write.
1793         * gdbarch.h, gdbarch.c: Regenerate.
1794         * regcache.c (init_regcache_descr): Update.
1795         (read_register_gen): Update.
1796         (write_register_gen): Update.
1797         (supply_register): Update comment.
1798
1799         * sh-tdep.c (sh_gdbarch_init): Update.
1800         (sh_pseudo_register_read, sh64_pseudo_register_read): Add
1801         `regcache' and `gdbarch' parameters.  Make `buffer' a void
1802         pointer.  Update code.
1803         (sh_pseudo_register_write, sh64_pseudo_register_write): Add
1804         `regcache' and `gdbarch' parameters.  Make `buffer' a constant
1805         void pointer.  Update code.
1806         (sh64_register_write): Delete.
1807         (sh4_register_read): Delete.
1808         (sh64_register_read): Delete.
1809         (sh4_register_write): Delete.
1810         (sh_sh4_register_convert_to_raw): Make `from' parameter a constant
1811         void pointer, `to' parameter a void pointer.
1812         (sh_sh64_register_convert_to_raw): Ditto.
1813
1814 2002-08-01  Kevin Buettner  <kevinb@redhat.com>
1815
1816         * mips-tdep.c (mips_register_virtual_type): Use architecture
1817         invariant return values.
1818
1819 2002-08-01  Andrew Cagney  <cagney@redhat.com>
1820
1821         * linux-proc.c: Include "gdb_string.h".
1822         * Makefile.in (linux-proc.o): Update dependency list.
1823
1824 2002-08-01  Kevin Buettner  <kevinb@redhat.com>
1825
1826         * mips-tdep.c (mips_gdbarch_init): Add comments.  Fix typo in
1827         comment.
1828
1829 2002-08-01  Grace Sainsbury  <graces@redhat.com>
1830
1831         * target.h: Add to_insert_hw_breakpoint, to_remove_hw_breakpoint,
1832         to_insert_watchpoint, to_remove_watchpoint,
1833         to_stopped_by_watchpoint, to_stopped_data_address,
1834         to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint to
1835         target vecctor. Define their corresponding macros so they call
1836         them.
1837         
1838         * target.c: Add default and debug versions of for
1839         to_insert_hw_breakpoint, to_remove_hw_breakpoint,
1840         to_insert_watchpoint, to_remove_watchpoint,
1841         to_stopped_by_watchpoint, to_stopped_data_address,
1842         to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint.
1843
1844 2002-08-01  Kevin Buettner  <kevinb@redhat.com>
1845
1846         * mips-tdep.c (mips_register_virtual_type): New function.
1847         (mips_gdbarch_init): Register mips_register_virtual_type()
1848         with gdbarch machinery.
1849         * config/mips/tm-irix6.h (mips/tm-bigmips64.h): Include
1850         this file instead of tm-bigmips.h.
1851         (MIPS_REGSIZE): Delete this macro.
1852         (REGISTER_VIRTUAL_TYPE): Delete macro.  Undef macro so that
1853         multiarch version in mips-tdep.c will be found.
1854
1855 2002-08-01  Andrew Cagney  <cagney@redhat.com>
1856
1857         * NEWS: Menion that CHILL has been made obsolete.
1858
1859         * gdbtypes.c (chill_varying_type): Make chill references obsolete.
1860         * stabsread.c (read_range_type): Ditto.
1861         * gdbtypes.h: Ditto.
1862         * language.c (binop_type_check): Ditto.
1863         (binop_result_type): Ditto.
1864         (integral_type): Ditto.
1865         (character_type): Ditto.
1866         (string_type): Ditto.
1867         (boolean_type): Ditto.
1868         (structured_type): Ditto.
1869         (lang_bool_type): Ditto.
1870         (binop_type_check): Ditto.
1871         * language.h (_LANG_chill): Ditto.
1872         * dwarfread.c (set_cu_language): Ditto.
1873         * dwarfread.c (CHILL_PRODUCER): Ditto.
1874         * dwarfread.c (handle_producer): Ditto.
1875         * expression.h (enum exp_opcode): Ditto.
1876         * eval.c: Ditto for comments.
1877         * typeprint.c (typedef_print) [_LANG_chill]: Ditto.
1878         * expprint.c (print_subexp): Ditto.
1879         (print_subexp): Ditto.
1880         * valops.c (value_cast): Ditto.
1881         (search_struct_field): Ditto.
1882         * value.h (COERCE_VARYING_ARRAY): Ditto.
1883         * symfile.c (init_filename_language_table): Ditto.
1884         (add_psymbol_with_dem_name_to_list): Ditto.
1885         * valarith.c (value_binop): Ditto.
1886         (value_neg): Ditto.
1887         * valops.c (value_slice): Ditto.
1888         * symtab.h (union language_specific): Ditto.
1889         (SYMBOL_INIT_LANGUAGE_SPECIFIC): Ditto.
1890         (SYMBOL_DEMANGLED_NAME): Ditto.
1891         (SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
1892         * defs.h (enum language): Ditto.
1893         * symtab.c (got_symtab): Ditto.
1894         * utils.c (fprintf_symbol_filtered): Ditto.
1895
1896         * ch-typeprint.c: Make file obsolete.
1897         * ch-valprint.c: Make file obsolete.
1898         * ch-lang.h: Make file obsolete.
1899         * ch-exp.c: Make file obsolete.
1900         * ch-lang.c: Make file obsolete.
1901
1902         * Makefile.in (FLAGS_TO_PASS): Do not pass CHILL or CHILLFLAGS or
1903         CHILL_LIB.
1904         (TARGET_FLAGS_TO_PASS): Ditto.
1905         (CHILLFLAGS): Obsolete.
1906         (CHILL): Obsolete.
1907         (CHILL_FOR_TARGET): Obsolete.
1908         (CHILL_LIB): Obsolete.
1909         (SFILES): Remove ch-exp.c, ch-lang.c, ch-typeprint.c and
1910         ch-valprint.c.
1911         (HFILES_NO_SRCDIR): Remove ch-lang.h.
1912         (COMMON_OBS): Remove ch-valprint.o, ch-typeprint.o, ch-exp.o and
1913         ch-lang.o.
1914         (ch-exp.o, ch-lang.o, ch-typeprint.o, ch-valprint.o): Delete
1915         targets.
1916
1917 2002-07-31  Joel Brobecker  <brobecker@gnat.com>
1918
1919         * dwarf2read.c (set_cu_language): Add handler for LANG_Ada95.
1920         This does not change anything at the moment, but will be helpful
1921         later when full Ada support is integrated.
1922
1923 2002-07-31  Kevin Buettner  <kevinb@redhat.com>
1924
1925         * mips-tdep.c (_initialize_mips_tdep): Add "n64" to "set mips abi"
1926         help message.
1927
1928 2002-07-31  Kevin Buettner  <kevinb@redhat.com>
1929
1930         * mips-tdep.c (mips_push_arguments): Fetch gdbarch_tdep struct
1931         and save it in a local variable.  Use variable in later test.
1932
1933 2002-07-31  Kevin Buettner  <kevinb@redhat.com>
1934
1935         * mips-tdep.c (mips_find_abi_section): Add N64 ABI recognition
1936         test.  (Thanks to Daniel Jacobowitz.)
1937         
1938 2002-07-31  Kevin Buettner  <kevinb@redhat.com>
1939
1940         * mips-tdep.c (enum mips_abi): Add MIPS_ABI_N64.
1941         (mips_abi_strings): Add "n64".
1942         (mips_gdbarch_init): Add test for n64 abi.  Add MIPS_ABI_N64 case.
1943
1944 2002-07-31  Kevin Buettner  <kevinb@redhat.com>
1945
1946         * config/mips/tm-irix6.h (MIPS_REGSIZE): Define to be 8.
1947         (REGISTER_VIRTUAL_TYPE): Some registers are now 64 bits wide.
1948
1949 2002-07-31  Kevin Buettner  <kevinb@redhat.com>
1950
1951         * utils.c (host_pointer_to_address, address_to_host_pointer):
1952         Use gdb_assert() instead of explicit call to internal_error().
1953
1954 2002-07-30  Kevin Buettner  <kevinb@redhat.com>
1955
1956         * Makefile.in (rs6000-nat.o): Update dependencies.
1957
1958         From Nicholas Duffek:
1959         * Makefile.in (ALLDEPFILES): Add aix-thread.c.
1960         (aix-thread.o): New rule.
1961         * configure.host (gdb_host): Set to aix432 on AIX 4.3.2+.
1962         * config/powerpc/aix432.mh: New file.
1963
1964 2002-07-30  Daniel Jacobowitz  <drow@mvista.com>
1965
1966         * ppc-linux-tdep.c (ELF_NGREG, ELF_NFPREG, ELF_NVRREG)
1967         (ELF_FPREGSET_SIZE, ELF_GREGSET_SIZE): New enums.
1968         (fetch_core_registers, ppc_linux_supply_gregset)
1969         (ppc_linux_supply_fpregset): New functions.
1970         (ppc_linux_regset_core_fns): New.
1971         (_initialize_ppc_linux_tdep): Call add_core_fns.
1972         * ppc-tdep.h: Add prototypes for ppc_linux_supply_fpregset
1973         and ppc_linux_supply_gregset.
1974         * ppc-linux-nat.c (supply_gregset): Call ppc_linux_supply_gregset.
1975         (supply_fpregset): Call ppc_linux_supply_fpregset.
1976         * config/powerpc/linux.mh (NATDEPFILES): Remove core-regset.o and
1977         corelow.o.
1978         * config/powerpc/linux.mt (TDEPFILES): Add corelow.o.
1979
1980 2002-07-30  Daniel Jacobowitz  <drow@mvista.com>
1981
1982         * symtab.c (lookup_symbol): Demangle before lowercasing.
1983
1984 2002-07-30  Andrew Cagney  <ac131313@redhat.com>
1985
1986         * symtab.h: Replace #include "gdb_obstack.h" with opaque
1987         declaration.
1988         * cli/cli-cmds.c, cli/cli-script.c: Include "gdb_string.h".
1989         * gnu-v3-abi.c, arc-tdep.c, cli/cli-decode.c: Ditto.
1990         * avr-tdep.c, mon960-rom.c, i960-tdep.c: Ditto.
1991         * arch-utils.c, cli/cli-setshow.c: Unconditionally include
1992         "gdb_string.h".
1993         * Makefile.in (cli-script.o, cli-cmds.o): Update dependencies.
1994         (gnu-v3-abi.o, cli-setshow.o, i960-tdep.o): Ditto.
1995         (cli-decode.o, mi-cmd-var.o, mi-cmd-disas.o): Ditto.
1996         (avr-tdep.o, mon960-rom.o): Ditto.
1997         (aout_stabs_gnu_h): Define.
1998         (symtab_h): Remove $(gdb_obstack_h).
1999
2000 2002-07-30  Jim Blandy  <jimb@redhat.com>
2001
2002         Patch from David Carlton <carlton@math.stanford.edu>:
2003         * gdbinit.in: Move the `dir' commands that add GDB's own source
2004         directory to the search path to the end, so that the `gdb' source
2005         directory will be searched first.
2006
2007 2002-07-29  Andrew Cagney  <ac131313@redhat.com>
2008
2009         * gdb_obstack.h: New file.
2010         * symtab.h: Include "gdb_obstack.h" instead of "obstack.h".
2011         (obstack_chunk_alloc, obstack_chunk_free): Delete macros.
2012         * objfiles.h: Include "gdb_obstack.h".
2013         * Makefile.in (gdb_obstack_h): Define.
2014         (symtab_h): Add $(gdb_obstack_h).
2015         (objfiles_h): Add $(gdb_obstack_h).
2016         
2017         * objfiles.c: Include "gdb_obstack.h" instead of "obstack.h".
2018         * macrotab.c, cp-valprint.c, dbxread.c: Ditto.
2019         * ch-typeprint.c, ch-valprint.c, dstread.c: Ditto.
2020         * macroexp.c, p-typeprint.c, stabsread.c: Ditto.
2021         * symtab.c, f-typeprint.c, mdebugread.c: Ditto.
2022         * p-valprint.c, symmisc.c, typeprint.c: Ditto.
2023         * symfile.c, coffread.c, c-typeprint.c: Ditto.
2024         * buildsym.c, bcache.c, ada-typeprint.c: Ditto.
2025
2026         * Makefile.in (bcache.o): Update dependencies.
2027         (buildsym.o, c-typeprint.o, ch-typeprint.o): Ditto.
2028         (ch-valprint.o, coffread.o, cp-valprint.o): Ditto.
2029         (dbxread.o, dstread.o, f-typeprint.o): Ditto.
2030         (objfiles.o, p-typeprint.o, p-valprint.o): Ditto.
2031         (stabsread.o, symfile.o, symmisc.o): Ditto.
2032         (symtab.o, typeprint.o, macroexp.o): Ditto.
2033         (macrotab.o, mdebugread.o): Ditto.
2034         (f_lang_h, coff_sym_h, coff_symconst_h): Define.
2035         (coff_ecoff_h, aout_aout64_h): Define.
2036         (aout_stabs_gnu_h, libaout_h): Define.
2037
2038 2002-07-29  Andrew Cagney  <cagney@redhat.com>
2039
2040         * regcache.c (struct regcache_descr): Rename nr_registers to
2041         nr_cooked_registers.  Revise comments describing the structure
2042         member fields.
2043         (init_regcache_descr): Update.
2044         (init_legacy_regcache_descr): Update.
2045         (read_register_gen, write_register_gen): When a cooked register in
2046         the raw register range, directly access the value from the raw
2047         register cache.
2048
2049 2002-07-29  Andrew Cagney  <ac131313@redhat.com>
2050
2051         * z8k-tdep.c: Do not include "obstack.h".
2052         * h8300-tdep.c, h8500-tdep.c: Ditto.
2053         * m68hc11-tdep.c, sh-tdep.c: Ditto.
2054         * valprint.c, v850-tdep.c: Ditto.
2055         * d10v-tdep.c, mn10300-tdep.c: Ditto.
2056         * mn10200-tdep.c: Ditto.
2057
2058         * Makefile.in (z8k-tdep.o): Update dependencies.
2059         (m68hc11-tdep.o, valprint.o): Ditto.
2060         (v850-tdep.o, d10v-tdep.o): Ditto.
2061         (mn10300-tdep.o, sparc-tdep.o): Ditto.
2062         (sh-tdep.o, h8500-tdep.o, h8300-tdep.o): Ditto.
2063         (m32r-tdep.o, mn10200-tdep.o): Specify dependencies.
2064         (sh_opc_h, gdb_sim_sh_h): Define.
2065         (elf_sh_h, elf_bfd_h): Define.
2066         (opcode_m68hc11_h): Define.
2067         (OPCODES_SRC, OPCODES_DIR): define.
2068         (OPCODES): Use $(OPCODES_DIR).
2069         (gdb_sim_d10v_h): Rename sim_d10v_h.
2070         (gdb_sim_arm_h): Rename sim_arm_h.
2071
2072 2002-07-26  Kevin Buettner  <kevinb@redhat.com>
2073
2074         * utils.c (host_pointer_to_address, address_to_host_pointer):
2075         Change internal_error() message to indicate function responsible
2076         for the error.
2077
2078 2002-07-26  Kevin Buettner  <kevinb@redhat.com>
2079
2080         * ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in
2081         calls to local_hex_string_custom().
2082
2083 2002-07-26  Kevin Buettner  <kevinb@redhat.com>
2084
2085         * irix5-nat.c: Move IRIX shared library support from here...
2086         * solib-irix.c: ...to here.  Revised substantially to work with
2087         generic solib framework.
2088
2089         * osabi.h (gdb_osabi): Add new enum constant GDB_OSABI_IRIX.
2090         * osabi.c (gdb_osabi_names): Add corresponding string for Irix.
2091         * mips-irix-tdep.c: New file.
2092
2093         * Makefile.in (ALLDEPFILES): Add mips-irix-tdep.c and solib-irix.c.
2094         (mips-irix-tdep.o, solib-irix.o): New rules.
2095         * config/mips/irix5.mt (TDEPFILES): Add mips-irix-tdep.o, solib.o,
2096         solib-irix.o.
2097         * config/mips/irix6.mt (TDEPFILES): Likewise.
2098         * config/mips/irix6.mh (NATDEPFILES): Remove solib.o.
2099
2100 2002-07-26  Kevin Buettner  <kevinb@redhat.com>
2101
2102         * aix-thread.c (coff/internal.h, bfd/libcoff.h, pthread.h): Remove
2103         disabled (via ``#if 0'') includes.
2104
2105 2002-07-26  Kevin Buettner  <kevinb@redhat.com>
2106
2107         * aix-thread.c (special_register_p, supply_sprs64, supply_sprs32)
2108         (fetch_regs_user_thread, fetch_regs_kernel_thread, fill_sprs64)
2109         (fill_sprs32, store_regs_user_thread, store_regs_kernel_thread):
2110         Add support for the fpscr register.
2111         * rs6000-nat.c (regmap, fetch_inferior_registers)
2112         (store_inferior_registers, fetch_core_registers): Likewise.
2113
2114 2002-07-26  Kevin Buettner  <kevinb@redhat.com>
2115
2116         * rs6000-nat.c (language.h): Include.
2117         (special_regs): Delete this array.
2118         (regmap): New function.
2119         (fetch_register, store_register):  Use regmap() to map gdb
2120         register numbers to ptrace register numbers.  Also, use
2121         outputs from regmap() to make decisions regarding type of
2122         ptrace() call to make.  In particular, don't compare against
2123         FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
2124         (fetch_inferior_registers, store_inferior_registers): Where
2125         possible, obtain register numbers from tdep struct.  Don't
2126         refer to FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
2127         * config/rs6000/tm-rs6000.h (FIRST_UISA_SP_REGNUM)
2128         (LAST_UISA_SP_REGNUM): Delete.
2129         
2130 2002-07-25  Kevin Buettner  <kevinb@redhat.com>
2131
2132         * rs6000-nat.c (ppc-tdep.h): Include.
2133         (fetch_registers, store_register, fetch_core_registers): Don't
2134         access registers[] directly.  Instead, use supply_register() or
2135         regcache_collect() as appropriate.
2136         (find_toc_address): Format hex address with local_hex_string().
2137
2138 2002-07-25  Andrew Cagney  <ac131313@redhat.com>
2139
2140         * config/djgpp/fnchange.lst: Rename bfd/elf32-fr30.c and
2141         bfd/elf32-frv.c.
2142
2143 2002-07-24  Tom Tromey  <tromey@redhat.com>
2144
2145         * jv-exp.y: Marked all strings with _().
2146         (ClassInstanceCreationExpression, ArrayCreationExpression): Use
2147         internal_error.
2148         (MethodInvocation, CastExpression, parse_number, yyerror,
2149         java_type_from_name, push_expression_name, yylex): Typo fixes.
2150
2151 2002-07-24  Daniel Jacobowitz  <drow@mvista.com>
2152
2153         * ui-file.c (struct tee_file, tee_file_new, tee_file_delete)
2154         (tee_file_flush, tee_file_write, tee_file_fputs)
2155         (tee_file_isatty): New.
2156         * ui-file.h (tee_file_new): Add prototype.
2157
2158 2002-07-24  Aidan Skinner <aidan@velvet.net>
2159
2160         * ada-lang.c: Change k&r style function definitions to prototyped
2161         form.
2162         * ada-typeprint.c: Change k&r style function definitions to prototyped
2163         form.
2164         * ada-valprint.c: Change k&r style function definitions to prototyped
2165         form.
2166         
2167 2002-07-24  Andrew Cagney  <cagney@redhat.com>
2168
2169         * README: Remove reference to remote-bug.
2170         * Makefile.in (ALLDEPFILES): Remove m88k-nat.c, m88k-tdep.c and
2171         remote-bug.c.
2172         (m88k-nat.o): Delete rule.
2173         (m88k-tdep.o): Delete rule.
2174         (remote-bug.o): Delete rule.
2175         * MAINTAINERS: Mark as obsolete.
2176         * elfread.c (elf_symtab_read): Mention that m88k is obsolete.
2177         * m88k-tdep.c: Make file obsolete.
2178         * config/m88k/m88k.mh: Ditto.
2179         * config/m88k/delta88v4.mh: Ditto.
2180         * config/m88k/delta88v4.mt: Ditto.
2181         * config/m88k/delta88.mt: Ditto.
2182         * config/m88k/delta88.mh: Ditto.
2183         * remote-bug.c: Ditto.
2184         * config/m88k/tm-delta88.h: Ditto.
2185         * config/m88k/nm-delta88v4.h: Ditto.
2186         * config/m88k/xm-delta88.h: Ditto.
2187         * config/m88k/xm-dgux.h: Ditto.
2188         * config/m88k/tm-m88k.h: Ditto.
2189         * config/m88k/nm-m88k.h: Ditto.
2190         * config/m88k/tm-delta88v4.h: Ditto.
2191         * m88k-nat.c: Ditto.
2192         * cxux-nat.c: Ditto.
2193         * configure.host: Make m88*-motorola-sysv4*, m88*-motorola-sysv*
2194         and m88*-*-* obsolete.
2195         * configure.tgt: Make m88*-motorola-sysv4*, m88*-motorola-* and
2196         m88*-*-* obsolete.
2197
2198 2002-07-24  Andrew Cagney  <cagney@redhat.com>
2199
2200         * findvar.c (extract_unsigned_integer): Make `addr' parameter
2201         constant.  Same for local pointer variables.
2202         (extract_signed_integer): Ditto.
2203         * defs.h (extract_unsigned_integer): Update.
2204         (extract_signed_integer): Update.
2205
2206 2002-07-24  Andrew Cagney  <cagney@redhat.com>
2207
2208         * regcache.c (regcache_raw_write): Change buf parameter to a
2209         constant void pointer.
2210         (regcache_raw_read): Change buf parameter to a void pointer.
2211         (legacy_write_register_gen): Change myaddr parameter a constant
2212         void pointer.
2213         (supply_register): Change val parameter to a const void pointer.
2214         * regcache.h (regcache_raw_write): Update declaration.
2215         (regcache_raw_read): Update declaration.
2216         (supply_register): Update declaration.
2217
2218 2002-07-24  Tom Tromey  <tromey@redhat.com>
2219
2220         * defs.h (gdb_readline_wrapper): Declare.
2221         * utils.c (prompt_for_continue): Use gdb_readline_wrapper.
2222         * tracepoint.c (read_actions): Use gdb_readline_wrapper.
2223         * top.c (gdb_readline_wrapper): New function.
2224         (command_line_input): Use it.
2225
2226 2002-07-24  Andrew Cagney  <cagney@redhat.com>
2227
2228         * regcache.h (regcache_raw_read, regcache_raw_write): Replace
2229         regcache_read and regcache_write.
2230         (regcache_raw_read_as_address): Replace regcache_read_as_address.
2231         * regcache.c: Update.
2232         * sh-tdep.c (sh64_push_arguments): Update comment.
2233         (sh_pseudo_register_read): Update.
2234         (sh_pseudo_register_write): Update.
2235         (sh4_register_read): Update.
2236         (sh4_register_write): Update.
2237         (sh64_pseudo_register_read): Update.
2238         (sh64_pseudo_register_write): Update.
2239         (sh64_register_read): Update.
2240         (sh64_register_write): Update.
2241         * i386-tdep.c (i386_extract_return_value): Update.
2242         (i386_extract_struct_value_address): Update.
2243         (i386_extract_return_value): Update.
2244         * blockframe.c (generic_read_register_dummy): Update.
2245         (generic_call_dummy_register_unwind): Update
2246         * infrun.c (write_inferior_status_register): Update.
2247
2248 2002-07-23  Jim Blandy  <jimb@redhat.com>
2249
2250         * parser-defs.h (expression_context_pc): Make this extern.
2251         (Thanks to Michael Snyder.)
2252
2253 2002-07-23  Andrew Cagney  <ac131313@redhat.com>
2254
2255         GDB 5.2.1 released from 5.2 branch.
2256         * NEWS: Mention changes in 5.2.1 including addition of AVR target.
2257         * README: Update to mention 5.2.1.
2258
2259 2002-07-23  Mark Salter  <msalter@redhat.com>
2260
2261         * remote.c (remote_read_bytes): Fix check for error.
2262
2263 2002-07-22  Kevin Buettner  <kevinb@redhat.com>
2264
2265         * aix-thread.c (language.h): Include.
2266         (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
2267         (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
2268         Print newlines at end of debug messages.
2269         (pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
2270         (pdc_write_data): Use local_hex_string() instead of %llx formats.
2271
2272 2002-07-22  Kevin Buettner  <kevinb@redhat.com>
2273
2274         * aix-thread.c (ppc-tdep.h): Include.
2275         (special_register_p): New function.
2276         (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32)
2277         (store_regs_user_thread): Use register number information from
2278         gdbarch_tdep struct instead of hardcoded offsets relative to
2279         FIRST_UISA_SP_REGNUM.
2280         (fetch_regs_kernel_thread, store_regs_kernel_thread):  Call
2281         special_register_p() instead of using FPLAST_REGNUM and
2282         LAST_UISA_SP_REGNUM as lower and upper bounds on the special
2283         register numbers.  Also, don't assume that LAST_UISA_SP_REGNUM
2284         will be MQ's register number.
2285
2286 2002-07-22  Michael Snyder  <msnyder@redhat.com>
2287
2288         * aix-thread.c (ops): Rename to aix_thread_ops.
2289         (base_ops): Rename to base_target.
2290         (ops_attach): Rename to aix_thread_attach.
2291         (ops_detach): Rename to aix_thread_detach.
2292         (ops_resume): Rename to aix_thread_detach.
2293         (ops_wait):   Rename to aix_thread_wait.
2294         (ops_kill):   Rename to aix_thread_kill.
2295         (init_ops):   Rename to init_aix_thread_ops.
2296         (ops_fetch_register): Rename to aix_thread_fetch_register.
2297         (ops_store_register): Rename to aix_thread_store_register.
2298         (ops_mourn_inferior): Rename to aix_thread_mourn_inferior.
2299         (ops_thread_alive):   Rename to aix_thread_thread_alive.
2300         (ops_extra_thread_info: Rename to aix_thread_extra_thread_info.
2301         (ops_pid_to_str):  Rename to aix_thread_pid_to_str.
2302         (ops_xfer_memory): Rename to aix_thread_xfer_memory.
2303         (fetch_regs_lib):  Rename to fetch_regs_user_thread.
2304         (fetch_regs_kern): Rename to fetch_regs_kernel_thread.
2305         (store_regs_lib):  Rename to store_regs_user_thread.
2306         (store_regs_kern): Rename to store_regs_kernel_thread.
2307
2308 2002-07-22  Michael Snyder  <msnyder@redhat.com>
2309
2310         * aix-thread.c (ops_prepare_to_store): Eliminate.
2311         (init_ops): Don't initialize ops.prepare_to_store.
2312         (store_regs_kern): Pre-fetch register buffers from child, 
2313         because some registers may not be in the cache.  Copy
2314         regs from register cache only if they are cached.
2315         (store_regs_lib): Copy regs from register cache only
2316         if they are cached.
2317         (fill_sprs32, (fill_sprs64, fill_fprs, fill_gprs32,
2318         fill_gprs64): Ditto.
2319
2320 2002-07-22  Kevin Buettner  <kevinb@redhat.com>
2321
2322         * aix-thread.c (gdb_assert.h): Include.
2323         (fill_sprs64, fill_sprs32): Add selected asserts to make sure that
2324         register sizes (from register cache) match size of buffer holding
2325         register data.
2326         (fill_sprs32): Change parameter types to match those in the ptrace()
2327         buffer.
2328         (store_regs_lib): Likewise, but for 32-bit temporary variables.
2329         (ops_prepare_to_store): Rename loop variable ``i'' to ``regno''.
2330
2331 2002-07-22  Michael Snyder  <msnyder@redhat.com>
2332
2333         * aix-thread.c (supply_sprs64): Cosmetic change.
2334         (supply_sprs32): Cosmetic change.
2335         (fill_gprs64, fill_gprs32, fill_fprs, fill_sprs32): New funcs.
2336         (fill_sprs64): Use regcache_collect instead of read_register.
2337         (store_regs_lib): Use regcache_collect instead of 
2338         read_register.  Use fill_sprs32 instead of fill_sprs64,
2339         if debugging a 32-bit architecture.
2340         (store_regs_kern): Use fill_gprs64 etc. to pull the values
2341         out of the register cache, instead of passing a pointer into
2342         the register cache directly to ptrace.  Use regcache_collect
2343         insteaad of read_register.
2344         (ops_prepare_to_store): Use target_read_registers instead
2345         of read_register_bytes.
2346
2347 2002-07-20  Aidan Skinner <aidan@velvet.net>
2348
2349         * MAINTAINERS: Add self under write after approval. 
2350                 
2351 2002-07-20  Aidan Skinner <aidan@velvet.net>
2352
2353         * ada-tasks.c: Change k&r style function definitions to prototyped
2354         form.
2355                 
2356 2002-07-19  Andrew Cagney  <ac131313@redhat.com>
2357
2358         * Makefile.in (x86-64-tdep.o): Add $(objfiles_h).
2359         * x86-64-tdep.c: Include "objfiles.h".
2360         (x86_64_gdbarch_init): Set in_solib_call_trampoline to
2361         in_plt_section.  From 2002-07-18 Michal Ludvig <mludvig@suse.cz>.
2362
2363 2002-07-17  Michal Ludvig  <michal@suse.cz>
2364
2365         * dwarf2cfi.c (execute_stack_op): Complain on unknown DW_OP_ value.
2366         (update_context): Initialise cfa variable.
2367
2368 2002-07-17  Michael Snyder  <msnyder@redhat.com>
2369
2370         * aix-thread.c: Shorten some long lines.  
2371         Bring comments into line with code spec.
2372
2373 2002-07-18  Joel Brobecker  <brobecker@gnat.com>
2374
2375         * infrun.c: Re-indent using gdb_indent.sh.
2376
2377 2002-07-18  Joel Brobecker  <brobecker@gnat.com>
2378
2379         * infrun.c (handle_inferior_event): Remove unneeded extra brace.
2380         Leave the indentation temporarily untouched, to minimize the diffs.
2381
2382 2002-07-18  Elena Zannoni  <ezannoni@redhat.com>
2383
2384         * stabsread.c: Make os9k sections of the code obsolete,
2385         for real this time.
2386         * stabsread.h: Make os9k sections of the code obsolete.
2387
2388 2002-07-18  Michal Ludvig <mludvig@suse.cz>
2389
2390         * linux-low.c (regsets_store_inferior_registers): Add free()
2391         at the end of a loop to prevent memory leak.
2392         * linux-x86-64-low.c (x86_64_regmap): Add CS, SS registers.
2393         (X86_64_NUM_GREGS): Count it from the size of x86_64_regmap.
2394         * config/sparc/tm-sp64linux.h: Make the rest of #endif
2395         line a comment.
2396         * Makefile.in (x86-64-linux-nat.o): Remove dependency on i387-tdep.h
2397
2398 2002-07-17  Jim Blandy  <jimb@redhat.com>
2399
2400         * macrocmd.c (info_macro_command): Remove newline from error
2401         message.
2402
2403 2002-07-17  J"orn Rennecke <joern.rennecke@superh.com>
2404
2405         * sh-tdep.c (sh_dsp_register_sim_regno): New function.
2406         (sh_gdbarch_init): Use it for sh-dsp.
2407
2408 2002-07-16  Kevin Buettner  <kevinb@redhat.com>
2409
2410         * dwarf2read.c (read_initial_length): Handle older, non-standard,
2411         64-bit DWARF2 format.
2412
2413 2002-07-16  Joel Brobecker  <brobecker@gnat.com>
2414
2415         * proc-api.c: use HAVE_SYS_PROC_H macro to avoid including
2416         <sys/proc.h> when not available.
2417
2418 2002-07-16  Andrew Cagney  <ac131313@redhat.com>
2419
2420         * NEWS: Mention that the i[34]86-*-os9k has been made obsolete.
2421         * stabsread.c: Make os9k sections of the code obsolete.
2422         * configure.tgt: Make i[3456]86-*-os9k target obsolete.
2423         * config/i386/i386os9k.mt: Make file obsolete.
2424         * Makefile.in (ALLDEPFILES): Remove remote-os9k.c.
2425         (COMMON_OBS): Remove os9kread.o
2426         (SFILES): Remove os9kread.c.
2427         (os9kread.o, remote-os9k.o): Make target obsolete.
2428         * remote-os9k.c: Make file obsolete.
2429         * os9kread.c: Make file obsolete.
2430         * Makefile.in
2431
2432 2002-07-16  Andrew Cagney  <ac131313@redhat.com>
2433
2434         * NEWS: Mention that the FR30 has been made obsolete.
2435         * fr30-tdep.c: Make file obsolete.
2436         * config/fr30/tm-fr30.h: Ditto.
2437         * config/fr30/fr30.mt: Ditto.
2438         * configure.tgt: Make fr30-*-elf obsolete.
2439         * MAINTAINERS: Make fr30-elf obsolete.
2440
2441 2002-07-16  Pierre Muller  <muller@ics.u-strasbg.fr>
2442
2443         * blockframe.c (get_pc_function_start): return 0 if the minimal symbol
2444         found is not inside a section.
2445
2446 2002-07-15  Kevin Buettner  <kevinb@redhat.com>
2447
2448         * aix-thread.c (ptrace_check): Use safe_strerror() instead of
2449         strerror().
2450         (pdc_realloc): Use xrealloc() instead of realloc().
2451
2452 2002-07-15  Kevin Buettner  <kevinb@redhat.com>
2453
2454         * aix-thread.c (PD_ERROR, CALL_BASE): Delete.
2455         (ops_resume, ops_wait, fetch_regs_lib, store_regs_lib)
2456         (ops_xfer_memory, ops_kill): Don't use PD_ERROR or CALL_BASE
2457         macros.
2458
2459 2002-07-15  Kevin Buettner  <kevinb@redhat.com>
2460
2461         * aix-thread.c (ptrace_check): Eliminate goto.
2462         (sync_threadlists): Eliminate gotos.  Also, fix array overrun
2463         problem.
2464
2465 2002-07-15  Kevin Buettner  <kevinb@redhat.com>
2466
2467         * aix-thread.c (gdbcmd.h): Include.
2468         (DEBUG, DBG, DBG2, dbg): Eliminate.
2469         (debug_aix_thread): New static global.
2470         (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
2471         (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
2472         (fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
2473         invocations to DBG and DBG2 macros to test against
2474         ``debug_aix_thread'' and call fprintf_unfiltered().
2475         (_initialize_aix_thread): Add new command "set debug aix-thread".
2476
2477 2002-07-15  Andrew Cagney  <ac131313@redhat.com>
2478
2479         From Gerhard Tonn <TON@de.ibm.com>:
2480         * s390-nat.c (fill_fpregset, fill_gregset): Use regcache_collect
2481         instead of supply_register.
2482
2483 2002-07-15  Andrew Cagney  <ac131313@redhat.com>
2484
2485         * dwarf2cfi.c: Include "gdb_assert.h".
2486         (frame_state_for): Use gdb_assert to check that fde->cie_ptr is
2487         non-NULL.
2488         (update_context): Do not use __func__.  Add missing ``break''.
2489         (update_context): Do not use __func__.
2490
2491 2002-07-15  Elena Zannoni  <ezannoni@redhat.com>
2492
2493         * rs6000-tdep.c (rs6000_gdbarch_init): Remove variable print_insn
2494         and its setting.  Set gdbarch instruction printing functions
2495         directly.  For non-rs6000 case use new function
2496         gdb_print_insn_powerpc.
2497         (gdb_print_insn_powerpc): New function.
2498
2499 2002-07-13  Andrew Cagney  <ac131313@redhat.com>
2500
2501         * NEWS: Mention that the d30v has been marked obsolete.
2502         * MAINTAINERS: Note that d30v / d30v-elf has been made obsolete.
2503         * configure.tgt: Mark d30v-*-* as obsolete.
2504         * d30v-tdep.c: Mark file as obsolete.
2505         * config/d30v/d30v.mt: Ditto.
2506         * config/d30v/tm-d30v.h: Ditto.
2507
2508 2002-07-13  Aidan Skinner <aidan@velvet.net>
2509
2510         * ada-tasks.c (add_task_entry): replace calls to
2511         malloc() with xmalloc
2512         * ada-tasks.c (init_task_list): replace calls to free with xfree()
2513         
2514         * ada-lang.c (replace_operator_with_call, fill_in_ada_prototype,
2515         ada_finish_decode_line_1, all_sals_for_line
2516         ada_breakpoint_rewrite): replace calls to free() with xfree()
2517                 
2518 2002-07-12  Kevin Buettner  <kevinb@redhat.com>
2519
2520         From Nicholas Duffek (with minor changes by Martin Hunt, 
2521         Louis Hamilton, and Kevin Buettner):
2522         * aix-thread.c: New file.
2523
2524 2002-07-12  Petr Sorfa <petrs@caldera.com>
2525
2526         *  dwarf2read.c (dwarf2_invalid_attrib_class): New
2527         complaint for invalid attribute class or form.
2528         (read_func_scope): DW_AT_frame_base
2529         better handling of DW_AT_block*.
2530         (dwarf2_add_member_fn): DW_AT_vtable_elem_location
2531         better handling of DW_AT_block*.
2532         (read_common_block): DW_AT_location
2533         better handling of DW_AT_block*.
2534         (read_partial_die): DW_AT_location better handling
2535         of DW_AT_block*.
2536         (new_symbol): DW_AT_external better handling of
2537         DW_AT_block*. Proper initialization of variable
2538         "addr".
2539         (attr_form_is_block): New function that returns true
2540         if the attribute's form is of DW_FORM_block*.
2541
2542 2002-07-12  Peter Schauer  <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
2543
2544         * valops.c (find_method_list): Remove comment about
2545         removed STATIC_MEMFUNCP argument.
2546         (value_find_oload_method_list): Likewise.
2547
2548 2002-07-12  Kevin Buettner  <kevinb@redhat.com>
2549
2550         From Nicholas Duffek:
2551         * rs6000-nat.c (vmap_ldinfo, xcoff_relocate_core): Call
2552         target_new_objfile_hook.
2553
2554 2002-07-12  Kevin Buettner  <kevinb@redhat.com>
2555
2556         From Nicholas Duffek:
2557         * xcoffread.c (scan_xcoff_symtab): Recognize XMC_TD as a data storage
2558         csect.
2559
2560 2002-07-12  Andrew Cagney  <cagney@redhat.com>
2561
2562         * MAINTAINERS: Mention --enable-sim-build-warnings.
2563         (m68hc11-elf): Disable sim build warnings.
2564         (m32r-elf): Mark as broken obsolete candidate.
2565         (x86_64-linux-gnu): Mark as buildable with -Werror.
2566         (arm-elf): Change -w to ``,'' which enables warnings but not
2567         -Werror.
2568
2569 2002-07-12  Andrew Cagney  <ac131313@redhat.com>
2570
2571         * bcache.h: Update copyright.
2572         (struct bstring, struct bcache): Move definition to "bcache.c".
2573         Replaced by opaque declaration.
2574         (bcache_xfree): Replace free_bcache.
2575         (bcache_xmalloc, bcache_memory_used): Declare.
2576         
2577         * bcache.c: Update copyright.
2578         (struct bstring, struct bcache): Moved to here from "bcache.h".
2579         Update comments.
2580         (bcache_xmalloc, bcache_memory_used): New functions.
2581         (bcache_xfree): Replace function free_bcache.
2582         
2583         * Makefile.in (objfiles.o): Add $(bcache_h).
2584         (objfiles_h): Remove $(bcache_h).
2585         (symfile.o): Add $(bcache_h).
2586
2587         * symmisc.c: Update copyright.
2588         (print_symbol_bcache_statistics): Pass psymbol_cache by value.
2589         (print_objfile_statistics): Use bcache_memory_used.
2590
2591         * symfile.c: Include "bcache.h".
2592         (reread_symbols): Use bcache_xfree.
2593         (reread_symbols): Use bcache_xmalloc and bcache_xfree.
2594         (add_psymbol_to_list): Pass psymbol_cache by value.
2595         (add_psymbol_with_dem_name_to_list): Ditto.
2596
2597         * objfiles.h: Update copyright.
2598         (struct bcache): Declare opaque.  Do not include "bcache.h".
2599         (struct objfile): Change psymbol_cache and macro_cache to ``struct
2600         bcache'' pointers.
2601         * dwarf2read.c (macro_start_file): Pass macro_cache by value.
2602
2603         * objfiles.c: Include "bcache.h".  Update copyright.
2604         (allocate_objfile): Use bcache_xmalloc to create psymbol_cache and
2605         macro_cache.
2606         (free_objfile): Use bcache_xfree.
2607
2608 2002-07-11  Grace Sainsbury  <graces@redhat.com>
2609
2610         * monitor.c (monitor_fetch_register): Make name a constant.
2611         (monitor_store_register): Same.
2612
2613 2002-07-11  Daniel Jacobowitz  <drow@mvista.com>
2614
2615         Based on patch from Daniel Berlin <dberlin@dberlin.org>.
2616         * buildsym.c: Include "demangle.h" for SYMBOL_INIT_DEMANGLED_NAME.
2617         (finish_block) For non-function blocks, hash the symbol table.  For
2618         function blocks, mark the symbol table as unhashed.
2619         * minsyms.c (msymbol_hash): Return hash value without taking modulus.
2620         (msymbol_hash_iw): Likewise.
2621         (add_minsym_to_hash_table): Take modulus of msymbol_hash's return
2622         value.
2623         (add_minsym_to_demangled_hash_table): Likewise for msymbol_hash_iw.
2624         (lookup_minimal_symbol): Likewise for both.
2625         * symtab.h (struct block): Add `hashtable' flag.  Comment the
2626         hashtable.
2627         (BLOCK_HASHTABLE, BLOCK_BUCKETS, BLOCK_BUCKET): New macro.
2628         (ALL_BLOCK_SYMBOLS): Update.
2629         (BLOCK_SHOULD_SORT): Do not sort hashed blocks.
2630         (struct symbol): Add `hash_next' pointer.
2631         * symtab.c (lookup_block_symbol): Search using the hash table when
2632         possible.
2633         (find_pc_sect_symtab): Use ALL_BLOCK_SYMBOLS.
2634         (search_symbols, find_addr_symbol): Likewise.
2635
2636         * dstread.c (process_dst_block): Clear hashtable bit for new block.
2637         (read_dst_symtab): Likewise.
2638         * jv-lang.c (get_java_class_symtab): Likewise.
2639         * mdebugread.c: Include "gdb_assert.h".
2640         (shrink_block): Assert that the block being modified is not hashed.
2641         * coffread.c (patch_opaque_types): Use ALL_BLOCK_SYMBOLS.
2642         * symmisc.c (free_symtab_block): Walk the hash table when freeing
2643         symbols.
2644         (dump_symtab): Recognize hashed blocks.
2645         * printcmd.c (print_frame_args):  Assert that function blocks do not
2646         have hashed symbol tables.
2647         * ada-lang.c (symtab_for_sym): Use ALL_BLOCK_SYMBOLS.
2648         (fill_in_ada_prototype, debug_print_block): Likewise.
2649         (ada_add_block_symbols): Use ALL_BLOCK_SYMBOLS.  Handle hash tables.
2650
2651 2002-07-11  Corinna Vinschen  <vinschen@redhat.com>
2652
2653         * stack.c (print_frame): Use result of frame_address_in_block()
2654         instead of fi->pc when evaluating symbols.
2655         (backtrace_command_1): Ditto.
2656
2657 2002-07-11  Andrew Cagney  <cagney@redhat.com>
2658
2659         * cris-tdep.c (cris_saved_pc_after_call): Fix parameter type.
2660         Make static.
2661
2662         * arm-tdep.c (arm_register_name): Make return type constant.
2663
2664 2002-07-10  Andrew Cagney  <ac131313@redhat.com>
2665
2666         * win32-nat.c (has_detach_ability): Convert to strict ISO C
2667         prototype.
2668         * top.c (gdb_rl_operate_and_get_next_completion): Ditto.
2669         * s390-tdep.c (s390_fp_regnum): Ditto.
2670         (s390_read_fp): Ditto.
2671         (s390_pop_frame): Ditto.
2672         (_initialize_s390_tdep): Ditto.
2673         * remote.c (get_remote_state): Ditto.
2674         * procfs.c (mappingflags): Ditto.
2675         * memattr.c (_initialize_mem): Ditto.
2676         * mcore-tdep.c (mcore_pop_frame): Ditto.
2677         * m68klinux-nat.c (_initialize_m68k_linux_nat): Ditto.
2678         * m68k-tdep.c (m68k_register_bytes_ok): Ditto.
2679         * language.c (set_case_str): Ditto.
2680         * gnu-v3-abi.c (vtable_address_point_offset): Ditto.
2681         * frv-tdep.c (new_variant): Ditto.
2682         (frv_stopped_data_address): Ditto.
2683         * dwarf2cfi.c (fde_chunks_need_space): Ditto.
2684         (context_alloc): Ditto.
2685         (frame_state_alloc): Ditto.
2686         (unwind_tmp_obstack_init): Ditto.
2687         (unwind_tmp_obstack_free): Ditto.
2688         (cfi_read_fp): Ditto.
2689         * cris-tdep.c (cris_saved_pc_after_call): Ditto.
2690         (cris_pop_frame): Ditto.
2691         * c-lang.c (scanning_macro_expansion): Ditto.
2692         (finished_macro_expansion): Ditto.
2693         (c_preprocess_and_parse): Ditto.
2694         * gdbarch.sh: Ditto.
2695         * gdbarch.h, gdbarch.c: Regenerate.
2696         * config/mn10200/tm-mn10200.h: Adjust indentation.
2697         * target.c: Adjust indentation.
2698         * symtab.h: Adjust indentation.
2699         * stabsread.h: Adjust indentation.
2700         * remote-es.c: Adjust indentation.
2701         * os9kread.c: Adjust indentation.
2702
2703 2002-07-10  Andrew Cagney  <ac131313@redhat.com>
2704         
2705         * wince.c (_initialize_wince): Rename _initialize_inftarg.
2706         * win32-nat.c (_initialize_win32_nat): Rename _initialize_inftarg.
2707
2708 2002-07-10  Grace Sainsbury  <graces@redhat.com>
2709         
2710         * NEWS: Mention m68k, mcore multi-arching.  
2711         * MAINTAINERS: Change status of m68k, mcore to reflect
2712         multi-arching.
2713
2714 2002-07-10  Daniel Jacobowitz  <drow@mvista.com>
2715
2716         * valops.c (find_overload_match): Free oload_syms.
2717
2718 2002-07-09  Joel Brobecker  <brobecker@gnat.com>
2719
2720         Define HAVE_SYS_PROC_H if sys/proc.h exists
2721         * configure.in: Add check for sys/proc.h
2722         * config.in: Regenerate.
2723         * configure: Regenerate.
2724
2725 2002-07-09  Grace Sainsbury  <graces@redhat.com>
2726
2727         * config/m68k/tm-m68k.h: Remove macros wrapped in 
2728         #if !GDB_MULTI_ARCH. 
2729
2730 2002-07-08  Andrew Cagney  <ac131313@redhat.com>
2731
2732         * config.in, configure: Regenerate.
2733
2734 2002-07-08  Mark Kettenis  <kettenis@gnu.org>
2735
2736         * dwarf2cfi.c: Include "gcore.h".
2737         (execute_stack_op): Fix implementation of the
2738         DW_OP_deref and DW_OP_deref_size operators by letting do their
2739         lookup in the target.
2740
2741 2002-07-07  Mark Kettenis  <kettenis@gnu.org>
2742
2743         From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de>:
2744         * i386-sol2-tdep.c (i386_sol2_init_abi): Correct value for
2745         tdep->sc_sp_offset.
2746
2747 2002-07-05  Daniel Jacobowitz  <drow@mvista.com>
2748
2749         Fix PR gdb/595, gdb/602
2750         * gnu-v3-abi.c (gnuv3_baseclass_offset): Remove unused variables.
2751         Don't call value_cast, just read the vtable pointer; update comments
2752         to match.
2753
2754 2002-07-05  Grace Sainsbury  <graces@redhat.com>
2755
2756         * config/mcore/tm-mcore.h: Remove file.
2757         * config/mcore/mcore.mt: Remove definition of TM_FILE
2758         * configure.tgt: Set gdb_multi_arch to yes for the mcore target.
2759
2760 2002-07-05  Mark Kettenis  <kettenis@gnu.org>
2761
2762         * i386bsd-tdep.c: Include "gdb_string.h".
2763
2764 2002-07-04  Grace Sainsbury  <graces@redhat.com>
2765
2766         * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Set to 2.
2767         (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG,RETVAL_REGNUM): Move to
2768         mcore-tdep.
2769         (REG_STRUCT_HAS_ADDR, USE_STRUCT_CONVENTION, GET_SAVED_REGISTER)
2770         (TARGET_VIRTUAL_FRAME_POINTER, BELIEVE_PCC_PROMOTION): Remove.
2771         * mcore-tdep.c (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG)
2772         (RETVAL_REGNUM): Move macros from tm-mcore.h
2773         (mcore_reg_struct_has_addr): New function.
2774         (mcore_gdbarch_init): Added initializations for the macros removed
2775         from tm-mcore.h.
2776
2777 2002-07-04  Mark Kettenis  <kettenis@gnu.org>
2778
2779         * osabi.c (generic_elf_osabi_sniffer): Add check for FreeBSD 3.x's
2780         traditonal string branding within the ELF header.
2781
2782 2002-07-04  Daniel Jacobowitz  <drow@mvista.com>
2783
2784         * symtab.c (remove_params): New function.
2785         (make_symbol_overload_list): Use it instead of cplus_demangle.
2786         (overload_list_add_symbol): Likewise.  Reorder.  Fix memory leak.
2787
2788 2002-07-04  Mark Kettenis  <kettenis@gnu.org>
2789
2790         * i386obsd-nat.c (_initialize_i386obsd_nat): Fix typo in prototype.
2791
2792         * i386bsd-tdep.c (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end):
2793         New variables.
2794         (i386nbsd_init_abi): Use these to initialize tdep->sigtramp_start
2795         and tdep->sigtramp_end.
2796         * i386obsd-nat.c: New file.
2797         * config/i386/obsd.mh (NATDEPFILES): Add i386obsd-nat.o.
2798
2799         * dwarf2cfi.c (cfi_pop_frame): Use alloca() for regbuf.
2800         Don't call get_current_frame().
2801
2802 2002-07-04  Pierre Muller  <muller@ics.u-strasbg.fr>
2803
2804         * i386-nat.c (child_post_startup_inferior): New function
2805         calling i386_cleanup_dregs if
2806         I386_USE_GENERIC_WATCHPOINTS is defined.
2807         * config/i386/nm-i386.h: define CHILD_POST_STARTUP_INFERIOR
2808         conditional to acknowledge that i386-nat.c has its
2809         own child_post_startup_inferior function.
2810
2811 2002-07-04  Mark Kettenis  <kettenis@gnu.org>
2812
2813         * i386-tdep.h (I386_MAX_REGISTER_SIZE): New define.
2814         * i386-tdep.c (i386_do_pop_frame): Use I386_MAX_REGISTER_SIZE
2815         instead of MAX_REGISTER_RAW_SIZE.
2816         (i386_extract_return_value, i386_extract_struct_value_address):
2817         Convert to use regcache.
2818         (i386_gdbarch_init): Set max_register_raw_size and
2819         max_register_virtual_size to I386_MAX_REGISTER_SIZE.
2820         Set extract_return_value and extract_struct_value_address instead
2821         of their deprecated variants.
2822
2823         Convert i386 target to generic dummy frames.
2824         * i386-tdep.c: Include "symfile.h".
2825         (i386_frameless_signal_p): Consider a function to be frameless if
2826         the pc points at the first instruction of the function.
2827         (i386_frame_chain): Handle (generic) call dummies.
2828         (i386_frame_saved_pc): Likewise.
2829         (i386_frame_init_saved_regs): Remove code dealing with call
2830         dummies on the stack.
2831         (i386_push_dummy_frame): Removed.
2832         (i386_call_dummy_words): Removed.
2833         (i386_fix_call_dummy): Removed.
2834         (i386_push_return_address): New function.
2835         (i386_do_pop_frame): Renamed from i386_pop_frame.  Add FRAME
2836         parameter, and don't call get_current_frame.
2837         (i386_pop_frame): New function.
2838         (i386_gdbarch_init): Set use_generic_dummy_frames to 1, set
2839         call_dummy_location to AT_ENTRY_POINT, set call_dummy_address to
2840         entry_point_address, set call_dummy_breakpoint_offset to 0, set
2841         call_dummy_length to 0, set call_dummy_words to NULL, set
2842         sizeof_call_dummy_words to 0, set fix_call_dummy to
2843         generic_fix_call_dummy, set pc_in_call_dummy to
2844         pc_in_call_dummy_at_entry_point, set push_dummy_frame to
2845         generic_push_dummy_frame, set push_return_address to
2846         i386_push_return_address and set frame_chain_valid to
2847         generic_file_frame_chain_valid.
2848
2849 2002-07-03  Andrew Cagney  <ac131313@redhat.com>
2850
2851         * gdbarch.sh (struct regcache): Add opaque declaration.
2852         (EXTRACT_RETURN_VALUE): New architecture method.
2853         (EXTRACT_STRUCT_VALUE_ADDRESS): Ditto.
2854         * gdbarch.h, gdbarch.c: Regenerate.
2855         * arch-utils.c (legacy_extract_return_value): New function.
2856         * arch-utils.h (legacy_extract_return_value): Declare.
2857         * values.c (value_being_returned): Re-enable code handling
2858         EXTRACT_STRUCT_VALUE_ADDRESS.  Move
2859         deprecated_grub_regcache_for_registers call to block handling
2860         DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
2861         (EXTRACT_RETURN_VALUE): Do not define.
2862
2863 2002-07-03  Grace Sainsbury  <graces@redhat.com>
2864
2865         * config/mcore/tm-mcore.h (REGISTER_BYTES, NUM_REGS, PC_REGNUM)
2866         (SP_REGNUM, FP_REGNUM, FUNCTION_START_OFFSET, DECR_PC_AFTER_BREAK)
2867         (BREAKPOINT_FROM_PC, INNER_THAN, SAVED_PC_AFTER_CALL)
2868         (INIT_EXTRA_FRAME_INFO, FRAME_INIT_SAVED_REGS, INIT_FRAME_PC)
2869         (FRAME_CHAIN, FRAME_CHAIN_VALID, FRAME_SAVED_PC)
2870         (STORE_RETURN_VALUE, DEPRECATED_EXTRACT_RETURN_VALUE)
2871         (STORE_STRUCT_RETURN, DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
2872         (SKIP_PROLOGUE, FRAME_ARGS_SKIP, FRAME_ARGS_ADDRESS)
2873         (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, POP_FRAME)
2874         (PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME, PUSH_ARGUMENTS): Remove.
2875         * mcore-tdep.c (mcore_init_extra_frame_info): Add fromleaf
2876         argument so the function fits the prototype in the architecture
2877         vector.
2878         (mcore_pop_frame): Remove argument so the function fits the
2879         prototype. Use get_current_frame instead of the argument.
2880         (mcore_push_arguments): Change type of struct_return so the
2881         function can be used in the architecture vector.
2882         (mcore_store_struct_return): Add.
2883         (mcore_frame_init_saved_regs): Add.
2884         (mcore_gdbarch_init): Add function calls to replace the macros
2885         removed from tm-mcore.h
2886
2887 2002-07-03  Andrew Cagney  <ac131313@redhat.com>
2888
2889         * infcmd.c (print_return_value): Remove compatibility code calling
2890         deprecated_grub_regcache_for_registers.
2891         
2892         * values.c: Include "regcache.h".
2893         (value_being_returned): Update.  Use
2894         deprecated_grub_regcache_for_registers to extract the register
2895         buffer address.  
2896         * value.h (value_being_returned): Change ``retbuf'' parameter to a
2897         ``struct regcache''.
2898         * Makefile.in (values.o): Add dependency on $(regcache_h).
2899
2900         * inferior.h (run_stack_dummy): Change type of second parameter to
2901         a ``struct regcache''.
2902         * valops.c (hand_function_call): Change type of retbuf to ``struct
2903         regcache''.  Allocate using regcache_xmalloc, clean using
2904         make_cleanup_regcache_xfree.
2905         * infcmd.c (run_stack_dummy): Update.  Use
2906         regcache_cpu_no_passthrough instead of memcpy to copy the buffer.
2907
2908         * regcache.c (do_regcache_xfree): New function.
2909         (make_cleanup_regcache_xfree): New function.
2910         * regcache.h (make_cleanup_regcache_xfree): Declare.
2911
2912 2002-07-03  Martin M. Hunt  <hunt@redhat.com>
2913
2914         * event-top.c (command_line_handler): Don't read past
2915         beginning of buffer.
2916
2917 2002-07-03  Martin M. Hunt  <hunt@redhat.com>
2918         
2919         * varobj.c (struct varobj_root): Change frame from CORE_ADDR to 
2920         struct frame_id. 
2921         (varobj_create): Store frame_id for root.
2922         (varobj_gen_name): Use xasprintf.
2923         (varobj_update): Save and restore frame using get_frame_id() and
2924         frame_find_by_id().
2925         (create_child): Use xasprintf.
2926         (new_root_variable): Initialize frame_id.
2927         (c_name_of_child): Use xasprintf. Call find_frame_by_id().
2928         (c_value_of_variable): Use xasprintf. Move mem_fileopen call
2929         to prevent memory leak.
2930
2931 2002-07-03  Andrew Cagney  <ac131313@redhat.com>
2932
2933         * valops.c (hand_function_call): Move declaration of retbuf to
2934         start of function, allocate using malloc, add a cleanup but before
2935         the inf_status cleanup, cleanup the buffer.  Rename local variable
2936         old_chain to inf_status_cleanup.
2937
2938 2002-07-03  Martin M. Hunt  <hunt@redhat.com>
2939
2940         * top.c (execute_command): Use cmd_func() and cmd_func_p().
2941
2942         * cli/cli-decode.c (cmd_func_p): New function.
2943         (cmd_func): New function.
2944
2945         * command.h: Add cmd_func() and cmd_func_p().   
2946         
2947 2002-07-03  Grace Sainsbury  <graces@redhat.com>
2948
2949         * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Add macro. Set to 0.
2950         (REGISTER_SIZE): Remove.
2951         (MAX_REGISTER_RAW_SIZE): Remove.
2952         (REGISTER_VIRTUAL_TYPE): Remove.
2953         (MAX_REGISTER_VIRTUAL_SIZE): Remove.
2954         (REGISTER_NAME): Remove.
2955         (USE_GENERIC_DUMMY_FRAMES): Remove.
2956         (CALL_DUMMY): Remove.
2957         (CALL_DUMMY_START_OFFSET): Remove.
2958         (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
2959         (CALL_DUMMY_LOCATION): Remove.
2960         (FIX_CALL_DUMMY): Remove.
2961         (CALL_DUMMY_ADDRESS): Remove.
2962         (SIZEOF_CALL_DUMMY_WORDS): Remove.
2963         (SAVE_DUMMY_FRAME_TOS): Remove.
2964         * mcore-tdep.c (MCORE_REG_SIZE, MCORE_NUM_REGS): Add macros.
2965         (mcore_register_virtual_type): New function.
2966         (mcore_register_byte): New function.
2967         (mcore_register_size): New function.
2968         (mcore_register_name): New function.
2969         (mcore_gdbarch_init): New function. Add set_gdbarch calls for
2970         macros removed from tm-mcore.h.
2971         (mcore_dump_tdep): Add.
2972         (_initialize_mcore_tdep): Add gdbarch_register call.
2973
2974 2002-07-03  Mark Kettenis  <kettenis@gnu.org>
2975
2976         * i386-tdep.c (i386_frameless_signal_p): Provide an argument in to
2977         frameless_look_for_prologue, such that we actually call this
2978         function.
2979
2980 2002-07-02  Joel Brobecker  <brobecker@gnat.com>
2981
2982         * frame.h (frame_address_in_block): New function.
2983
2984         * blockframe.c (frame_address_in_block): New function extracted
2985         from get_frame_block().
2986         (get_frame_block): Use frame_address_in_block().
2987         (block_innermost_frame): Use frame_address_in_block() to match
2988         the frame pc address against the block boundaries rather than
2989         the frame pc directly. This prevents a failure when a frame pc
2990         is actually a return-address pointing immediately after the end
2991         of the given block. 
2992
2993 2002-07-02  Grace Sainsbury  <graces@redhat.com>
2994
2995         * MAINTAINERS: Add self under write after approval. 
2996
2997 2002-07-02  Grace Sainsbury  <graces@redhat.com>
2998
2999         * m68k-tdep.c (m68k_remote_breakpoint_from_pc): Add. Currently not
3000         used in architecture vector. The default is
3001         m68k_local_breakpoint_from_pc.
3002         (m68k_local_breakpoint_from_pc): Add.
3003         (enum): Add register numbers from tm-m68k.h.
3004         (m68k_gdbarch_init): Add breakpoint_from_pc to architecture
3005         vector.  
3006         * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Set to
3007         GDB_MULTI_ARCH_PARTIAL.
3008         (BPT_VECTOR, REGISTER_BYTES_FP, REGISTER_BYTES_NOFP)
3009         (NUM_FREGS, SIG_PC_FP_OFFSET, SP_ARG0, REMOTE_BPT_VECTOR): Move to
3010         m68k-tdep.c.
3011         (BREAKPOINT, REMOTE_BREAKPOINT): Remove.
3012         (A1_REGNUM, FP0_REGNUM, FPC_REGNUM, FPS_REGNUM, FPI_REGNUM): Move
3013         to enum in m68k-tdep.c
3014
3015 2002-07-02  Joel Brobecker  <brobecker@gnat.com>
3016
3017         * solib-osf.c (open_map): Compute the list of shared libraries
3018         loaded by the inferior, rather than the list of libraries loaded
3019         by GDB itself.  Otherwise, GDB ends up reading the symbols from
3020         the wrong shared libraries...
3021
3022 2002-07-02  Mark Kettenis  <kettenis@gnu.org>
3023
3024         * i386-linux-tdep.c (i386_linux_sigcontext_addr): Make static.
3025         (LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONEXT_SP_OFFSET): Remove
3026         macros.
3027         (i386_linux_sigtramp_saved_pc, i386_linux_sigtramp_saved_sp):
3028         Remove functions.
3029         (FRAMELESS_SIGNAL): Remove function.
3030         (i386_linux_frame_chain, i386_linux_frame_saved_pc,
3031         i386_linux_saved_pc_after_call): Removed.
3032         (i386_linux_init_abi): Initialize tdep->sigcontext_addr,
3033         tdep->sc_pc_offset and tdep->sc_sp_offset.  Don't override
3034         frame_chain, frame_saved_pc and saved_pc_after_call any longer.
3035
3036         * i386-tdep.c (i386_frameless_signal_p): New function.
3037         (i386_frame_chain): Deal with frameless signals.
3038         (i386_sigtramp_saved_sp): New function.
3039         (i386_frame_saved_pc): Deal with frameless signals.
3040         (i386_saved_pc_after_call): Make sure the correct value is
3041         returned just after entry into a sigtramp.
3042         * i386bsd-tdep.c (i386bsd_sc_sp_offset, i386nbsd_sc_sp_offset,
3043         i386fbsd4_sc_sp_offset): New variables.
3044         (i386bsd_init_abi, i386nbsd_init_abi, i386fbsd4_init_abi): Use
3045         these variables to initialize tdep->sc_sp_offset.  * i386bsd-nat.c
3046         (_initialize_i386bsd_nat): Add sanity check for sc_sp_offset
3047         similiar to what we already did for sc_pc_offset.
3048         * i386-sol2-tdep.c (i386_sol2_init_abi): Initialize
3049         tdep->sc_sp_offset.
3050
3051         * i386nbsd-tdep.c (fetch_elfcore_registers): Wrap long line.
3052
3053 2002-07-02  Michal Ludvig  <mludvig@suse.cz>
3054
3055         * config/i386/tm-x86-64linux.h: New.
3056         * config/i386/x86-64linux.mt: Add GDB_MULTI_ARCH and TM_FILE
3057         definitions.
3058         * config/i386/nm-x86-64.h: Rename to ...
3059         * config/i386/nm-x86-64linux.h: ... this one.
3060         * config/i386/x86-64linux.mh: Reflect the above change.
3061         
3062 2002-07-01  Mark Kettenis  <kettenis@gnu.org>
3063
3064         * i386-tdep.h (struct gdbarch_tdep): Replace sigtramp_saved_pc
3065         with sigcontext_addr.  Add sc_sp_offset.
3066         (i386bsd_sigtramp_saved_pc): Remove prototype.
3067         (i386bsd_sicontext_addr): Add prototype.
3068         * i386-tdep.c (i386_sigtramp_saved_pc): New function.
3069         (i386_frame_saved_pc): Rewrite to call i386_sigtramp_saved_pc.
3070         (i386_svr4_sigtramp_saved_pc): Removed.
3071         (i386_svr4_sigcontext_addr): New function.
3072         (i386_svr4_init_abi): Don't initialize tdep->sigtramp_saved_pc.
3073         Initialize tdep->sigcontext_addr instead.  Initialize
3074         tdep->sc_pc_offset and tdep->sc_sp_offset.
3075         (i386_gdbarch_init): Likewise.
3076         * i386bsd-tdep.c (i386bsd_sigcontext_addr): Don't make it static
3077         any more.
3078         (i386bsd_sigtramp_saved_pc): Remove function.
3079         (i386bsd_init_abi): Don't initialize tdep->sigtramp_saved_pc.
3080         Initialize tdep->sigcontext_addr instead.  Initialize
3081         tdep->sc_pc_offset.
3082         * i386-linux-tdep.c (i386_linux_init_abi): Remove initialization
3083         of tdep->sigtramp_saved_pc.
3084         * i386-sol2-tdep.c (i386_sol2_init_abi): Don't initialize
3085         tdep->sigtramp_saved_pc.  Initialize tdep->sigcontext_addr
3086         instead.
3087
3088         * i386-tdep.c (i386_frameless_function_invocation,
3089         i386_frame_num_args, i386_frame_init_saved_regs,
3090         i386_skip_prologue, i386_push_dummy_frame, i386_fix_call_dummy,
3091         i386_pop_frame, i386_push_arguments, i386_store_struct_return,
3092         i386_extract_return_value, i386_store_return_value,
3093         i386_extract_struct_value_address, i386_register_virtual_type,
3094         i386_register_convertible, i386_register_convert_to_virtual,
3095         i386_register_convert_to_raw, i386_svr4_sigtramp_saved_pc,
3096         i386_go32_init_abi, i386_nw_init_abi, i386_gdbarch_init): Make
3097         static.
3098
3099 2002-07-01  Mark Kettenis  <kettenis@gnu.org>
3100
3101         * i386bsd-tdep.c (i386bsd_frame_saved_pc): Removed.
3102
3103         * config/i386/tm-i386sol2.h (COERCE_FLOAT_TO_DOUBLE): Removed.
3104         * i386-sol2-tdep.c (i386_sol2_init_abi): Adjust for the removal of
3105         this macro.  Include "value.h".
3106
3107 2002-06-30  Aidan Skinner  <aidan@velvet.net>
3108
3109         * ada-exp.tab.c: remove as it's a generated file
3110         * ada-lex.c: remove as it's a generated file
3111                 
3112 2002-06-30  Mark Kettenis  <kettenis@gnu.org>
3113
3114         * config/i386/tm-i386.h (struct frame_info, struct
3115         frame_saved_regs, struct value, struct type): Remove forward
3116         declarations.
3117
3118         * config/i386/tm-linux.h [HAVE_PTRACE_GETFPXREGS]
3119         (FILL_FPXREGSET, HAVE_SSE_REGS): Remove define.
3120         * config/i386/nm-linux.h [HAVE_PTRACE_GETFPXREGS]
3121         (FILL_FPXREGSET): Define.
3122
3123         * config/i386/tm-nbsd.h (HAVE_SSE_REGS): Remove define.
3124
3125         * configure.tgt (i[3456]86-*-openbsd*): Fold into
3126         i[3456]86-*-netbsd* case.
3127         * config/i386/tm-obsd.h: Removed.
3128         * config/i386/obsd.mt: Removed.
3129         * config/i386/obsd.mh (NATDEPFILES): Remove corelow.o and
3130         core-aout.o.
3131         (MH_CFLAGS): Add -DYYDEBUG=0.
3132
3133         * i386bsd-nat.c (_initialize_i386bsd_nat): Define SC_PC_OFFSET to
3134         i386nbsd_sc_pc_offset on OpenBSD too.
3135
3136         * config/i386/tm-fbsd.h [!SVR4_SHARED_LIBS]
3137         (IN_SOLIB_CALL_TRAMPOLINE): Remove define.
3138         * config/i386/tm-nbsdaout.h (IN_SOLIB_CALL_TRAMPOLINE): Remove
3139         define.
3140         * i386bsd-tdep.c: Include "arch-utils.h".
3141         (i386bsd_aout_in_solib_call_trampoline): New function.
3142         (i386bsd_init_abi): Set in_solib_call_trampoline to
3143         i386bsd_aout_in_solib_call_trampoline.
3144         (i386nbsdelf_init_abi, i386fbsd_init_abi): Set
3145         in_solib_call_trampoline to generic_in_solib_call_trampoline.
3146
3147 2002-06-28  Andrew Cagney  <ac131313@redhat.com>
3148
3149         * macrotab.h: Do not include "obstack.h" or "bcache.h".
3150         (struct obstack, struct bcache): Add opaque declarations.
3151         * Makefile.in (macrotab_h): Update
3152
3153 2002-06-28  Andrew Cagney  <ac131313@redhat.com>
3154
3155         * blockframe.c (generic_find_dummy_frame): Change return type to
3156         ``struct regcache''.
3157         (struct dummy_frame): Replace field ``registers'' with regcache, a
3158         struct regcache object.
3159         (generic_find_dummy_frame): Update.
3160         (generic_push_dummy_frame): Update.  Use regcache_xfree,
3161         regcache_xmalloc and regcache_cpy.
3162         (generic_pop_dummy_frame): Update.  Use regcache_cpy and
3163         regcache_xfree.
3164         (deprecated_generic_find_dummy_frame): Update.
3165         (generic_read_register_dummy): Update.  Use
3166         regcache_read_as_address.
3167         (generic_call_dummy_register_unwind): Update.  Use regcache_read.
3168         (generic_get_saved_register): Update.  Use regcache_read.
3169
3170 2002-06-28  Andrew Cagney  <ac131313@redhat.com>
3171
3172         * Makefile.in (objfiles_h): Add $(bcache_h).
3173         * objfiles.h: Include "bcache.h".
3174
3175         * Makefile.in (symtab_h): Remove $(bcache_h).
3176         * symtab.h: Do not include "bcache.h".
3177
3178 2002-06-28  Andrew Cagney  <ac131313@redhat.com>
3179
3180         * ppcnbsd-tdep.c (ppcnbsd_init_abi): Set frame_chain_valid to
3181         generic_func_frame_chain_valid.
3182
3183 2002-06-28  David O'Brien  <obrien@FreeBSD.org>
3184
3185         * config/i386/nm-fbsd.h: Include <sys/param.h>.
3186         * config/i386/tm-fbsd.h: Likewise.
3187
3188 2002-06-28  Andrew Cagney  <ac131313@redhat.com>
3189
3190         * rs6000-tdep.c (rs6000_gdbarch_init): Use
3191         generic_unwind_get_saved_register.
3192
3193 2002-06-27  Andrew Cagney  <ac131313@redhat.com>
3194
3195         From 2002-06-27 John David Anglin <dave@hiauly1.hia.nrc.ca>:
3196         * regcache.c (supply_register): Add missing argument to
3197         register_buffer call.
3198
3199 2002-06-27  Andrew Cagney  <ac131313@redhat.com>
3200
3201         * Makefile.in (init.c): Drop -e option to grep.  Not necessary and
3202         Solaris /bin/grep does not not like it.  From Peter Schauer.
3203
3204 2002-06-26  Tom Tromey  <tromey@redhat.com>
3205
3206         * command.h (add_setshow_cmd): Declare.
3207         (add_setshow_cmd_full): Declare.
3208         * cli/cli-decode.c (add_setshow_cmd): No longer static.  Now
3209         returns void.  Use add_setshow_cmd_full.
3210         (add_setshow_cmd_full): New function.
3211         (add_setshow_auto_boolean_cmd): Use add_setshow_cmd_full.
3212         (add_setshow_boolean_cmd): Likewise.
3213
3214 2002-06-26  Jason Thorpe  <thorpej@wasabisystems.com>
3215
3216         * config/vax/tm-vax.h: Protect from multiple inclusion.
3217         (TARGET_UPAGES, TARGET_NBPG, STACK_END_ADDR)
3218         (SIGTRAMP_START, SIGTRAMP_END, SIGCONTEXT_PC_OFFSET): Move to...
3219         * config/vax/tm-vaxbsd.h: ...here.  New file.
3220         * config/vax/vax.mt (TM_FILE): Set to tm-vaxbsd.h.
3221
3222 2002-06-26  Jason Thorpe  <thorpej@wasabisystems.com>
3223
3224         * config/vax/tm-vax.h (BREAKPOINT): Remove.
3225         (BELIEVE_PCC_PROMOTION): Remove.
3226         (AP_REGNUM): Move to...
3227         * config/vax/nm-vax.h: ...here.
3228         * vax-tdep.c: Use VAX_AP_REGNUM instead of AP_REGNUM.
3229         (vax_breakpoint_from_pc): New function.
3230         (vax_gdbarch_init): Initialize gdbarch_breakpoint_from_pc
3231         and gdbarch_believe_pcc_promotion.
3232
3233 2002-06-26  Jason Thorpe  <thorpej@wasabisystems.com>
3234
3235         * Makefile.in (vax_tdep_h): Define.  
3236         (vax-tdep.o): Use $(vax_tdep_h).
3237         * vax-tdep.c (vax_gdbarch_init): Use generic OS ABI framework.
3238         (vax_dump_tdep): New function. 
3239         (_initialize_vax_tdep): Register vax_dump_tdep.
3240         * vax-tdep.h: Include osabi.h.     
3241         (struct gdbarch_tdep): New. 
3242
3243 2002-06-26  Andrew Cagney  <cagney@redhat.com>
3244
3245         * frame.h (deprecated_generic_find_dummy_frame): Rename
3246         generic_find_dummy_frame.
3247         * blockframe.c (generic_find_dummy_frame): Make static.
3248         (deprecated_generic_find_dummy_frame): New function.
3249         * sh-tdep.c (sh_nofp_frame_init_saved_regs): Replace
3250         generic_find_dummy_frame with deprecated_find_dummy_frame.
3251         (sh64_nofp_frame_init_saved_regs): Ditto.
3252         (sh_fp_frame_init_saved_regs): Ditto.
3253         * s390-tdep.c (s390_frame_saved_pc_nofix): Ditto.
3254         (s390_frame_chain): Ditto.
3255         * cris-tdep.c (cris_frame_init_saved_regs): Ditto.
3256
3257 2002-06-26  Grace Sainsbury  <graces@redhat.com>
3258
3259         * config/m68k/tm-m68k.h: Rearrange code so macros not in the
3260         gdbarch vector are at the top.
3261         (NUM_REGS): Remove.
3262         (FP_REGNUM, SP_REGNUM, PS_REGNUM, PC_REGNUM, FP0_REGNUM): Remove.
3263         (FRAME_ARGS_ADDRESS): Remove.
3264         (FRAME_LOCALS_ADDRESS): Remove.
3265         (FRAME_NUM_ARGS): Remove.
3266         (FRAME_ARGS_SKIP): Remove.  
3267         * m68k-tdep.c (enum): Add eumeration of special register numbers.
3268         (m68k_gdbarch_init): Add gdbarch initializations for macros
3269         undefined in tm-m68k.h
3270
3271 2002-06-26  Grace Sainsbury  <graces@redhat.com>
3272
3273         * monitor.h: Add the function regname to monitor_ops
3274         structure. This way NUM_REGS does not have to be a constant.
3275         * monitor.c (monitor_fetch_register): Added support for regname
3276         function. The function is called if the array regnames is NULL.
3277         (monitor_store_register): Same.
3278         * cpu32bug-rom.c (cpu32bug_regname): Add function. Replaces
3279         regnames array.
3280         (init_cpu32bug_cmds): set cpu32bug_cmds.regnames to NULL,
3281         cpu32bug_cmds.regname to point to new function.
3282         * abug-rom.c (abug_regname): Same as above.
3283         (init_abug_cmds): Same.
3284         * dbug-rom.c (dbug_regname): Same as above.
3285         (init_dbug_cmds): Same.
3286         * remote-est.c (est_regname): Same. 
3287         (init_est_cmds): Same.
3288         * rom68k-rom.c (rom68k_regname): Same. 
3289         (init_rom68k_cmds): Same.
3290
3291 2002-06-25  Tom Tromey  <tromey@redhat.com>
3292
3293         * breakpoint.c (delete_command): Don't repeat `delete' commands.
3294
3295 2002-06-25  Andrew Cagney  <cagney@redhat.com>
3296
3297         * infrun.c (stop_registers): Change variable's type to ``struct
3298         regcache'''.
3299         (xmalloc_inferior_status): Delete function.
3300         (free_inferior_status): Delete function.
3301         (normal_stop): Use regcache_cpy.
3302         (struct inferior_status): Change type of fields ``stop_registers''
3303         and ``registers'' to ``struct regcache''.
3304         (write_inferior_status_register): Use regcache_write.
3305         (save_inferior_status): Instead of calling
3306         xmalloc_inferior_status, allocate the inf_status buffer directly.
3307         Use regcache_dup_no_passthrough and regcache_dup to save the
3308         buffers.
3309         (restore_inferior_status): Use regcache_xfree and regcache_cpy.
3310         Replace the stop_registers regcache instead of overriding it.  Use
3311         regcache_xfree.  Instead of calling free_inferior_status, xfree
3312         the buffer directly.
3313         (discard_inferior_status): Use regcache_xfree.  Instead of calling
3314         free_inferior_status, xfree the buffer directly.
3315         (build_infrun): Use regcache_xmalloc.
3316         (_initialize_infrun): Delete redundant call to build_infrun.
3317
3318         * Makefile.in (infcmd.o): Add $(regcache_h).
3319
3320         * infcmd.c: Include "regcache.h".
3321         (run_stack_dummy): Use deprecated_grub_regcache_for_registers to
3322         obtain the address of `stop_registers' register buffer.
3323         (print_return_value): Ditto.
3324
3325         * inferior.h (struct regcache): Add opaque declaration.
3326         (stop_registers): Change variable's declared type to ``struct
3327         regcache''.
3328
3329 2002-06-24  Tom Tromey  <tromey@redhat.com>
3330
3331         * cli/cli-decode.c (add_show_from_set): Fixed typo in comment.
3332         * target.c (initialize_targets): Fixed typo in
3333         trust-readonly-sections `show' documentation.
3334
3335         * main.c: Marked all strings with _().
3336
3337 2002-06-24  Don Howard  <dhoward@redhat.com>
3338
3339         * memattr.c (create_mem_region): Treat hi == 0 as a special case
3340         that means max CORE_ADDR+1.
3341         (lookup_mem_region): Ditto.
3342         (mem_info_command): Ditto.
3343
3344 2002-06-24  Grace Sainsbury  <graces@redhat.com>
3345
3346         * config/m68k/tm-m68k.h (DECR_PC_AFTER_BREAK): Remove.
3347         (REGISTER_BYTES_OK): Remove.
3348         (REGISTER_BYTES): Remove.
3349         (STORE_STRUCT_RETURN): Remove.
3350         (DEPRECATED_EXTRACT_RETURN_VALUE): Remove.
3351         (STORE_RETURN_VALUE): Remove.
3352         (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Remove.
3353         (FRAME_CHAIN): Remove.
3354         (FRAMELESS_FUNCTION_INVOCATION): Remove.
3355         (FRAME_SAVED_PC): Remove.  
3356         * m68k-tdep.c (m68k_register_bytes_ok):Add.
3357         (m68k_store_struct_return): Add.
3358         (m68k_deprecated_extract_return_value): Add.
3359         (m68k_deprecated_extract_struct_value_address): Add.
3360         (m68k_store_return_value): Add.
3361         (m68k_frame_chain): Add.
3362         (m68k_frameless_function_invocation): Add.
3363         (m68k_frame_saved_pc): Add.
3364         (m68k_gdbarch_init): added set_gdbarch calls for new 
3365         functions and deleted macros.
3366
3367 2002-06-23  Tom Tromey  <tromey@redhat.com>
3368
3369         * Makefile.in (HFILES_NO_SRCDIR): Remove old files.
3370         (ALLDEPFILES): Likewise.
3371         (udiheaders): Removed.
3372         (udip2soc.o): Likewise.
3373         (udi2go32.o): Likewise.
3374         (udr.o): Likewise.
3375         (HFILES_WITH_SRCDIR): Don't mention udiheaders.
3376
3377 2002-06-22  Andrew Cagney  <ac131313@redhat.com>
3378
3379         * infrun.c (_initialize_infrun): Delete unnecessary call to
3380         build_infrun.
3381
3382         * regcache.h: Update comments describing the regcache_cpy family
3383         of functions.
3384         (regcache_save, regcache_restore): Delete declaration.
3385         (regcache_save_no_passthrough): Delete declaration.
3386         (regcache_restore_no_passthrough): Delete declaration.
3387         * regcache.c (regcache_save): Delete function.
3388         (regcache_save_no_passthrough): Delete function.
3389         (regcache_restore): Delete function.
3390         (regcache_restore_no_passthrough): Delete function.
3391
3392 2002-06-21  Andrew Cagney  <ac131313@redhat.com>
3393
3394         * config/m68k/tm-m68k.h: Fix typo.
3395         (FRAME_INIT_SAVED_REGS): Define when non-multi-arch.
3396         (m68k_frame_init_saved_regs): Declare.
3397
3398 2002-06-21  Jim Blandy  <jimb@redhat.com>
3399
3400         Remove some vestiges of Harris 88k support.
3401         * dwarf2read.c (decode_locdesc): Remove `#if' block for Harris 88k
3402         register numbering quirk.
3403         * elfread.c (elf_symtab_read): Remove `#if' block for skipping
3404         odd symbols occurring in Harris 88k ELF targets.
3405
3406 2002-06-21  Tom Tromey  <tromey@redhat.com>
3407
3408         * gdb_locale.h: New file.
3409         * Makefile.in (GDB_CFLAGS): Define LOCALEDIR.
3410         (defs_h): Added gdb_locale.h.
3411         * configure, config.in: Rebuilt.
3412         * configure.in (PACKAGE): Define.
3413         * defs.h: Include gdb_locale.h.
3414         * main.c (captured_main): Call setlocale, bindtextdomain,
3415         textdomain.
3416
3417 2002-06-21  Dave Brolley  <brolley@redhat.com>
3418
3419         From Stan Shebs, Jim Blandy, Mark Salter, Kevin Buettner:
3420         * config/frv/frv.mt: New file.
3421         * config/frv/tm-frv.h: New file.
3422         * configure.tgt: Support frv-*-*.
3423         * Makefile.in (frv-tdep.o): New target.
3424         * frv-tdep.c: New file.
3425         * NEWS: Mention frv.
3426
3427 2002-06-21  Dave Brolley  <brolley@redhat.com>
3428
3429         * MAINTAINERS: Add self to "Write After Approval" list.
3430
3431 2002-06-21  Grace Sainsbury  <graces@redhat.com>
3432
3433         * config/m68k/tm-m68k.h (REGISTER_BYTE, REGISTER_RAW_SIZE)
3434         (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
3435         (REGISTER_VIRTUAL_TYPE, REGISTER_NAMES, TARGET_LONG_DOUBLE_FORMAT)
3436         (FUNCTION_START_OFFSET, SKIP_PROLOGUE, SAVED_PC_AFTER_CALL)
3437         (INNER_THAN, STACK_ALIGN, REGISTER_SIZE): Remove macros.
3438
3439         * m68k-tdep.c: Include arch-utils.h
3440         (m68k_register_raw_size): Add.
3441         (m68k_register_virtual_size): Add.
3442         (m68k_register_virtual_type): Add.
3443         (m68k_register_name): Add.
3444         (m68k_stack_align): Add.
3445         (m68k_register_byte): Add.
3446         (m68k_gdbarch_init): Add set_gdbarch calls for macros removed in
3447         tm-m68k.h.
3448
3449 2002-06-21  Grace Sainsbury  <graces@redhat.com>
3450
3451         * m68k-tdep.c (m68k_frame_init_saved_regs): Replace
3452         m68k_find_saved_regs.
3453         (m68k_pop_frame): Removed saved_regs structure, and replaced
3454         references to it with frame->saved_regs.
3455         (m68k_gdbarch_init): Added function calls to initialize the
3456         gdbarch structure.
3457         (m68k_fix_call_dummy): Add. 
3458         * config/m68k/tm-m68k.h: (FRAME_FIND_SAVED_REGS): Remove.
3459         (CALL_DUMMY): Remove.
3460         (CALL_DUMMY_LENGTH): Remove.
3461         (CALL_DUMMY_START_OFFSET): Remove.
3462         (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
3463         (FIX_CALL_DUMMY): Remove.
3464         (PUSH_DUMMY_FRAME): Remove.
3465         (POP_FRAME): Remove.
3466
3467 2002-06-19  Pierre Muller  <muller@ics.u-strasbg.fr>
3468
3469         * parse.c (parse_fprintf): New function used to avoid calls to
3470         fprintf in bison parser generated debug code.
3471         * parser-defs.h: Declaration of new parse_fprintf function.
3472         * ada-exp.y, c-exp.y, f-exp.y, jv-exp.y, m2-exp.y, p-exp.y:
3473         Set YYDEBUG to 1 by default.
3474         Set YYFPRINTF as parse_fprintf.
3475
3476 2002-06-21  Michal Ludvig  <mludvig@suse.cz>
3477
3478         * dwarf2cfi.c (read_encoded_pointer): Don't handle pointer 
3479         encoding anymore.
3480         (pointer_encoding, enum ptr_encoding): New.
3481         (execute_cfa_program): Take care about pointer encoding.        
3482         (dwarf2_build_frame_info): Only call parse_frame_info for 
3483         .debug_frame and .eh_frame.
3484         (parse_frame_info): New, derived from former dwarf2_build_frame_info.
3485         fixed augmentation handling, added relative addressing, 
3486         ignore duplicate FDEs. Added comments.
3487         * dwarf2cfi.c: Reindented.
3488         
3489 2002-06-20  Elena Zannoni  <ezannoni@redhat.com>
3490
3491         * event-top.c (command_handler): Don't use space_at_cmd_start
3492         unless there is sbrk() on the host. Assign time and space data
3493         to union fields of the appropriate length.
3494
3495 2002-06-20  Michal Ludvig  <mludvig@suse.cz>
3496
3497         * x86-64-tdep.c (x86_64_register_nr2name): Rename to 
3498         x86_64_register_name. Return type changed to 'const char *'.
3499         (x86_64_register_name2nr): Rename to x86_64_register_number.
3500         (x86_64_gdbarch_init): Update to reflect the change.
3501         * x86-64-tdep.h: Ditto.
3502         * x86-64-linux-nat.c (x86_64_fxsave_offset)
3503         (supply_fpregset): Ditto.
3504
3505 2002-06-19  Andrew Cagney  <cagney@redhat.com>
3506
3507         * regcache.h: Update copyright.
3508         (struct regcache, struct gdbarch): Add opaque declarations.
3509         (current_regcache): Declare global variable.
3510         (regcache_read, regcache_write): Add gdbarch parameter.
3511         (regcache_save, regcache_save_no_passthrough)
3512         (regcache_restore, regcache_restore_no_passthrough)
3513         (regcache_dup, regcache_dup_no_passthrough)
3514         (regcache_cpy, regcache_cpy_no_passthrough)
3515         (deprecated_grub_regcache_for_registers)
3516         (deprecated_grub_regcache_for_register_valid)
3517         (regcache_valid_p): Add function declarations.
3518         
3519         * regcache.c: Update copyright.
3520         (regcache_descr_handle): New global variable.
3521         (struct regcache_descr): Define.
3522         (init_legacy_regcache_descr, init_regcache_descr): New functions.
3523         (regcache_descr, xfree_regcache_descr): New functions.
3524         (struct regcache): Define.
3525         (regcache_xmalloc, regcache_xfree): New functions.
3526         (regcache_cpy, regcache_cpy_no_passthrough): New functions.
3527         (regcache_dup, regcache_dup_no_passthrough): New functions.
3528         (regcache_valid_p, regcache_read_as_address): New functions.
3529         (deprecated_grub_regcache_for_registers): New function.
3530         (deprecated_grub_regcache_for_register_valid): New function.
3531         (current_regcache): New global variable.
3532         (register_buffer): Add regcache parameter.  Update calls.
3533         (regcache_read, regcache_write): Add regcache parameter.  Rewrite.
3534         (read_register_gen, write_register_gen): Update register_buffer
3535         call.  Test for legacy_p instead of gdbarch_register_read_p or
3536         gdbarch_register_write_p.
3537         (regcache_collect): Update register_buffer call.
3538         (build_regcache): Rewrite.  Use deprecated grub functions.
3539         (regcache_save, regcache_save_no_passthrough): New functions.
3540         (regcache_restore, regcache_restore_no_passthrough): New
3541         functions.
3542         (_initialize_regcache): Create the regcache_data_handle. Swap
3543         current_regcache global variable.
3544         
3545         * sh-tdep.c (sh_pseudo_register_read): Add current_regcache
3546         parameter to regcache_read and regcache_write calls.
3547         (sh4_register_read): Ditto.
3548         (sh64_pseudo_register_read): Ditto.
3549         (sh64_register_read): Ditto.
3550         (sh_pseudo_register_write): Ditto.
3551         (sh4_register_write): Ditto.
3552         (sh64_pseudo_register_write): Ditto.
3553         (sh64_register_write): Ditto.
3554
3555         * defs.h (XCALLOC): Define.
3556
3557 2002-06-19  Grace Sainsbury  <graces@redhat.com>
3558
3559         * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Added (set to 0).
3560         * m68k-tdep.c (m68k_gdbarch_init): Added.
3561         (m68k_dump_tdep): Added.
3562
3563 2002-06-19  Daniel Jacobowitz  <drow@mvista.com>
3564
3565         * ada-lang.c (fill_in_ada_prototype): Update comment.
3566
3567 2002-06-19  Daniel Jacobowitz  <drow@mvista.com>
3568
3569         * mips-tdep.c (enum mips_abi): Explicitly start at 0.  Add
3570         MIPS_ABI_LAST.
3571         (mips_abi_string, mips_abi_strings): New.
3572         (struct gdbarch_tdep): Remove mips_abi_string, add found_abi.
3573         (mips_gdbarch_init): Set tdep->found_abi.  Don't set
3574         tdep->mips_abi_string.  Honor mips_abi_string.  Default to
3575         O32 if no ABI is found.
3576         (mips_dump_tdep): Use mips_abi_strings.
3577         (mips_abi_update): New function.
3578         (_initialize_mips_tdep): Initialize mips_abi_string.  Add  
3579         ``set mips abi'' and ``show mips abi''.  Check the size of
3580         mips_abi_strings.
3581
3582 2002-06-19  Andrew Cagney  <cagney@redhat.com>
3583
3584         * i386-linux-tdep.c (i386_linux_register_name): Make return type
3585         constant.
3586
3587 2002-06-18  Joel Brobecker  <brobecker@gnat.com>
3588
3589         * alpha-tdep.c (heuristic_proc_desc): Compute the size of the  
3590         current frame using only the first stack size adjustment. All
3591         subsequent size adjustments are not considered to be part of
3592         the "static" part of the current frame.
3593         Compute the address of the saved registers relative to the
3594         Frame Pointer ($fp) instead of the Stack Pointer if $fp is
3595         in use in this frame.
3596
3597 2002-06-18  Don Howard  <dhoward@redhat.com>
3598  
3599         * valops.c (value_ind): Use value_at_lazy() when dereferencing
3600         type int expressions.  Thanks to Jim Blandy <jimb@redhat.com> for
3601         suggesting this solution.
3602
3603 2002-06-18  Andrew Cagney  <ac131313@redhat.com>
3604
3605         * config/romp/xm-rtbsd.h: Delete file.
3606         * config/romp/rtbsd.mh: Delete file.
3607
3608 2002-06-18  Keith Seitz  <keiths@redhat.com>
3609
3610         * breakpoint.c (condition_command): Post breakpoint_modify
3611         when a condition is added to an existing breakpoint.
3612         (commands_command): Likewise for commands.
3613         (set_ignore_count): Likewise for ignore counts.
3614         If no tty, do not simply return, still need to send event
3615         notification.
3616         (ignore_command): Only print a newline if the command came
3617         from a tty.
3618         Don't call breakpoints_changed, since this is now properly
3619         handled by set_ignore_count.
3620
3621 2002-06-18  Andrew Cagney  <cagney@redhat.com>
3622
3623         * MAINTAINERS: Note that cris-elf target can be compiled with
3624         -Werror.
3625         * cris-tdep.c (cris_register_name): Make return type constant.
3626         (cris_breakpoint_from_pc): Ditto.
3627
3628 2002-06-18  Michal Ludvig  <mludvig@suse.cz>
3629
3630         * frame.h (struct frame_info): Change type of context to 
3631         'struct context'.
3632
3633 2002-06-17  Andrew Cagney  <cagney@redhat.com>
3634
3635         * gdbarch.sh (REGISTER_NAME): Change return type a constant string
3636         pointer.
3637         * gdbarch.h, gdbarch.c: Regenerate.
3638         * config/mips/tm-mips.h (mips_register_name): Update.
3639         * i386-tdep.h (i386_register_name): Update.
3640         * mips-tdep.c (mips_register_name): Update
3641         * alpha-tdep.c (alpha_register_name): Update.
3642         * arch-utils.c (legacy_register_name): Update.
3643         * arch-utils.h (legacy_register_name): Update.
3644         * avr-tdep.c (avr_register_name): Update.
3645         * ia64-tdep.c (ia64_register_name): Update.
3646         * i386-tdep.c (i386_register_name): Update.
3647         * sparc-tdep.c (sparc32_register_name): Update.
3648         (sparc64_register_name): Update.
3649         (sparclite_register_name): Update.
3650         (sparclet_register_name): Update.
3651         * sh-tdep.c (sh_generic_register_name): Update.
3652         (sh_sh_register_name): Update.
3653         (sh_sh3_register_name): Update.
3654         (sh_sh3e_register_name): Update.
3655         (sh_sh_dsp_register_name): Update.
3656         (sh_sh3_dsp_register_name): Update.
3657         (sh_sh4_register_name): Update.
3658         (sh_sh64_register_name): Update.
3659         * s390-tdep.c (s390_register_name): Update.
3660         * rs6000-tdep.c (rs6000_register_name): Update.
3661         * ns32k-tdep.c (ns32k_register_name_32082): Update.
3662         (ns32k_register_name_32382): Update.
3663         * d10v-tdep.c (d10v_ts2_register_name): Update.
3664         (d10v_ts3_register_name): Update.
3665         * xstormy16-tdep.c (xstormy16_register_name): Update.
3666         * vax-tdep.c (vax_register_name): Update.
3667         * v850-tdep.c (v850_register_name): Update.
3668         * m68hc11-tdep.c (m68hc11_register_name): Update.
3669         * mn10300-tdep.c (mn10300_generic_register_name): Update.
3670         (am33_register_name): Update.
3671
3672 2002-06-17  Grace Sainsbury  <graces@redhat.com>
3673
3674         * m68k-tdep.c: Reindented.
3675
3676 2002-06-17  Andrew Cagney  <ac131313@redhat.com>
3677
3678         * gdb_indent.sh: Add prgregset_t, fpregset_t, and gregset_t to the
3679         list of predefined types.
3680
3681 2002-06-16  Mark Kettenis  <kettenis@gnu.org>
3682
3683         * config/i386/tm-i386.h (REGISTER_VIRTUAL_TYPE,
3684         REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL,
3685         REGISTER_CONVERT_TO_RAW): Remove defines.
3686         (i386_register_virtual_type, i386_register_convertible,
3687         i386_register_convert_to_virtual, i386_register_convert_to_raw):
3688         Remove prototypes.
3689         * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
3690         macros mentioned above.
3691
3692         * config/i386/tm-i386lynx.h (SAVED_PC_AFTER_CALL): Remove define.
3693         (i386lynx_saved_pc_after_call): Remove prototype.
3694         * i386ly-tdep.c: Include "i386-tdep.h".
3695         (i386lynx_saved_pc_after_call): Make static.  Use
3696         read_memory_nobpt instead of read_memory.  Use
3697         read_memory_unsigned_integer instead of read_memory_integer.
3698         (i386lynx_init_abi): New function.
3699         (i386lynx_coff_osabi_sniffer): New function.
3700         (_initialize_i386bsd_tdep): New function.
3701
3702         * config/i386/tm-i386.h (PARM_BOUNDARY, CALL_DUMMY,
3703         CALL_DUMMY_LENGTH, CALL_DUMMY_START_OFFSET,
3704         CALL_DUMMY_BREAKPOINT_OFFSET, FIX_CALL_DUMMY): Remove defines.
3705         (i386_fix_call_dummy): Remove prototype.
3706         * i386-tdep.c (i386_call_dummy_words): New variable.
3707         (i386_gdbarch_init): Adjust for removal of the
3708         macros mentioned above.
3709
3710 2002-06-15  Andrew Cagney  <ac131313@redhat.com>
3711
3712         * command.h (add_setshow_auto_boolean_cmd): Replace
3713         add_set_auto_boolean_cmd.
3714         * cli/cli-decode.c (add_setshow_auto_boolean_cmd): Replace
3715         add_set_auto_boolean_cmd.
3716         * cli/cli-decode.h (add_set_auto_boolean_cmd): Delete declaration.
3717         * mips-tdep.c (_initialize_mips_tdep): Update ``set mips
3718         mask-address'' command.
3719         (show_mask_address): Add cmd parameter.
3720         * remote.c (add_packet_config_cmd): Update.  Change type of
3721         set_func and show_func to cmd_sfunc_ftype.
3722         (_initialize_remote): Update `set remote Z-packet'
3723         (show_remote_protocol_qSymbol_packet_cmd): Add cmd parameter.
3724         (show_remote_protocol_e_packet_cmd): Ditto.
3725         (show_remote_protocol_E_packet_cmd): Ditto.
3726         (show_remote_protocol_P_packet_cmd): Ditto.
3727         (show_remote_protocol_Z_software_bp_packet_cmd): Ditto.
3728         (show_remote_protocol_Z_hardware_bp_packet_cmd): Ditto.
3729         (show_remote_protocol_Z_write_wp_packet_cmd): Ditto.
3730         (show_remote_protocol_Z_read_wp_packet_cmd): Ditto.
3731         (show_remote_protocol_Z_access_wp_packet_cmd): Ditto.
3732         (show_remote_protocol_Z_packet_cmd): Ditto.
3733         (show_remote_protocol_binary_download_cmd): Ditto.
3734         (show_remote_cmd): Pass NULL to all of above.
3735
3736 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
3737
3738         * config/i386/tm-i386.h (PUSH_ARGUMENTS, STORE_STRUCT_RETURN,
3739         DEPRECATED_EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE,
3740         DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS, PUSH_DUMMY_FRAME,
3741         POP_FRAME): Remove defines.
3742         (i386_push_arguments, i386_store_struct_return,
3743         i386_extract_return_value, i386_store_return_value,
3744         i386_extract_struct_value_address, i386_push_dummy_frame,
3745         i386_pop_frame): Renove prototypes.
3746         * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
3747         macros mentioned above.
3748
3749 2002-06-15  Andrew Cagney  <ac131313@redhat.com>
3750
3751         * cli/cli-decode.c (add_setshow_boolean_cmd): Replace
3752         add_set_boolean_cmd.
3753         (add_setshow_cmd): New function.
3754         * command.h (add_setshow_boolean_cmd): Replace
3755         add_set_boolean_cmd.
3756         * remote-rdi.c (_initialize_remote_rdi): Update ``set rdiheartbeat''
3757         and ``set rdiromatzero''.
3758         * maint.c (_initialize_maint_cmds): Update commented out code.
3759         * cli/cli-decode.h (add_set_boolean_cmd): Delete declaration.
3760         * target.c (initialize_targets): Update `set
3761         trust-readonly-sections'.
3762         * remote.c (_initialize_remote): Update `set remotebreak'.
3763
3764 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
3765
3766         * config/i386/tm-i386.h (FUNCTION_START_OFFSET, INNER_THAN,
3767         BREAKPOINT, DECR_PC_AFTER_BREAK): Removed.
3768         * i386-tdep.c (i386_skip_prologue): Adjust function signature to
3769         fit into multi-arch framework.
3770         (i386_breakpoint_from_pc): New function.
3771         (i386_gdbarch_init): Adjust for removal of the macros mentioned
3772         above.
3773
3774         * config/i386/tm-i386.h (FRAMELESS_FUNCTION_INVOCATION,
3775         FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS,
3776         FRAME_ARGS_SKIP, FRAME_INIT_SAVED_REGS): Remove defines.
3777         (i386_frameless_function_invocation, i386_frame_num_args,
3778         i386_frame_init_saved_regs): Remove prototypes.
3779         * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
3780         macros mentioned above.
3781
3782 2002-06-15  Andrew Cagney  <ac131313@redhat.com>
3783
3784         * cli/cli-decode.c (set_cmd_cfunc): Update.
3785         (set_cmd_sfunc): Update.
3786         * command.h (cmd_cfunc_ftype, cmd_sfunc_ftype): Declare.
3787         (set_cmd_sfunc, set_cmd_cfunc): Update.
3788         * cli/cli-decode.h: Update.
3789
3790 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
3791
3792         * i386-sol2-tdep.c (i386_sol2_osabi_sniffer): New function.
3793         (_initialize_i386_sol2_tdep): Register i386_sol2_osabi_sniffer.
3794
3795 2002-06-15  Andrew Cagney  <ac131313@redhat.com>
3796
3797         * defs.h (auto_boolean): Declare enum.
3798         * command.h (cmd_auto_boolean): Delete enum.
3799         * mips-tdep.c (mask_address_var): Update.
3800         (mips_mask_address_p): Update.
3801         (show_mask_address): Update.
3802         * remote.c (struct packet_config): Update.
3803         (update_packet_config): Update.
3804         (show_packet_config_cmd): Update.
3805         (packet_ok): Update.
3806         (add_packet_config_cmd): Update.
3807         (_initialize_remote): 
3808         * command.h: Update.
3809         * cli/cli-setshow.c (parse_auto_binary_operation): Update.
3810         (do_setshow_command): Update.
3811         * cli/cli-decode.c (add_set_auto_boolean_cmd): Update.
3812         * cli/cli-decode.h: Update.
3813
3814 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
3815
3816         * config/i386/tm-cygwin.h, config/i386/tm-fbsd.h,
3817         config/i386/tm-go32.h, config/i386/tm-i386gnu.h,
3818         config/i386/tm-i386sol2.h, config/i386/tm-i386v4.h,
3819         config/i386/tm-linux.h, config/i386/tm-nbsd.h,
3820         config/i386/tm-obsd.h (HAVE_I387_REGS): Remove define.
3821         * config/i386/tm-i386.h: Unconditionally define FLOAT_INFO.
3822
3823         * i386-tdep.c (i386_coff_osabi_sniffer): Add "coff-go32" to the
3824         list of DJGPP COFF targets.
3825
3826         * config/i386/tm-i386.h (REGISTER_SIZE): Remove define.
3827         (NUM_GREGS, NUM_FREGS, NUM_SSE_REGS): Remove defines.
3828         (FP_REGNUM, SP_REGNUM, PC_REGNUM, PS_REGNUM): Remove defines.
3829         (FP0_REGNUM): Remove define.
3830         (MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE,
3831         MAX_REGISTER_VIRTUAL_SIZE): Remove define.
3832         (i386_register_virtual_size): Remove protoype.
3833         * i386-tdep.c (i386_register_virtual_size): Removed.
3834         (i386_extract_return_value, i386_store_return_value): Use
3835         FP0_REGNUM instead of NUM_FREGS to determine whether the
3836         floating-point registers are available.
3837         (i386_gdbarch_init): Tweak FIXME about FPU registers.
3838         Adjust for removal of macros mentioned above.
3839
3840 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
3841
3842         * i386v4-nat.c: Include "i386-tdep.h".  Reformat and tweak various
3843         comments.
3844         (fill_gregset, supply_gregset, supply_fpregset, fill_fpregset):
3845         Remove prototypes.
3846         (supply_gregset, fill_gregset): Remove use of register keyword and
3847         remove declaration for regmap.  Use I386_NUM_GREGS instead of
3848         NUM_REGS and NUM_FREGS.
3849         (FPREGSET_FSAVE_OFFSET): Remove.
3850         (supply_fpregset, fill_fpregset): Use FPO_REGNUM instead of
3851         NUM_FREGS to determine whether the floating-point registers are
3852         available.
3853
3854         * i386gnu-nat.c (supply_gregset, gnu_fetch_registers,
3855         gnu_store_registers): Replace usage of NUM_GREGS with
3856         I386_NUM_GREGS.
3857
3858         * i386-linux-nat.c (OLD_CANNOT_FETCH_REGISTER,
3859         OLD_CANNOT_STORE_REGISTER, supply_gregset, fill_gregset): Replace
3860         usage of NUM_GREGS with I386_NUM_GREGS.
3861
3862         * i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
3863
3864         * i386bsd-nat.c: Include "i386-tdep.h".
3865         (supply_gregset, fill_gregset): Replace usage of NUM_GREGS with
3866         I386_NUM_GREGS.
3867
3868         * i386v-nat.c: Remove copnditional inclusion of <asm/debugreg.h>,
3869         and associated comment.  They no longer make any sense, since we
3870         don't use this file anymore on Linux.
3871
3872         * config/i386/tm-i386.h (MAX_NUM_REGS): Removed.
3873         * i386-tdep.c (i386_register_offset, i386_register_size): Use
3874         I386_SSE_NUM_REGS instead of MAX_NUM_REGS for the number of
3875         elements in these arrays.
3876         (_initialize_i386_tdep): Use I386_SSE_NUM_REGS instead of
3877         MAX_NUM_REGS.
3878
3879 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
3880
3881         * osabi.h (gdb_osabi): Add GDB_OSABI_LYNXOS.
3882         * osabi.c (gdb_osabi_names): Add entry for "LynxOS".
3883
3884 2002-06-14  Andrew Cagney  <cagney@redhat.com>
3885
3886         * gdbarch.sh (DEPRECATED_EXTRACT_RETURN_VALUE): Rename
3887         EXTRACT_RETURN_VALUE.
3888         (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Rename
3889         EXTRACT_STRUCT_VALUE_ADDRESS.
3890         * gdbarch.h, gdbarch.c: Regenerate.
3891         
3892         * values.c (value_being_returned): Handle
3893         DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
3894         (EXTRACT_RETURN_VALUE): Define as DEPRECATED_EXTRACT_RETURN_VALUE.
3895
3896         * arm-linux-tdep.c (arm_linux_init_abi): Update. 
3897         * arm-tdep.c (arm_gdbarch_init): Update.
3898         * avr-tdep.c (avr_gdbarch_init): Update.
3899         * cris-tdep.c (cris_gdbarch_init): Update.
3900         * d10v-tdep.c (d10v_gdbarch_init): Update.
3901         * ia64-tdep.c (ia64_gdbarch_init): Update.
3902         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
3903         * rs6000-tdep.c (rs6000_gdbarch_init): Update.
3904         * s390-tdep.c (s390_gdbarch_init): Update.
3905         * sh-tdep.c (sh_gdbarch_init): Update.
3906         * s390-tdep.c (s390_gdbarch_init): Update.
3907         * sparc-tdep.c (sparc_gdbarch_init): Update.
3908         * ns32k-tdep.c (ns32k_gdbarch_init): Update.
3909         * v850-tdep.c (v850_gdbarch_init): Update.
3910         * vax-tdep.c (vax_gdbarch_init): Update.
3911         * x86-64-tdep.c (x86_64_gdbarch_init): Update.
3912         * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
3913
3914         * config/arc/tm-arc.h: Update.
3915         * config/d30v/tm-d30v.h: Update.
3916         * config/fr30/tm-fr30.h: Update.
3917         * config/h8300/tm-h8300.h: Update.
3918         * config/h8500/tm-h8500.h: Update.
3919         * config/i386/tm-i386.h: Update.
3920         * config/i386/tm-ptx.h: Update.
3921         * config/i386/tm-symmetry.h: Update.
3922         * config/i960/tm-i960.h: Update.
3923         * config/m32r/tm-m32r.h: Update.
3924         * config/m68k/tm-delta68.h: Update.
3925         * config/m68k/tm-linux.h: Update.
3926         * config/m68k/tm-m68k.h: Update.
3927         * config/m88k/tm-m88k.h: Update.
3928         * config/mcore/tm-mcore.h: Update.
3929         * config/mips/tm-mips.h: Update.
3930         * config/mn10200/tm-mn10200.h: Update.
3931         * config/pa/tm-hppa.h: Update.
3932         * config/pa/tm-hppa64.h: Update.
3933         * config/sparc/tm-sp64.h: Update.
3934         * config/sparc/tm-sparc.h: Update.
3935         * config/sparc/tm-sparclet.h: Update.
3936         * config/z8k/tm-z8k.h: Update.
3937
3938 2002-06-14  Andrew Cagney  <cagney@redhat.com>
3939
3940         * Makefile.in (i386_linux_tdep_h): Define.
3941         (i386_tdep_h, i387_tdep_h): Define.
3942         (i386-linux-nat.o): Add $(i386_linux_tdep_h),
3943         $(i386_tdep_h) and $(i387_tdep_h).
3944         * i386-linux-nat.c: Include "i386-linux-tdep.h".
3945
3946 2002-06-14  Mark Kettenis  <kettenis@gnu.org>
3947
3948         * config/i386/tm-i386.h (START_INFERIOR_TRAPS_EXPECTED): Removed.
3949         Already covered by the default.
3950
3951         * config/i386/tm-i386.h (TARGET_LONG_DOUBLE_FORMAT,
3952         TARGET_LONG_DOUBLE_BIT): Remove.  * i386-tdep.c
3953         (i386_gdbarch_init): Initialize long_double_format and long_double
3954         bit.
3955
3956         * config/i386/i386sol2.mt (TDEPFILES): Add i386-sol2-tdep.o and
3957         i386bsd-tdep.o.  Remove solib.o, solib-svr4.o and solib-legacy.o.
3958         Move these to ...
3959         * config/i386/i386sol2.mh: ... here.
3960         * config/i386/tm-i386sol2.h (STAB_REG_TO_REGNUM): Remove define.
3961         (sigtramp_saved_pc, I386V4_SIGTRAMP_SAVED_PC): Don't #undef.
3962         (SIGCONTEXT_PC_OFFSET): Remove define.
3963         (IN_SIGTRAMP): Remove define.
3964         * i386-sol2-tdep.c: New file.
3965         
3966         * config/i386/i386nw.mt (TM_FILE): Change to tm-i386.h.
3967         * config/i386/tm-i386nw.h: Removed.
3968
3969         * config/i386/tm-fbsd.h (STAB_REG_TO_REGNUM,
3970         USE_STRUCT_CONVENTION): Remove defines.
3971         (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
3972         (get_longjmp_target): Remove prototype.
3973         (IN_SIGTRAMP): Remove define.
3974         (i386bsd_in_sigtramp): Remove prototype.
3975         (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
3976         function.  Update comment accordingly
3977         (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
3978         (FRAME_SAVED_PC): Remove define.
3979         (i386bsd_frame_saved_pc): Remove prototype.
3980         * config/i386/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC,
3981         GET_LONGJMP_TARGET): Remove defines.
3982         (get_longjmp_target): Remove prototype.
3983         (IN_SIGTRAMP): Remove define.
3984         (i386bsd_in_sigtramp): Remove prototype.
3985         (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
3986         function.  Update comment accordingly
3987         (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
3988         (FRAME_SAVED_PC): Remove define.
3989         (i386bsd_frame_saved_pc): Remove prototype.
3990         * config/i386/tm-nbsdaout.h (i386nbsd_aout_use_struct_convention):
3991         Remove prototype.
3992         (USE_STRUCT_CONVENTION): Remove prototype.
3993         * i386bsd-nat.c (i386bsd_sigcontext_pc_offset): Remove
3994         declaration.
3995         (_initialize_i386bsd_nat): Revise logic to determine some
3996         constants at compile time when compiling a native GDB.  Warn if
3997         things don't match up with what we expect.
3998         * i386bsd-tdep.c (i386bsd_sigtramp_start, i386bsd_sigtramp_end):
3999         Remove variables.
4000         (i386bsd_in_sigtramp): Rename tp i386bsd_pc_in_sigtramp.  Rewrite
4001         to use date stored in `struct gdbarch_tdep'.
4002         (i386bsd_sigcontext_offset): Remove varaible.
4003         (i386bsd_sigtramp_saved_pc): Make public.  Rewrite to use data
4004         stored in `struct gdbarch_tdep'.
4005         (i386bsd_frame_saved_pc): Make static.
4006         (i386bsd_sigtramp_start, i386bsd_sigtramp_end): New functions.
4007         (i386bsd_sc_pc_offset, i386nbsd_sc_pc_offset,
4008         i386fbsd_sigtramp_start, i386fbsd_sigtramp_end,
4009         i386fbsd4_sc_pc_offset): New variables.
4010         (i386bsd_init_abi, i386nbsd_init_abi, i386nbsdelf_init_abi,
4011         i386fbsdaout_init_abi, i386fbsd_init_abi, i386fbsd4_init_abi): New
4012         functions.
4013         (i386bsd_aout_osabi_sniffer, _initialize_i386bsd_tdep): New
4014         functions.
4015         * i386fbsd-nat.c (_initialize_i386fbsd_nat): Fix type in comment.
4016         Modify the value of i386fbsd_sigtramp_start and
4017         i386fbsd_sigtramp_end instead of i386bsd_sigtramp_start and
4018         i386fbsd_sigtramp_end.
4019         * i386nbsd-tdep.c: (i386nbsd_aout_use_struct_convention): Remove
4020         function.
4021
4022         * config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): Move
4023         define to i386-linux-tdep.h.
4024         (NUM_REGS, MAX_NUM_REGS, REGISTER_BYTES, REGISTER_NAME,
4025         REGISTER_BYTE, REGISTER_RAW_SIZE, STAB_REG_TO_REGNUM): Remove
4026         defines.
4027         (i386_linux_register_name, i386_linux_register_byte,
4028         i386_linux_register_raw_size): Remove prototypes.
4029         (i386_linux_svr4_fetch_link_map_offsets): Remove prototype.
4030         (SVR4_FETCH_LINK_MAP_OFFSETS): Remove define.
4031         (IN_SIGTRAMP, FRAME_CHAIN, FRAME_SAVED_PC, SAVED_PC_AFTER_CALL,
4032         TARGET_WRITE_PC): Remove defines.
4033         (i386_linux_in_sigtramp, i386_linux_frame_chain,
4034         i386_linux_frame_saved_pc, i386_linux_saved_pc_after_call,
4035         i386_linux_write_pc): Remove prototypes.
4036         (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
4037         (get_longjmp_target): Remove prototype.
4038         * i386-linux-tdep.h: New file.
4039         * i386-linux-nat.c: Include "i386-linux-tdep.h".
4040         * i386-linux-tdep.c: Include "i386-tdep.h" and
4041         "i386-linux-tdep.h".
4042         (i386_linux_register_name, i386_linux_register_byte,
4043         i386_linux_register_raw_size, i386_linux_in_sigtramp,
4044         i386_linux_write_pc, i386_linux_svr4_fetch_link_map_offsets):
4045         Make static.
4046         (i386_linux_init_abi): New function.
4047         (_initialize_i386_linux_tdep): New function.
4048
4049         * config/i386/tm-i386.h (SAVED_PC_AFTER_CALL): Remove define.
4050         (i386_saved_pc_after_call): Remove prototype.
4051         (MAX_NUM_REGS): Increase to deal with Linux's orig_eax "register".
4052         (REGISTER_NAME, STAB_REG_TO_REGNUM, SDB_REG_TO_REGNUM,
4053         DWARF_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM): Remove defines.
4054         (i386_register_name, i386_stab_reg_to_regnum,
4055         i386_dwarf_reg_to_regnum): Remove prototypes.
4056         (SIZEOF_GREGS, SIZEOF_FPU_REGS, SIZEOF_FPU_CTL_REGS,
4057         SIZEOF_SSE_REGS): Remove defines.
4058         (REGISTER_BYTES): Remove define.
4059         (REGISTER_BYTE, REGISTER_RAW_SIZE): Remove defines.
4060         (i386_register_byte, i386_register_raw_size): Remove prototypes.
4061         (FRAME_CHAIN, FRAME_SAVED_PC): Remove defines.
4062         (i386_frame_chain, i386_frame_saved_pc): Remove prototypes.
4063         * config/i386/tm-i386v4.h (FRAME_CHAIN_VALID): Remove define.
4064         (JB_ELEMENT_SIZE, JB_PC, JB_EBX, JB_ESI, JB_EDI, JB_EBP, JB_ESP,
4065         JB_EDX, GET_LONGJMP_TARGET): Remove defines.
4066         (get_longjmp_target): Remove prototype.
4067         (I386V4_SIGTRAMP_SAVED_PC, IN_SIGTRAMP): Remove defines.
4068         (sigtramp_saved_pc): Remove define.
4069         (i386v4_sigtramp_saved_pc): Remove prototype.
4070         * config/i386/tm-go32.h (FRAME_CHAIN,
4071         FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC): Remove defines.
4072         (i386go32_frame_saved_pc): Remove prototype.
4073         (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
4074         (get_longjmp_target): Remove prototype.
4075         * i386-tdep.h: Include "osabi.h".
4076         (enum i386_abi): Removed.
4077         (enum struct_return): New enum.
4078         (struct gdbarch_tdep): Remove abi member, add osabi, jb_pc_offset,
4079         struct_return, sigtramp_saved_pc, sigtramp_start, sigtramp_end and
4080         sc_pc_offset members.
4081         (i386_gdbarch_register_os_abi): Remove prototype.
4082         (I386_NUM_GREGS, I386_NUM_FREGS, I386_NUM_XREGS,
4083         I386_SSE_NUM_REGS): New defines.
4084         (I386_SIZEOF_GREGS, I386_SIZEOF_FREGS, I386_SIZEOF_XREGS,
4085         I386_SSE_SIZEOF_REGS): New defines.
4086         (i386_register_name, i386_register_byte, i386_register_raw_size):
4087         New prototypes.
4088         (i386_elf_init_abi, i386_svr4_init_abi): New prototypes.
4089         (i386bsd_sigtramp_saved_pc): New prototype.
4090         * i386-tdep.c: Don't include "elf-bfd.h".
4091         (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum,
4092         i386_frame_chain, i386_saved_pc_after_call): Make static.
4093         (i386_frame_saved_pc): Rewrite to call architecture dependent
4094         function to deal with signal handlers.  Make static.
4095         (i386go32_frame_saved_pc): Removed.
4096         [GET_LONGJMP_TARGET] (JB_PC, JB_ELEMENT_SIZE, get_longjmp_target):
4097         Removed.
4098         (i386_get_longjmp_target): New function.
4099         (default_struct_convention, pcc_struct_convention,
4100         reg_struct_convention, valid_conventions, struct_convention): New
4101         variables.
4102         (i386_use_struct_convention): New function.
4103         (i386v4_sigtramp_saved_pc): Renamed to
4104         i386_svr4_sigtramp_saved_pc.  Made static.  Moved.
4105         (i386_pc_in_sigtramp): New function.
4106         (i386_abi_names): Removed.
4107         (ABI_TAG_OS_GNU_LINUX, ABI_TAG_OS_GNU_HURD,
4108         ABI_TAG_OS_GNU_SOLARIS, ABI_TAG_OS_FREEBSD, ABI_TAG_OS_NETBSD):
4109         Removed.
4110         (process_note_sections, i386_elf_abi_from_note, i386_elf_abi,
4111         i386_gdbarch_register_os_abi): Removed.
4112         (struct i386_abi_handler): Removed.
4113         (i386_abi_handler_list): Removed.
4114         (i386_svr4_pc_in_sigtramp, i386_go32_pc_in_sigtramp): New
4115         functions.
4116         (i386_elf_init_abi, i386_svr4_init_abi, i386_go32_init_abi,
4117         i386_nw_init_abi): New functions.
4118         (i386_gdbarch_init): Rewritten to use generic OS ABI framework.
4119         Use set_gdbarch_xxx() calls instead of relying on macros for a
4120         number of calls.
4121         (i386_coff_osabi_sniffer, i386_nlm_osabi_sniffer): New functions.
4122         (_initialize_i386_tdep): Add new 'struct-convcention' command.
4123         Register the various architecture variants defined in this file.
4124
4125 2002-06-14  Daniel Jacobowitz  <drow@mvista.com>
4126
4127         * gdbtypes.h (TYPE_FLAG_VARARGS): Update comment.
4128         (struct main_type): Remove arg_types member.  Update comments for
4129         struct field.
4130         (TYPE_ARG_TYPES): Remove.
4131         (TYPE_FN_FIELD_ARGS): Update.
4132         (smash_to_method_type): Update prototype.
4133
4134         * c-typeprint.c (cp_type_print_method_args): Take method type
4135         instead of argument list.  Use new argument layout.  Simplify.
4136         (c_type_print_args): Use new argument layout.  Simplify.
4137         (c_type_print_base): Update call to cp_type_print_method_args.
4138         * dwarf2read.c (dwarf2_add_member_fn): Remove unneeded type
4139         argument; use die->type instead.  Update call to
4140         smash_to_method_type.
4141         (read_structure_scope): Update call to dwarf2_add_member_fn.
4142         * gdbtypes.c (allocate_stub_method): Update comment.
4143         (smash_to_method_type): Take new NARGS and VARARGS arguments.
4144         Use new argument layout.
4145         (check_stub_method): Use new argument layout.  Don't count
4146         void as an argument.
4147         (print_arg_types): Update comments.  Use new argument layout.
4148         (recursive_dump_type): Don't print arg_types member.
4149         * hpread.c (hpread_read_struct_type): Use new argument layout.
4150         (fixup_class_method_type): Likewise.
4151         (hpread_type_lookup): Likewise.
4152         * stabsread.c (read_type): Update calls to read_args and
4153         smash_to_method_type.
4154         (read_args): Use new argument layout.  Simplify.
4155         * valops.c (typecmp): Use new argument layout.  Update parameters
4156         and comments.  Simplify.
4157         (hand_function_call): Use new argument layout.
4158         (search_struct_method): Update call to typecmp.
4159         (find_overload_match): Use new argument layout.
4160
4161 2002-06-13  Daniel Jacobowitz  <drow@mvista.com>
4162
4163         * NEWS: Mention multithreaded debug support for gdbserver.
4164
4165 2002-06-13  Daniel Jacobowitz  <drow@mvista.com>
4166
4167         * MAINTAINERS: Mention NEWS.
4168
4169 2002-06-13  Daniel Jacobowitz  <drow@mvista.com>
4170
4171         * mips-tdep.c (PROC_SYMBOL): Add warning comment.
4172         (struct mips_objfile_private, compare_pdr_entries): New.
4173         (non_heuristic_proc_desc): Read the ".pdr" section if it
4174         is present.
4175
4176 2002-06-12  Andrew Cagney  <ac131313@redhat.com>
4177
4178         * arm-tdep.c (arm_push_arguments): Rewrite using a two-pass loop.
4179         (arm_debug): New static variable.
4180         (_initialize_arm_tdep): Add ``set debug arm'' command.
4181
4182 2002-06-12  Andrew Cagney  <ac131313@redhat.com>
4183
4184         * Makefile.in (sim_arm_h): Define.
4185         (arm-tdep.o): Add $(sim_arm_h) and $(gdb_assert_h).
4186         * arm-tdep.c: Include "gdb/sim-arm.h" and "gdb_assert.h".
4187         (arm_register_sim_regno): New function, map an internal REGNUM
4188         onto a simulator register number.
4189         (arm_gdbarch_init): Set register_sim_regno.
4190
4191 2002-06-09  Aldy Hernandez  <aldyh@redhat.com>
4192
4193         * MAINTAINERS: Add self.
4194
4195 2002-06-11  Jim Blandy  <jimb@redhat.com>
4196
4197         * source.c (source_info): Mention whether the symtab has
4198         information about preprocessor macros.
4199
4200         Call the command `info macro', not `show macro'.
4201         * macrocmd.c (info_macro_command): Renamed from `show_macro_command'.
4202         Fix error message.
4203         (_initialize_macrocmd): Register `info_macro_command' in
4204         `infolist', not `showlist'.
4205
4206 2002-06-11  Daniel Jacobowitz  <drow@mvista.com>
4207
4208         * mips-tdep.c (MIPS_FPU_TYPE, FP_REGISTER_DOUBLE, MIPS_EABI)
4209         (MIPS_LAST_FP_ARG_REGNUM, MIPS_LAST_ARG_REGNUM)
4210         (MIPS_DEFAULT_SAVED_REGSIZE, MIPS_REGS_HAVE_HOME_P)
4211         (MIPS_DEFAULT_STACK_ARGSIZE, GDB_TARGET_IS_MIPS64)
4212         (MIPS_DEFAULT_MASK_ADDRESS_P): Remove obsolete definitions.  Define
4213         unconditionally.
4214         (set_mipsfpu_single_command, set_mipsfpu_double_command)
4215         (set_mipsfpu_none_command): Remove if (GDB_MULTI_ARCH).
4216         (_initialize_mips_tdep): Remove dead code.
4217         * config/mips/tm-irix5.h (MIPS_LAST_ARG_REGNUM)
4218         (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
4219         * config/mips/tm-irix6.h (MIPS_LAST_ARG_REGNUM)
4220         (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
4221         * config/mips/tm-mips.h (MIPS_EABI, MIPS_LAST_ARG_REGNUM,
4222         MIPS_LAST_FP_ARG_REGNUM): Remove.
4223
4224 2002-06-11  Michal Ludvig  <mludvig@suse.cz>
4225
4226         * dwarf2cfi.c (unwind_tmp_obstack_init): New.
4227         (unwind_tmp_obstack_free, parse_frame_info)
4228         (update_context, cfi_read_fp, cfi_write_fp)
4229         (cfi_frame_chain, cfi_init_extra_frame_info)
4230         (cfi_virtual_frame_pointer): Use the above function.
4231         * dwarf2cfi.c: Reindented (using 'indent dwarf2cfi.c').
4232
4233 2002-06-11  Corinna Vinschen  <vinschen@redhat.com>
4234
4235         * v850-tdep.c (v850_type_is_scalar): New function.
4236         (v850_use_struct_convention): Match current gcc implementation
4237         as close as possible.
4238         (v850_push_arguments): Fix stack_offset handling.  Don't write
4239         struct_addr into register.  This is done by v850_store_struct_return.
4240         (v850_extract_return_value): Care for structs.
4241         (v850_store_return_value): Ditto.
4242         (v850_store_struct_return): Actually write address.
4243
4244 2002-06-11  Michal Ludvig  <mludvig@suse.cz>
4245
4246         * x86-64-tdep.c (x86_64_skip_prologue): Fix to work on functions
4247         without debug information too.
4248
4249 2002-06-10  Andrew Cagney  <ac131313@redhat.com>
4250
4251         * gdbarch.sh (PRINT_FLOAT_INFO): Add frame and ui_file parameters.
4252         Make multi-arch pure.
4253         * gdbarch.h, gdbarch.c: Re-generate.
4254         * arm-tdep.c (arm_print_float_info): Update.
4255         * arch-utils.h (default_print_float_info): Update.
4256         * arch-utils.c (default_print_float_info): Update.
4257         * infcmd.c (float_info): Update call.
4258
4259 2002-06-10  Andrew Cagney  <ac131313@redhat.com>
4260
4261         * Makefile.in (init.c): Move the call to _initialize_gdbtypes to
4262         the front of the initialize list.
4263
4264 2002-06-10  Andrew Cagney  <ac131313@redhat.com>
4265
4266         * infrun.c (struct inferior_status): Replace fields
4267         selected_frame_address and selected_level with field
4268         selected_frame_id.
4269         (save_inferior_status): Update.  Use get_frame_id.
4270         (struct restore_selected_frame_args): Delete.
4271         (restore_selected_frame): Update.  Use frame_find_by_id.
4272         (restore_inferior_status): Update.
4273
4274         * breakpoint.h (struct breakpoint): Change type of
4275         watchpoint_frame to frame_id.
4276         * breakpoint.c (insert_breakpoints): Use frame_find_by_id.  Remove
4277         call to get_current_frame.
4278         (do_enable_breakpoint): Use frame_find_by_id.  Remove call to
4279         get_current_frame.
4280         (watchpoint_check): Use frame_find_by_id.
4281
4282         * frame.h (record_selected_frame): Delete declaration.
4283         * stack.c (record_selected_frame): Delete function.
4284         
4285         * frame.h (struct frame_id): Define.
4286         (get_frame_id): Declare.
4287         (frame_find_by_id): Declare.
4288         * frame.c (frame_find_by_id): New function.
4289         (get_frame_id): New function.
4290
4291 2002-06-10  Andrey Volkov <avolkov@transas.com>
4292
4293         * ser-e7kpc.c: Fix duplicated define and call of 
4294         _initialize_ser_e7000pc
4295             
4296 2002-06-09  Daniel Jacobowitz  <drow@mvista.com>
4297
4298         * signals/signals.c (target_signal_from_host): Fix #ifdef
4299         SIGRTMIN case.
4300         (do_target_signal_to_host): Likewise.
4301
4302 2002-06-09  Daniel Jacobowitz  <drow@mvista.com>
4303
4304         * mips-tdep.c (mips_find_abi_section): New function.
4305         (mips_gdbarch_init): Call it.
4306
4307 2002-06-09  Mark Kettenis  <kettenis@gnu.org>
4308
4309         * solib-svr4.c (init_fetch_link_map_offsets): Simply return
4310         legacy_fetch_link_map_offsets.  Adjust comment to reflect reality
4311         after Andrew's 2002-06-08 gdbarch change.
4312
4313 2002-06-09  Mark Kettenis  <kettenis@gnu.org>
4314
4315         * i386-linux-nat.c (suppy_gregset): Don't supply
4316         I386_LINUX_ORIG_EAX_REGNUM if there isn't room for it in GDB's
4317         register cache.
4318         (fill_gregset): Don't fetch it under the same circumstances.
4319
4320 2002-06-09  Andrew Cagney  <cagney@redhat.com>
4321
4322         * Makefile.in (callback_h): Define.
4323         (remote_sim_h): Update path to remote-sim.h.
4324         (remote-rdp.o): Add $(callback_h).
4325         (remote-sim.o): Use $(callback_h).
4326         * remote-sim.c: Include "gdb/callback.h" and "gdb/remote-sim.h".
4327         * remote-rdp.c: Include "gdb/callback.h".
4328
4329 2002-06-09  Mark Kettenis  <kettenis@gnu.org>
4330
4331         * osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
4332         * osabi.c (gdb_osabi_names): Add "DJGPP" and "NetWare".
4333
4334 2002-06-08  Andrew Cagney  <ac131313@redhat.com>
4335
4336         * sparcl-tdep.c: Use __CYGWIN__ instead of __CYGWIN32__.
4337         * rdi-share/serpardr.c: Ditto.
4338         * rdi-share/unixcomm.c: Ditto.
4339         * rdi-share/serdrv.c: Ditto.
4340         * rdi-share/hostchan.h: Ditto.
4341         * rdi-share/hostchan.c: Ditto.
4342         * rdi-share/host.h: Ditto.
4343         * rdi-share/devsw.c: Ditto.
4344
4345         * objfiles.h: Change type of obj_private to void pointer.
4346         * pa64solib.c: Update copyright.  Don't include "assert.h", use
4347         strcmp instead of STREQ, use LONGEST, do not use PTR
4348         * somsolib.c: Ditto.
4349
4350         * config/djgpp/fnchange.lst: Fix problems with bfd/elf32-i386.c,
4351         bfd/elf32-i386qnx.c, bfd/elf32-sh.c, bfd/elf32-sh64-nbsd.c,
4352         bfd/elf64-sh64-nbsd.c bfd/elf64-sh64.c.
4353
4354 2002-06-08  Andrew Cagney  <ac131313@redhat.com>
4355
4356         * frame.c (GET_SAVED_REGISTER): Delete macro definition.
4357         (default_get_saved_register): Delete function.
4358         * gdbarch.sh (GET_SAVED_REGISTER): Set default to
4359         generic_unwind_get_saved_register.
4360         * gdbarch.h, gdbarch.c: Re-generate.
4361         
4362 2002-06-08  Andrew Cagney  <ac131313@redhat.com>
4363
4364         * gdbarch.sh (FRAME_CHAIN_VALID): Set default to
4365         generic_func_frame_chain_valid.
4366         * gdbarch.h, gdbarch.c: Re-generate.
4367         * blockframe.c (generic_func_frame_chain_valid): Only check
4368         PC_IN_CALL_DUMMY when generic dummy frames.  Don't worry about
4369         passing FP to PC_IN_CALL_DUMMY.
4370         Fix PR gdb/360.
4371
4372 2002-06-08  Andrew Cagney  <ac131313@redhat.com>
4373
4374         * gdbarch.sh (struct gdbarch_data): Add field init_p.
4375         (register_gdbarch_data): Initialize init_p.
4376         (gdbarch_data): Initialize data pointer using the init function.
4377         (init_gdbarch_data): Delete function.
4378         (gdbarch_update_p): Update.
4379         (initialize_non_multiarch): Update.
4380         (struct gdbarch): Add field initialized_p.
4381         * gdbarch.h, gdbarch.c: Re-generate.
4382
4383 2002-06-07  Michal Ludvig  <mludvig@suse.cz>
4384
4385         * x86-64-linux-nat.c (x86_64_fxsave_offset): New.
4386         (supply_fpregset, fill_fpregset): Don't call i387_*_fxsave,
4387         better do the things actually here.
4388         * x86-64-tdep.c (x86_64_register_name2nr): New.
4389         (x86_64_register_name): Renamed to x86_64_register_nr2name.
4390         (x86_64_gdbarch_init): Respect the above change.
4391         * x86-64-tdep.h (x86_64_register_name2nr)
4392         (x86_64_register_nr2name): Add prototypes.
4393         * config/i386/x86-64linux.mt (TDEPFILES): Remove i387-tdep.o.
4394
4395 2002-06-06  Michael Snyder  <msnyder@redhat.com>
4396
4397         * d10v-tdep.c (d10v_push_arguments): Handle struct_return.
4398         Delete extra braces and re-indent.
4399         (d10v_store_return_value): Char return values
4400         must be shifted over by one byte in R0.
4401         (d10v_extract_return_value): Delete extra braces, re-indent.
4402
4403 2002-06-06  Elena Zannoni  <ezannoni@redhat.com>
4404
4405         * d10v-tdep.c (d10v_read_sp, d10v_read_fp): Add prototype.
4406         (d10v_register_virtual_type): Make $fp and $sp be pointer to data.
4407         (d10v_integer_to_address): Rewrite.
4408         (d10v_frame_init_saved_regs): When reading fp and sp registers use
4409         the d10v specific functions which take care of converting to the
4410         correct space.
4411
4412 2002-06-06  Elena Zannoni  <ezannoni@redhat.com>
4413
4414         * config/djgpp/fnchange.lst: Add testsuite files altivec-abi.c,
4415         altivec-abi.exp, altivec-regs.c, altivec-regs.exp.
4416
4417 2002-06-02  Andrew Cagney  <ac131313@redhat.com>
4418
4419         * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm
4420         includes.
4421         * config/tm-linux.h: Ditto.
4422         * config/alpha/tm-alphalinux.h: Ditto.
4423         * config/arm/nm-linux.h, config/arm/tm-linux.h: Ditto.
4424         * config/arm/xm-nbsd.h, config/i386/nm-gnu.h: Ditto.
4425         * config/i386/nm-i386lynx.h, config/i386/nm-i386sol2.h: Ditto.
4426         * config/i386/nm-i386v4.h, config/i386/nm-i386v42mp.h: Ditto.
4427         * config/i386/nm-linux.h, config/i386/nm-m3.h: Ditto.
4428         * config/i386/nm-ptx4.h, config/i386/nm-x86-64.h: Ditto.
4429         * config/i386/tm-i386gnu.h, config/i386/tm-i386lynx.h: Ditto.
4430         * config/i386/tm-i386m3.h, config/i386/tm-i386sco5.h: Ditto.
4431         * config/i386/tm-i386v4.h, config/i386/tm-linux.h: Ditto.
4432         * config/i386/tm-ptx4.h, config/i386/tm-vxworks.h: Ditto.
4433         * config/i386/xm-i386v4.h, config/i386/xm-nbsd.h: Ditto.
4434         * config/i386/xm-ptx.h, config/i386/xm-ptx4.h: Ditto.
4435         * config/i960/tm-vx960.h, config/ia64/nm-aix.h: Ditto.
4436         * config/ia64/nm-linux.h, config/ia64/tm-aix.h: Ditto.
4437         * config/ia64/tm-linux.h, config/ia64/xm-aix.h: Ditto.
4438         * config/m68k/nm-linux.h, config/m68k/nm-m68klynx.h: Ditto.
4439         * config/m68k/nm-sysv4.h, config/m68k/tm-linux.h: Ditto.
4440         * config/m68k/tm-m68klynx.h, config/m68k/tm-m68kv4.h: Ditto.
4441         * config/m68k/tm-sun2os4.h, config/m68k/tm-sun3os4.h: Ditto.
4442         * config/m68k/tm-vx68.h, config/m68k/xm-m68kv4.h: Ditto.
4443         * config/m68k/xm-nbsd.h, config/m88k/nm-delta88v4.h: Ditto.
4444         * config/m88k/tm-delta88v4.h, config/m88k/xm-delta88v4.h: Ditto.
4445         * config/mips/nm-irix5.h, config/mips/nm-linux.h: Ditto.
4446         * config/mips/tm-linux.h, config/mips/tm-mips64.h: Ditto.
4447         * config/mips/tm-mipsm3.h, config/mips/tm-mipsv4.h: Ditto.
4448         * config/mips/tm-vxmips.h, config/mips/xm-irix5.h: Ditto.
4449         * config/mips/xm-mipsv4.h, config/ns32k/xm-nbsd.h: Ditto.
4450         * config/pa/nm-hppao.h, config/powerpc/nm-linux.h: Ditto.
4451         * config/powerpc/tm-linux.h, config/powerpc/tm-vxworks.h: Ditto.
4452         * config/powerpc/xm-aix.h, config/rs6000/nm-rs6000ly.h: Ditto.
4453         * config/rs6000/tm-rs6000ly.h, config/rs6000/xm-aix4.h: Ditto.
4454         * config/sh/tm-linux.h, config/sparc/nm-linux.h: Ditto.
4455         * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4sol2.h: Ditto.
4456         * config/sparc/tm-linux.h, config/sparc/tm-sp64linux.h: Ditto.
4457         * config/sparc/tm-sp64sim.h, config/sparc/tm-sparclynx.h: Ditto.
4458         * config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h: Ditto.
4459         * config/sparc/tm-vxsparc.h, config/sparc/xm-sun4sol2.h: Ditto.
4460
4461 2002-05-04  Aidan Skinner <aidan@velvet.net>
4462
4463         * ada-exp.tab.c: New file
4464         * ada-exp.y: New file
4465         * ada-lang.c: New file
4466         * ada-lang.h: New file
4467         * ada-lex.c: New file
4468         * ada-lex.l: New file
4469         * ada-tasks.c: New file
4470         * ada-typeprint.c: New file
4471         * ada-valprint.c: New file
4472         
4473 2002-06-02  Jason Thorpe  <thorpej@wasabisystems.com>
4474
4475         * ppcnbsd-tdep.c (ppcnbsd_init_abi): Don't set
4476         use_struct_convention to ppc_sysv_abi_broken_use_struct_convention.
4477
4478 2002-06-02  Jason Thorpe  <thorpej@wasabisystems.com>
4479
4480         * config/rs6000/aix4.mt (TDEPFILES): Use ppc-sysv-tdep.o
4481         insetead of ppc-linux-tdep.o.
4482         * config/rs6000/rs6000.mt (TDEPFILES): Likewise.
4483         * config/rs6000/rs6000lynx.mt (TDEPFILES): Likewise.
4484
4485 2002-06-02  Andrew Cagney  <ac131313@redhat.com>
4486
4487         2002-05-07 Christian Groessler <chris@groessler.org>
4488         * z8k-tdep.c (z8k_print_register_hook): Fix display of 32 and 64
4489         bit register contents for little endian hosts.
4490
4491 2002-06-01  Andrew Cagney  <ac131313@redhat.com>
4492
4493         * MAINTAINERS: Mention that any `HP/UX reader' can be changed by
4494         any maintainer.
4495
4496 2002-06-01  Andrew Cagney  <ac131313@redhat.com>
4497
4498         * gdbarch.h: Regenerate.
4499
4500 2002-06-01  Andrew Cagney  <ac131313@redhat.com>
4501
4502         * MAINTAINERS: Add everyone to write-after-approval list.
4503
4504 2002-06-01  Andrew Cagney  <ac131313@redhat.com>
4505
4506         * stack.c (frame_info): Use frame_register_unwind instead of
4507         saved_regs.  Mention when the SP is on the stack or in a register.
4508
4509         * frame.h (frame_register_unwind_ftype): Define.  Document.
4510         (struct frame_info): Add field register_unwind and
4511         register_unwind_cache.
4512         (frame_register_unwind): Declare.
4513         (generic_unwind_get_saved_register): Declare.
4514
4515         * frame.c (frame_register_unwind): New function.
4516         (generic_unwind_get_saved_register): New function.
4517
4518         * blockframe.c (generic_call_dummy_register_unwind): New function.
4519         (frame_saved_regs_register_unwind): New function.
4520         (set_unwind_by_pc): New function.
4521         (create_new_frame): New function.
4522         (get_prev_frame): New function.
4523
4524 2002-05-30  Andrew Cagney  <ac131313@redhat.com>
4525
4526         * a29k-share/: Delete directory.
4527         * remote-vx29k.c: Delete file.
4528
4529 2002-05-30  Jason Thorpe  <thorpej@wasabisystems.com>
4530
4531         * config/djgpp/fnchange.lst: Add ns32knbsd-nat.c, ns32knbsd-tdep.c,
4532         ppcnbsd-nat.c, ppcnbsd-tdep.c, sparcnbsd-nat.c, and sparcnbsd-tdep.c.
4533
4534 2002-05-30  Jason Thorpe  <thorpej@wasabisystems.com>
4535
4536         * Makefile.in (ALLDEPFILES): Add sparc64nbsd-nat.c,
4537         sparcnbsd-nat.c, and sparcnbsd-tdep.c.
4538         (sparc64nbsd-nat.o)
4539         (sparcnbsd-nat.o)
4540         (sparcnbsd-tdep.o): New dependency lists.
4541         * NEWS: Note new UltraSPARC NetBSD native configuration.
4542         * configure.host (sparc64-*-netbsd*): New host.
4543         * configure.tgt (sparc-*-netbsdelf*)
4544         (sparc-*-netbsd*): Set gdb_target to nbsd.
4545         (sparc64-*-netbsd*): New target.
4546         * sparc64nbsd-nat.c: New file.
4547         * sparcnbsd-nat.c: New file.
4548         * sparcnbsd-tdep.c: New file.
4549         * sparcnbsd-tdep.h: New file.
4550         * config/sparc/nbsd.mt: New file.
4551         * config/sparc/nbsd64.mh: New file.
4552         * config/sparc/nbsd64.mt: New file.
4553         * config/sparc/nbsdaout.mh (NATDEPFILES): Remove corelow.o,
4554         sparc-nat.o, and solib.o.  Add sparcnbsd-nat.o.
4555         (HOST_IPC): Remove.
4556         * config/sparc/nbsdaout.mt: Remove.
4557         * config/sparc/nbsdelf.mh (NATDEPFILES): Remove corelow.o,
4558         sparc-nat.o, and solib.o.  Add sparcnbsd-nat.o.
4559         (HOST_IPC): Remove.
4560         * config/sparc/nbsdelf.mt: Remove.
4561         * config/sparc/nm-nbsd.h: Update copyright years.  Remove all
4562         sparc-nat.c compatiblity defines.
4563         * config/sparc/tm-nbsd.h: Update copyright years.  Include solib.h.
4564         (GDB_MULTI_ARCH): Set to GDB_MULTI_ARCH_PARTIAL.
4565         * config/sparc/tm-nbsd64.h: New file.
4566         * config/sparc/tm-nbsdaout.h: Remove.
4567         * config/sparc/xm-nbsd.h: Remove.
4568
4569 2002-05-30  Jason Thorpe  <thorpej@wasabisystems.com>
4570
4571         * Makefile.in (sparc-tdep.o): Add osabi.h to dependency list.
4572         * sparc-tdep.c: Include osabi.h.
4573         (gdbarch_tdep): Add osabi member.
4574         (_initialize_sparc_tdep): Use gdbarch_register.
4575         (sparc_gdbarch_init): Use generic OS ABI framework.
4576         (sparc_dump_tdep): New function.
4577
4578 2002-05-30  Kevin Buettner  <kevinb@redhat.com>
4579
4580         * corefile.c (do_captured_read_memory_integer): Return non-zero
4581         result.
4582         (safe_read_memory_integer): Copy result of memory read when
4583         status is non-zero.  Also, add comments.
4584
4585 2002-05-20  Jason Thorpe  <thorpej@wasabisystems.com>
4586
4587         * Makefile.in (ppc_tdep_h): Define.
4588         (ppc-linux-nat.o)
4589         (ppc-linux-tdep.o)
4590         (rs6000-tdep.o): Use $(ppc_tdep_h).
4591         (ppc-sysv-tdep.o)
4592         (ppcnbsd-nat.o)
4593         (ppcnbsd-tdep.o): New dependency lists.
4594         * ppc-tdep.h: Use generic OS ABI framework.
4595         * ppc-linux-tdep.c (_initialize_ppc_linux_tdep)
4596         (ppc_linux_init_abi): New functions.
4597         (ppc_sysv_abi_broken_use_struct_convention)
4598         (ppc_sysv_abi_use_struct_convention)
4599         (ppc_sysv_abi_push_arguments): Move to...
4600         * ppc-sysv-tdep.c: ...here.
4601         * ppcnbsd-nat.c: Don't include gdbcore.h and regcache.h.
4602         * rs6000-tdep.c (process_note_abi_tag_sections)
4603         (get_elfosabi): Remove.
4604         (rs6000_gdbarch_init): Use generic OS ABI framework.
4605         (rs6000_dump_tdep): New function.
4606         (_initialize_rs6000_tdep): Use gdbarch_register.
4607         * config/powerpc/linux.mt (TDEPFILES): Add ppc-sysv-tdep.o.
4608         * config/powerpc/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
4609         * config/powerpc/aix.mt (TDEPFILES): Use ppc-sysv-tdep.o instead
4610         of ppc-linux-tdep.o.
4611         * config/powerpc/nbsd.mt (TDEPFILES): Likewise.
4612         * config/powerpc/ppc-eabi.mt (TDEPFILES): Likewise.
4613         * config/powerpc/ppc-sim.mt (TDEPFILES): Likewise.
4614         * config/powerpc/ppcle-eabi.mt (TDEPFILES): Likewise.
4615         * config/powerpc/ppcle-sim.mt (TDEPFILES): Likewise.
4616         * config/powerpc/vxworks.mt (TDEPFILES): Likewise.
4617
4618 2002-05-29  Jim Blandy  <jimb@redhat.com>
4619
4620         * macroscope.c (default_macro_scope): Put `void' in empty argument
4621         list.
4622
4623 2002-05-29  Andrew Cagney  <ac131313@redhat.com>
4624
4625         * Makefile.in (arch-utils.o): Add $(sim_regno_h).
4626         * arch-utils.c: Include "sim-regno.h".
4627         * gdbarch.sh: Don't include "sim-regno.h".
4628         * gdbarch.h, gdbarch.c: Regenerate.
4629         * sim-regno.h (legacy_register_sim_regno): Move declaration from
4630         here.
4631         * arch-utils.h (legacy_register_sim_regno): To here.
4632         * remote-sim.c (legacy_register_sim_regno): Move function from
4633         here.
4634         * arch-utils.c (legacy_register_sim_regno): To here.
4635
4636 2002-05-28  Andrew Cagney  <ac131313@redhat.com>
4637
4638         * sim-regno.h: New file.
4639         * Makefile.in (sim_regno_h): Define.
4640         (d10v-tdep.o, remote-sim.o): Add dependency on $(sim_regno_h).
4641         * remote-sim.c: Include "sim-regno.h" and "gdb_assert.h".
4642         (legacy_register_sim_regno): New function.
4643         (one2one_register_sim_regno): New function.
4644         (gdbsim_fetch_register): Rewrite.
4645         (gdbsim_store_register): Only store a register when
4646         REGISTER_SIM_REGNO is valid.
4647         * d10v-tdep.c: Include "sim-regno.h".
4648         (d10v_ts2_register_sim_regno): Add legacy_regiter_sim_regno check.
4649         (d10v_ts3_register_sim_regno): Ditto.
4650         * gdbarch.sh: Include "sim-regno.h".
4651         (REGISTER_SIM_REGNO): Set default to legacy_register_sim_regno.
4652         * gdbarch.h, gdbarch.c: Regenerate.
4653         * arch-utils.h (default_register_sim_regno): Delete declaration.
4654         * arch-utils.c (default_register_sim_regno): Delete function.
4655
4656 2002-05-28  Jason Thorpe  <thorpej@wasabisystems.com>
4657
4658         * ppcnbsd-nat.c: Rewrite.
4659         * ppcnbsd-tdep.c: New file.
4660         * ppcnbsd-tdep.h: New file.
4661         * config/powerpc/nbsd.mh (NATDEPFILES): Remove corelow.o,
4662         solib.o, and solib-svr4.o.
4663         * config/powerpc/nbsd.mt (TDEPFILES): Add ppcnbsd-tdep.o,
4664         nbsd-tdep.o, and corelow.o.
4665
4666 2002-05-28  Andrew Cagney  <ac131313@redhat.com>
4667
4668         * MAINTAINERS (--enable-gdb-build-warnings): Rewrite script to use
4669         `tr' and `sed'.  Mention that `broken' targets are not expected to
4670         build.
4671
4672 2002-05-27  Michal Ludvig  <mludvig@suse.cz>
4673
4674         * x86-64-tdep.c (x86_64_skip_prologue): Remove obsolete note.
4675         Let PC point right after the prologue before looking up symbols.
4676         
4677 2002-05-27  Martin M. Hunt  <hunt@redhat.com>
4678
4679         * i386-tdep.c (i386_register_virtual_type): Return 
4680         builtin_type_vec128i for SSE registers.
4681
4682         * gdbtypes.h (builtin_type_vec128i): Declare.
4683
4684         * gdbtypes.c (build_builtin_type_vec128i): New function.
4685         (builtin_type_v2_double, builtin_type_v4_int64): New types.
4686         (builtin_type_vec128i): New type for SSE2 128-bit registers.
4687         (build_gdbtypes): Initialize new builtin vector types.
4688         (_initialize_gdbtypes): Register new vector types with gdbarch.
4689
4690 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
4691
4692         * MAINTAINERS: ns32k is not longer an obsolete candidate,
4693         since it has been multi-arch'd.
4694         * NEWS: Note that ns32k-*-* is now partial multi-arch.
4695         Move Alpha and VAX multi-arch news entries to same section
4696         as other multi-arch news.
4697
4698 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
4699
4700         * ns32k-tdep.c: include gdbtypes.h, inferior.h, regcache.h,
4701         target.s, arch-utils.h, ns32k-tdep.h.  Make many functions
4702         static.  Rename some register numbers to put them in ns32k-tdep
4703         private namespace.
4704         (ns32k_get_saved_register, ns32k_gdbarch_init_32082,
4705         ns32k_gdbarch_init_32382, ns32k_gdbarch_init, ns32k_dump_tdep): New
4706         functions.
4707         (_initialize_ns32k_tdep): Use gdbarch_register.
4708         * ns32k-tdep.h: New file.
4709         * ns32knbsd-tdep.c: New file.
4710         * config/ns32k/nbsdaout.mt (TDEPFILES): Add ns32knbsd-tdep.o.
4711         * config/ns32k/tm-nbsd.h: Include "ns32k/tm-ns32k.h".
4712         (IN_SOLIB_CALL_TRAMPOLINE, REGISTER_NAME, NUM_REGS,
4713         REGISTER_BYTES, REGISTER_BYTE): Remove.
4714         * config/ns32k/tm-ns32k.h: New file.
4715         * config/ns32k/tm-umax.h: Remove.
4716
4717 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
4718
4719         * ns32k-tdep.c (ns32k_saved_pc_after_call,
4720         ns32k_store_struct_return, ns32k_extract_return_value,
4721         ns32k_store_return_value, ns32k_extract_struct_value_address): New
4722         functions.
4723         * config/ns32k/tm-umax.h (SAVED_PC_AFTER_CALL): Define as
4724         ns32k_saved_pc_after_call.
4725         (STORE_STRUCT_RETURN): Define as ns32k_store_struct_return.
4726         (EXTRACT_RETURN_VALUE): Define as ns32k_extract_return_value.
4727         (STORE_RETURN_VALUE): Define as ns32k_store_return_value.
4728         (EXTRACT_STRUCT_VALUE_ADDRESS): Define as
4729         ns32k_extract_struct_value_address.
4730
4731 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
4732
4733         * ns32k-tdep.c (ns32k_call_dummy_words, sizeof_ns32k_call_dummy_words,
4734         ns32k_fix_call_dummy): New.
4735         * config/ns32k/tm-umax.h (CALL_DUMMY_WORDS): Define as
4736         ns32k_call_dummy_words.
4737         (SIZEOF_CALL_DUMMY_WORDS): Define as sizeof_ns32k_call_dummy_words.
4738         (CALL_DUMMY, CALL_DUMMY_LENGTH, CALL_DUMMY_ADDR,
4739         CALL_DUMMY_NARGS): Remove.
4740         (FIX_CALL_DUMMY): Define as ns32k_fix_call_dummy.
4741
4742 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
4743
4744         * ns32k-tdep.c (ns32k_breakpoint_from_pc, ns32k_frame_chain,
4745         ns32k_frame_saved_pc, ns32k_frame_args_address,
4746         ns32k_frame_locals_address, ns32k_frame_init_saved_regs,
4747         ns32k_push_dummy_frame, ns32k_pop_frame): New functions.
4748         * config/ns32k/tm-nbsd.h (FRAME_SAVED_PC): Remove.
4749         * config/ns32k/tm-umax.h (INNER_THAN): Define as core_addr_lessthan.
4750         (BREAKPOINT_FROM_PC): Define as ns32k_breakpoint_from_pc.
4751         (BREAKPOINT): Remove..
4752         (FRAME_CHAIN): Define as ns32k_frame_chain.
4753         (FRAME_SAVED_PC): Define as ns32k_frame_saved_pc.
4754         (FRAME_ARGS_ADDRESS): Define as ns32k_frame_args_address.
4755         (FRAME_LOCALS_ADDRESS): Define as ns32k_frame_locals_address.
4756         (FRAME_FIND_SAVED_REGS): Remove.
4757         (FRAME_INIT_SAVED_REGS): Define as ns32k_frame_init_saved_regs.
4758         (PUSH_DUMMY_FRAME): Define as ns32k_push_dummy_frame.
4759         (POP_FRAME): Define as ns32k_pop_frame.
4760
4761 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
4762
4763         * ns32k-tdep.c (ns32k_register_byte_32082,
4764         ns32k_register_byte_32382, ns32k_register_raw_size,
4765         ns32k_register_virtual_size, ns32k_register_virtual_type): New
4766         functions.
4767         * config/ns32k/tm-nbsd.h (REGISTER_BYTE): Define as
4768         ns32k_register_byte_32382.
4769         * config/ns32k/tm-umax.h: Update copyright years.
4770         (REGISTER_BYTE): Define as ns32k_register_byte_32082.
4771         (REGISTER_RAW_SIZE): Define as ns32k_register_raw_size.
4772         (REGISTER_VIRTUAL_SIZE): Define as ns32k_register_virtual_size.
4773         (REGISTER_VIRTUAL_TYPE): Define as ns32k_register_virtual_type.
4774         (ns32k_get_enter_addr): Fix prototype.
4775
4776 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
4777
4778         * ns32k-tdep.c: Update copyright years.
4779         (ns32k_register_name_32082): New function.
4780         (ns32k_register_name_32382): Ditto.
4781         * config/ns32k/tm-nbsd.h (REGISTER_NAMES): Remove.
4782         (REGISTER_NAME): Define as ns32k_register_name_32382.
4783         * config/ns32k/tm-umax.h (REGISTER_NAMES): Remove.
4784         (REGISTER_NAME): Define as ns32k_register_name_32082.
4785
4786 2002-05-24  Jim Blandy  <jimb@redhat.com>
4787
4788         * dwarf2read.c (free_line_header): Use xfree, not free.
4789
4790 2002-05-24  Jason Thorpe  <thorpej@wasabisystems.com>
4791
4792         * config/djgpp/fnchange.lst: Add alphabsd-nat.c,
4793         alphabsd-tdep.c, mipsnbsd-nat.c, and mipsnbsd-tdep.c
4794
4795 2002-05-23  Andrew Cagney  <ac131313@redhat.com>
4796
4797         * PROBLEMS: Mention s390 and FreeBSD 4.4 build problems.
4798
4799 2002-05-23  Andrew Cagney  <ac131313@redhat.com>
4800
4801         From Ross Alexander at NEC Europe:
4802         * config/pa/hpux11w.mh (NATDEPFILES): Add solib.o.
4803
4804 2002-05-23  Michael Snyder  <msnyder@redhat.com>
4805
4806         * cli/cli-dump.c (restore_command): Use parse_and_eval_long
4807         for input, rather than parse_and_eval_address.  
4808
4809 2002-05-23  Andrew Cagney  <ac131313@redhat.com>
4810
4811         * d10v-tdep.c: Include "gdb/sim-d10v.h" instead of "sim-d10v.h".
4812         * Makefile.in (sim_d10v_h): Update definition.
4813
4814 2002-05-24  Andrew Cagney  <cagney@redhat.com>
4815
4816         * d10v-tdep.c (d10v_gdbarch_init): Revert old code included in
4817         change `2002-05-22 Michael Snyder' below.
4818         (d10v_push_arguments): Ditto.
4819         (d10v_extract_return_value): Ditto.
4820
4821 2002-05-23  Jim Blandy  <jimb@redhat.com>
4822
4823         * macrotab.c (check_for_redefinition): Don't complain if the new
4824         definition is the same as the previous one.  Take more arguments
4825         to allow the comparison.
4826         (macro_define_object, macro_define_function): Pass more arguments
4827         to check_for_redefinition.
4828
4829 2002-05-22  Michael Snyder  <msnyder@redhat.com>
4830
4831         * d10v-tdep.c: Change a few macros to enums for ease of debugging.
4832         (d10v_frame_chain_valid): Add PC_IN_CALL_DUMMY clause.
4833         (d10v_frame_saved_pc): Add PC_IN_CALL_DUMMY clause.
4834         (d10v_frame_chain): Bail immediately if PC_IN_CALL_DUMMY.
4835         Don't bail if return_pc is PC_IN_CALL_DUMMY.
4836         Add a temp variable to save a call (and a memory read).
4837         (d10v_init_extra_frame_info): Get fi->pc from callee's return_pc
4838         if possible (so that PC_IN_CALL_DUMMY will work).
4839
4840 2002-05-22  Corinna Vinschen  <vinschen@redhat.com>
4841
4842         * MAINTAINERS: Remove status `OBSOLETE' from v850.
4843
4844 2002-05-22  Michal Ludvig  <mludvig@suse.cz>
4845
4846         * dwarf2cfi.c (frame_state_for): Added safety check for a valid
4847         fde->cie_ptr.
4848         (dwarf2_build_frame_info): Corrected handling of eh_frame.
4849         (dwarf2_build_frame_info): Add offset to fde->initial_location 
4850         so that frames of shared libraries are mapped correctly.
4851         (execute_stack_op): Change type of 'result' from ULONGEST to
4852         CORE_ADDR.
4853         
4854 2002-05-22  Jason Thorpe  <thorpej@wasabisystems.com>
4855
4856         * config/alpha/tm-nbsd.h: Include solib.h.
4857
4858 2002-05-22  Jason Thorpe  <thorpej@wasabisystems.com>
4859
4860         * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Don't make
4861         assumptions about the host's byte order.
4862
4863 2002-05-22  Jason Thorpe  <thorpej@wasabisystems.com>
4864
4865         * Makefile.in (alphanbsd-tdep.o, shnbsd-tdep.o): Add solib-svr4.h
4866         to dependency list.
4867         * alphanbsd-tdep.c: Include solib-svr4.h.
4868         * shnbsd-tdep.c: Ditto.
4869
4870 2002-05-22  Jason Thorpe  <thorpej@wasabisystems.com>
4871
4872         * Makefile.in (armnbsd-tdep.o): Add solib-svr4.h and
4873         nbsd-tdep.h to dependency list.
4874         * configure.host (arm*-*-netbsdelf*, arm*-*-netbsd*,
4875         i[3456]86-*-netbsdaout*, i[3456]86-*-netbsd*, m68*-*-netbsd*,
4876         ns32k-*-netbsd*, sparc-*-netbsdaout*, sparc-*-netbsd*): Use
4877         nbsdaout.mh and nbsdelf.mh consistently.
4878         * configure.tgt (i[3456]86-*-netbsd*, m68*-*-netbsd*,
4879         ns32k-*-netbsd*, sparc-*-netbsdelf*, sparc-*-netbsd*) Use
4880         nbsdaout.mt and nbsdelf.mh consistently.
4881         * armnbsd-tdep.c: Include nbsd-tdep.h and solib-svr4.h. 
4882         (arm_netbsd_elf_init_abi): Use set_solib_svr4_fetch_link_map_offsets
4883         to set nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
4884         * config/nm-nbsd.h: Garbage-collect SVR4_SHARED_LIBS.  Move
4885         a.out shared library stuff from here...
4886         * config/nm-nbsdaout.h: ...to here.
4887         * config/tm-nbsd.h: Remove.
4888         * config/alpha/nm-nbsd.h (SVR4_SHARED_LIBS): Remove.
4889         * config/arm/nbsd.mh: Remove.
4890         * config/arm/nbsd.mt (TDEPFILES): Remove solib-sunos.o, add
4891         nbsd-tdep.o.
4892         * config/arm/nbsdaout.mh: New file. 
4893         * config/arm/nbsdelf.mh: New file.
4894         * config/arm/nm-nbsdaout.h: New file.
4895         * config/i386/nbsd.mh: Remove.
4896         * config/i386/nbsd.mt: Remove.
4897         * config/i386/nbsdaout.mh: New file.
4898         * config/i386/nbsdaout.mt: New file.
4899         * config/i386/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
4900         * config/i386/nbsdelf.mt (TM_FILE): Use tm-nbsd.h.
4901         * config/i386/nm-nbsd.h (REGISTER_U_ADDR, 
4902         i386_register_u_addr): Remove.
4903         * config/i386/nm-nbsdaout.h: New file.
4904         * config/i386/nm-nbsdelf.h: Remove.
4905         * config/i386/tm-nbsd.h: Don't include config/tm-nbsd.h.
4906         (USE_STRUCT_CONVENTION): Remove.
4907         * config/i386/tm-nbsdaout.h: New file.
4908         * config/i386/tm-nbsdelf.h: Remove.
4909         * config/m68k/nbsd.mh: Remove.
4910         * config/m68k/nbsd.mt: Remove.
4911         * config/m68k/nbsdaout.mh: New file.
4912         * config/m68k/nbsdaout.mt: New file. 
4913         * config/m68k/nm-nbsd.h: Use config/nm-nbsd.h.
4914         * config/m68k/nm-nbsdaout.h: New file.
4915         * config/m68k/tm-nbsd.h: Don't include config/tm-nbsd.h.
4916         (IN_SOLIB_CALL_TRAMPOLINE): Define.
4917         * config/ns32k/nbsd.mh: Remove.
4918         * config/ns32k/nbsd.mt: Remove. 
4919         * config/ns32k/nbsdaout.mh: New file.
4920         * config/ns32k/nbsdaout.mt: New file.
4921         * config/ns32k/nm-nbsd.h: Include config/nm-nbsd.h. 
4922         * config/ns32k/nm-nbsdaout.h: New file.
4923         * config/ns32k/tm-nbsd.h: Don't include config/tm-nbsd.h.  
4924         (IN_SOLIB_CALL_TRAMPOLINE): Define.
4925         * config/powerpc/nm-nbsd.h: Include config/nm-nbsd.h.
4926         (SVR4_SHARED_LIBS): Remove.
4927         * config/powerpc/tm-nbsd.h: Dont' include config/tm-nbsd.h.
4928         * config/sparc/nbsd.mh: Remove.
4929         * config/sparc/nbsd.mt: Remove.
4930         * config/sparc/nbsdaout.mh: New file.
4931         * config/sparc/nbsdaout.mt: New file.
4932         * config/sparc/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
4933         * config/sparc/nbsdelf.mt: New file.
4934         * config/sparc/nm-nbsdaout.h: New file.   
4935         * config/sparc/nm-nbsdelf.h: Remove.
4936         * config/sparc/tm-nbsd.h: Don't include config/tm-nbsd.h.
4937         * config/sparc/tm-nbsdaout.h: New file.
4938
4939 2002-05-21  Jason Thorpe  <thorpej@wasabisystems.com>
4940
4941         * Makefile.in (ALLDEPFILES): Add mipsnbsd-nat.c and
4942         mipsnbsd-tdep.c
4943         (mipsnbsd-nat.o, mipsnbsd-tdep.o): New dependency lists.
4944
4945 2002-05-21  Jason Thorpe  <thorpej@wasabisystems.com>
4946
4947         * Makefile.in (ALLDEPFILES): Add shnbsd-tdep.c and
4948         shnbsd-nat.c.
4949         (shnbsd-tdep.o, shnbsd-nat.o): New dependency lists.
4950
4951 2002-05-21  Jason Thorpe  <thorpej@wasabisystems.com>
4952
4953         * NEWS: Note new MIPS NetBSD native configuration. 
4954         * configure.host (mips*-*-netbsd*): New host. 
4955         * configure.tgt (mips*-*-netbsd*): New target. 
4956         * mipsnbsd-nat.c: New file.
4957         * mipsnbsd-tdep.c: New file.
4958         * mipsnbsd-tdep.h: New file.
4959         * config/mips/nbsd.mh: New file.
4960         * config/mips/nbsd.mt: New file.
4961         * config/mips/nm-nbsd.h: New file.
4962         * config/mips/tm-nbsd.h: New file.
4963
4964 2002-05-21  Jason Thorpe  <thorpej@wasabisystems.com>
4965
4966         * Makefile.in (SFILES): Add osabi.c.
4967         (COMMON_OBS): Add osabi.o.
4968         (osabi.o): New dependency list.
4969         * osabi.c: New file.
4970         * osabi.h: New file.
4971         * doc/gdbint.texinfo: Document new generic OS ABI framework.
4972
4973         * Makefile.in (alpha_tdep_h): Define and use instead of
4974         alpha-tdep.h.
4975         * alpha-tdep.c (alpha_abi_names, process_note_abi_tag_sections,
4976         get_elfosabi, alpha_abi_handler_list, alpha_gdbarch_register_os_abi):
4977         Remove.
4978         (alpha_gdbarch_init, alpha_dump_tdep): Use generic OS ABI framework.
4979         * alpha-tdep.h: Include osabi.h.
4980         (alpha_abi): Remove.
4981         (gdbarch_tdep): Use generic OS ABI framework.
4982         * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Use
4983         gdbarch_register_osabi.
4984         * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Likewise.
4985         * alphafbsd-tdep.c (_initialize_alphafbsd_tdep): Likewise.
4986         * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Likewise.
4987
4988         * Makefile.in (sh_tdep_h): Add osabi.h.
4989         * sh-tdep.h (sh_osabi): Remove.
4990         (gdbarch_tdep): Use generic OS ABI framework.
4991         * sh-tdep.c (sh_osabi_names, process_note_abi_tag_sections,
4992         sh_osabi_handler_list, sh_gdbarch_register_os_abi): Remove.
4993         (sh_gdbarch_init, sh_dump_tdep): Use generic OS ABI framework.
4994         * shnbsd-tdep.c (_initialize_shnbsd_tdep): Use gdbarch_register_osabi.
4995
4996         * Makefile.in (arm_tdep_h): Define and use instead of arm-tdep.h.
4997         * arm-linux-tdep.c (_initialize_arm_linux_tdep): Use
4998         gdbarch_register_osabi.
4999         * arm-tdep.c (arm_abi_names, process_note_abi_tag_sections,
5000         arm_abi_handler_list, arm_gdbarch_register_os_abi): Remove.
5001         (get_elfosabi): Rename to...
5002         (arm_elf_osabi_sniffer): ...this.  Adjust to use generic OS
5003         ABI framework support routines.
5004         (arm_gdbarch_init): Use generic OS ABI framework.
5005         (arm_dump_tdep): Likewise.
5006         (_initialize_arm_tdep): Likewise.
5007         * arm-tdep.h: Include osabi.h.
5008         (arm_abi): Remove.
5009         (gdbarch_tdep): Remove arm_abi and abi_name members.  Add
5010         osabi member.
5011         (arm_gdbarch_register_os_abi): Remove prototype.
5012         * armnbsd-tdep.c (arm_netbsd_aout_osabi_sniffer): New function.
5013         (_initialize_arm_netbsd_tdep): Use gdbarch_register_osabi.
5014
5015         * Makefile.in (mips-tdep.o): Add osabi.h to dependency list.
5016         * mips-tdep.c: Include osabi.h.
5017         (gdbarch_tdep, mips_gdbarch_init, mips_dump_tdep): Use generic
5018         OS ABI framework.
5019
5020 2002-05-20  Kazu Hirata  <kazu@cs.umass.edu>
5021
5022         * h8300-tdep.c: Fix formatting.
5023
5024 2002-05-20  Elena Zannoni  <ezannoni@redhat.com>
5025
5026         * rs6000-tdep.c (rs6000_do_registers_info): Simplify code for
5027         printing vector registers.
5028
5029 2002-05-19  Andrew Cagney  <ac131313@redhat.com>
5030
5031         From Fernando Nasser:
5032         * remote.c (remote_async_open_1): Re-throw the exception when the
5033         connection fails.
5034         (remote_cisco_open): Ditto.
5035         (remote_open_1): Ditto.
5036
5037 2002-05-19  Andrew Cagney  <ac131313@redhat.com>
5038
5039         * remote.c (remote_start_remote_dummy): Add uiout parameter.
5040         (remote_start_remote): Add uiout parameter.  Pass through to
5041         remote_start_remote_dummy.
5042         (remote_open_1): Use catch_exception instead of catch_errors.
5043         (remote_async_open_1): Ditto.
5044         (remote_cisco_open): Ditto.
5045
5046 2002-05-19  Andrew Cagney  <ac131313@redhat.com>
5047
5048         * remote.c (remote_start_remote): Replace PTR with void pointer.
5049         (sigint_remote_twice_token, sigint_remote_token): Ditto.  Make
5050         static.
5051
5052 2002-05-18  Andrew Cagney  <ac131313@redhat.com>
5053
5054         * gdb_indent.sh: Allow the script to be run in the sim directory.
5055
5056 2002-05-18  Mark Kettenis  <kettenis@gnu.org>
5057
5058         * config/i386/nm-cygwin.h (NO_PTRACE_H): Remove define.
5059         * config/i386/nm-go32.h (NO_PTRACE_H): Remove define.
5060
5061         * corelow.c (core_open): Only call set_gdbarch_from_file if
5062         exec_bfd is NULL.
5063
5064 2002-05-17  Andrey Volkov <avolkov@transas.com>
5065
5066         * h8300-tdep.c: Add support of EXR register
5067         * config/h8300/tm-h8300.h: Ditto. 
5068         
5069 2002-05-17  Andrey Volkov <avolkov@transas.com>
5070
5071         * h8300-tdep.c: Add additional CCR flags (I,UI,H,U) 
5072         
5073 2002-05-17  Andrey Volkov <avolkov@transas.com>
5074
5075         * h8300-tdep.c: Change literal regnums to REGNO.
5076         
5077 2002-05-17  Jim Blandy  <jimb@redhat.com>
5078
5079         * NEWS: Note addition of macro support.
5080
5081         Expand preprocessor macros in C expressions.
5082         * c-lang.h: #include "macroexp.h", for macro_lookup_ftype.
5083         (scan_macro_expansion, scanning_macro_expansion,
5084         finished_macro_expansion): New function declarations.
5085         (expression_macro_lookup_func, expression_macro_lookup_baton): New
5086         variable declarations.
5087         * parser-defs.h (expression_context_pc): New declaration.
5088         * parse.c (expression_context_pc): New variable.
5089         (parse_exp_1): Set expression_context_pc, as well as
5090         expression_context_block.
5091         * c-exp.y (yylex): If we're not already reading the result of a
5092         macro expansion, try to macro-expand the next token.  When we're
5093         done scanning a macro expansion, switch back to the mainline text.
5094         Commas and `if's in a macro's expansion don't terminate the input.
5095         * c-lang.c: #include "macroscope.h" and "gdb_assert.h".
5096         (macro_original_text, macro_expanded_text,
5097         expression_macro_lookup_func, expression_macro_lookup_baton): New
5098         variables.
5099         (scan_macro_expansion, scanning_macro_expansion,
5100         finished_macro_expansion, scan_macro_cleanup, null_macro_lookup,
5101         c_preprocess_and_parse): New functions.
5102         (c_language_defn, cplus_language_defn, asm_language_defn): Call
5103         c_preprocess_and_parse, instead of c_parse.
5104         * Makefile.in (c_lang_h): Note that this #includes macroexp.h.
5105         (c-lang.o): Note dependency on macroscope.h and gdb_assert.h.
5106
5107 Fri May 17 14:26:19 2002  J"orn Rennecke <joern.rennecke@superh.com>
5108
5109         * sh-tdep.c (gdb_print_insn_sh64): Delete.
5110         (gdb_print_insn_sh): Just set info->endian and use print_insn_sh.
5111         (sh_gdbarch_init): Always use gdb_print_insn_sh.
5112
5113 2002-05-17  Corinna Vinschen  <vinschen@redhat.com>
5114
5115         * NEWS: Add section for multi-arched targets.  Add v850 to that section.
5116
5117 2002-05-17  Jason Thorpe  <thorpej@wasabisystems.com>
5118
5119         * Makefile.in (sh_tdep_h): Define and use.
5120         * config/sh/tm-sh.h (sh_osabi, sh_abi, gdbarch_tdep,
5121         register enum): Move to...
5122         * * sh-tdep.h: ...here.
5123         * sh-tdep.c: Include sh-tdep.h.
5124         * sh3-rom.c: Likewise.
5125         * shnbsd-tdep.c: Likewise.
5126
5127 2002-05-16  Michael Snyder  <msnyder@redhat.com>
5128
5129         * arm-tdep.c: Spelling fix in comment.
5130
5131 2002-05-16  Jim Blandy  <jimb@redhat.com>
5132
5133         Add commands for manually expanding macros and showing their
5134         definitions.
5135         * macrocmd.c, macroscope.c, macroscope.h: New files.
5136         * Makefile.in (SFILES): Add macrocmd.c, macroscope.c.
5137         (macroscope_h): New variable.
5138         (HFILES_NO_SRCDIR): Add macroscope.h.
5139         (COMMON_OBS): Add macrocmd.o, macroscope.o.
5140         (macroscope.o, macrocmd.o): New rules.
5141
5142         Teach the Dwarf 2 reader to read macro information.
5143         * dwarf2read.c: #include "macrotab.h".
5144         (dwarf_macinfo_buffer): New variable.
5145         (struct dwarf2_pinfo): New members: dwarf_macinfo_buffer, and
5146         dwarf_macinfo_size.
5147         (DWARF_MACINFO_BUFFER, DWARF_MACINFO_SIZE): New macros.
5148         (dwarf2_missing_macinfo_section, dwarf2_macros_too_long,
5149         dwarf2_macros_not_terminated, dwarf2_macro_outside_file,
5150         dwarf2_macro_unmatched_end_file, dwarf2_macro_malformed_definition,
5151         dwarf2_macro_spaces_in_definition): New complaints.
5152         (dwarf2_has_info): Initialize dwarf_macinfo_offset.
5153         (dwarf2_build_psymtabs): Read the .dwarf_macinfo section.
5154         (dwarf2_build_psymtabs_hard): Record the buffer and its size in
5155         the partial symbol table.
5156         (psymtab_to_symtab_1): Set the macinfo buffer and size globals
5157         from what's recorded in the partial symbol table.
5158         (read_file_scope): If the compilation unit has a
5159         `DW_AT_macro_info' attribute, read its macro information.
5160         * Makefile.in (dwarf2read.o): Depend on macrotab.h.
5161
5162 2002-05-16  Daniel Jacobowitz  <drow@mvista.com>
5163
5164         Fix PR gdb/546
5165         * ser-tcp.c: Don't include <netinet/udp.h>.
5166
5167 2002-05-16  Stephane Carrez  <stcarrez@nerim.fr>
5168
5169         * MAINTAINERS: Update my email address.
5170
5171 2002-05-16  Richard Earnshaw  <rearnsha@arm.com>
5172
5173         * config/arm/nm-nbsd.h: Use "config/nm-nbsd.h" to include generic
5174         include file of the same name.
5175
5176 2002-05-16  Corinna Vinschen  <vinschen@redhat.com>
5177
5178         * configure.tgt: Mark v850 as multi-arched.
5179         * config/v850/tm-v850.h: Remove file.
5180         * config/v850/v850.mt: Eliminate TM_FILE.
5181
5182 2002-05-16  Corinna Vinschen  <vinschen@redhat.com>
5183
5184         * v850-tdep.c: Full multi-arch.
5185         * config/v850/tm-v850.h: Eliminate or move to v850-tdep.c everything.
5186         Define GDB_MULTI_ARCH to 2.
5187
5188 2002-05-16  Pierre Muller  <muller@ics.u-strasbg.fr>
5189
5190         * p-exp.y (current_type): New static variable.
5191         Carries the type of the expression at the position that is parsed.
5192         (push_current_type, pop_current_type): Two new functions. Used
5193         to store/restore current_type in expression on specific tokens.
5194         (search_field): New static variable. Set to one after parsing a point
5195         as at that point only a FIELDNAME token should be searched.
5196         (FIELDNAME): New token. After a point only a token belonging to 
5197         current_type type definition is allowed.
5198         (all over token rules): reset and change current_type according
5199         to rules.
5200         (exp '[' rule): insert implicit array index field if
5201         exp is a pascal string type.
5202
5203 2002-05-16  Corinna Vinschen  <vinschen@redhat.com>
5204
5205         * v850-tdep.c: Fix comment for v850_scan_prologue.  Remove extra
5206         frame info.  Use frame_info's saved_regs instead of matching member
5207         in extra_frame_info throughout.
5208         (v850_frame_init_saved_regs): New function.
5209         (v850_init_extra_frame_info): Move most functionality into
5210         v850_frame_init_saved_regs().
5211         * config/v850/tm-v850.h (EXTRA_FRAME_INFO): Remove definition.
5212         (v850_frame_find_saved_regs): Remove declaration.
5213         (FRAME_FIND_SAVED_REGS): Remove definition.
5214         (v850_frame_init_saved_regs): Add declaration.
5215         (FRAME_INIT_SAVED_REGS): Add definition.
5216
5217 2002-05-16  Corinna Vinschen  <vinschen@redhat.com>
5218
5219         * v850-tdep.c: Begin multi-arch'ing v850.
5220         (v850_target_architecture_hook): Remove function.
5221         (v850_gdbarch_init): New function.  Add code previously in
5222         v850_target_architecture_hook().
5223         (_initialize_v850_tdep): Don't  set target_architecture_hook.
5224         Call register_gdbarch_init() instead.
5225
5226 2002-05-16 Daniel Jacobowitz  <drow@mvista.com>
5227
5228         * gdbtypes.h (struct cplus_struct_type): Remove args field.
5229         * hpread.c (hpread_read_struct_type): Remove assignments to args.
5230         (fixup_class_method_type): Likewise.
5231
5232 2002-05-15  Jim Blandy  <jimb@redhat.com>
5233
5234         Add macro structures to GDB's symbol tables.  Nobody puts anything
5235         in them yet.
5236         * symtab.h (struct symtab): New member: `macro_table'.
5237         * buildsym.h (pending_macros): New global variable.
5238         * buildsym.c: #include "macrotab.h".
5239         (buildsym_init): Initialize `pending_macros'.
5240         (end_symtab): If we found macro information while reading a CU's
5241         debugging info, do build a symtab structure for it.  Make the
5242         symtab point to the macro information, and clear the
5243         `pending_macros' pointer which held it while we were reading the
5244         debug info.
5245         (really_free_pendings): Free any pending macro table.
5246         * objfiles.h (struct objfile): New member: `macro_cache'.
5247         * objfiles.c (allocate_objfile): Set allocate and free functions
5248         for the macro cache's objstack.
5249         (free_objfile): Empty the macro cache's obstack.
5250         * symfile.c (reread_symbols): Empty the macro cache's obstack, and
5251         set new allocate and free functions for it.
5252         * solib-sunos.c (allocate_rt_common_objfile): Set allocate and
5253         free functions for the macro cache's objstack.  (Why is this
5254         function building its own objfile?)
5255         * symmisc.c (print_objfile_statistics): Print statistics on the
5256         macro bcache.
5257         * Makefile.in: Note that buildsym.o depends on macrotab.h.
5258
5259 2002-05-15  Richard Earnshaw  <rearnsha@arm.com>
5260
5261         * config/arm/nm-nbsd.h: Use <> for include of config/nm-nbsd.h.
5262         (REGISTER_U_ADDR): Delete definition.
5263         (arm_register_u_addr): Delete declaration.
5264
5265 2002-05-15  Richard Earnshaw  <rearnsha@arm.com>
5266
5267         * arm-linux-tdep.c (ARM_LINUX_JB_PC): Renamed from JB_PC.
5268         (ARM_LINUX_JB_ELEMENT_SIZE): Likewise.
5269
5270 2002-05-14  Andrew Cagney  <ac131313@redhat.com>
5271
5272         * regcache.c (register_valid): Revise comments refering to "Not
5273         available" and "unavailable".
5274         * frame.c (frame_register_read): Ditto.
5275         * findvar.c (value_of_register): Ditto.
5276
5277 2002-05-15  Andrew Cagney  <cagney@redhat.com>
5278
5279         * Makefile.in (remote_sim_h): Replace remote-sim_h.
5280         (remote-sim.o): Update dependencies.
5281         (d10v-tdep.o): Specify dependencies.
5282         (sim_d10v_h): Define.
5283
5284 2002-05-14  Jim Blandy  <jimb@redhat.com>
5285
5286         * macroexp.c (init_buffer, gather_arguments, expand): Use NULL, not 0.
5287         * macrotab.c (macro_lookup_inclusion, find_definition,
5288         new_macro_table): Same.
5289         
5290         * macroexp.c (currently_rescanning, expand): Use `strcmp () == 0',
5291         not `! strcmp ()'.  This is a dubious improvement.
5292         * macrotab.c (macro_lookup_inclusion, find_definition): Same.
5293
5294         * macrotab.c (macro_lookup_inclusion): Initialize `best_depth',
5295         although it's not necessary, to avoid a warning.
5296
5297 2002-05-14  Daniel Jacobowitz  <drow@mvista.com>
5298
5299         * gdbtypes.h: Update accessor macros to use TYPE_MAIN_TYPE.
5300         (TYPE_CONST, TYPE_VOLATILE, TYPE_CODE_SPACE, TYPE_DATA_SPACE): Use
5301         TYPE_INSTANCE_FLAGS.
5302         (struct main_type): New.
5303         (struct type): Move most members to struct main_type.  Change
5304         cv_type and as_type to new type_chain member.  Add instance_flags.
5305         (TYPE_MAIN_TYPE, TYPE_CHAIN, TYPE_INSTANCE_FLAGS): New macros.
5306         (TYPE_CV_TYPE, TYPE_AS_TYPE): Remove.
5307         (finish_cv_type): Remove prototype.
5308         * gdbtypes.c (alloc_type): Update comment.  Allocate TYPE_MAIN_TYPE.
5309         Set TYPE_CHAIN.
5310         (alloc_type_instance): New function.
5311         (smash_type): New function.
5312         (make_pointer_type, make_reference_type, make_function_type)
5313         (smash_to_member_type, smash_to_method_type): Call smash_type.
5314         (make_qualified_type): New function.
5315         (make_type_with_address_space): Call make_qualified_type.
5316         (make_cv_type): Likewise.
5317         (finish_cv_type): Remove unnecessary function.
5318         (replace_type): Update comment.  Copy TYPE_MAIN_TYPE.
5319         (recursive_dump_type): Dump TYPE_CHAIN and TYPE_INSTANCE_FLAGS;
5320         remove TYPE_CV_TYPE and TYPE_AS_TYPE.
5321         * c-typeprint.c (c_type_print_modifier): Use TYPE_INSTANCE_FLAGS.
5322         * dwarf2read.c (read_structure_scope): Don't call finish_cv_type.
5323         * hpread.c (hpread_read_struct_type): Likewise.
5324         * stabsread.c (read_struct_type): Likewise.
5325
5326 2002-05-14  Elena Zannoni  <ezannoni@redhat.com>
5327
5328         * configure.tgt: Add a catch all sh* target, for cases like
5329         sh[2,3,4]-elf and sh-hms.
5330
5331 2002-05-14  Keith Seitz  <keiths@redhat.com>
5332
5333         * event-loop.c (create_file_handler): Don't do anything but
5334         update data when we are given a fd which we are already
5335         monitoring.
5336
5337 2002-05-14  Michal Ludvig  <mludvig@suse.cz>
5338
5339         * dwarf2cfi.c (context_cpy): Copy registers correctly.
5340         (update_context): Use __func__ in warnings.
5341         
5342 2002-05-14  Daniel Jacobowitz  <drow@mvista.com>
5343
5344         * ser-tcp.c: Include <netinet/udp.h>.  Rename tcp_open
5345         and tcp_close to net_open and net_close.
5346         (net_open): Accept "udp:" and "tcp:" specifications.  Connect
5347         using UDP if requested.  Don't try to disable Nagle on UDP
5348         sockets.
5349         * remote.c (remote_serial_open): New function.  Warn about UDP.
5350         (remote_open_1, remote_async_open_1, remote_cisco_open): Call it.
5351
5352 2002-05-13  Elena Zannoni  <ezannoni@redhat.com>
5353
5354         * MAINTAINERS: List sh-elf as buildable with ,-Werror.
5355
5356 2002-05-13  Elena Zannoni  <ezannoni@redhat.com>
5357
5358         * configure.tgt: Remove sh-hms target.
5359         * MAINTAINERS: Don't list sh-hms as a separate target.
5360
5361 2002-05-13  Jim Blandy  <jimb@redhat.com>
5362
5363         Add first preprocessor macro-expansion files.
5364         * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
5365         * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
5366         (splay_tree_h, macroexp_h, macrotab_h): New variable.
5367         (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
5368         (COMMON_OBS): Add macrotab.o, macroexp.o.
5369         (macroexp.o, macrotab.o): New rules.
5370
5371 2002-05-13  Andrew Cagney  <ac131313@redhat.com>
5372
5373         * config/m88k/tm-m88k.h: Update copyright.
5374         (m88k_target_write_pc): Declare
5375         (TARGET_WRITE_PC): Redefine using m88k_target_write_pc.
5376         (M88K_NNPC_REGNUM): Rename NNPC_REGNUM.
5377         (SHIFT_INST_REGS): Update definition.
5378         * m88k-tdep.c (m88k_target_write_pc): New function.  Implement
5379         using old definition of TARGET_WRITE_PC.
5380         * regcache.c (generic_target_write_pc): Delete code handling
5381         NNPC_REGNUM.
5382         * gdbarch.sh (NNPC_REGNUM): Delete.
5383         * gdbarch.h, gdbarch.c: Regenerate.
5384
5385 2002-05-13  Richard Earnshaw  <rearnsha@arm.com>
5386
5387         * builtin-regs.c (value_of_builtin_reg): Correctly calculate the
5388         builtin reg number.
5389
5390 2002-05-13  Daniel Jacobowitz  <drow@mvista.com>
5391
5392         * ax-gdb.c (gen_sign_extend, gen_fetch, gen_usual_unary)
5393         (gen_cast, gen_scale, gen_add, gen_sub, gen_binop, gen_deref)
5394         (gen_address_of, gen_struct_ref, gen_repeat): Use type
5395         access macros.
5396         * c-typeprint.c (cp_type_print_method_args): Likewise.
5397         (c_type_print_args): Likewise.
5398         * d10v-tdep.c (d10v_push_arguments): Likewise.
5399         (d10v_extract_return_value): Likewise.
5400         * expprint.c (print_subexp): Likewise.
5401         * gdbtypes.c (lookup_primitive_typename): Likewise.
5402         (lookup_template_type, add_mangled_type, print_arg_types): Likewise.
5403         * gdbtypes.h (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB)
5404         (TYPE_TARGET_STUB, TYPE_STATIC, TYPE_CONST, TYPE_VOLATILE)
5405         (TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_CODE_SPACE, TYPE_VARARGS)
5406         (TYPE_VECTOR): Likewise.
5407         * hpread.c (hpread_read_struct_type)
5408         (fix_static_member_physnames, fixup_class_method_type)
5409         (hpread_type_lookup): Likewise.
5410         * mdebugread.c (parse_symbol, parse_type): Likewise.
5411         * p-lang.c (is_pascal_string_type): Likewise.
5412         * valops.c (hand_function_call): Likewise.
5413         * x86-64-tdep.c (classify_argument): Likewise.
5414
5415         * hpread.c (hpread_read_function_type)
5416         (hpread_read_doc_function_type): Call replace_type.
5417         * dstread.c (create_new_type): Delete.
5418         (decode_dst_structure, process_dst_function): Call alloc_type.
5419         Use type access macros.
5420
5421 2002-05-12  Mark Kettenis  <kettenis@gnu.org>
5422
5423         * i387-tdep.c (i387_supply_fxsave): Skip the SSE registers if
5424         the're not supported by the current architecture.
5425         (i387_fill_fxsave): Likewise.
5426
5427 2002-05-12  Fred Fish  <fnf@redhat.com>
5428
5429         * symfile.c (default_symfile_offsets): Arrange for uninitialized
5430         sect_index_xxx members to index the first slot in section_offsets
5431         if all of the section_offsets are zero.
5432
5433 2002-05-12  Mark Kettenis  <kettenis@gnu.org>
5434
5435         * configure.tgt (sparc-*openbsd): Remove entry accidentially
5436         checked in with last change.
5437
5438 2002-05-12  Mark Kettenis  <kettenis@gnu.org>
5439
5440         * configure.tgt (i[3456]86-*-unixware*, i[3456]86-*-unixware2*):
5441         Remove targets.  These are canonicalized to i386-*-sysv4.2uw by
5442         config.sub.
5443
5444 2002-05-12  Daniel Jacobowitz  <drow@mvista.com>
5445
5446         * Makefile.in: Update dependencies.
5447
5448 2002-05-11  Andrew Cagney  <ac131313@redhat.com>
5449
5450         * language.c (local_hex_string_custom): Simplify.  Do not depend
5451         on PRINTF_HAS_LONG_LONG or CC_HAS_LONG_LONG.
5452
5453         * memattr.c (mem_info_command): Replace calls to
5454         longest_local_hex_string and longest_local_hex_string_custom.
5455         * buildsym.c (make_blockvector): Ditto.
5456         * solib.c (info_sharedlibrary_command): Ditto.
5457         * tracepoint.c (tracepoints_info): Ditto.
5458         * symtab.c (print_msymbol_info): Ditto.
5459
5460         * language.c (local_hex_string): Delete.
5461         (local_hex_string_custom): Delete.
5462         (longest_local_hex_string): Rename to local_hex_string.
5463         (longest_local_hex_string_custom): Rename to
5464         local_hex_string_custom.
5465         * language.h (local_hex_string): Change parameter type to LONGEST.
5466         (local_hex_string_custom): Ditto.
5467         (longest_local_hex_string): Delete declaration.
5468         (longest_local_hex_string_custom): Ditto.
5469
5470         * solib.c: Update copyright.
5471         * memattr.c: Update copyright.
5472         
5473 2002-05-11  Andrew Cagney  <ac131313@redhat.com>
5474
5475         * arch-utils.h (legacy_register_to_value): Declare.
5476         (legacy_value_to_register): Declare.
5477         (legacy_convert_register_p): Declare.
5478         * arch-utils.c (legacy_register_to_value): New function.
5479         (legacy_value_to_register): New function.
5480         (legacy_convert_register_p): New function.
5481
5482         * gdbarch.sh (REGISTER_TO_VALUE): Define.
5483         (VALUE_TO_REGISTER): Define.
5484         (CONVERT_REGISTER_P): Define.
5485         * gdbarch.h, gdbarch.c: Regenerate.
5486
5487         * valops.c (value_assign): Use CONVERT_REGISTER_P and
5488         VALUE_TO_REGISTER.
5489         * findvar.c (value_from_register): Use REGISTER_TO_VALUE and
5490         CONVERT_REGISTER_P.
5491
5492 2005-05-11  Daniel Jacobowitz  <drow@mvista.com>
5493             Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
5494
5495         * Makefile.in: Update dependencies for valops.c.
5496         * valops.c: Include "gdb_assert.h".
5497         (typecmp): Skip THIS parameter to methods.
5498         (find_method_list): Remove static_memfuncp argument,
5499         update callers.  Check for stub methods.
5500         (find_value_oload_method_list): Don't set *static_memfuncp.
5501         (find_overload_match): Don't check for stub methods.  Assert
5502         that methods are not stubbed.  Handle static methods.
5503         (value_find_oload_method_list): Remove static_memfuncp argument.
5504         * gdbtypes.c (check_stub_method): Do not add THIS pointer
5505         to the argument list for static stub methods.
5506         * value.h (value_find_oload_method_list): Update prototype.
5507
5508 2002-05-11  Andrew Cagney  <ac131313@redhat.com>
5509
5510         * arch-utils.h (generic_register_size): Declare.
5511         (generic_register_raw_size, generic_register_virtual_size): Delete
5512         declarations.
5513         * arch-utils.c (generic_register_raw_size): Delete.
5514         (generic_register_size): New function.
5515         (generic_register_virtual_size): Delete.
5516
5517         * gdbarch.sh (REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE): Make
5518         default generic_register_size.
5519         * gdbarch.h, gdbarch.c: Re-generate.
5520         
5521         * d10v-tdep.c (d10v_gdbarch_init): Use generic_register_size for
5522         register_virtual_size.
5523         * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
5524         * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
5525
5526 2002-05-11  Andrew Cagney  <ac131313@redhat.com>
5527
5528         * gdbarch.sh (gdbarch_data): Add gdbarch parameter.
5529         * gdbarch.h, gdbarch.c: Regenerate.
5530         * gnu-v3-abi.c: Update copyright.
5531         (vtable_address_point_offset): Update.
5532         (gnuv3_rtti_type): Update.
5533         (gnuv3_baseclass_offset): Update.
5534         * solib-svr4.c (svr4_fetch_link_map_offsets): Update.
5535         (init_fetch_link_map_offsets): Update.
5536         * remote.c (get_remote_state): Update.
5537         
5538 2002-05-11  Daniel Jacobowitz  <drow@mvista.com>
5539
5540         * TODO: Remove value_headof/value_from_vtable_info comment.
5541         * printcmd.c (print_command_1): Don't call value_from_vtable_info.
5542         * values.c (value_headof, value_from_vtable_info): Delete.
5543         * value.h (value_from_vtable_info): Delete prototype.
5544
5545 2002-05-11  Andrew Cagney  <ac131313@redhat.com>
5546
5547         * Makefile.in: Replace gdb_assert.h with $(gdb_assert_h),
5548         gdb_string.h with $(gdb_string_h) and gdb_regex.h with
5549         $(gdb_regex_h).
5550         (gdb_assert_h): Define.
5551         (gdb_wait_h): Define.
5552         (gdb_regex_h): Define.
5553
5554 2002-05-11 Daniel Jacobowitz  <drow@mvista.com>
5555
5556         From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
5557         * linespec.c (find_methods): Handle GCC 3.x template constructors.
5558
5559 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
5560
5561         * nbsd-tdep.c: Fix comment.
5562
5563 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
5564
5565         * Makefile.in (ALLDEPFILES): Add nbsd-tdep.c.
5566         (alphanbsd-tdep.o): Add nbsd-tdep.h to dependency list.
5567         (nbsd-tdep.o): New dependency list.
5568         * alphanbsd-tdep.c: Don't include solib-svr4.h.  Include
5569         nbsd-tdep.h.
5570         (alphanbsd_solib_svr4_fetch_link_map_offsets): Remove.
5571         (alphanbsd_init_abi): Use nbsd_lp64_solib_svr4_fetch_link_map_offsets.
5572         * nbsd-tdep.c: New file.
5573         * nbsd-tdep.h: New file.
5574         * shnbsd-tdep.c: Don't include solib-svr4.h.  Include
5575         nbsd-tdep.h.
5576         (shnbsd_solib_svr4_fetch_link_map_offsets): Remove.
5577         (shnbsd_init_abi): Use nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
5578         * config/alpha/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
5579         * config/sh/nbsd.mt (TDEPFILES): Ditto.
5580
5581 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
5582
5583         * config/alpha/nbsd.mh (NATDEPFILES): Remove corelow.o.
5584         * config/alpha/nbsd.mt (TDEPFILES): Add corelow.o.
5585         * config/i386/nbsd.mh (NATDEPFILES): Remove corelow.o.
5586         * config/i386/nbsd.mt (TDEPFILES): Add corelow.o.
5587         * config/i386/nbsdelf.mh (NATDEPFILES): Remove corelow.o.
5588         * config/i386/nbsdelf.mt (TDEPFILES): Add corelow.o.
5589
5590 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
5591
5592         * config/i386/nbsd.mh (NATDEPFILES): Use line continuations.
5593         * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
5594         * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
5595         * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
5596         * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
5597         * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
5598         * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
5599
5600 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
5601
5602         * i386nbsd-nat.c: Delete file.  Move fetch_core_registers and
5603         fetch_elfcore_registers to...
5604         * i386nbsd-tdep.c: ...here.
5605         (i386nbsd_use_struct_convention): Rename to...
5606         (i386nbsd_aout_use_struct_convention): ...this.
5607         (i386nbsd_supply_reg): New function.
5608         (i386nbsd_fill_reg): New function.
5609         (fetch_core_registers): Use i386nbsd_supply_reg.
5610         (fetch_elfcore_registers): Likewise.
5611         (_initialize_i386nbsd_tdep): New function.
5612         * config/i386/nbsd.mh (NATDEPFILES): Remove i386nbsd-nat.o.
5613         * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
5614         * config/i386/nbsdelf.mt (TDEPFILES): Add i386nbsd-tdep.o.
5615         * config/i386/tm-nbsd.h (i386nbsd_use_struct_convention): Rename to...
5616         (i386nbsd_aout_use_struct_convention): ...this.
5617
5618 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
5619
5620         * shnbsd-nat.c (fetch_inferior_registers): Use shnbsd_supply_reg.
5621         (store_inferior_registers): Use shnbsd_fill_reg.
5622         * shnbsd-tdep.c (sh_nbsd_supply_registers, 
5623         sh_nbsd_supply_register): Collapse into...
5624         (shnbsd_supply_reg): ...this.
5625         (sh_nbsd_fill_registers, sh_nbsd_fill_register): Collapse into...
5626         (shnbsd_fill_reg): ...this.
5627         (sh_nbsd_solib_svr4_fetch_link_map_offsets): Rename to...
5628         (shnbsd_solib_svr4_fetch_link_map_offsets): ...this.
5629         (fetch_core_registers): Use shnbsd_supply_reg.
5630         (fetch_elfcore_registers): Use shnbsd_supply_reg.
5631         (sh_nbsd_core_fns): Rename to...
5632         (shnbsd_core_fns): ...this.
5633         (sh_nbsd_elfcore_fns): Rename to...
5634         (shnbsd_elfcore_fns): ...this.
5635         (sh_nbsd_init_abi): Rename to...
5636         (shnbsd_init_abi): ...this.
5637         (_initialize_sh_nbsd_tdep): Rename to...
5638         (_initialize_shnbsd_tdep): ...this.
5639         * shnbsd-tdep.h (sh_nbsd_supply_registers,
5640         sh_nbsd_supply_register, sh_nbsd_fill_registers,
5641         sh_nbsd_fill_register): Remove prototypes.
5642         (shnbsd_supply_reg, shnbsd_fill_reg): Add prototypes.
5643
5644 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
5645
5646         * Makefile.in (ALLDEPFILES): Remove i387-nat.c.
5647         (i387-nat.o): Delete dependency list.
5648         (go32-nat.o): Change i387-nat.h to i387-tdep.h.
5649         (x86-64-linux-nat.o): Likewise.
5650         * i387-nat.c: Delete file, moving contents to...
5651         * i387-tdep.c: ...here.
5652         * i387-nat.h: Rename...
5653         * i387-tdep.h: ...to this.
5654         * go32-nat.c: Include i387-tdep.h instead of i387-nat.h.
5655         * i386-linux-nat.c: Likewise.
5656         * i386bsd-nat.c: Likewise.
5657         * i386gnu-nat.c: Likewise.
5658         * i386nbsd-nat.c: Likewise.
5659         * i386v4-nat.c: Likewise.
5660         * x86-64-linux-nat.c: Likewise.
5661         * config/i386/fbsd.mh (NATDEPFILES): Remove i387-nat.o.
5662         * config/i386/go32.mh (NATDEPFILES): Likewise.
5663         * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
5664         * config/i386/i386sol2.mh (NATDEPFILES): Likewise.
5665         * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
5666         * config/i386/linux.mh (NATDEPFILES): Likewise.
5667         * config/i386/nbsd.mh (NATDEPFILES): Likewise.
5668         * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
5669         * config/i386/obsd.mh (NATDEPFILES): Likewise.
5670         * config/i386/x86-64linux.mh (NATDEPFILES): Likewise.
5671
5672 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
5673
5674         * Makefile.in (ALLDEPFILES): Remove alphanbsd-nat.c.
5675         (alphanbsd-nat.o): Remove dependency list.
5676         (alphanbsd-tdep.o): Add $(regcache_h) to dependency list.
5677         * alphanbsd-nat.c: Delete.  Contents moved to...
5678         * alphanbsd-tdep.c: ...here.
5679         (_initialize_alphanbsd_tdep): Register core functions.
5680         * config/alpha/nbsd.mh (NATDEPFILES): Remove alphanbsd-nat.o.
5681
5682 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
5683
5684         * Makefile.in (ALLDEPFILES): Add alphabsd-tdep.c.
5685         (alphabsd-nat.o): Depend on alphabsd-tdep.h.
5686         (alphanbsd-nat.o): Likewise.
5687         (alphabsd-tdep.o): New dependency list.
5688         * alphabsd-nat.c (supply_gregset): Use alphabsd_supply_reg.
5689         (fill_gregset): Use alphabsd_fill_reg.
5690         (supply_fpregset): Use alphabsd_supply_fpreg.
5691         (fill_fpregset): Use alphabsd_fill_fpreg.
5692         (fetch_inferior_registers): Use struct reg and struct fpreg
5693         rather than gregset_t and fpregset_t.  Use alphabsd_supply_reg
5694         and alphabsd_supply_fpreg.
5695         (store_inferior_registers): Use struct reg and struct fpreg
5696         rather than gregset_t and fpregset_t.  Use alphabsd_fill_reg
5697         and alphabsd_fill_fpreg.
5698         * alphabsd-tdep.c: New file.
5699         * alphabsd-tdep.h: New file.
5700         * alphanbsd-nat.c (fetch_core_registers): Use alphabsd_supply_fpreg.
5701         (fetch_elfcore_registers): Use alphabsd_supply_reg and
5702         alphabsd_supply_fpreg.
5703         * config/alpha/fbsd.mt (TDEPFILES): Add alphabsd-tdep.o.
5704         * config/alpha/nbsd.mt (TDEPFILES): Likewise.
5705
5706 2002-05-11  Eric Christopher  <echristo@redhat.com>
5707
5708         * mips-tdep.c (mips_double_register_type): Fix thinko.
5709         (mips_single_register_type): Ditto.
5710         * MAINTAINERS: Add self.
5711
5712 2002-05-11  Mark Kettenis  <kettenis@gnu.org>
5713
5714         * i387-nat.c (i387_supply_register, i387_fill_fsave,
5715         i387_supply_fxsave, i387_fill_fxsave): Rewrite in order to do the
5716         right thing on architectures with different endianness and/or
5717         integer sizes.
5718
5719 2002-05-10  Jason Thorpe  <thorpej@wasabisystems.com>
5720
5721         From Christian Limpach <chris@Pin.LU>
5722         * configure.in: Change sed expression which comments out
5723         NATDEPFILES to also comment out continuation lines.
5724         * configure: Regenerate.
5725
5726 2002-05-10  Elena Zannoni  <ezannoni@redhat.com>
5727
5728         * sh-tdep.c: Clean up code erroneously reintroduced by previous
5729         big patch.
5730
5731 2002-05-10  Elena Zannoni  <ezannoni@redhat.com>
5732
5733         * sh-tdep.c: Include correct file.
5734
5735 2002-05-10  Elena Zannoni  <ezannoni@redhat.com>
5736
5737         New support for sh64-elf (sh5) target.
5738
5739         * configure.tgt: For sh64-elf target, default to sh-elf.
5740
5741         * config/sh/tm-sh.h (enum sh-abi): Possible ABI's.
5742         (struct gdbarch_tdep): Add new fields for new registers and ABI
5743         info.
5744
5745         * sh-tdep.c: Include elf-bfd.h, elf/sh.h, gdb/sim-sh.h.
5746         (NUM_PSEUDO_REGS_SH_MEDIA, NUM_PSEUDO_REGS_SH_COMPACT,
5747         MSYMBOL_IS_SPECIAL, IS_ISA32_ADDR, MAKE_ISA32_ADDR,
5748         UNMAKE_ISA32_ADDR, IS_PTABSL_R18, IS_STS_R0, IS_STS_PR,
5749         IS_MOV_TO_R15, IS_MOV_R14, IS_STQ_R18_R14, IS_STQ_R18_R15,
5750         IS_STL_R18_R15, IS_STQ_R14_R15, IS_STL_R14_R15, IS_ADDIL_SP_MEDIA,
5751         IS_ADDI_SP_MEDIA, IS_ADDL_SP_FP_MEDIA, IS_ADD_SP_FP_MEDIA,
5752         IS_MOV_SP_FP_MEDIA, IS_MOV_R0, IS_MOVL_R0, IS_ADD_SP_R0,
5753         IS_MOV_R14_R0, IS_MEDIA_IND_ARG_MOV, IS_MEDIA_ARG_MOV,
5754         IS_MEDIA_MOV_TO_R14, IS_COMPACT_IND_ARG_MOV, IS_COMPACT_ARG_MOV,
5755         IS_COMPACT_MOV_TO_R14, IS_JSR_R0, IS_NOP): New macros.
5756         (sh_sh64_register_name, sh64_elf_make_msymbol_special,
5757         pc_is_isa32, sh_sh64_breakpoint_from_pc, look_for_args_moves,
5758         sh64_skip_prologue_hard_way, sh64_use_struct_convention,
5759         gdb_print_insn_sh64, translate_insn_rn, sh64_frame_chain,
5760         sh64_get_saved_pr, fpp_reg_base_num, is_media_pseudo,
5761         sh64_get_gdb_regnum, sh64_media_reg_base_num,
5762         sh64_compact_reg_base_num, translate_rn_to_arch_reg_num,
5763         sign_extend, sh64_nofp_frame_init_saved_regs,
5764         sh64_init_extra_frame_info, sh64_get_saved_register,
5765         sh64_extract_struct_value_address, sh64_pop_frame,
5766         sh64_push_arguments, sh64_extract_return_value,
5767         sh64_store_return_value, sh64_show_media_regs,
5768         sh64_show_compact_regs, sh64_show_regs, sh_sh64_register_byte,
5769         sh_sh64_register_raw_size, sh_sh64_register_virtual_size,
5770         sh_sh64_register_virtual_type,
5771         sh_sh64_register_convert_to_virtual,
5772         sh_sh64_register_convert_to_raw, sh64_pseudo_register_read,
5773         sh64_register_read, sh64_pseudo_register_write,
5774         sh64_register_write, do_fv_c_register_info, do_dr_c_register_info,
5775         do_r_c_register_info, do_fpp_register_info, do_cr_c_register_info,
5776         sh64_do_pseudo_register, sh_compact_do_registers_info,
5777         sh64_do_registers_info, sh_gdbarch_init): New functions.
5778
5779 2002-05-10  Elena Zannoni  <ezannoni@redhat.com>
5780
5781         * sh-tdep.c (sh_breakpoint_from_pc): Add 'const' to return type.
5782
5783 2002-05-10 Daniel Jacobowitz  <drow@mvista.com>
5784
5785         * linespec.c (decode_line_1): Check for a double quote after
5786         a filename correctly.
5787
5788 2002-05-10  Jim Blandy  <jimb@redhat.com>
5789
5790         Properly track the size of the current objfile's .debug_line section.
5791         * dwarf2read.c (struct dwarf2_pinfo): New member: dwarf_line_size.
5792         (DWARF_LINE_SIZE): New macro.
5793         (dwarf2_build_psymtabs_hard): Record the line section's size in
5794         the partial symbol table.
5795         (psymtab_to_symtab_1): Restore dwarf_line_size from the partial
5796         symbol table.
5797
5798 2002-05-10  Petr Sorfa  <petrs@caldera.com>
5799
5800         * ia64-tdep.c: Handle breakpoints on L instruction type
5801         in MLX instruction bundle by moving the breakpoint to
5802         the third slot (X instruction type) as L holds only data.
5803
5804 2002-05-10  Kevin Buettner  <kevinb@redhat.com>
5805
5806         * dbxread.c (discarding_local_symbols_complaint): New complaint.
5807         (process_one_symbol): Complain about discarding local symbols
5808         due to a misplaced N_LBRAC entry.
5809
5810 2002-05-09  Elena Zannoni  <ezannoni@redhat.com>
5811
5812         From Daniel Berlin <dan@cgsoftware.com>
5813         * linespec.c (find_toplevel_char): '<' and '>' also increase and
5814         decrease the depth we are at, in the case of templates.
5815
5816 2002-05-09  Daniel Jacobowitz  <drow@mvista.com>
5817
5818         * mips-tdep.c (mips_float_register_type): New function.
5819         (mips_double_register_type): New function.
5820         (mips_print_register): Use them.
5821         (do_fp_register_row): Likewise.
5822
5823 2002-05-09  Daniel Jacobowitz  <drow@mvista.com>
5824
5825         * signals/signals.c (signals): Remove conditional compilation around
5826         Mach-specific signals.  Move them to after TARGET_SIGNAL_DEFAULT.
5827         (target_signal_from_name): Loop until TARGET_SIGNAL_LAST.
5828
5829 2002-05-09  Michael Snyder  <msnyder@redhat.com>
5830
5831         * remote-rdp.c (remote_rdp_can_run): Remove.
5832
5833 2002-05-09  Tom Tromey  <tromey@redhat.com>
5834
5835         * jv-valprint.c (java_val_print): Handle `char' as a special case
5836         of TYPE_CODE_INT.
5837
5838 2002-05-09  Michael Snyder  <msnyder@redhat.com>
5839
5840         * arm-tdep.c (arm_scan_prologue): Accept strb r(0123),[r11,#-nn],
5841         strh r(0123),[r11,#-nn], str r(0123),[r11,#-nn], as well as
5842         strb r(0123),[sp,#nn], strh r(0123),[sp,#nn] and
5843         str r(0123),[sp,#nn].
5844         (arm_skip_prologue): Ditto.  Also make disassembly
5845         order-independent by placing it in a loop.
5846
5847 2002-05-06  Michael Snyder  <msnyder@redhat.com>
5848
5849         * stabsread.c (read_type): Add recognition for new attribute:
5850         "@V;" means that an array type is actually a vector.
5851         This is analogous to the vector flag that's been added to dwarf2.
5852
5853 2002-05-09  Mark Kettenis  <kettenis@gnu.org>
5854
5855         * i386-tdep.h (i386_abi): New enum.
5856         (struct gdbarch_tdep): Replace os_ident member with abi.
5857         (i386_gdbarch_register_os_abi): New prototype.
5858         * i386-tdep.c (i386_abi_names): New array.
5859         (process_note_abi_tag_sections): Removed.
5860         (process_note_sections): New function.
5861         (i386_elf_abi_from_note, i386_elf_abi): New functions.
5862         (struct i386_abi_handler): New struct.
5863         (i386_abi_handler_list): New variable.
5864         (i386_gdbarch_register_os_abi): New function.
5865         (i386_gdbarch_init): Adapt for the changes given above.
5866
5867 2002-05-08  Daniel Jacobowitz  <drow@mvista.com>
5868
5869         * gregset.h: Say "GNU/Linux".
5870
5871 2002-05-08  Elena Zannoni  <ezannoni@redhat.com>
5872
5873         * gdbtypes.c : Add new builtin type for 64 bit vectors.
5874         (build_gdbtypes): Build builtin_type_v2_float.
5875         (_initialize_gdbtypes): Register new builtin type.
5876
5877 2002-05-08  Andrew Cagney  <ac131313@redhat.com>
5878
5879         * gdbarch.sh (init_gdbarch_swap): Do not clear the swap section.
5880         (clear_gdbarch_swap): New function.
5881         (initialize_non_multiarch): Call.
5882         (gdbarch_update_p): Before calling init(), swap out and clear the
5883         existing architecture.
5884         * gdbarch.c: Regenerate.
5885
5886 2002-05-08  Jason Thorpe  <thorpej@wasabisystems.com>
5887
5888         * config/djgpp/fnchange.lst: Add alphanbsd-nat.c and
5889         alphanbsd-tdep.c.
5890
5891 2002-05-08  Jason Thorpe  <thorpej@wasabisystems.com>
5892
5893         * sh-nbsd-nat.c: Rename to...
5894         * shnbsd-nat.c: ...this.
5895         * sh-nbsd-tdep.c: Rename to...
5896         * shnbsd-tdep.c: ...this.
5897         * sh-nbsd-tdep.h: Rename to...
5898         * shnbsd-tdep.h: ...this.
5899         * config/sh/nbsd.mh: Use shnbsd-nat.o.
5900         * config/sh/nbsd.mt: Use shnbsd-tdep.o.
5901
5902 2002-05-08  Richard Earnshaw  <rearnsha@arm.com>
5903
5904         * remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
5905         concatenation for command help messages.
5906
5907 2002-05-08  Jason Thorpe  <thorpej@wasabisystems.com>
5908
5909         * NEWS: Note new sh*-*-netbsdelf* configuration.
5910         * configure.host: Set gdb_host_cpu to sh for all sh*.
5911         (sh*-*-netbsdelf*): New host.
5912         * configure.tgt: Set gdb_target_cpu to sh for all sh*.
5913         (sh*-*-netbsdelf*): New target.
5914         * sh-nbsd-nat.c: New file.
5915         * sh-nbsd-tdep.c: New file.
5916         * sh-nbsd-tdep.h: New file.
5917         * config/sh/nbsd.mh: New file.
5918         * config/sh/nbsd.mt: New file.
5919         * config/sh/nm-nbsd.h: New file.
5920         * config/sh/tm-nbsd.h: New file.
5921
5922 2002-05-08  Jason Thorpe  <thorpej@wasabisystems.com>
5923
5924         * sh-tdep.c (sh_osabi_names): Declare.
5925         (process_note_abi_tag_sections): New function.
5926         (get_elfosabi): Ditto.
5927         (sh_gdbarch_register_os_abi): Ditto.
5928         (sh_dump_tdep): Ditto.
5929         _initialize_sh_tdep): Use gdbarch_register to register
5930         sh_gdbarch_init and sh_dump_tdep.
5931         * config/sh/tm-sh.h (sh_osabi): Declare.
5932         (gdbarch_tdep): Add sh_osabi and osabi_name members.
5933
5934 2002-05-07  Andrew Cagney  <ac131313@redhat.com>
5935
5936         * arm-tdep.c (arm_skip_prologue): Handle generic dummy frames.
5937         (thumb_scan_prologue): Ditto.
5938         (arm_find_callers_reg): Ditto.
5939         (arm_frame_chain): Ditto.
5940         (arm_init_extra_frame_info): Ditto.
5941         (arm_frame_saved_pc): Ditto.
5942         (arm_pop_frame): Ditto.
5943         (arm_push_return_address): New function.
5944         (arm_gdbarch_init): Initialize use_generic_dummy_frames,
5945         call_dummy_location, call_dummy_breakpoint_offset_p,
5946         call_dummy_breakpoint_offset, call_dummy_p,
5947         call_dummy_stack_adjust_p, call_dummy_words,
5948         sizeof_call_dummy_words, call_dummy_start_offset,
5949         call_dummy_length, fix_call_dummy, pc_in_call_dummy,
5950         call_dummy_address, push_return_address and push_dummy_frame for
5951         generic dummy frames.
5952
5953 2002-05-07  Jason Thorpe  <thorpej@wasabisystems.com>
5954
5955         * sh-tdep.c (sh_nofp_frame_init_saved_regs): Fix error in
5956         size computation for alloca.
5957         (sh_fp_frame_init_saved_regs): Likewise.
5958
5959 2002-05-07  Richard Earnshaw  <rearnsha@arm.com>
5960
5961         * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE): Define.
5962         (ARM_MAX_REGISTER_VIRTUAL_SIZE): Define.
5963         * arm-tdep.c (arm_store_return_value): Use them.
5964         Use FP_REGISTER_RAW_SIZE when setting the FPA return value.
5965         * remote-rdp.c (remote_rdp_fetch_register): Use
5966         ARM_MAX_REGISTER_RAW_SIZE.
5967         (remote_rdp_store_register): Likewise.
5968
5969 2002-05-07  Michal Ludvig  <mludvig@suse.cz>
5970
5971         * dwarf2cfi.c: Code cleanup, removed unused variables,
5972         added default labels to switch {} statements.
5973         * x86-64-tdep.c: Ditto.
5974         * x86-64-linux-nat.c: Ditto.
5975
5976 2002-05-07  Jason Thorpe  <thorpej@wasabisystems.com>
5977
5978         * solib.h: Protect against multiple inclusion.
5979
5980 2002-05-06  Jim Blandy  <jimb@redhat.com>
5981
5982         Add first preprocessor macro-expansion files.
5983         * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
5984         * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
5985         (splay_tree_h, macroexp_h, macrotab_h): New variable.
5986         (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
5987         (COMMON_OBS): Add macrotab.o, macroexp.o.
5988         (macroexp.o, macrotab.o): New rules.
5989
5990         Separate the job of reading the line number info statement program
5991         header (...expialidocious) out into its own function.
5992         * dwarf2read.c (struct line_head, struct filenames, struct
5993         directories): Replace with...
5994         (struct line_header): New structure, containing the full
5995         contents of the statement program header, including the
5996         include directory and file name tables.
5997         (read_file_scope): If we have line number info, instead of just
5998         calling dwarf_decode_lines to do all the work, call
5999         dwarf_decode_line_header first to get a `struct line_header'
6000         containing the data in the statement program header, and then
6001         pass that to dwarf_decode_lines, which will pick up where that
6002         left off.  Be sure to clean up the `struct line_header' object.
6003         (dwarf_decode_line_header, free_line_header, add_include_dir,
6004         add_file_name): New functions.
6005         (dwarf_decode_lines): Move all the code to read the statement
6006         program header into dwarf_decode_line_header.  Take the line
6007         header it built as the first argument, instead of the offset to
6008         the compilation unit's line number info.  Use the new `struct
6009         line_header' type instead of the old structures.  No need to do
6010         cleanups here now, since we don't allocate anything.
6011         (dwarf2_statement_list_fits_in_line_number_section,
6012         dwarf2_line_header_too_long): New complaints.
6013
6014 2002-05-06  Elena Zannoni  <ezannoni@redhat.com>
6015
6016         * gdbtypes.c (init_vector_type): New function.
6017         (build_builtin_type_vec128): Simplify the representation of SIMD
6018         registers.
6019         (build_gdbtypes): Initialize new builtin vector types.
6020         (_initialize_gdbtypes): Register new vector types with gdbarch.
6021         (builtin_type_v4_float, builtin_type_v4_int32,
6022         builtin_type_v8_int16, builtin_type_v16_int8,
6023         builtin_type_v2_int32, builtin_type_v4_int16,
6024         builtin_type_v8_int8): New (renamed) SIMD types.
6025
6026 2002-05-06  Mark Kettenis  <kettenis@gnu.org>
6027
6028         * i387-nat.c (i387_fill_fsave): Use regcache_collect.
6029         (i387_fill_fxsave): Likewise.
6030
6031 2002-05-05  Alexandre Oliva  <aoliva@redhat.com>
6032
6033         * alpha-tdep.c (alpha_extract_return_value): Don't use
6034         non-constant array size in prototype.
6035
6036 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
6037
6038         From Brian Taylor <briant at model dot com>:
6039         * ui-out.c (ui_out_field_core_addr): Use the function
6040         longest_local_hex_string_custom'to format addresses > 32 bits
6041         wide.
6042
6043         * ui-out.c (ui_out_field_core_addr): Update comment.
6044
6045 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
6046
6047         * stack.c (select_and_print_frame): Make static.  Delete the
6048         parameter `level'.
6049         (func_command): Update call.
6050         (select_frame_command): Delete code computing the frame level.
6051         * frame.h (select_and_print_frame): Delete declaration.
6052
6053 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
6054
6055         * sparc-tdep.c (sparc_get_saved_register): Comment why
6056         get_prev_frame call is safe.
6057
6058 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
6059
6060         * frame.h (select_frame): Delete level parameter.
6061         * stack.c (select_frame): Update.  Use frame_relative_level to
6062         obtain the frame's level.
6063         (select_and_print_frame): Update call.
6064         (select_frame_command): Ditto.
6065         (up_silently_base): Ditto.
6066         (down_silently_base): Ditto.
6067         * ocd.c (ocd_start_remote): Ditto.
6068         * remote-rdp.c (remote_rdp_open): Ditto.
6069         * remote-mips.c (mips_initialize): Ditto.
6070         (common_open): Ditto.
6071         * remote-e7000.c (e7000_start_remote): Ditto.
6072         * m3-nat.c (select_thread): Ditto.
6073         * hppa-tdep.c (child_get_current_exception_event): Ditto.
6074         (child_get_current_exception_event): Ditto.
6075         * varobj.c (varobj_create): Ditto.
6076         (varobj_update): Ditto.
6077         (c_value_of_root): Ditto.
6078         * tracepoint.c (finish_tfind_command): Ditto.
6079         * corelow.c (core_open): Ditto.
6080         * arch-utils.c (generic_prepare_to_proceed): Ditto.
6081         * thread.c (info_threads_command): Ditto.
6082         (switch_to_thread): Ditto.
6083         * infrun.c (normal_stop): Ditto.
6084         (restore_selected_frame): Ditto.
6085         (restore_inferior_status): Ditto.
6086         * breakpoint.c (insert_breakpoints): Ditto.
6087         (watchpoint_check): Ditto.
6088         (bpstat_stop_status): Ditto.
6089         (do_enable_breakpoint): Ditto.
6090         * blockframe.c (flush_cached_frames): Ditto.
6091         (reinit_frame_cache): Ditto.
6092
6093 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
6094
6095         * MAINTAINERS (Host/Native): Add Jason Thorpe as NetBSD
6096         maintainer.
6097
6098 2002-05-04  Jim Blandy  <jimb@redhat.com>
6099
6100         * gdbtypes.c (replace_type): Doc fix.
6101
6102 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
6103
6104         * valprint.c (strcat_longest): Delete commented out function.
6105         Update copyright.
6106
6107 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
6108
6109         * MAINTAINERS: Mark a29k as deleted.
6110         * NEWS: Mention that a29k was removed.  Add OBSOLETE section.
6111         Move new configurations to the top.
6112         * configure.tgt: Remove a29k.
6113         * config/a29k/tm-vx29k.h: Delete.
6114         * config/a29k/vx29k.mt: Delete.
6115         * config/a29k/tm-a29k.h: Delete.
6116         * config/a29k/a29k-udi.mt: Delete.
6117         * config/a29k/a29k.mt: Delete.
6118         * a29k-tdep.c: Delete.
6119         * remote-udi.c: Delete.
6120         * remote-mm.c: Delete.
6121         * remote-eb.c: Delete.
6122         * remote-adapt.c: Delete.
6123         * Makefile.in: Remove obsolete code.
6124         * config/s390/s390x.mt: Ditto.
6125         * config/s390/s390.mt: Ditto.
6126         * config/sparc/sparclynx.mh: Ditto.
6127         * config/sparc/linux.mh: Ditto.
6128         * config/pa/hppaosf.mh: Ditto.
6129         * config/pa/hppabsd.mh: Ditto.
6130         * config/ns32k/nbsd.mt: Ditto.
6131         * config/mips/vr5000.mt: Ditto.
6132         * config/m68k/sun3os4.mh: Ditto.
6133         * config/m68k/nbsd.mt: Ditto.
6134         * config/m68k/m68klynx.mh: Ditto.
6135         * config/m32r/m32r.mt: Ditto.
6136         * config/i386/x86-64linux.mt: Ditto.
6137         * config/i386/nbsdelf.mt: Ditto.
6138         * config/i386/nbsd.mt: Ditto.
6139         * config/i386/i386lynx.mh: Ditto.
6140
6141 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
6142
6143         * target.c (debug_print_register): New function.  Handle oversize
6144         registers.
6145         (debug_to_fetch_registers): Call.
6146         (debug_to_store_registers): Call.
6147
6148 2002-05-03  Jim Blandy  <jimb@redhat.com>
6149
6150         * stabsread.c (cleanup_undefined_types): Use replace_type, not memcpy.
6151         (read_type): Doc fix.
6152         * gdbtypes.c (replace_type): Doc fix.
6153
6154         * stabsread.c (multiply_defined_struct): New complaint.
6155         (read_struct_type): If the type we were passed isn't empty, or
6156         incomplete, don't read the new struct type into it; complain,
6157         and return the original type unchanged.  Take a new `type_code'
6158         argument, which is the type code for the new type.
6159         (read_type): Rather than storing the type's type code here, pass
6160         it as an argument to read_struct_type, and let that take care of
6161         storing it.  That way, we don't overwrite the original type code,
6162         so read_struct_type can use it to decide whether we're overwriting
6163         something we shouldn't.
6164         (complain_about_struct_wipeout): New function.
6165
6166 2002-05-03  Andrew Cagney  <ac131313@redhat.com>
6167
6168         * gdbarch.sh: Assert that gdbarch is non-NULL.
6169         * gdbarch.c: Regenerate.
6170
6171 2002-05-03  Jason Merrill  <jason@redhat.com>
6172
6173         * gnu-v3-abi.c (gnuv3_rtti_type): If we get confused, just warn
6174         and return NULL.
6175
6176 2002-05-03  Michal Ludvig  <mludvig@suse.cz>
6177
6178         * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map),
6179         (x86_64_dwarf2gdb_regno_map_length),
6180         (x86_64_dwarf2_reg_to_regnum): Added.
6181         (x86_64_gdbarch_init): Added registration of x86_64_dwarf2_reg_to_regnum.
6182         (x86_64_gdbarch_init): Renamed from i386_gdbarch_init.
6183         (_initialize_x86_64_tdep): Synced with the change above.
6184         (x86_64_skip_prologue): Reformulated message.
6185
6186 2002-05-03  Pierre Muller  <muller@ics.u-strasbg.fr>
6187
6188         * f-exp.y: Also use new prev_lexptr variable
6189         to improve error reporting. Based on Michael Snyder
6190         2002-04-24 dated patch to c-exp.y.
6191         * jv-exp.y: Likewise.
6192         * m2-exp.y: Likewise.
6193
6194 2002-05-02  Elena Zannoni  <ezannoni@redhat.com>
6195
6196         * valops.c (value_arg_coerce): Don't coerce arrays to pointers if
6197         we are dealing with vectors.
6198
6199 2002-05-02  Pierre Muller  <muller@ics.u-strasbg.fr>
6200
6201         * config/m68k/tm-nbsd.h: Obvious fix,
6202         correct machine name.
6203
6204 2002-05-02  Pierre Muller  <muller@ics.u-strasbg.fr>
6205
6206         * p-typeprint.c (pascal_type_print_base): Add support
6207         for TYPE_CODE_STRING and TYPE_CODE_BITSTRING.
6208
6209 2002-05-02  Pierre Muller  <muller@ics.u-strasbg.fr>
6210
6211         * p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
6212         for fondamental pascal 'char' type.
6213
6214 2002-05-02  Pierre Muller  <muller@ics.u-strasbg.fr>
6215
6216         * p-lang.h (is_pascal_string_type): Declaration changed,
6217         new sixth argument of type char ** added.
6218         * p-lang.c (is_pascal_string_type): Implementation
6219         changed. Args length_pos, length_size, string_pos, char_size
6220         can now be NULL. New argument arrayname set to the field
6221         name of the char array. Return value set to char array
6222         field index plus one.
6223         * p-valprint.c (pascal_val_print): Adapt to new declaration of
6224         is_pascal_string_type function.
6225
6226 2002-05-02  Andrew Cagney  <cagney@redhat.com>
6227
6228         * gdbarch.sh (gdbarch_update_p): Revert 2002-05-02 Andrew Cagney
6229         <cagney@redhat.com> change.
6230         * gdbarch.c: Regenerate.
6231
6232 2002-05-02  Andrew Cagney  <cagney@redhat.com>
6233
6234         * gdbarch.sh (gdbarch_update_p): Swap out the old architecture
6235         before probing for a new one.  Detect errorenous gdbarch_init
6236         functions.
6237         * gdbarch.c: Regenerate.
6238
6239 2002-05-01  Andrew Cagney  <cagney@redhat.com>
6240
6241         * config/mn10200/tm-mn10200.h: Include "symfile.h" and "symtab.h".
6242         * config/mcore/tm-mcore.h: Ditto.  Update copyright.
6243         * config/v850/tm-v850.h: Ditto.  Update copyright.
6244
6245 2002-04-30  Andrew Cagney  <ac131313@redhat.com>
6246
6247         * cris-tdep.c (cris_gdbarch_init): Use arches instead of
6248         current_gdbarch.
6249
6250 2002-04-30  Michael Snyder  <msnyder@redhat.com>
6251
6252         * arm-tdep.c: Whitespace clean-ups.
6253         (arm_skip_prologue): Fix thinko; two lines
6254         should have been removed as part of 4/24 change.
6255
6256 2002-04-30  Kevin Buettner  <kevinb@redhat.com>
6257
6258         * rs6000-tdep.c: Added comment describing how fpscr register
6259         numbers were chosen.
6260
6261 2002-04-30  Michael Snyder  <msnyder@redhat.com>
6262
6263         * gnu-nat.c (gnu_find_memory_regions): Fix merge botch.
6264
6265 2002-04-29  Elena Zannoni  <ezannoni@redhat.com>
6266
6267         * hpread.c (DNTT_TYPE_VECTOR): Rename from TYPE_VECTOR.
6268         (DNTT_TYPE_VECTOR_LENGTH): Rename from TYPE_VECTOR_LENGTH.
6269         (hpread_symfile_init, hpread_lookup_type): Substitute throughout.
6270
6271 2002-04-29  Kevin Buettner  <kevinb@redhat.com>
6272
6273         From Louis Hamilton <hamilton@redhat.com>:
6274         * rs6000-tdep.c (coff/xcoff.h, libxcoff.h): Include.
6275         * xcoffread.c (coff/xcoff.h, libxcoff.h): Likewise.
6276         * rs6000-tdep.c (rs6000_gdbarch_init): Use bfd_xcoff_is_xcoff64(),
6277         not bfd-private xcoff data, to determine wordsize.
6278         * xcoffread.c (read_xcoff_xymtab, read_symbol_lineno): Likewise.
6279
6280 2002-04-29  Andrew Cagney  <ac131313@redhat.com>
6281
6282         GDB 5.2 released from 5.2 branch.
6283
6284 2002-04-29  Michal Ludvig  <mludvig@suse.cz>
6285
6286         * x86-64-linux-nat.c (fill_gregset): Explicit cast to avoid warning.
6287         * x86-64-tdep.c (i386_gdbarch_init): Ditto.
6288         (x86_64_register_info_table): Added comments with register numbers.
6289
6290 2002-04-29  Elena Zannoni  <ezannoni@redhat.com>
6291
6292         * rs6000-tdep.c (rs6000_extract_return_value,
6293         rs6000_store_return_value): Handle returning vectors.
6294         (rs6000_gdbarch_init): Use
6295         ppc_sysv_abi_broken_use_struct_convention for native sysv cases.
6296         * ppc-linux-tdep.c (ppc_sysv_abi_broken_use_struct_convention):
6297         New function.
6298         (ppc_sysv_abi_use_struct_convention): Deal with functions returning
6299         vectors.
6300         (ppc_sysv_abi_push_arguments): Handle vector parameters.
6301         * ppc-tdep.h (ppc_sysv_abi_broken_use_struct_convention): Export.
6302
6303 2002-04-24  Pierre Muller  <ics.u-strasbg.fr>
6304
6305         * hpread.c (hpread_psymtab_to_symtab_1,
6306         hpread_psymtab_to_symtab): Replace fprintf tab_to_s...)
6307         with fprintf_unfiltered (gdb_stderr,...).
6308
6309 2002-04-24  Pierre Muller  <ics.u-strasbg.fr>
6310
6311         * remote-array.c (printf_monitor, write_monitor,
6312         array_insert_breakpoint, array_remove_breakpoint ):
6313         Replace fprintf (stderr,...
6314         with fprintf_unfiltered (gdb_stderr,....
6315         * remote-es.c: Likewise.
6316         * remote-os9k.c: Likewise.
6317         * remote-st.c: Likewise.
6318
6319 2002-04-28  Andreas Schwab  <schwab@suse.de>
6320
6321         * config/s390/s390.mh (NATDEPFILES): Remove solib.o, add
6322         linux-proc.o and gcore.o.
6323
6324 2002-04-26  Michal Ludvig  <mludvig@suse.cz>
6325
6326         * x86-64-tdep.c (x86_64_skip_prologue): Print note when debugging
6327         code without frame pointers.
6328
6329 2002-04-26  Andrew Cagney  <ac131313@redhat.com>
6330
6331         * sparc-tdep.c (sparc_gdbarch_init): Add comment explaining why
6332         ON_STACK is needed.
6333
6334 2002-04-26  Ben Elliston  <bje@redhat.com>
6335
6336         * target.c (do_xfer_memory): Correct reference to the new option
6337         "trust-readonly-sections".
6338
6339 2002-04-26  Elena Zannoni  <ezannoni@redhat.com>
6340
6341         * gdbtypes.h (TYPE_FLAG_VECTOR, TYPE_VECTOR): Define.
6342         * gdbtypes.c (recursive_dump_type): Output the vector flag.
6343         * dwarf2read.c (dwarf_attr_name): Handle new attribute for
6344         vectors.
6345         (read_array_type): Record the fact that this array type is really a
6346         vector (i.e. are passed in by value).
6347
6348 2002-04-26  Jason Thorpe  <thorpej@wasabisystems.com>
6349
6350         * alpha-tdep.h (gdbarch_tdep): Add sigcontext_addr member.
6351         * alpha-tdep.c (alpha_sigcontext_addr): New function.
6352         (alpha_find_saved_regs): Use alpha_sigcontext_addr.
6353         (alpha_gdbarch_init): Initialize tdep->sigcontext_addr.
6354         * alpha-linux-tdep.c: Include frame.h.
6355         (alpha_linux_sigcontext_addr): New function.
6356         (alpha_linux_init_abi): Set tdep->sigcontext_addr to
6357         alpha_linux_sigcontext_addr.
6358         * alpha-osf1-tdep.c: Include gdbcore.h.
6359         (alpha_osf1_sigcontext_addr): New function.
6360         (alpha_osf1_init_abi): Set tdep->sigcontext_addr to
6361         alpha_osf1_sigcontext_addr.
6362         * config/alpha/tm-alpha.h (SIGCONTEXT_ADDR): Remove.
6363         * config/alpha/tm-alphalinux.h (SIGCONTEXT_ADDR): Remove.
6364
6365 2002-04-26  Andrew Cagney  <ac131313@redhat.com>
6366
6367         * stack.c (selected_frame_level):
6368         (select_frame): Do not set selected_frame_level.
6369         * frame.h (selected_frame_level): Delete declaration.
6370
6371 2002-04-26  Andrew Cagney  <ac131313@redhat.com>
6372
6373         * rs6000-tdep.c (rs6000_gdbarch_init): Only set
6374         convert_from_func_ptr-addr when AIX / PowerOpen.
6375
6376 2002-04-25  Andrew Cagney  <ac131313@redhat.com>
6377
6378         * valops.c (hand_function_call): Call
6379         generic_save_call_dummy_addr.
6380         * frame.h (generic_save_call_dummy_addr): Declare.
6381         * blockframe.c (struct dummy_frame): Add fields call_lo and
6382         call_hi.
6383         (generic_find_dummy_frame): Check for PC in range call_lo to
6384         call_hi instead of entry_point_address.
6385         (generic_pc_in_call_dummy): Search the dummy frames for a PC in
6386         the call_lo to call_hi range.  Allow for DECR_PC_AFTER_BREAK.
6387         (generic_save_call_dummy_addr): New function.
6388
6389 2002-04-24  David S. Miller  <davem@redhat.com>
6390
6391         * sparc-tdep.c (sparc_gdbarch_skip_prologue): Kill, duplicates
6392         sparc_skip_prologue.
6393         (sparc_skip_prologue): Kill frameless_p arg, and use line number
6394         information to find prologue when possible.
6395         (sparc_prologue_frameless_p): Call examine_prologue directly.
6396         (sparc_gdbarch_init): Update set_gdbarch_skip_prologue call.
6397         * config/sparc/tm-sparc.h (sparc_skip_prologue): Update for killed
6398         second argument.
6399         (SKIP_PROLOGUE): Likewise.
6400
6401 2002-04-25  Jason Thorpe  <thorpej@wasabisystems.com>
6402
6403         * alpha-tdep.c (alpha_skip_prologue_internal): Remove
6404         GDB_TARGET_HAS_SHARED_LIBS #ifdef and update comment to
6405         indicate that the condition it was testing is always true.
6406         * config/alpha/nm-linux.h (GDB_TARGET_HAS_SHARED_LIBS): Remove.
6407         * config/alpha/nm-nbsd.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
6408         * config/alpha/nm-osf.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
6409
6410 2002-04-25  Jason Thorpe  <thorpej@wasabisystems.com>
6411
6412         * alpha-tdep.h (gdbarch_tdep): Add jb_pc and jb_elt_size members.
6413         * alpha-linux-tdep.c (alpha_linux_init_abi): Initialize
6414         tdep->jb_pc and tdep->jb_elt_size.
6415         * alpha-osf1-tdep.c (alpha_osf1_init_abi): Likewise.
6416         * alphafbsd-tdep.c (alphafbsd_init_abi): Likewise.
6417         * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
6418         * alpha-nat.c (get_longjmp_target): Remove.
6419         (JB_ELEMENT_SIZE): Ditto.
6420         (JB_PC): Ditto.
6421         * alpha-tdep.c (alpha_get_longjmp_target): New function.
6422         (alpha_gdbarch_init): Default tdep->jb_pc to -1.  If the
6423         OS ABI sets jb_pc to a valid value, set gdbarch_get_longjmp_target
6424         to alpha_get_longjmp_target.
6425         (alpha_dump_tdep): Report tdep->jb_pc and tdep->jb_elt_size.
6426         * config/alpha/nm-linux.h (GET_LONGJMP_TARGET): Remove.
6427         * config/alpha/nm-osf.h (GET_LONGJMP_TARGET): Remove.
6428
6429 2002-04-25  Andrew Cagney  <ac131313@redhat.com>
6430
6431         * README: Update to GDB 5.2.
6432
6433 2002-04-25  Andrew Cagney  <ac131313@redhat.com>
6434
6435         * gdbarch.sh (LC_ALL): Set to `c'.
6436
6437 2002-04-25  Theodore A. Roth  <troth@verinet.com>
6438
6439         * avr-tdep.c: Ran through gdb_indent.sh.
6440
6441 2002-04-25  Theodore A. Roth  <troth@verinet.com>
6442
6443         * MAINTAINERS: Add myself as AVR maintainer.
6444         * NEWS: Note new target avr.
6445
6446 2002-04-25  Theodore A. Roth  <troth@verinet.com>
6447
6448         * Makefile.in: Add support for AVR target.
6449         * configure.tgt: Add support for AVR target.
6450         * avr-tdep.c: New file
6451         * config/avr/avr.mt: New file.
6452
6453 2002-04-25  Theodore A. Roth  <troth@verinet.com>
6454
6455         * MAINTAINERS: Add myself to write-after-approval.
6456
6457 2002-04-24  Pierre Muller  <ics.u-strasbg.fr>
6458
6459         * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,...
6460         with fprintf_unfiltered (gdb_stderr,....
6461
6462 2002-04-25  Pierre Muller  <muller@ics.u-strasbg.fr>
6463
6464         Fix PR gdb/508.
6465         * symfile.c (add_filename_language): Fix wrong xrealloc size argument.
6466
6467 2002-04-25  Pierre Muller  <muller@ics.u-strasbg.fr>
6468
6469         * p-exp.y: Also use new prev_lexptr variable
6470         to improve error reporting. Based on Michael Snyder
6471         2002-04-24 dated patch to c-exp.y.
6472
6473 2002-04-25  Jason Thorpe  <thorpej@wasabisystems.com>
6474
6475         * alpha-tdep.c (alpha_breakpoint_from_pc): New function.
6476         (alpha_gdbarch_init): Set gdbarch_breakpoint_from_pc to
6477         alpha_breakpoint_from_pc.  Set gdbarch_function_start_offset
6478         to 0.
6479         * config/alpha/tm-alpha.h: Remove forward decls of struct type
6480         and struct value.
6481         (FUNCTION_START_OFFSET): Remove.
6482         (BREAKPOINT): Ditto.
6483
6484 2002-04-25  Jason Thorpe  <thorpej@wasabisystems.com>
6485
6486         * MAINTAINERS: Reflect that multi-arch is enabled for VAX.
6487         * NEWS: Ditto.
6488
6489 2002-04-24  Jason Thorpe  <thorpej@wasabisystems.com>
6490
6491         * alpha-linux-tdep.c (alpha_linux_pc_in_sigtramp): New function.
6492         (alpha_linux_init_abi): Set gdbarch_pc_in_sigtramp to
6493         alpha_linux_pc_in_sigtramp.
6494         * alpha-osf1-tdep.c (alpha_osf1_pc_in_sigtramp): New function.
6495         (alpha_osf1_init_abi): Set gdbarch_pc_in_sigtramp to
6496         alpha_osf1_pc_in_sigtramp.
6497         * alpha-tdep.c (alpha_osf_in_sigtramp): Remove.
6498         * alphafbsd-tdep.c (alphafbsd_pc_in_sigtramp): New function.
6499         (alphafbsd_init_abi): Set gdbarch_pc_in_sigtramp to
6500         alphafbsd_pc_in_sigtramp.
6501         * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): New function.
6502         (alphanbsd_init_abi): Set gdbarch_pc_in_sigtramp to
6503         alphanbsd_pc_in_sigtramp.
6504         * config/alpha/tm-alpha.h (IN_SIGTRAMP): Remove.
6505         * config/alpha/tm-alphalinux.h (IN_SIGTRAMP): Remove.
6506
6507 2002-04-24  Jason Thorpe  <thorpej@wasabisystems.com>
6508
6509         * config/alpha/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
6510
6511 2002-04-24  Jason Thorpe  <thorpej@wasabisystems.com>
6512
6513         * Makefile.in (ALLDEPFILES): Add alphanbsd-nat.c and
6514         alphanbsd-tdep.c.
6515         (alphanbsd-nat.o): New dependency list.
6516         (alphanbsd-tdep.o): Ditto.
6517         * NEWS: Note new native NetBSD/alpha configuration.
6518         * alphanbsd-nat.c: New file.
6519         * alphanbsd-tdep.c: Ditto.
6520         * configure.host (alpha*-*-netbsd*): New host.
6521         * configure.tgt (alpha*-*-netbsd*): New target.
6522         * config/alpha/nbsd.mh: New file.
6523         * config/alpha/nbsd.mt: Ditto.
6524         * config/alpha/nm-nbsd.h: Ditto.
6525         * config/alpha/tm-nbsd.h: Ditto.
6526
6527 2002-04-24  Jason Thorpe  <thorpej@wasabisystems.com>
6528
6529         * Makefile.in (ALLDEPFILES): Add alpha-osf1-tdep.c.
6530         (alpha-osf1-tdep.o): New dependency list.
6531         * alpha-tdep.h (gdbarch_tdep): Add dynamic_sigtramp_offset
6532         and skip_sigtramp_frame members.
6533         * alpha-linux-tdep.c: Include gdbcore.h.
6534         (alpha_linux_sigtramp_offset): Change return type to LONGEST.
6535         (alpha_linux_init_abi): Initialize tdep->dynamic_sigtramp_offset.
6536         * alpha-osf1-tdep.c: New file.
6537         * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Moved to
6538         alpha-osf1-dep.c.
6539         (alpha_frame_past_sigtramp_frame): New function.
6540         (alpha_dynamic_sigtramp_offset): Ditto.
6541         (alpha_proc_desc_is_dyn_sigtramp): Ditto.
6542         (alpha_set_proc_desc_is_dyn_sigtramp): Ditto.
6543         (ALPHA_PROC_SIGTRAMP_MAGIC): Define.
6544         (push_sigtramp_desc): Use alpha_set_proc_desc_is_dyn_sigtramp.
6545         (after_prologue): Use alpha_proc_desc_is_dyn_sigtramp.
6546         (find_proc_desc): Use alpha_dynamic_sigtramp_offset.
6547         (alpha_frame_chain): Use alpha_frame_past_sigtramp_frame.
6548         (alpha_init_extra_frame_info): Use alpha_proc_desc_is_dyn_sigtramp.
6549         (alpha_pop_frame): Use alpha_proc_desc_is_dyn_sigtramp.
6550         (alpha_gdbarch_init): Initialize tdep->dynamic_sigtramp_offset
6551         and tdep->skip_sigtramp_frame.  Set gdbarch_skip_trampoline_code
6552         to find_solib_trampoline_target.
6553         * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-osf1-tdep.o.
6554         * config/alpha/tm-alpha.h: Remove inclusion of regcache.h.
6555         (SKIP_TRAMPOLINE_CODE): Remove.
6556         (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
6557         (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
6558         (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
6559         (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
6560         * config/alpha/tm-alphalinux.h (PROC_DESC_IS_DYN_SIGTRAMP): Remove.
6561         (PROC_SIGTRAMP_MAGIC): Ditto.
6562         (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
6563         (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
6564         (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
6565         (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
6566         (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
6567
6568 2002-04-24  Jason Thorpe  <thorpej@wasabisystems.com>
6569
6570         * NEWS: Note that Alpha targets are now multi-arch.
6571
6572 2002-04-24  Michael Snyder  <msnyder@redhat.com>
6573
6574         * parser-defs.h (prev_lexptr): New external variable.
6575         * parse.c (parse_exp_1): Set prev_lexptr to null before
6576         calling the language-specific parser.
6577         * c-exp.y (yylex): Set prev_lexptr to start of current token.
6578         (yyerror): Use prev_lexptr in error reporting.
6579
6580 2002-04-24  Daniel Jacobowitz  <drow@mvista.com>
6581
6582         * config/i386/tm-linux.h: Define FILL_FPXREGSET.
6583         * gregset.h: If FILL_FPXREGSET is defined, provide
6584         gdb_fpxregset_t, supply_fpxregset, and fill_fpxregset.
6585         * linux-proc.c (linux_do_thread_registers): If FILL_FPXREGSET
6586         is defined, call fill_fpxregset.
6587
6588 2002-04-24  Roland McGrath  <roland@frob.com>
6589
6590         * config/i386/i386gnu.mh (NATDEPFILES): Add core-regset.o here.
6591         * i386gnu-nat.c [HAVE_SYS_PROCFS_H]
6592         (supply_gregset, supply_fpregset): New functions.
6593
6594         * gnu-nat.c (gnu_find_memory_regions): New function.
6595         (init_gnu_ops): Set `to_find_memory_regions' hook to that.
6596         (gnu_xfer_memory): Add a cast.
6597
6598 2002-04-24  Michael Snyder  <msnyder@redhat.com>
6599
6600         * arm-tdep.c (arm_scan_prologue): Move "mov ip, sp" into the
6601         loop.  Add handling for "str lr, [sp, #-4]!" and for saves
6602         of argument regs ("str r(0123), [r11, #-nn"]).
6603         (arm_skip_prologue): Better handling for frameless functions.
6604         Treat "mov ip, sp" as optional.  Recognize "str lr, [sp, #-4]".
6605         (arm_skip_prologue): Recognize str r(0123), [r11, #-nn].
6606
6607 Wed Apr 24 14:22:21 2002  Andrew Cagney  <cagney@redhat.com>
6608
6609         * arm-tdep.c (arm_gdbarch_init): Add comment that NUM_REGS nor
6610         NUM_PSEUDO_REGS can be used.
6611
6612 2002-04-24  Andrew Cagney  <ac131313@redhat.com>
6613
6614         * arch-utils.h: Update copyright.
6615
6616         * gdbarch.sh (PC_IN_SIGTRAMP): Add.
6617         * gdbarch.h, gdbarch.c: Re-generate.
6618
6619         * inferior.h (IN_SIGTRAMP): Delete definition.
6620         * arch-utils.c (legacy_pc_in_sigtramp): New function.
6621         * arch-utils.h (legacy_pc_in_sigtramp): Declare.
6622
6623         * mips-tdep.c (mips_init_extra_frame_info): Use PC_IN_SIGTRAMP.
6624         (mips_dump_tdep): Do not print value of IN_SIGTRAMP.
6625         * hppa-tdep.c (pc_in_interrupt_handler):  Use PC_IN_SIGTRAMP.
6626         (find_proc_framesize): Ditto.
6627         * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Ditto.
6628         (alpha_init_extra_frame_info): Ditto.
6629         * infrun.c (handle_inferior_event): Ditto.
6630         (handle_inferior_event): Ditto.
6631         (check_sigtramp2): Ditto.
6632         * blockframe.c (create_new_frame): Ditto.
6633         (get_prev_frame): Ditto.
6634         * ppc-linux-tdep.c: Update comments.
6635         * i386-linux-tdep.c: Update comments.
6636         * breakpoint.c (bpstat_what): Update comment.
6637
6638 2002-04-24  David S. Miller  <davem@redhat.com>
6639
6640         * i960-tdep.c (register_in_window_p): New function.
6641         (i960_find_saved_register): Use it instead of
6642         REGISTER_IN_WINDOW_P.
6643         * config/i960/tm-i960.h (REGISTER_IN_WINDOW): Delete.
6644
6645         * symtab.h (find_stab_function_addr): Kill extern.
6646         * minsyms.c (find_stab_function_addr): Remove from here...
6647         * dbxread.c: ... to here, and mark it static.
6648
6649 2002-04-20  David S. Miller  <davem@redhat.com>
6650
6651         * sparc-tdep.c (sparc_pop_frame): Only need to allocate
6652         SPARC_INTREG_SIZE * 16 bytes for reg_temp.
6653
6654 2002-04-21  David S. Miller  <davem@redhat.com>
6655
6656         * remote-vxsparc.c (vx_read_register): Fix typo, we want
6657         REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
6658         (vx_write_register): Likewise.
6659
6660 2002-04-23  J. Brobecker  <brobecker@gnat.com>
6661
6662         * source.c (is_regular_file): New function.
6663         (openp): Check wether file to open is a regular file
6664         to avoid opening directories.
6665
6666 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
6667
6668         * findvar.c (extract_signed_integer): Cast printf argument
6669         to suppress format warning.
6670         (extract_unsigned_integer): Likewise.
6671         * infcmd.c (registers_info): Likewise.
6672         * top.c (get_prompt_1): Likewise.
6673         * valops.c (value_assign): Likewise.
6674         * valprint.c (print_decimal): Likewise.
6675
6676 2002-04-22  H.J. Lu  (hjl@gnu.org)
6677
6678         * c-exp.y (typebase): Support
6679
6680         [long|long long|short] [signed|unsigned] [int|]
6681
6682         and
6683
6684         signed [long|long long|short] int
6685
6686 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
6687
6688         * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
6689         and vax-tdep.h.
6690         * vax-tdep.h: New file.
6691         * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
6692         Make several routines static.
6693         (vax_get_saved_register): New function.
6694         (vax_gdbarch_init): New function.
6695         (_initialize_vax_tdep): Register vax_gdbarch_init.
6696         * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
6697         Remove macros now under the control of gdbarch.
6698
6699 2002-04-22  Michael Snyder  <msnyder@redhat.com>
6700
6701         * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
6702         Some whitespace and coding standards tweaks.
6703
6704 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
6705
6706         * vax-tdep.c: Include regcache.h.
6707         (vax_call_dummy_words): New.
6708         (sizeof_vax_call_dummy_words): New.
6709         (vax_fix_call_dummy): New function.
6710         (vax_saved_pc_after_call): Ditto.
6711         * config/vax/tm-vax.h: Don't include regcache.h.
6712         (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
6713         (CALL_DUMMY): Remove.
6714         (CALL_DUMMY_WORDS): Define.
6715         (SIZEOF_CALL_DUMMY_WORDS): Define.
6716         (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
6717
6718 2002-04-18  Michael Snyder  <msnyder@redhat.com>
6719
6720         * arm-tdep.h: Change regnum defines to enums for ease of debugging.
6721
6722 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
6723
6724         * vax-tdep.c (vax_frame_chain): New function.
6725         (vax_push_dummy_frame): Ditto.
6726         (vax_pop_frame): Ditto.
6727         * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
6728         (FRAMELESS_FUNCTION_INVOCATION): Use
6729         generic_frameless_function_invocation_not.
6730         (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
6731         (POP_FRAME): Use vax_pop_frame.
6732
6733 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
6734
6735         * vax-tdep.c (vax_store_struct_return): New function.
6736         (vax_extract_return_value): Ditto.
6737         (vax_store_return_value): Ditto.
6738         (vax_extract_struct_value_address): Ditto.
6739         * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
6740         vax_store_struct_return.
6741         (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
6742         (STORE_RETURN_VALUE): Use vax_store_return_value.
6743         (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
6744
6745 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
6746
6747         * vax-tdep.c (vax_frame_saved_pc): New function.
6748         (vax_frame_args_address_correct): Ditto.
6749         (vax_frame_args_address): Ditto.
6750         (vax_frame_locals_address): Ditto.
6751         (vax_frame_num_args): Move code to be in proximity to
6752         other frame-related functions.
6753         * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
6754         (FRAME_SAVED_PC): Use vax_frame_saved_pc.
6755         (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
6756         (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
6757         (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
6758
6759 2002-04-22  H.J. Lu  (hjl@gnu.org)
6760
6761         * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
6762         includedir.
6763
6764 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
6765
6766         * vax-tdep.c (vax_frame_init_saved_regs): New function.
6767         * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
6768         (FRAME_INIT_SAVED_REGS): New macro.
6769
6770 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
6771
6772         * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
6773
6774 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
6775
6776         * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
6777         where needed.
6778         (fetch_osf_core_registers): Likewise.
6779         (supply_gregset): Likewise.
6780
6781 2002-04-22  J. Brobecker  <brobecker@gnat.com>
6782
6783         * symfile.h (get_section_index): Define.
6784         * symfile.c (get_section_index): New function.
6785         * mdebugread.c (SC_IS_SBSS): New macro.
6786         (SC_IS_BSS): Return true for the scBss storage class only, as
6787         the scSBss storage class refers to the .sbss section.
6788         (parse_partial_symbols): Discard the symbols which associated
6789         section does not exist.
6790         Make sure to use the .sbss section index for symbols which
6791         storage class is scBss, rather than using the .bss section index.
6792
6793 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
6794
6795         * vax-tdep.c: Update copyright years.
6796         (vax_register_name): New function.
6797         (vax_register_byte): Ditto.
6798         (vax_register_raw_size): Ditto.
6799         (vax_register_virtual_size): Ditto.
6800         (vax_register_virtual_type): Ditto.
6801         * config/vax/tm-vax.h: Update copyright years.
6802         (REGISTER_NAMES): Remove.
6803         (REGISTER_NAME): Define.
6804         (REGISTER_BYTE): Use vax_register_byte.
6805         (REGISTER_RAW_SIZE): Use vax_register_raw_size.
6806         (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
6807         (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
6808
6809 2002-04-21  Andrew Cagney  <ac131313@redhat.com>
6810
6811         * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
6812         declaration
6813         * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
6814
6815 2002-04-21  David S. Miller  <davem@redhat.com>
6816
6817         * arch-utils.c (generic_prologue_frameless_p): Kill
6818         SKIP_PROLOGUE_FRAMELESS_P code.
6819         * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
6820         references.
6821         (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
6822         * arc-tdep.c (arc_prologue_frameless_p): Implement.
6823         * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
6824         references.
6825         (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
6826         * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
6827         (sparc_gdbarch_init): Pass it to
6828         set_gdbarch_prologue_frameless_p.
6829
6830 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
6831
6832         * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
6833         (alphabsd-nat.o): New dependency list.
6834
6835 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
6836
6837         * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
6838         alphafbsd-tdep.c.
6839         (alpha-linux-tdep.o): New dependency list.
6840         (alphafbsd-tdep.o): Likewise.
6841
6842 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
6843
6844         * alpha-linux-tdep.c: New file.  Move alpha_linux_sigtramp_offset
6845         to here...
6846         * alpha-tdep.c: ...from here.
6847         * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
6848
6849 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
6850
6851         * config/alpha/tm-alpha.h: Move alpha_software_single_step
6852         prototype from here...
6853         * alpha-tdep.h: ...to here.
6854
6855 2002-04-21  Andrew Cagney  <ac131313@redhat.com>
6856
6857         * frame.h (selected_frame_level): Document as deprecated.
6858         (frame_relative_level): Declare.
6859         * stack.c (frame_relative_level): New function.
6860         (selected_frame_level): Document as deprecated.
6861         (select_frame): Do not set the selected_frame_level.
6862
6863         * stack.c (frame_info, record_selected_frame): Update.
6864         (frame_command, current_frame_command): Update.
6865         (up_silently_base, up_command, down_silently_base): Update.
6866         (down_command): Update.
6867         * inflow.c (kill_command): Update.
6868         * tracepoint.c (finish_tfind_command): Update.
6869         * corelow.c (core_open): Update.
6870         * thread.c (info_threads_command): Update.
6871         (do_captured_thread_select): Update.
6872         * infcmd.c (finish_command): Update.
6873         * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
6874
6875 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
6876
6877         * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
6878
6879 2002-04-21  Andrew Cagney  <ac131313@redhat.com>
6880
6881         * arm-tdep.c (arm_breakpoint_from_pc): Make static.  Make return
6882         type const.
6883
6884 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
6885
6886         * alphafbsd-tdep.c: Update copyright years.  Include
6887         alpha-tdep.h.
6888         (alphafbsd_use_struct_convention): Make static.
6889         (alphafbsd_init_abi): New function.
6890         (_initialize_alphafbsd_tdep): New function.
6891         * config/alpha/tm-fbsd.h: Update copyright years.
6892         (USE_STRUCT_CONVENTION): Remove.
6893
6894 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
6895
6896         * alpha-tdep.c (alpha_abi_handler): New structure to describe
6897         an Alpha ABI variant.
6898         (alpha_abi_handler_list): Declare.
6899         (alpha_gdbarch_register_os_abi): New function.
6900         (alpha_gdbarch_init): Give registered ABI variant handlers a
6901         chance to tweak the gdbarch once we have set up defaults.
6902         * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
6903
6904 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
6905
6906         * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
6907         to standard_coerce_float_to_double.
6908         * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
6909
6910 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
6911
6912         * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
6913         * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
6914         from gdbarch_tdep rather than a constant.
6915         (alpha_gdbarch_init): Initialize tdep->vm_min_address to
6916         the default text address for all Alpha Unix ABIs.
6917         (alpha_dump_tdep): Report the value of tdep->vm_min_address.
6918         * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
6919
6920 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
6921
6922         * alpha-tdep.h: New file.  Includes several Alpha target constants
6923         taken from...
6924         * config/alpha/tm-alpha.h: ...here.  Remove macros that we now
6925         let gdbarch deal with.
6926         (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
6927         * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
6928         to dependency list.
6929         * alpha-nat.c: Include alpha-tdep.h.  Update for adjusted
6930         Alpha target register names.
6931         * alphabsd-nat.c: Likewise.
6932         * alpha-tdep.c: Include alpha-tdep.h.  Update for adjusted
6933         Alpha target register names.  Make serveral routines static.
6934         (alpha_get_saved_register): New function.
6935         (alpha_abi_names): New.
6936         (process_note_abi_tag_sections): New function.
6937         (get_elfosabi): New function.
6938         (alpha_gdbarch_init): New function.
6939         (alpha_dump_tdep): New function.
6940         (_initialize_alpha_tdep): Register alpha_gdbarch_init.
6941
6942 2002-04-21  Andrew Cagney  <ac131313@redhat.com>
6943
6944         * frame.c (find_saved_register): Delete #ifdef
6945         HAVE_REGISTER_WINDOWS code.
6946         * config/sparc/tm-sparc.h: Update comments.
6947         * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
6948
6949 2002-04-21  Andrew Cagney  <ac131313@redhat.com>
6950
6951         * i960-tdep.c (i960_find_saved_register): New function.
6952         (i960_get_saved_register): New function.
6953         * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
6954         (i960_get_saved_register): Declare.
6955         * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
6956
6957 2002-04-20  David S. Miller  <davem@redhat.com>
6958
6959         * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
6960
6961 2002-04-20  Andrew Cagney  <ac131313@redhat.com>
6962
6963         * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
6964         instead of NUM_PSEUDO_REGS.
6965
6966 2002-04-20  David S. Miller  <davem@redhat.com>
6967
6968         * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
6969         GDB_MULTI_ARCH_PARTIAL
6970         * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
6971         define, let tm-sp64.h do it.
6972
6973 2002-04-20  Jason Thorpe  <thorpej@wasabisystems.com>
6974
6975         * frame.c (find_saved_register): Avoid a NULL pointer
6976         dereference and actually walk the frame list.
6977
6978 2002-04-20  Andrew Cagney  <ac131313@redhat.com>
6979
6980         * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
6981         sorted in most most-recent-used order.  Document.
6982         * gdbarch.h, gdbarch.c: Regenerate.
6983
6984 2002-04-19  Andrew Cagney  <ac131313@redhat.com>
6985
6986         * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
6987         instead of ->prev.
6988         * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
6989         * s390-tdep.c (s390_frame_chain): Do not use ->prev.
6990         * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
6991         instead of ->prev.
6992
6993 2002-04-19  Elena Zannoni  <ezannoni@redhat.com>
6994
6995         Fix PR gdb/471.
6996         * gdbtypes.c (init_simd_type): Rewrite using new functions.
6997         (build_builtin_type_vec128): Ditto.
6998         (append_composite_type_field): Fix calculation of type length in
6999         union case.
7000
7001 2002-04-19  Eli Zaretskii  <eliz@is.elta.co.il>
7002
7003         * config/djgpp/README: Update.
7004
7005         * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
7006         compiler warnings.
7007
7008 2002-04-19  Jason Thorpe  <thorpej@wasabisystems.com>
7009
7010         * alpha-tdep.c (setup_arbitrary_frame): Rename...
7011         (alpha_setup_arbitrary_frame): ...to this.
7012         * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
7013         for alpha_setup_arbitrary_frame.
7014
7015 2002-04-18  Andrew Cagney  <cagney@redhat.com>
7016
7017         * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
7018         * gdbarch.h, gdbarch.c: Regenerate.
7019
7020         * defs.h (breakpoint_from_pc_fn): Delete type definition.
7021         * target.h (memory_breakpoint_from_pc): Update declaration.
7022         * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
7023
7024         * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
7025         * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
7026         * mem-break.c (memory_breakpoint_from_pc): Ditto.
7027         * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
7028         * s390-tdep.c (s390_breakpoint_from_pc): Ditto
7029         * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
7030         * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
7031         * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
7032         * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
7033         * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
7034         * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
7035         * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
7036
7037         * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
7038         const pointer.
7039         * monitor.c (monitor_insert_breakpoint): Ditto.
7040         * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
7041
7042         * config/mcore/tm-mcore.h: Update copyright.
7043         * mem-break.c: Ditto.
7044         * xstormy16-tdep.c: Ditto.
7045
7046 2002-04-18  Pierre Muller  <muller@ics.u-strasbg.fr>
7047
7048         * p-exp.y: Add precedence rule for '^' token.
7049         This removes the shift/reduce conflicts.
7050         Remove the comment concerning these shift/reduce conflicts.
7051
7052 2002-04-18  Elena Zannoni  <ezannoni@redhat.com>
7053
7054         * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
7055         (registers_powerpc_nofp): New register set for processors
7056         without floating point unit.
7057
7058 2002-04-18  David S. Miller  <davem@redhat.com>
7059
7060         * MAINTAINERS: Add myself to write-after-approval.
7061
7062 2002-04-17  Michael Snyder  <msnyder@redhat.com>
7063
7064         * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
7065
7066 2002-04-17  Andrew Cagney  <ac131313@redhat.com>
7067
7068         * rs6000-tdep.c (frame_initial_stack_address): Use
7069         frame_register_read to read the alloca_reg.
7070
7071 2002-04-17  Andrew Cagney  <ac131313@redhat.com>
7072
7073         * frame.c (find_saved_register): Find saved registers in the next
7074         not prev frame.
7075         Fix PR gdb/365.
7076
7077 2002-04-17  Andrew Cagney  <ac131313@redhat.com>
7078
7079         * gdbarch.sh (LANG): Set to ``c''.
7080
7081 2002-04-15  Andrew Cagney  <ac131313@redhat.com>
7082
7083         * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
7084
7085 2002-04-15  Andrew Cagney  <ac131313@redhat.com>
7086
7087         * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
7088         Update copyright.
7089
7090         * hpread.c (hpread_get_lntt): Add declaration.
7091         Also fix PR gdb/391.
7092
7093 2002-04-14  Andrew Cagney  <ac131313@redhat.com>
7094
7095         * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
7096         * aclocal.m4, configure: Re-generate.
7097         Fix PR gdb/391.
7098
7099 2002-04-14  Elena Zannoni  <ezannoni@redhat.com>
7100
7101         * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
7102         instead of tm_print_insn.
7103
7104 2002-04-14  Elena Zannoni  <ezannoni@redhat.com>
7105
7106         * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
7107
7108 2002-04-14  Andrew Cagney  <ac131313@redhat.com>
7109
7110         * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
7111         * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
7112         (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
7113
7114 2002-04-12  Don Howard  <dhoward@redhat.com>
7115
7116         * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
7117         max_user_call_depth.
7118         (init_cmd_lists): Initialize the new value;
7119         * cli/cli-script.c (execute_user_command): Limit the call depth of
7120         user defined commands.  This avoids a core-dump when user commands
7121         are infinitly recursive.
7122
7123 2002-04-12  Kevin Buettner  <kevinb@redhat.com>
7124
7125         * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
7126         * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
7127         from tdep struct instead of DEFAULT_LR_SAVE.
7128         (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
7129         * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
7130         * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
7131
7132 2002-04-12  Michael Snyder  <msnyder@redhat.com>
7133
7134         * Remote.c: Spelling fix.
7135         * gcore.c (default_derive_heap_segment): Use bfd_section_name.
7136         If no symbol found for "sbrk", try "_sbrk".
7137         (make_output_phdrs): Use bfd_section_name.
7138         (gcore_copy_callback): Use bfd_section_name.
7139         * eval.c: Indentation fix-ups.
7140         * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
7141         in case it gets applied to an address that is already
7142         in the instruction space.
7143         * cli/cli-decode.c (help_list): Allow long lines to wrap.
7144         * symfile.c: Fix indentation, long lines.
7145         * source.c: White space fix-up.
7146
7147 2002-04-12  Andrew Cagney  <cagney@redhat.com>
7148
7149         * defs.h (read_relative_register_raw_bytes): Delete declaration.
7150         * frame.c (frame_register_read): New function.  Return non-zero on
7151         success.
7152         (read_relative_register_raw_bytes_for_frame): Delete.
7153         (read_relative_register_raw_bytes): Delete.
7154         * frame.h (frame_register_read): Declare.
7155         * d30v-tdep.c: Update Copyright.  Use frame_register_read.
7156         * sh-tdep.c: Ditto.
7157         * infcmd.c (do_registers_info): Ditto.
7158         * hppa-tdep.c: Ditto.
7159         * rs6000-tdep.c: Ditto.
7160         * h8500-tdep.c: Ditto.
7161         * mips-tdep.c: Ditto.
7162         * h8300-tdep.c: Ditto.
7163         * z8k-tdep.c: Ditto.
7164
7165 2002-04-12  Kevin Buettner  <kevinb@redhat.com>
7166
7167         From Jimi X <jimix@watson.ibm.com>:
7168         * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
7169         64-bit SysV ABI.
7170
7171 2002-04-12  Kevin Buettner  <kevinb@redhat.com>
7172
7173         From Jimi X <jimix@watson.ibm.com>:
7174         * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
7175         bfd info.
7176
7177 2002-04-12  Kevin Buettner  <kevinb@redhat.com>
7178
7179         From Jimi X <jimix@watson.ibm.com>:
7180         * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
7181         register sets for these processor variants.
7182
7183 2002-04-11  Daniel Jacobowitz  <drow@mvista.com>
7184
7185         * regformats/reg-ppc.dat: Support FPSCR.
7186
7187 2002-04-11  Kevin Buettner  <kevinb@redhat.com>
7188
7189         * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
7190         * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
7191         Add fpscr as an invalid/unfetchable register.
7192         * ppc-linux-nat.c (ppc_register_u_addr, store_register)
7193         (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
7194         (fill_fpregset): Add support for register fpscr.
7195         (fetch_ppc_registers, store_ppc_registers, supply_gregset)
7196         (fill_gregset): Account for the fact that register ``mq'' might
7197         not exist.
7198         * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
7199         (registers_power): Add fpscr to register set at slot 71.
7200         (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
7201         exist on most PPC architectures.  Initialize ppc_fpscr_regnum.
7202
7203 2002-04-11  Michael Snyder  <msnyder@redhat.com>
7204
7205         * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
7206         * configure: Regenerate.
7207         * config.in: Regenerate.
7208         * acconfig.h: Add define for _SYSCALL32.
7209         * core-sol2.c: Remove #define _SYSCALL32.
7210         * solib-legacy.c: Remove #define _SYSCALL32.
7211
7212 2002-04-10  Andrew Cagney  <ac131313@redhat.com>
7213
7214         * stack.c (select_frame): Cleanup internal error message, do not
7215         use %p.
7216
7217 2002-04-10  Andrew Cagney  <ac131313@redhat.com>
7218
7219         * stack.c (select_frame): Check that selected_frame and the
7220         specified level are as expected.
7221         * blockframe.c (get_prev_frame): Set the `level' from next_frame.
7222         Update copyright.
7223         * frame.h (struct frame_info): Add field `level'.  Update
7224         copyright.
7225         Work-in-progress PR gdb/464.
7226
7227 2002-04-10  Andrew Cagney  <ac131313@redhat.com>
7228
7229         * maint.c (maint_print_section_info): Rename print_section_info.
7230         (print_bfd_section_info, print_objfile_section_info): Update.
7231         * inferior.h (struct gdbarch): Add opaque declaration.
7232         * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
7233         * gdbarch.h: Regenerate.
7234
7235 2002-04-10  Michal Ludvig  <mludvig@suse.cz>
7236
7237         * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
7238         (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
7239         (kernel_u_size): Added.
7240         * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
7241         (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
7242
7243 2002-04-04  Jim Ingham  <jingham@apple.com>
7244
7245        * valarith.c (find_size_for_pointer_math): New function, either returns
7246        the size for a pointer's target, returns 1 for void *, or errors for
7247        incomplete types.
7248        (value_add, value_sub): use find_size_for_pointer_math.
7249
7250 2002-04-09  Daniel Jacobowitz  <drow@mvista.com>
7251
7252         * linux-low.c (linux_look_up_symbols): New hook.
7253         (linux_target_ops): Add linux_look_up_symbols.
7254         * remote-utils.c (decode_address): New function.
7255         (look_up_one_symbol): New function.
7256         * server.c (handle_query): Call target look_up_symbols hook.
7257         * server.h (look_up_one_symbol): Add prototype.
7258         * target.h (struct target_ops): Add look_up_symbols hook.
7259
7260 2002-04-09  Andrew Cagney  <ac131313@redhat.com>
7261
7262         * frame.c (read_relative_register_raw_bytes_for_frame): Do not
7263         override FP_REGNUM with frame->fp.  Update copyright.
7264         * parse.c (num_std_regs, std_regs): Delete.
7265         (target_map_name_to_register): Do not search std_regs.  Update
7266         function description.
7267         * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
7268         declarations.  Update copyright.
7269         Fix PR gdb/251.
7270
7271 2002-04-09  Daniel Jacobowitz  <drow@mvista.com>
7272
7273         * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
7274         after the last symbol in a block.
7275
7276 2002-04-09  Pierre Muller  <muller@ics.u-strasbg.fr>
7277
7278         * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
7279         is non zero as a found symbol.
7280
7281 2002-04-08  Andrew Cagney  <ac131313@redhat.com>
7282
7283         * findvar.c: Include "builtin-regs.h".
7284         (value_of_register): Call value_of_builtin_reg when applicable.
7285         * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
7286         (target_map_name_to_register): Call
7287         builtin_reg_map_name_to_regnum.
7288         * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
7289         (COMMON_OBS): Add builtin-regs.o and std-regs.o.
7290         (builtin_regs_h): Define.
7291         (builtin-regs.o): New target.
7292         (findvar.o): Add $(builtin_regs_h).
7293         * builtin-regs.c, builtin-regs.h: New files.
7294         * std-regs.c: New file.
7295         Partial fix for PR gdb/251.
7296
7297 2002-04-08  Kevin Buettner  <kevinb@redhat.com>
7298
7299         * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
7300         it's no longer required.
7301
7302 2002-04-08  Andrew Cagney  <ac131313@redhat.com>
7303
7304         * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
7305
7306 2002-04-08  Kevin Buettner  <kevinb@redhat.com>
7307
7308         From Jimi X <jimix@watson.ibm.com>:
7309         * rs6000-tdep.c (rs6000_software_single_step): Use
7310         rs6000_breakpoint_from_pc() to fetch breakpoint instruction
7311         and size.  Use target_insert_breakpoint() and
7312         target_remove_breakpoint() to insert and remove breakpoints
7313         instead of explicit memory reads and writes.
7314
7315 2002-04-08  Kevin Buettner  <kevinb@redhat.com>
7316
7317         * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
7318         * rs6000-tdep.c (rs6000_push_arguments): Eliminate
7319         ELF_OBJECT_FORMAT ifdef.
7320
7321 2002-04-08  Kevin Buettner  <kevinb@redhat.com>
7322
7323         From Jimi X <jimix@watson.ibm.com>:
7324         * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
7325
7326 2002-04-08  Kevin Buettner  <kevinb@redhat.com>
7327
7328         From Jimi X <jimix@watson.ibm.com>:
7329         * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
7330         definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
7331
7332 2002-04-07  Mark Kettenis  <kettenis@gnu.org>
7333
7334         * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
7335         s/asprintf/xasprintf/.
7336         (fbsd_make_corefile_notes): s/strdup/xstrdup/.
7337
7338 2002-04-07  Andrew Cagney  <ac131313@redhat.com>
7339
7340         I believe Jeff Law denies responsability for this one:
7341         * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
7342         * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
7343         * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
7344         Work-around for PR gdb/366.
7345
7346 2002-04-07  Elena Zannoni  <ezannoni@redhat.com>
7347
7348         * remote-e7000.c (write_small, e7000_read_inferior_memory,
7349         e7000_read_inferior_memory_large, e7000_insert_breakpoint,
7350         e7000_remove_breakpoint): Use paddr_nz() to print addresses.
7351
7352 2002-04-07  Elena Zannoni  <ezannoni@redhat.com>
7353
7354         * sh-tdep.c (sh_fp_frame_init_saved_regs,
7355         sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
7356         information.
7357
7358 2002-04-07  Andrew Cagney  <ac131313@redhat.com>
7359
7360         * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
7361         maintainer.
7362
7363 2002-04-07  Andrew Cagney  <ac131313@redhat.com>
7364
7365         * README (Reporting Bugs in GDB): Document the bug web page as the
7366         prefered way of submitting bugs.
7367         Fix PR gdb/402.
7368
7369 2002-04-06  Andrew Cagney  <ac131313@redhat.com>
7370
7371         * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
7372         -1.  Update comment.
7373         * gdbarch.h, gdbarch.c: Re-generate.
7374
7375 2002-04-07  Andreas Schwab  <schwab@suse.de>
7376
7377         * m68klinux-nat.c (fill_fpregset): Properly pass address of
7378         buffer to regcache_collect.
7379
7380 2002-04-06  Andrew Cagney  <ac131313@redhat.com>
7381
7382         * gdbarch.sh (PS_REGNUM): Add.  Document.  Default to -1.
7383         * gdbarch.c, gdbarch.h: Re-generate.
7384
7385 2002-04-06  Andrew Cagney  <ac131313@redhat.com>
7386
7387         * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
7388         declaration.  Fix -Werror.
7389
7390 2002-04-05  Daniel Jacobowitz  <drow@mvista.com>
7391
7392         * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
7393         * gdbarch.c: Regenerate.
7394
7395 2002-04-05  Michael Snyder  <msnyder@redhat.com>
7396
7397         * breakpoint.c (clear_command): Rewrite middle section to
7398         combine two loops with identical control conditions.
7399         Add a cleanup to eliminate a memory leak.
7400         * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
7401
7402 2002-04-05  H.J. Lu  (hjl@gnu.org)
7403
7404         * solib-svr4.c (bkpt_names): Add "__start".
7405
7406 2002-04-04  Andrew Cagney  <ac131313@redhat.com>
7407
7408         * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
7409         as test for 64 bit target.
7410
7411 2002-04-05  Andrew Cagney  <ac131313@redhat.com>
7412
7413         * h8500-tdep.c (h8500_write_fp): Delete function.
7414         * dwarf2cfi.c (cfi_write_fp): Document as not used.
7415         * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
7416         * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
7417         * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
7418         * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
7419         * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
7420         (s390_write_fp):
7421         * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
7422         * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
7423         * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
7424         (d10v_write_fp): Delete function.
7425         * inferior.h (write_fp, generic_target_write_fp): Delete
7426         declarations.
7427         * regcache.c (generic_target_write_fp): Delete function.
7428         (write_fp): Delete function.
7429         * gdbarch.sh (TARGET_WRITE_FP): Delete.
7430         * gdbarch.h, gdbarch.c: Regenerate.
7431         * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
7432         * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
7433         (sparc64_write_fp): Delete declaration.
7434         * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
7435         (h8500_write_fp): Delete declaration.
7436
7437 2002-04-04  Andrew Cagney  <ac131313@redhat.com>
7438
7439         * sparc-tdep.c (sparc64_write_fp): Delete.
7440         (sparc_push_dummy_frame): Replace write_fp call with code to store
7441         the FP directly.
7442         (sparc_gdbarch_init): Do not initialize write_fp.
7443
7444 2002-04-05  Kevin Buettner  <kevinb@redhat.com>
7445
7446         * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
7447         clause.
7448
7449 2002-03-29  Jim Blandy  <jimb@redhat.com>
7450
7451         * stack.c (get_selected_block): Add new argument `addr_in_block',
7452         used to return the exact code address we used to select the block,
7453         not just the block.
7454         * blockframe.c (get_frame_block, get_current_block): Same.
7455         * frame.h (get_frame_block, get_current_block,
7456         get_selected_block): Update declarations.
7457         * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
7458         linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
7459
7460 2002-04-05  Michael Snyder  <msnyder@redhat.com>
7461
7462         * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
7463         warning message.
7464
7465 2002-04-05  J. Brobecker  <brobecker@gnat.com>
7466
7467         * utils.c (xfullpath): New function.
7468         * defs.h (xfullpath): Add declaration.
7469         * source.c (openp): Use xfullpath in place of gdb_realpath to
7470         avoid resolving the basename part of filenames when the
7471         associated file is a symbolic link. This fixes a potential
7472         inconsistency between the filenames known to GDB and the
7473         filenames it prints in the annotations.
7474         * symtab.c (lookup_symtab): Use the new xfullpath function, in order
7475         to be able to match a filename with either the real filename, or
7476         the name of any symbolic link to this file.
7477         (lookup_partial_symtab): Ditto.
7478
7479 2002-04-04  Michael Snyder  <msnyder@redhat.com>
7480
7481         * breakpoint.c: Add support for hardware breakpoints in overlays.
7482         (overlay_events_enabled): New state variable.
7483         (insert_breakpoints): Use overlay_events_enabled to decide
7484         whether to attempt to set a breakpoint at the overlay load addr.
7485         Handle bp_hardware_breakpoint as well as bp_breakpoint.
7486         (remove_breakpoint): Use overlay_events_enabled to decide
7487         whether breakpoints need to be removed from overlay load addr.
7488         Handle bp_hardware_breakpoint as well as bp_breakpoint.
7489         (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
7490         (create_overlay_event_breakpoint, enable_overlay_breakpoints,
7491         disable_overlay_breakpoints): Update overlay_events_enabled.
7492
7493 2002-04-04  Daniel Jacobowitz  <drow@mvista.com>
7494
7495         * dwarf2read.c (struct function_range): New.
7496         (cu_first_fn, cu_last_fn, cu_cached_fn): New.
7497         (check_cu_functions): New.
7498         (read_file_scope): Initialize global function lists.
7499         Call dwarf_decode_line after processing children.
7500         (read_func_scope): Add to global function list.
7501         (dwarf_decode_lines): Call check_cu_functions everywhere
7502         record_line is called.  Call record_line with a linenumber
7503         of 0 to mark sequence ends.
7504
7505 2002-04-04  Michal Ludvig  <mludvig@suse.cz>
7506
7507         * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
7508         change sync with glibc.
7509
7510 2002-04-03  Jim Blandy  <jimb@redhat.com>
7511
7512         * configure.in: Call AC_C_INLINE.
7513         * configure: Regenerated.
7514
7515 2002-04-01  Daniel Jacobowitz  <drow@mvista.com>
7516
7517         * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
7518         and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
7519
7520 2002-03-31  Mark Kettenis  <kettenis@gnu.org>
7521
7522         * NEWS: Mention gcore support on FreeBSD/i386.
7523
7524         * fbsd-proc.c: New file.
7525         * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
7526         * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
7527
7528         * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
7529         while statement.
7530
7531 2002-03-29  Jim Blandy  <jimb@redhat.com>
7532
7533         * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
7534         unescaped newlines in string literals, but newer ones don't.  So
7535         escape them.
7536
7537 2002-03-26  Michael Snyder  <msnyder@redhat.com>
7538             Andrew Cagney <cagney@redhat.com>
7539
7540         * cli/cli-dump.c: New file.  Dump memory to file,
7541         restore file to memory.
7542         * cli/cli-dump.h: New file.
7543         * Makefile.in: Add rules, dependencies for cli-dump.o.
7544         * NEWS: Mention new commands.
7545
7546 2002-03-28  Michael Snyder  <msnyder@redhat.com>
7547
7548         * symfile.c (symbol_file_add): Move test for null symbols to later.
7549
7550 2002-03-27  Andrew Cagney  <ac131313@redhat.com>
7551
7552         From veksler at il.ibm.com:
7553         * utils.c (gdb_realpath): If canonicalize_file_name fails, return
7554         the xstrduped original path.
7555         Fix PR gdb/417.
7556
7557 2002-03-27  Michael Snyder  <msnyder@redhat.com>
7558
7559         * breakpoint.c (_initialize_breakpoint): Clean up help string.
7560         * infcmd.c (_initialize_infcmd): Ditto.
7561         * language.c (_initialize_language): Ditto.
7562         * symfile.c (_initialize_symfile): Ditto.
7563         * top.c (_init_main): Ditto.
7564         * cli/cli-cmds.c (init_cli_cmds): Ditto.
7565
7566 2002-03-27  Elena Zannoni  <ezannoni@redhat.com>
7567
7568         * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
7569         vector registers handling.
7570         (skip_prologue): Handle new AltiVec instructions.  Fill in new
7571         fields of frame data.
7572         (frame_get_saved_regs): Fill in information for AltiVec registers.
7573
7574 2002-03-27  Jim Blandy  <jimb@redhat.com>
7575
7576         * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
7577         a function; leave this macro here to invoke that function.
7578         (symbol_init_mangled_name): Declaration for that function.
7579         * symtab.c (symbol_init_mangled_name): New function.
7580
7581 2002-03-27  Andrew Cagney  <ac131313@redhat.com>
7582
7583         * valarith.c: Replace strerror with safe_strerror.
7584         * tracepoint.c: Ditto.
7585         * lin-lwp.c: Ditto.
7586         * go32-nat.c: Ditto.
7587         * inflow.c: Ditto.
7588         * gnu-nat.c: Ditto.
7589
7590 2002-03-27  Andreas Schwab  <schwab@suse.de>
7591
7592         * event-top.c (command_line_handler): Remove useless if.
7593
7594 2002-03-27  Andreas Jaeger  <aj@suse.de>
7595
7596         * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
7597         comment.
7598
7599 2002-03-27  Michal Ludvig  <mludvig@suse.cz>
7600
7601         * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
7602         (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
7603         * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
7604         (x86_64_linux_dr_get_status, supply_gregset),
7605         (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
7606         * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
7607         (x86_64_register_info_table): Add.
7608         (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
7609         (x86_64_register_raw_size, x86_64_register_virtual_type),
7610         (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
7611         general x86_64_register_info_table.
7612         (i386_gdbarch_init): gdbarch_register_bytes is now set
7613         dynamicaly during initialization.
7614         * regformats/reg-x86-64.dat: Synced with changes to registers above.
7615         * gdbserver/linux-x86-64-low.c: Ditto.
7616
7617 2002-03-27  Daniel Jacobowitz  <drow@mvista.com>
7618
7619         * gdbserver/server.c (main): Call target_signal_to_host_p
7620         and target_signal_to_host on signals received from the remote.
7621         * gdbserver/remote-utils.c (prepare_resume_reply): Call
7622         target_signal_from_host on signals sent to the remote.
7623         * gdbserver/server.h: Add prototypes.  Include "gdb/signals.h".
7624         * gdbserver/Makefile.in: Add signals.o.  Add -I${INCLUDE_DIR}.
7625
7626 2002-03-27  Daniel Jacobowitz  <drow@mvista.com>
7627
7628         * signals/signals.c: Include "server.h" in gdbserver build.
7629         (target_signal_from_name): Don't use STREQ.
7630         (_initialize_signals): Likewise.  Don't include function in
7631         gdbserver build.
7632
7633 2002-03-27  Daniel Jacobowitz  <drow@mvista.com>
7634
7635         * signals.c: Moved to...
7636         * signals/signals.c: Here.
7637         * Makefile (signals.o): Update.
7638
7639 2002-03-26  Jeff Law (law@redhat.com)
7640
7641         * somread.c (som_symtab_read): Remove some commented out code and
7642         updated related comments.  Do not set the minimal symbol table to
7643         mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
7644         in a dynamic executable.
7645         * hppa-tdep.c (find_proc_framesize): Sanely handle the case
7646         where we are unable to find the minimal symbol for the given
7647         PC value.
7648
7649 2002-03-25  Jeff Law (law@redhat.com)
7650
7651         * linux-proc.c (read_mapping): Scan up to end of line for filename.
7652
7653 2002-03-25  Michal Ludvig  <mludvig@suse.cz>
7654
7655         * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
7656
7657 2002-03-23  Andrew Cagney  <ac131313@redhat.com>
7658
7659         * command.h: Update copyright.
7660         (struct cmd_list_element): Replace definition with opaque
7661         declaration.
7662         (enum cmd_types): Document that it will eventually be moved to
7663         cli/cli-decode.h
7664         (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
7665         (MALLOCED_REPLACEMENT): Delete macro.
7666         * Makefile.in (cli_decode_h): Add $(command_h).
7667         (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
7668         * top.c: Include "cli/cli-decode.h".
7669         * completer.c: Include "cli/cli-decode.h".
7670         * maint.c: Include "cli/cli-decode.h".
7671         * cli/cli-decode.h: Include "command.h".
7672         (enum command_class): Delete.
7673         (enum cmd_types): Comment out.
7674         (enum cmd_auto_boolean): Delete.
7675         (enum var_types): Delete.
7676
7677 2002-03-23  Andrew Cagney  <ac131313@redhat.com>
7678
7679         * cli/cli-decode.c: Include "gdb_assert.h".
7680         (add_set_or_show_cmd): New static function.
7681         (add_set_cmd): Rewrite.  Use add_set_or_show_cmd.
7682         (add_show_from_set): Rewrite. Use add_set_or_show_cmd.  Don't copy
7683         all fields, such as func, from the set command.
7684
7685 2002-03-23  Andrew Cagney  <ac131313@redhat.com>
7686
7687         * MAINTAINERS (sh-elf): Change warning flag to -w.
7688
7689 2002-03-23  Andrew Cagney  <cagney@redhat.com>
7690
7691         * defs.h (error): Add printf format attribute.
7692         * thread-db.c (thread_from_lwp): Fix error format string.
7693         * stack.c (parse_frame_specification): Ditto.
7694         * cli/cli-decode.c (undef_cmd_error): Ditto.
7695         * scm-lang.c (scm_lookup_name): Ditto.
7696         * tracepoint.c (trace_error): Ditto.
7697         * remote-utils.c (usage): Ditto.
7698         * remote.c (compare_sections_command): Ditto.
7699         Fix PR gdb/328.
7700
7701 2002-03-22  Andrew Cagney  <ac131313@redhat.com>
7702
7703         * gdbtypes.c (append_composite_type_field): New function.
7704         (init_composite_type): New function.
7705         * gdbtypes.h (append_composite_type_field): Declare.
7706         (init_composite_type): Ditto.
7707
7708 2002-03-22  Elena Zannoni  <ezannoni@redhat.com>
7709
7710         * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
7711         function.
7712         * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
7713         * rs6000-tdep.c (rs6000_gdbarch_init): Use different
7714         structure returning convention for SYSV ABI case, but not
7715         for GNU/Linux, FreeBSD, or NetBSD.
7716
7717 2002-03-22  Daniel Jacobowitz  <drow@mvista.com>
7718
7719         * symtab.h (lookup_block_symbol): Add mangled_name argument
7720         to prototype.
7721
7722         * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
7723         with new mangled_name argument.
7724         * linespec.c (decode_line_1): Likewise.
7725         * valops (value_of_this): Likewise.
7726         * symtab.c (lookup_transparent_type): Likewise.
7727         (lookup_symbol_aux): Likewise.  Accept new mangled_name argument.
7728         (lookup_symbol): If we are given a mangled name, pass it down
7729         to lookup_symbol_aux.
7730         (lookup_block_symbol): If we are given a mangled name to check
7731         against, only return symbols which match it.
7732
7733 2002-03-22  Christopher Faylor  <cgf@redhat.com>
7734
7735         * win32-nat.c (child_create_inferior): Check for proper shell to use
7736         here, in case the user changes it on the fly.
7737         (_initialize_inftarg): Remove shell path considerations.
7738
7739 2002-03-21  Elena Zannoni  <ezannoni@redhat.com>
7740
7741         * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
7742         for gdbarch_max_register_raw_size and max_register_virtual_size.
7743         Adjust copyright year.
7744
7745 2002-03-21  Daniel Jacobowitz  <drow@mvista.com>
7746
7747          * dbxread.c (process_one_symbol): Extend the first N_SLINE
7748          in a function to cover the entire beginning of the function
7749          as well if it does not already.
7750
7751 2002-03-21  Tom Rix  <trix@redhat.com>
7752
7753         * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
7754         (rs6000_ptrace64): Renamed from ptrace64.
7755
7756 2002-03-20  Martin M. Hunt  <hunt@redhat.com>
7757
7758         * gdbserver/remote-utils.c (remote_open): Don't call
7759         getprotobyname, we're all using TCP here so just use
7760         IPPROTO_TCP.
7761         * gdbserver/gdbreplay.c (remote_open): Ditto.
7762
7763 2002-03-20  Martin M. Hunt  <hunt@redhat.com>
7764
7765         * regcache.c (_initialize_regcache): No need to call
7766         build_regcache() at this time; it gets called whenever
7767         the gdbarch changes.
7768
7769 2002-03-20  David O'Brien  <obrien@FreeBSD.org>
7770
7771         * sparc-nat.c:  Include sys/param.h where possible.
7772
7773 2002-03-20  Daniel Jacobowitz  <drow@mvista.com>
7774
7775         Fix PR gdb/422.
7776         * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
7777         FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
7778         * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
7779         complex types.
7780         * stabsread.c (rs6000_builtin_type): Likewise.
7781         (read_sun_floating_type): Likewise.
7782
7783 2002-03-19  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
7784
7785         * stabsread.c (read_member_functions): Remove skip code for duplicate
7786         constructor/destructor methods.  Use standard parsing for these
7787         methods and just do not chain them to the list of methods after
7788         parsing.
7789
7790 2002-03-19  Alexandre Oliva  <aoliva@redhat.com>
7791
7792         * coffread.c: Remove redundant static declarations.  Replace
7793         occurrences of `PTR' with `void *'.
7794         * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
7795         * top.h (quit_cover): Likewise.
7796         * defs.h (catch_errors): Likewise.
7797
7798 2002-03-18  Andrew Cagney  <ac131313@redhat.com>
7799
7800         * defs.h (XMALLOC): Define.
7801         * gdb-events.sh (XMALLOC): Delete macro.
7802         * gdb-events.c, gdb-events.h: Regenerate.
7803         * gdbarch.sh (XMALLOC): Delete macro.
7804         * gdbarch.c: Regenerate.
7805         * serial.c (XMALLOC): Delete macro.
7806         * ui-file.c (XMALLOC): Ditto.
7807         * ser-unix.h (XMALLOC): Ditto.
7808         * sh-tdep.c (XMALLOC): Ditto.
7809         * ui-out.c (XMALLOC): Ditto.
7810         * utils.c (XMALLOC): Ditto.
7811         * i386-tdep.c (XMALLOC): Ditto.
7812         * gdb-events.c (XMALLOC): Ditto.
7813         * d10v-tdep.c (XMALLOC): Ditto.
7814         * cli-out.c (XMALLOC): Ditto.
7815
7816         * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
7817         * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
7818         * ui-file.c, ui-out.c: Ditto.
7819
7820 2002-03-18  Andrew Cagney  <ac131313@redhat.com>
7821
7822         * command.h (struct cmd_list_element): Add field context.
7823         (set_cmd_context, get_cmd_context): Declare.
7824         * cli/cli-decode.h: Ditto.
7825         * cli/cli-decode.c (get_cmd_context): New function.
7826         (set_cmd_context): New function.
7827         (add_cmd): Initialize context.
7828         Part of fixing PR gdb/145 and PR gdb/146.
7829
7830 2002-03-17  Andrew Cagney  <ac131313@redhat.com>
7831
7832         * cli/cli-decode.c (cmd_type): New function.
7833         * command.h (cmd_type): Declare.
7834         * infrun.c (set_schedlock_func): Call function cmd_type.
7835         * kod.c (kod_set_os): Call cmd_type.
7836         * cris-tdep.c (cris_version_update): Use function cmd_type.
7837         (cris_mode_update, cris_abi_update): Ditto.
7838
7839         * command.h: (execute_cmd_post_hook): Declare.
7840         (execute_cmd_pre_hook): Declare.
7841         * cli/cli-script.c (clear_hook_in_cleanup): New function.
7842         (execute_cmd_post_hook, execute_cmd_pre_hook): New
7843         functions. Execute pre/post hook while ensuring that afterwords
7844         hook_in is cleared.
7845         * top.c (execute_command): Use execute_cmd_post_hook, and
7846         execute_cmd_pre_hook to execute pre/post commands.
7847         * infrun.c (normal_stop): Pass stop_command and not pre_hook to
7848         hook_stop_stub.
7849         (hook_stop_stub): Call execute_cmd_pre_hook.
7850
7851 2002-03-17  Andrew Cagney  <ac131313@redhat.com>
7852
7853         * kod.c (kod_set_os): Revert previous change.  Is called by ``info
7854         set'' and this leads to a core dump.  Move xstrdup of
7855         operating_system to after check that it is not NULL.
7856
7857 2002-03-17  Andrew Cagney  <ac131313@redhat.com>
7858
7859         * kod.c (kod_set_os): Remove unnecessary check that
7860         ``command->type'' is set_cmd.
7861
7862         * valprint.c (set_input_radix): Use input_radix.
7863         (set_output_radix): Use output_radix.
7864         (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
7865         isn't reverted.
7866
7867 2002-03-16  Andrew Cagney  <ac131313@redhat.com>
7868
7869         * value.h (struct value): Delete field ``substring_addr''.  Change
7870         aligner fields to force_doublest_align, force_longest_align,
7871         force_core_addr_align and force_pointer_aligh.
7872
7873         * value.h (struct value): Fix typo in above change.
7874
7875 2002-03-16  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
7876
7877         * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
7878         to fix internal_error from ``maintenance print architecture''.
7879
7880 2002-03-16  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
7881
7882         * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
7883         for gcc versions after gcc-2.8.1.
7884
7885 2002-03-16  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
7886
7887         * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
7888         for method resolution.  Restore adjustment of ``this'' pointer after
7889         calling value_struct_elt, which was accidentally removed during the
7890         HP merge.
7891
7892 2002-03-15  Andrew Cagney  <ac131313@redhat.com>
7893
7894         * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
7895         value_of_register.
7896         * findvar.c (value_of_register): Add ``frame'' parameter.  Pass to
7897         get_saved_register.
7898         * value.h (value_of_register): Update.
7899
7900 2002-03-14  Richard Henderson  <rth@redhat.com>
7901
7902         * configure.in: Detect declaration for canonicalize_file_name.
7903         * utils.c (canonicalize_file_name): Declare, if needed.
7904         (gdb_realpath): Prefer realpath if available and usable.
7905         * config.in, configure: Rebuild.
7906
7907 2002-03-14  Richard Henderson  <rth@redhat.com>
7908
7909         * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
7910         a constant array bound.
7911
7912         * MAINTAINERS: Add myself to write-after-approval.
7913
7914 2002-03-14  Michael Snyder  <msnyder@redhat.com>
7915
7916         * symfile.c (syms_from_objfile): Return immediately if no syms.
7917         (symbol_file_add): Return immediately if no syms.
7918         (find_sym_fns): Return immediately if no syms.
7919
7920 2002-03-13  Michal Ludvig  <mludvig@suse.cz>
7921
7922         * gdbserver/remote-util.c (remote_open): Print remote-side's
7923         IP address when remote debugging over the network.
7924
7925 2002-03-12  David O'Brien  <obrien@FreeBSD.org>
7926
7927         * config/sparc/fbsd.mh: Fix copyright.
7928         * config/sparc/fbsd.mt: Likewise.
7929
7930 2002-03-11  Richard Earnshaw  <rearnsha@arm.com>
7931
7932         * MAINTAINERS: Fix typo in name of gdb warnings option.
7933         (x86-64): Fix formating so that this can be parsed by awk.
7934
7935 2002-03-10  Daniel Jacobowitz  <drow@mvista.com>
7936
7937         * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
7938         * defs.h: Include "gdb/signals.h".
7939         (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
7940
7941 2002-03-10  Michal Ludvig  <mludvig@suse.cz>
7942
7943         * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
7944         * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
7945         from x86-64-tdep.h
7946
7947 2002-03-10  Daniel Jacobowitz  <drow@mvista.com>
7948             Don Howard <dhoward@redhat.com>
7949
7950         * mips-tdep.c (ST0_FR): Define.
7951         (mips2_fp_compat): New function, temporarily disabled.
7952         (mips_read_fp_register_single): New function.
7953         (mips_read_fp_register_double): New function.
7954         (mips_print_register): Use them.
7955         (do_fp_register_row): Likewise.
7956
7957 2002-03-09  Andrew Cagney  <ac131313@redhat.com>
7958
7959         * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
7960         approval''.
7961
7962 2002-03-08  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
7963
7964         * stabsread.c (read_member_functions): Fix is_stub test for
7965         static member functions, improve comment.
7966
7967 2002-03-07  Richard Earnshaw  <rearnsha@arm.com>
7968
7969         * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
7970         (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
7971         (_initialize_remote_rdi): Use add_set_boolean_cmd to register
7972         commands that set boolean values.
7973         (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
7974         (arm_rdi_resume): Always initialize PC.
7975         (arm_rdi_open): Don't use rslt as a boolean.
7976         (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
7977         (arm_rdi_fetch_registers, arm_rdi_store_registers)
7978         (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
7979         (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
7980
7981 2002-03-06  Alexandre Oliva  <aoliva@redhat.com>
7982
7983         * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
7984         * configure: Rebuilt.
7985
7986 2002-03-06  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
7987
7988         * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
7989         (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
7990
7991 2002-03-06  Andrew Cagney  <ac131313@redhat.com>
7992
7993         * cli/cli-decode.c (set_cmd_completer): New function.
7994         * command.h (set_cmd_completer): Declare.
7995         * cli/cli-decode.h (set_cmd_completer): Ditto.
7996
7997         * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
7998         * cli/cli-cmds.c (init_cli_cmds): Ditto.
7999         * win32-nat.c (_initialize_inftarg): Ditto.
8000         * remote-rdi.c (_initialize_remote_rdi): Ditto.
8001         * proc-api.c (_initialize_proc_api): Ditto.
8002         * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
8003         * source.c (_initialize_source): Ditto.
8004         * exec.c (_initialize_exec): Ditto.
8005         * solib.c (_initialize_solib): Ditto.
8006         * top.c (init_main): Ditto.
8007         * tracepoint.c (_initialize_tracepoint): Ditto.
8008         * symfile.c (_initialize_symfile): Ditto.
8009         * printcmd.c (_initialize_printcmd): Ditto.
8010         * infcmd.c (_initialize_infcmd): Ditto.
8011         * corefile.c (_initialize_core): Ditto.
8012
8013 2002-03-05  Andrew Cagney  <ac131313@redhat.com>
8014
8015         * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
8016
8017 2002-03-05  Andrew Cagney  <ac131313@redhat.com>
8018
8019         * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
8020
8021 2002-03-05  Andrew Cagney  <ac131313@redhat.com>
8022
8023         * NEWS: Update headings, 5.2 has branched.
8024
8025 2002-03-04  Daniel Jacobowitz  <drow@mvista.com>
8026
8027         * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
8028         (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
8029         (register_addr, REGISTER_RAW_SIZE): Likewise.
8030         (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
8031         * gdbserver/linux-x86-64-low.c: Remove extra #endif.
8032
8033 2002-03-03  Michal Ludvig <mludvig@suse.cz>
8034
8035         * MAINTAINERS (x86-64): Add myself.
8036         * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
8037         changed value_ptr -> struct value *
8038
8039 2002-03-01  David O'Brien  <obrien@FreeBSD.org>
8040
8041         * configure.host (sparc64-*-freebsd): Add.
8042         * configure.tgt: Likewise.
8043         * config/sparc/fbsd.mh: New file.
8044         * config/sparc/fbsd.mt: Likewise.
8045         * config/sparc/nm-fbsd.h: Likewise.
8046         * config/sparc/tm-fbsd.h: Likewise.
8047
8048 2002-03-01  Daniel Jacobowitz  <drow@mvista.com>
8049
8050         * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
8051         regformats/reg-s390x.dat.
8052
8053 2002-03-01  Andrew Cagney  <ac131313@redhat.com>
8054
8055         * utils.c: Add FIXME explaining true/false problem.
8056
8057 2002-02-28  Andrew Cagney  <ac131313@redhat.com>
8058
8059         * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
8060
8061 2002-02-28  Michael Chastain  <mec@shout.net>
8062
8063         * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
8064
8065 2002-02-28  Daniel Jacobowitz  <drow@mvista.com>
8066
8067         * gdbserver/linux-s390-low.c: New file.
8068         * regformats/reg-s390.dat: New file.
8069         * regformats/reg-s390x.dat: New file.
8070         * gdbserver/configure.srv: Add S/390.
8071         * gdbserver/Makefile.in: Add S/390.
8072         * configure.tgt: Enable gdbserver for S/390.
8073
8074 2002-02-28  Eli Zaretskii  <eliz@is.elta.co.il>
8075
8076         * go32-nat.c (_initialize_go32_nat): Don't use periods in the
8077         first line of the doc string for "info dos", except at the end of
8078         the sentence, since the short help stops at the first period.
8079
8080 2002-02-28  Jason Merrill  <jason@redhat.com>
8081
8082         * dwarf2read.c (dwarf_cfi_name): Add new codes.
8083
8084 2002-02-27  Fred Fish  <fnf@redhat.com>
8085
8086         * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
8087         comment (dumy -> dummy).
8088
8089 2002-02-27  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
8090
8091         * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
8092
8093 2002-02-27  Rodney Brown  <rbrown64@csc.com.au>
8094
8095       * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
8096
8097 2002-02-27  Daniel Jacobowitz  <drow@mvista.com>
8098
8099         * gdbserver/acconfig.h: New file.
8100         * gdbserver/i387-fp.c: New file.
8101         * gdbserver/i387-fp.h: New file.
8102         * gdbserver/linux-x86-64.c: New file.
8103         * regformats/reg-x86-64.dat: New file.
8104         * configure.tgt: Add x86_64-*-linux* gdbserver support.
8105         * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
8106         * gdbserver/configure.in: Add support for regsets.
8107         * gdbserver/config.in: Regenerate.
8108         * gdbserver/configure: Regenerate.
8109         * gdbserver/Makefile.in: Likewise.  Add $(linux_low_h).
8110         * gdbserver/linux-low.h: New file.
8111         * gdbserver/linux-low.c: Include "linux-low.h".  Add support
8112         for regsets.
8113         * gdbserver/linux-arm-low.c: Include "linux-low.h".
8114         * gdbserver/linux-ia64-low.c: Include "linux-low.h".
8115         * gdbserver/linux-m68k-low.c: Include "linux-low.h".
8116         * gdbserver/linux-mips-low.c: Include "linux-low.h".
8117         * gdbserver/linux-ppc-low.c: Include "linux-low.h".
8118         * gdbserver/linux-sh-low.c: Include "linux-low.h".
8119         * gdbserver/linux-i386-low.c: Include "linux-low.h".  Include
8120         "i387-fp.h".  Add PTRACE_GETREGS and friends.
8121         * gdbserver/regcache.c (supply_register): New function.
8122         (supply_register_by_name): New function.
8123         (collect_register): New function.
8124         (collect_register_by_name): New function.
8125
8126 2002-02-27  Daniel Jacobowitz  <drow@mvista.com>
8127
8128         * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
8129         (config.status): Add configure.srv dependency.
8130         (server_h): Add config.h dependency.
8131
8132 2002-02-27  Daniel Jacobowitz  <drow@mvista.com>
8133
8134         * regformats/reg-i386-linux.dat: New file, with $orig_eax.
8135         * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
8136         * gdbserver/configure.srv: Change i386-*-linux* to use
8137         reg-i386-linux.o.
8138
8139 2002-02-26  Andrew Cagney  <ac131313@redhat.com>
8140
8141         * x86-64-tdep.c: Re-indent.  Update copyright date.
8142
8143 2002-02-26  Andrew Cagney  <ac131313@redhat.com>
8144
8145         From Michal Ludvig <mludvig@suse.cz>:
8146         * x86-64-tdep.c (value.h): Delete.
8147         (gdb_assert.h): Include.
8148         (x86_64_register_convert_to_virtual,
8149         x86_64_register_convert_to_raw ): Add check which lets only
8150         floating-point values to be converted.
8151         (value_push): Delete.
8152         (x86_64_push_arguments): Order of arguments pushed on stack fixed.
8153         (i386_gdbarch_init): Number of register_bytes fixed.
8154
8155 2002-02-26  Andrew Cagney  <ac131313@redhat.com>
8156
8157         * MAINTAINERS: Add x86-64 target.
8158
8159 2002-02-26  Andrew Cagney  <ac131313@redhat.com>
8160
8161         * memattr.c (mem_command): Eliminate ``true'' and ``false''.
8162         * osfsolib.c (solib_map_sections): Ditto.
8163         * irix5-nat.c (solib_map_sections): Ditto.
8164         * corelow.c (gdb_check_format): Ditto.
8165         * symfile.c (symfile_bfd_open): Ditto.
8166         * solib.c (solib_map_sections): Ditto.
8167         Fix PR gdb/354.
8168
8169 2002-02-26  Andrew Cagney  <ac131313@redhat.com>
8170
8171         * remote.c (_initialize_remote): By default, disable ``e'' and
8172         ``E'' step out-of-range packets.
8173
8174 2002-02-26  Andreas Schwab  <schwab@suse.de>
8175
8176         * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
8177         m68k_linux_frame_saved_pc.
8178         (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
8179         in_sigtramp.
8180         (SIGCONTEXT_PC_OFFSET): Remove.
8181         * m68klinux-nat.c (m68k_linux_frame_saved_pc,
8182         m68k_linux_sigtramp_saved_pc): New functions.
8183         (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
8184         (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
8185         (UCONTEXT_PC_OFFSET): Define.
8186         (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
8187         non-RT and RT signal trampolines.
8188
8189 2002-02-26  Richard Earnshaw  <rearnsha@arm.com>
8190
8191         * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
8192         (TARGET_NBPG, STACK_END_ADDR): Delete
8193         (VARIABLES_INSIDE_BLOCK): Delete.
8194
8195 2002-02-25  Andrew Cagney  <ac131313@redhat.com>
8196
8197         * utils.c (perror_with_name): Make string parameter constant.
8198         (print_sys_errmsg): Ditto.
8199         (query): Ditto.
8200         * defs.h (perror_with_name): Update.
8201         (print_sys_errmsg): Update.
8202         (query): Update.
8203
8204 2002-02-25  Daniel Jacobowitz  <drow@mvista.com>
8205
8206         From Eliot Dresselhaus <eliot@ayrnetworks.com>:
8207         * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
8208
8209 2002-02-25  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
8210
8211         * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
8212         if it already matches the current architecture from the exec file.
8213         Include arch-utils.h for gdbarch_info_init prototype.
8214         * Makefile.in (rs6000-nat.o): Update dependencies.
8215
8216 2002-02-25  Eli Zaretskii  <eliz@is.elta.co.il>
8217
8218         * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
8219          list of exported variables.
8220
8221 2002-02-24  Daniel Jacobowitz  <drow@mvista.com>
8222
8223         * gdbserver/configure.srv: New file.
8224         * gdbserver/configure.in: Use configure.srv instead
8225         of the host/target makefile fragments.  Set GDBSERVER_DEPFILES
8226         from it.
8227         * gdbserver/configure: Regenerated.
8228         * gdbserver/terminal.h: New file.
8229         * gdbserver/Makefile.in: Update for configure changes.  Remove
8230         more unneeded include paths.
8231
8232 2002-02-24  Andrew Cagney  <ac131313@redhat.com>
8233
8234         From wiz at danbala:
8235         * config/sparc/tm-sp64.h: Fix grammar and typos.
8236         Fix PR gdb/287.
8237
8238 2002-02-24  Andrew Cagney  <ac131313@redhat.com>
8239
8240         * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
8241         with either ``GNU/Linux'' or ``Linux kernel''.  Update copyright.
8242         * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
8243         * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
8244         * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
8245         * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
8246         * s390-tdep.c: Ditto.
8247         * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
8248         * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
8249         * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
8250         * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
8251         * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
8252         * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
8253         * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
8254         * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
8255         * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
8256         * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
8257         Fix PR gdb/378.
8258
8259 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
8260
8261         * lin-thread.c: Delete file.
8262         * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
8263         to gdb_proc_service.h.
8264         * configure: Re-generate.
8265
8266         * ocd.c (ocd_open): Do not try to open the "ocd" device.
8267         * serial.c (serial_open): Delete check for "ocd".
8268         Fix PR gdb/349.
8269
8270         * Makefile.in (linux-thread.o): Delete target.
8271         * linux-thread.c: Delete file.
8272
8273         * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c.  Tweak other
8274         renamed SH files to be consistent.
8275
8276         * symtab.c (sort_search_symbols): Use xfree.
8277
8278 2002-02-23  Richard Earnshaw  <rearnsha@arm.com>
8279
8280         * arm-linux-tdep.c (arm_linux_init_abi): Register
8281         IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
8282         * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
8283         definition with undef, since we don't want the sysvr4 definition.
8284         (SKIP_TRAMPOLINE_CODE): Likewise.
8285
8286 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
8287
8288         From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
8289
8290         * configure.in: (AC_CHECK_FUNCS) Added test for
8291         canonicalize_file_name Regenerated.
8292         * config.in, configure: Regenerated.
8293         * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
8294         defined use canonicalize_file_name.
8295
8296 2002-02-23  Michael Chastain  <mec@shout.net>
8297
8298         * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
8299
8300 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
8301
8302         * README: Remove references to cygnus.com.
8303         * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
8304         dot com'' form.  Remove references to cygnus.com and sourceware.
8305
8306 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
8307
8308         From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
8309         * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
8310         1003.1-2001 no longer allows "head -1".
8311         * gdb/Makefile.in (version.c): Likewise.
8312         * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
8313         * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
8314         equivalent.  POSIX 1003.1-2001 no longer allows "diff -c3".
8315
8316 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
8317
8318         * cli/cli-decode.c (cmd_cfunc_eq): New function.
8319         * command.h (cmd_cfunc_eq): Declare.
8320         * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
8321
8322         * cli/cli-cmds.h (is_complete_command): Change parameter to a
8323         ``struct cmd_list_element *''.
8324         * cli/cli-cmds.c (is_complete_command): Update.  Use
8325         cmd_cfunc_eq.
8326         * top.c (execute_command): Pass the command to
8327         is_complete_command.
8328         * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
8329
8330 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
8331
8332         From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
8333         * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
8334         architecture defines.
8335         * s390-tdep.c (s390_gdbarch_init): Likewise.
8336
8337 2002-02-23  Richard Earnshaw  <rearnsha@arm.com>
8338
8339         * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
8340         (arm_linux_push_arguments): Likewise.
8341         (arm_linux_init_abi): Register them.  Also register linux-specific
8342         call_dummy_words.
8343         (find_minsym_and_objfile): Use strcmp, not STREQ.
8344         * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
8345         (arm_linux_call_dummy_words): Delete declaration.
8346         (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
8347         (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
8348         declarations.
8349         (LOWEST_PC): Delete.
8350
8351 2002-02-23  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
8352
8353         * maint.c (print_section_info): Do not prepend `0x' to filepos
8354         output, it will be handled by local_hex_string_custom.
8355
8356 2002-02-23  Richard Earnshaw  <rearnsha@arm.com>
8357
8358         * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
8359         (store_newfpe_double, store_newfpe_extended, store_fpregister)
8360         (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
8361
8362 2002-02-22  Jim Blandy  <jimb@redhat.com>
8363
8364         Indicate that the bcache functions don't change the strings
8365         they're passed.
8366         * bcache.h (bcache, hash): Add `const' keywords to declarations.
8367         * bcache.c (bcache, hash): Add `const' keywords to definitions.
8368
8369 2002-02-22  Pierre Muller  <muller@ics.u-strasbg.fr>
8370
8371         * win32-nat.c (child_create_inferior): Fix create flags setting bug.
8372
8373 2002-02-21  Christopher Faylor  <cgf@redhat.com>
8374
8375         * win32-nat.c (register_loaded_dll): Just use raw name when we can't
8376         find the complete path to a loaded DLL.
8377
8378 2002-02-21  Fred Fish  <fnf@redhat.com>
8379
8380         * dbxread.c (process_one_symbol): When finding an N_FUN symbol
8381         that marks the end of the range of a function, enter a line number
8382         entry that has a line number of zero and a PC offset that matches
8383         the end of the function.  This starts a range of PC's for which no
8384         line number information is known.
8385         * symtab.c (find_pc_sect_line): If our best fit is in a range of
8386         PC's for which no line number info is found (line number is zero)
8387         then we didn't find any valid line information.
8388         * symtab.h: Document use of zero line number entry.
8389
8390 2002-02-21  Elena Zannoni  <ezannoni@redhat.com>
8391
8392         * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
8393         (have_ptrace_getvrregs): Define for run time checks.
8394         (gdb_vrregset_t): New type for Altivec register handling.
8395         (fetch_register, store_register): Fetch/store altivec register
8396         when needed.
8397         (fetch_altivec_register, store_altivec_register): New functions.
8398         (supply_vrregset, fill_vrregset): New functions.
8399         (fetch_altivec_registers, store_altivec_registers): New functions.
8400         (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
8401         registers as well.
8402
8403 2002-02-21  Jiri Smid  <smid@suse.cz>
8404
8405         * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
8406
8407 2002-02-21  Richard Earnshaw  <rearnsha@arm.com>
8408
8409         * Makefile.in (armnbsd-nat.o): Update dependencies.
8410         * armnbsd-nat.c (supply_gregset): New function.  Common code to
8411         supply the integer register set.
8412         (supply_fparegset): New function.  Similar for FPA registers.
8413         (fetch_regs, fetch_fp_regs): Use them.
8414         (fetch_core_registers): Likewise.
8415         (fetch_elfcore_registers): New function.
8416         (arm_netbsd_elfcore_fns): New core-file type specification.
8417         (_initialize_arm_netbsd_nat): Register it.
8418
8419 2002-02-21  Richard Earnshaw  <rearnsha@arm.com>
8420
8421         * armnbsd-nat.c: Include gdbcore.h.
8422         (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
8423         (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
8424         'void' to declaration, to shut up ARI.
8425         (fetch_core_registers): Make static.  Rewrite using supply_register.
8426         (arm_netbsd_core_fns): New core-file type specification.
8427         (_initialize_arm_netbsd_nat): New function.
8428
8429 2002-02-21  Christopher Faylor  <cgf@redhat.com>
8430
8431         * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
8432         value.
8433
8434 2002-02-20  Christopher Faylor  <cgf@redhat.com>
8435
8436         * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
8437         fails.
8438
8439 2002-02-20  Daniel Jacobowitz  <drow@mvista.com>
8440
8441         * jv-exp.y (parse_number): Change type of implicit longs
8442         to builtin_type_uint64.
8443
8444 2002-02-20  Daniel Jacobowitz  <drow@mvista.com>
8445
8446         * gdbserver/linux-low.c (mywait): Change argument to waitpid
8447         to be an integer instead of a `union wait'.
8448
8449 2002-02-20  Daniel Jacobowitz  <drow@mvista.com>
8450
8451         * mips-linux-nat.c: Call the operating system GNU/Linux.
8452         * mips-linux-tdep.c: Likewise.
8453         * mips-tdep.c: Likewise.
8454
8455 2002-02-20  Daniel Jacobowitz  <drow@mvista.com>
8456
8457         Fix PR gdb/265.
8458         * jv-exp.y (parse_number): Handle 64-bit integers.
8459
8460 2002-02-20  Daniel Jacobowitz  <drow@mvista.com>
8461
8462         * gdbserver/configure.in: Remove AM_PROC_CC_STDC.  Change
8463         AC_STDC_HEADERS to AC_HEADER_STDC.
8464         * gdbserver/configure: Regenerated.
8465
8466 2002-02-20  Richard Earnshaw  <rearnsha@arm.com>
8467
8468         * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
8469         is defined.
8470         * sparc-tdep.c (get_longjmp_target): Likewise.
8471
8472 2002-02-20  Richard Earnshaw  <rearnsha@arm.com>
8473
8474         * News: Add news about ARM and Multi-arch.  Mention the new target
8475         arm*-*-netbsd*.
8476
8477 2002-02-19  Jim Blandy  <jimb@redhat.com>
8478
8479         * stabsread.c (error_type_complaint): Improve error message.
8480
8481 2002-02-19  Daniel Jacobowitz  <drow@mvista.com>
8482
8483         * gdbserver/README: Update documentation.
8484         * gdbserver/configure.in: Update configury to match documentation.
8485         * gdbserver/Makefile.in: Likewise.
8486         * gdbserver/configure: Regenerated.
8487         * gdbserver/aclocal.m4: New file, generated by aclocal.
8488         * gdbserver/config.in: New file, generated by autoheader.
8489
8490 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
8491
8492         * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
8493         armnbsd-nat.c.
8494
8495 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
8496
8497         * arm-tdep.h (enum arm_float_model): New enum.
8498         (struct gdbarch_tdep): Add fp_model.
8499         * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep.  Defer setting
8500         up floating-point conversions until we know the floating-point model
8501         in use by the inferior.  Don't complain about being unable to
8502         determine the ABI of the inferior when we don't have one.
8503         (arm_extract_return_value): Support different floating-point models.
8504         (arm_store_return_value): Likewise.
8505         * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
8506         ARM_FLOAT_SOFT.
8507         (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
8508
8509 2002-02-19  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
8510
8511         * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
8512         of ``current_gdbarch''.
8513
8514 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
8515
8516         * armnbsd-nat.c : ANSIfy all function declarations.
8517         (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
8518         (fetch_inferior_registers): Re-implement in terms of above.
8519         (store_register, store_regs, store_fp_register, store_fp_regs): New.
8520         (store_inferior_registers): Re-implement in terms of above.
8521
8522 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
8523
8524         * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
8525         kernel.
8526         * arm-linux-tdep.c: Likewise.
8527         * config/arm/tm-linux.h: Likewise.
8528
8529 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
8530
8531         * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
8532         * config/arm/nbsd.mt (TM_FILE): Delete.
8533         * config/arm/tm-nbsd.h: Delete.
8534
8535 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
8536
8537         * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
8538         Initialize CALL_DUMMY_LENGTH.
8539
8540 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
8541
8542         * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
8543         function.
8544         (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
8545         * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
8546         defines one thing and that is incorrect for this port.
8547         (IN_SOLIB_CALL_TRAMPOLINE): Delete.
8548
8549 2002-02-18  Pierre Muller  <muller@ics.u-strasbg.fr>
8550
8551         * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
8552
8553 2002-02-18  Pierre Muller  <muller@ics.u-strasbg.fr>
8554
8555         * win32-nat.c (display_selector): New function. Displays information
8556         about the information returned by GetThreadSelectorEntry API function.
8557         (display_selectors): New function. Displays the infomation of
8558         the selector given as argument, or of CS, DS ans FS selectors
8559         if no argument is given.
8560         ( _initialize_inftarg): Add "w32" as info prefix command.
8561         Add "info w32 selector" as command calling display_selectors.
8562
8563 2002-02-19  Pierre Muller  <muller@ics.u-strasbg.fr>
8564
8565         * i386-tdep.c (get_longjmp_target): Fix compilation failure
8566         by setting dummy values to JB_PC and JB_ELEMENT_SIZE
8567         if not defined.
8568
8569 2002-02-18  Richard Earnshaw  <rearnsha@arm.com>
8570
8571         * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
8572
8573 2002-02-18  Richard Earnshaw  <rearnsha@arm.com>
8574
8575         * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
8576         (arm_fix_call_dummy): Call it.
8577         (arm_call_dummy_breakpoint_offset): Delete.
8578         (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
8579         * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
8580
8581 2002-02-18  Andrew Cagney  <ac131313@redhat.com>
8582
8583         * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
8584         Default to func_frame_chain_valid.
8585         * gdbarch.h, gdbarch.c: Re-generate.
8586         * frame.h (FRAME_CHAIN_VALID): Delete definition.
8587
8588 2002-02-18  Elena Zannoni  <ezannoni@redhat.com>
8589
8590         * ppc-linux-nat.c: Update copyright.
8591         (fetch_register, store_register): Add tid parameter, don't compute
8592         tid here.
8593         (fetch_ppc_registers, store_ppc_registers): Add tid
8594         parameter. Pass it along to callees.
8595         (fetch_inferior_registers, store_inferior_registers): Compute tid
8596         here, and pass it to calleed functions.
8597         (fill_gregset, supply_fpregset): Clean up formatting.
8598
8599 2002-02-18  Richard Earnshaw  <rearnsha@arm.com>
8600
8601         * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
8602         * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
8603
8604 2002-02-18  Richard Earnshaw  <rearnsha@arm.com>
8605
8606         * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
8607         * gdbarch.c gdbarch.h: Regenerate.
8608         * breakpoint.c (create_longjmp_breakpoint): Always compile this
8609         function.
8610         (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
8611         * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
8612         (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
8613
8614         * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
8615         * arm-tdep.c (arm_get_longjmp_target): New function.
8616         (arm_gdbarch_init): Initialize jb_pc to -1.  If ABI handler changes
8617         this to a positive value register arm_get_longjmp_target as the
8618         longjmp handler.
8619         * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
8620         (arm_linux_init_abi): Set up longjmp description in tdep.
8621         * armnbsd-nat.c (get_longjmp_target): Delete.
8622         * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
8623         description in tdep.
8624         * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
8625         (get_longjmp_target): Delete declaration.
8626         (GET_LONGJMP_TARGET): Delete.
8627         * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
8628         (GET_LONGJMP_TARGET): Delete.
8629
8630 2002-02-17  Kevin Buettner  <kevinb@redhat.com>
8631
8632         From Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>:
8633         * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
8634         of ``current_gdbarch''.
8635
8636 2002-02-17  Tom Tromey  <tromey@redhat.com>
8637
8638         * cli/cli-cmds.c (compare_strings): New function.
8639         (complete_command): Only print each unique item once.
8640         * completer.h (complete_line): Declare.
8641         * completer.c (complete_line): New function.
8642         (line_completion_function): Use it.
8643
8644 2002-02-16  Andrew Cagney  <ac131313@redhat.com>
8645
8646         * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
8647         * gdbarch.h, gdbarch.c: Re-generate.
8648
8649 2002-02-16  Daniel Jacobowitz  <drow@mvista.com>
8650
8651         * valarith.c (value_x_unop): Fix decrement; support post-decrement.
8652
8653 2002-02-16  Daniel Jacobowitz  <drow@mvista.com>
8654
8655         From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
8656         * valops.c (value_arg_coerce): Don't take the address of a reference
8657         to convert an argument to a reference.
8658
8659 2002-02-15  Christopher Faylor  <cgf@redhat.com>
8660
8661         * win32-nat.c (get_image_name): New function.
8662         (handle_load_dll): Use get_image_name function.
8663         (get_child_debug_event): Avoid registering debug events until possibly
8664         execed process is started.
8665         (child_create_inferior): Allow invocation via shell so that command
8666         line redirection, etc.  works ok.
8667         (_initialize_inftarg): Add new command: "set shell" to control whether
8668         a shell is used to start a process.
8669
8670 2002-02-15  Daniel Jacobowitz  <drow@mvista.com>
8671
8672         * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
8673         instead of find_register_by_number.
8674         (cannot_store_register): Likewise.
8675
8676 2002-02-14  Pierre Muller  <muller@ics.u-strasbg.fr>
8677
8678         * dwarf2read.c: Replace fprintf (stderr, ...) by
8679         fprintf_unfiltered (gdb_stderr, ...).
8680
8681 2002-02-15  Daniel Jacobowitz  <drow@mvista.com>
8682
8683         * gdbserver/gdbserver.1: Document --attach.
8684
8685 2002-02-15  Richard Earnshaw  <rearnsha@arm.com>
8686
8687         * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
8688         descriptions.
8689         * arm-tdep.c (arm_default_arm_le_breakpoint)
8690         (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
8691         (arm_default_thumb_be_breakpoint): New.  Initialize them from
8692         traditional breakpoint defines.
8693         (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
8694         (arm_gdbarch_init): Initialize new breakpoint variables.
8695         * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
8696         (arm_linux_init_abi): Initialize linux-specific breakpoint.
8697         * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
8698         (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
8699         code out to ...
8700         (arm_netbsd_init_abi_common): ... here; new function.
8701         * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
8702         (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
8703         * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
8704         * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
8705
8706 2002-02-15  Richard Earnshaw  <rearnsha@arm.com>
8707
8708         * arm-tdep.h (enum arm_abi): New enum.
8709         (struct gdbarch_tdep): New structure.
8710         (LOWEST_PC): Provide a default.
8711         (arm_gdbarch_register_os_abi): Declare new function.
8712         * arm-tdep.c (arm_abi_names): New array.
8713         (process_note_abi_tag_sections): New function.
8714         (get_elfosabi): New function.
8715         (arm_gdbarch_register_os_abi): New function.
8716         (arm_gdbarch_init): Try to determine the ABI of the inferior.  If
8717         support for that ABI has been built in, then call the appropriate
8718         configuration routine.  Use gdbarch_num_regs() to get the number
8719         of registers.
8720         (arm_dump_tdep): New function.
8721         (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
8722         place-holder functions.
8723         (_initialize_arm_tdep): Register them.
8724         * config/arm/tm-arm.h (LOWEST_PC): Delete.
8725
8726         * armnbsd-tdep.c: New file.
8727         * Makefile.in (armnbsd-tdep.o): Add dependencies.
8728         * config/arm/nbsd.mt (TDEPFILES): Add it.
8729         * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
8730
8731         * armnbsd-nat.c: Include regcache.h.
8732         * Makefile.in (armnbsd-nat.o): Update dependency list.
8733
8734         * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
8735
8736 2002-02-14  Daniel Jacobowitz  <drow@mvista.com>
8737
8738         * gdbserver/Makefile.in: Fix typos in target rules.
8739
8740 2002-02-14  Daniel Jacobowitz  <drow@mvista.com>
8741
8742         Fix part of PR gdb/267.
8743         * linespec.c (find_methods): Handle constructors specially for now.
8744
8745 2002-02-14  Corinna Vinschen  <vinschen@redhat.com>
8746
8747         * arm-tdep.c (arm_push_arguments): Eliminate special float type
8748         handling.
8749         * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
8750         standard_coerce_float_to_double().
8751
8752 2002-02-14  Christopher Faylor  <cgf@redhat.com>
8753
8754         * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
8755         GDBINIT_FILENAME.
8756
8757 2002-02-14  Elena Zannoni  <ezannoni@redhat.com>
8758
8759         * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
8760         find_variant_by_name, because it confuses the multiarch
8761         framework. Return NULL if there isn't an architecture with the
8762         user supplied name, instead of forcing a different one without
8763         recording the change with the multiarch machinery.
8764         (find_variant_by_name): Delete.
8765
8766 2002-02-14  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
8767
8768         * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
8769         i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
8770
8771 2002-02-13  Martin M. Hunt  <hunt@redhat.com>
8772
8773         * stack.c (print_frame_info_base): When calling
8774         print_frame_info_listing_hook, set current_source_symtab.
8775
8776 2002-02-14  Daniel Jacobowitz  <drow@mvista.com>
8777
8778         * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
8779         and remove unused $(INCLUDE_DIR).
8780         Add regcache.c to OBS.
8781         Add generated register protocol files to clean target.
8782         Update dependencies for new objects, obsolete old target code.
8783
8784         * gdbserver/linux-low.c: Remove all platform-specific code to
8785         new files.  Remove various dead code.  Update to use regcache
8786         functionality.
8787         * gdbserver/remote-utils.c (fromhex): Add return statement
8788         to quiet warning.
8789         (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
8790         constant.
8791         (input_interrupt): Add integer parameter to match prototype
8792         of a signal handler.
8793         (outreg): Use register_data ().
8794         (prepare_resume_reply): Use gdbserver_expedite_regs.
8795         * gdbserver/server.c (main): Dynamically allocate own_buf because
8796         PBUFSIZ is no longer constant.  Use registers_to_string () and
8797         registers_from_string ().
8798         * gdbserver/server.h: No longer include "defs.h".  Add prototypes
8799         for error (), fatal (), and warning ().  Update definition of
8800         PBUFSIZ to use regcache functionality.  Add include guard.
8801         * gdbserver/utils.c (fatal): Add missing ``const''.
8802         (warning): New function.
8803
8804         * regformats/regdat.sh: Include "regcache.h" in generated files.
8805         Provide init_registers () function.
8806         * regformats/regdef.h: Add prototype for set_register_cache ().
8807         Add include guard.
8808
8809         * gdbserver/linux-arm-low.c: New file.
8810         * gdbserver/linux-i386-low.c: New file.
8811         * gdbserver/linux-ia64-low.c: New file.
8812         * gdbserver/linux-m68k-low.c: New file.
8813         * gdbserver/linux-mips-low.c: New file.
8814         * gdbserver/linux-ppc-low.c: New file.
8815         * gdbserver/linux-sh-low.c: New file.
8816
8817         * gdbserver/regcache.c: New file.
8818         * gdbserver/regcache.h: New file.
8819
8820         * gdbserver/low-linux.c: Removed obsolete file.
8821
8822 2002-02-14  Daniel Jacobowitz  <drow@mvista.com>
8823
8824         * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
8825         * config/i386/linux.mt: Likewise.
8826         * config/ia64/linux.mt: Likewise.
8827         * config/m68k/linux.mh: Likewise.
8828         * config/powerpc/linux.mh: Likewise.
8829         * config/mips/linux.mt: Likewise.
8830
8831         * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
8832
8833         * config/i386/i386lynx.mh: Mark gdbserver variables
8834         as (currently) obsolete for this target.
8835         * config/i386/nbsd.mt: Likewise.
8836         * config/i386/nbsdelf.mt: Likewise.
8837         * config/m32r/m32r.mt: Likewise.
8838         * config/m68k/m68klynx.mh: Likewise.
8839         * config/m68k/nbsd.mt: Likewise.
8840         * config/m68k/sun3os4.mh: Likewise.
8841         * config/mips/vr5000.mt: Likewise.
8842         * config/ns32k/nbsd.mt: Likewise.
8843         * config/pa/hppabsd.mh: Likewise.
8844         * config/pa/hppaosf.mh: Likewise.
8845         * config/powerpc/nbsd.mt: Likewise.
8846         * config/rs6000/rs6000lynx.mh: Likewise.
8847         * config/s390/s390.mt: Likewise.
8848         * config/s390/s390x.mt: Likewise.
8849         * config/sparc/sparclynx.mh: Likewise.
8850         * config/sparc/sun4os4.mh: Likewise.
8851         * config/i386/x86-64linux.mt: Likewise.
8852         * config/sparc/linux.mh: Likewise.
8853
8854 2002-02-14  Daniel Jacobowitz  <drow@mvista.com>
8855
8856         * configure.tgt: Configure gdbserver only for known working
8857         targets.  Set ${build_gdbserver} instead of modifying ${configdirs}.
8858         * configure.in: Check ${build_gdbserver}.  Put gdbserver/ into
8859         SUBDIRS if it is configured.  Update comment for ${nativefile}.
8860         * configure: Regenerated.
8861
8862 2002-02-13  Michael Snyder  <msnyder@redhat.com>
8863
8864         * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
8865
8866         * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
8867         (default_gcore_mach): Just return 0, work around a problem in bfd.
8868         (default_gcore_target): OK to return NULL if exec_bfd is null.
8869         (make_mem_sec): Use a cast, avoid a warning.
8870
8871         * procfs.c (find_memory_regions_callback): Use a cast instead of
8872         calling host_pointer_to_address (which complains if
8873         sizeof (host pointer) != sizeof (target pointer)).
8874         (procfs_make_note_section): Avoid overflow in psargs string.
8875
8876         * procfs.c (procfs_make_note_section): Make the default
8877         implementation return an error.
8878
8879 2002-02-13  Rodney Brown  <rbrown64@csc.com.au>
8880
8881         * procfs.c (procfs_make_note_section): Provide a default definition
8882         (for alpha-dec-osf4.0f). Fix typos.
8883
8884 2002-02-13  Elena Zannoni  <ezannoni@redhat.com>
8885
8886         * linux-proc.c: Add include of regcache.h.
8887         * Makefile.in (linux-proc.o): Add dependency on regcache.h.
8888
8889 2002-02-13  Andrew Cagney  <ac131313@redhat.com>
8890
8891         From 2002-01-18 Greg McGary <greg@mcgary.org>:
8892         * memattr.c (create_mem_region): Disallow useless empty region.
8893         Regions are half-open intervals, so allow [A..B) [B..C) as
8894         non-overlapping.
8895
8896 2002-02-13  Michael Chastain <mec@shout.net>
8897
8898         * defs.h: Kill CONST_PTR.
8899         * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
8900         * c-lang.c (c_builtin_types): Likewise.
8901         * ch-lang.c (ch_builtin_types): Likewise.
8902         * f-lang.c (f_builtin_types): Likewise.
8903         * language.c (unknown_builtin_types): Likewise.
8904         * m2-lang.c (m2_builtin_types): Likewise.
8905         * p-lang.c (pascal_builtin_types): Likewise.
8906         * scm-lang.c (c_builtin_types): Likewise.
8907
8908 2002-02-13  Keith Seitz  <keiths@redhat.com>
8909
8910         * arm-tdep.h (arm_get_next_pc): Add declaration.
8911
8912 2002-02-13  Richard Earnshaw  <rearnsha@arm.com>
8913
8914         * arm-tdep.c (arm_use_struct_convention): Make static.  Move to be
8915         with other related struct-returning functions.
8916         (arm_extract_struct_value_address): New function.
8917         (arm_gdbarch_init): Initialize the above in multi-arch vector.  Also
8918         initialize float_format, double_format and long_double_format as
8919         appropriate to the endianness of the target.
8920         * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
8921         (arm_use_struct_convention): Delete declaration.
8922         (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
8923
8924 2002-02-13  Keith Seitz  <keiths@redhat.com>
8925
8926         * defs.h (core_addr_to_string_nz): New function.
8927
8928 2002-02-13  Mark Kettenis  <kettenis@gnu.org>
8929
8930         Apply missing bits of 2002-01-15 patch.
8931         * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
8932         (fill_fpregset): Use i387_fill_fsave.
8933
8934 2002-02-12  Keith Seitz  <keiths@redhat.com>
8935
8936         * utils.c (core_addr_to_string): Use phex instead of phex_nz.
8937         (core_addr_to_string_nz): New function.
8938
8939 2002-02-11  Richard Earnshaw  <rearnsha@arm.com>
8940
8941         * arm-linux-nat.c: Really include arm-tdep.h.
8942         * config/arm/tm-linux.h (struct type, struct value): Declare.
8943
8944 2002-02-11  Michael Snyder  <msnyder@redhat.com>
8945
8946         * procfs.c: Include elf-bfd.h (for elfcore_write functions).
8947         (gcore section): Ifdef for Solaris and Unixware only.
8948         (procfs_do_thread_registers): Unixware needs one lwpstatus
8949         per thread (not one prstatus or pstatus).
8950         (procfs_make_note_section): Iterate only over kernel threads (lwps),
8951         not over all gdb threads.  For unixware, call elfcore_write_pstatus
8952         once before iterating over threads.
8953
8954 2002-02-11  Richard Earnshaw  <rearnsha@arm.com>
8955
8956         * arm-tdep.h: New file.
8957         * arm-tdep.c: Include arm-tdep.h.
8958         (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
8959         (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
8960         (arm_print_float_info, arm_register_type, convert_to_extended)
8961         (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
8962         (arm_extract_return_value, arm_register_name): Make static.
8963         (arm_software_single_step): Similarly.  Fix types in declaration.
8964         (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
8965         (arm_store_return_value, arm_store_struct_return): New functions.
8966         (arm_gdbarch_init): Register the above functions.  Also register
8967         call_dummy_start_offset, sizeof_call_dummy_words,
8968         function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
8969         sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
8970         max_register_virtual_size, register_size.  Set up
8971         prologue_cache.saved_regs here, rather than ...
8972         (_initialize_arm_tdep): ... here.
8973         * config/arm/tm-arm.h (struct type, struct value): Delete forward
8974         declarations.
8975         (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
8976         (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
8977         (arm_print_float_info, arm_register_type, convert_to_extended)
8978         (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
8979         (arm_extract_return_value, arm_register_name): Delete declarations.
8980         (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
8981         (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
8982         (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
8983         (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
8984         (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
8985         (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
8986         (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
8987         (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
8988         (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
8989         (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
8990         (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
8991         (arm_get_next_pc): No-longer static -- these are needed by the RDI
8992         interface.
8993         * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
8994         * remote-rdi.c remote-rdp.c: Likewise.
8995         * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
8996         (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
8997         * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
8998         definition.
8999
9000         * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
9001         (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
9002         (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
9003         from non-ARM_ prefixed definitions.
9004         * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
9005         all uses of above.
9006         * remote-rdi.c remote-rdp.c: Likewise.
9007         * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
9008
9009 2002-02-11  Richard Earnshaw  <rearnsha@arm.com>
9010
9011         * arm-tdep.c (arm_frameless_function_invocation)
9012         (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
9013         (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
9014         (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
9015         (arm_pop_frame, arm_get_next_pc): Make static.
9016         (arm_gdbarch_init): Register above in gdbarch structure.
9017         (arm_read_fp): Renamed from arm_target_read_fp.
9018         (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
9019         * config/arm/tm-arm.h (arm_frameless_function_invocation)
9020         (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
9021         (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
9022         (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
9023         (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
9024         (arm_pc_is_thumb_dummy): Delete declarations.
9025         (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
9026         (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
9027         (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
9028         (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
9029
9030 2002-02-10  Daniel Jacobowitz  <drow@mvista.com>
9031
9032         * symtab.c (compare_search_syms): New function.
9033         (sort_search_symbols): New function.
9034         (search_symbols): Sort symbols after searching rather than
9035         before.
9036
9037 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
9038
9039         * NEWS: Linux -> GNU/Linux.
9040
9041 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
9042
9043         * gdbarch.sh: For for level one methods, disallow a definition
9044         when partially multi-arched.  Add comments explaining rationale.
9045         * gdbarch.h: Re-generate.
9046
9047 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
9048
9049         * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
9050         multi-arch partial.
9051
9052 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
9053
9054         * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL.  Exit on bad
9055         field.  Use diff -u.
9056         * gdbarch.c: Re-generate.
9057
9058 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
9059
9060         * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
9061         * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
9062         partial.
9063
9064 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
9065
9066         * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
9067         multi-arch partial.
9068         (PUSH_ARGUMENTS): Switch to using predefault.
9069         * gdbarch.c: Regenerate.
9070
9071 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
9072
9073         * valops.c (PUSH_ARGUMENTS): Delete definition.
9074         * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
9075         partial.  Default to default_push_arguments.
9076         * gdbarch.h, gdbarch.c: Regenerate.
9077
9078 2002-02-09  Andrew Cagney  <ac131313@redhat.com>
9079
9080         * defs.h (throw_exception): Rename return_to_top_level.  Update
9081         comments.
9082         * utils.c (error_stream, internal_verror, quit): Ditto.
9083         * top.c (throw_exception, catcher): Ditto.
9084         * sparclet-rom.c (sparclet_load): Ditto.
9085         * remote.c (interrupt_query, minitelnet): Ditto.
9086         * remote-sds.c (interrupt_query): Ditto.
9087         * remote-mips.c (mips_error, mips_kill): Ditto.
9088         * ocd.c (interrupt_query): Ditto.
9089         * monitor.c (monitor_interrupt_query): Ditto.
9090         * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
9091         * target.h: Update comment.
9092
9093         * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
9094
9095 2002-02-09  Andrew Cagney  <ac131313@redhat.com>
9096
9097         * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
9098         default_double_format.
9099         * gdbarch.h, gdbarch.c: Re-generate.
9100         * findvar.c (floatformat_unknown): Delete variable definition.
9101         * doublest.h (floatformat_unknown): Delete variable declaration.
9102
9103 2002-02-09  Jim Blandy  <jimb@redhat.com>
9104
9105         * stabsread.c (read_type): Add code to parse Sun's syntax for
9106         prototyped function types.
9107
9108 2002-02-09  Andrew Cagney  <ac131313@redhat.com>
9109
9110         * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
9111         (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
9112
9113 2002-02-09  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
9114
9115         * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
9116         _initialize_solib.  Fixes name clash with solib.c:_initialize_solib,
9117         now _initialize_xcoffsolib gets called again and overrides the
9118         commands from solib.c in a native configuration.
9119
9120 2002-02-09  Mark Kettenis  <kettenis@gnu.org>
9121
9122         * doublest.c (store_typed_floating): Don't try to return a value.
9123         Fixes PR gdb/290.
9124
9125 2002-02-08  Jim Blandy  <jimb@redhat.com>
9126
9127         * c-typeprint.c (c_type_print_varspec_suffix): If a function type
9128         is prototyped and has no arguments, print its argument list as
9129         `(void)'.
9130
9131 2002-02-08  Chris Demetriou  <cgd@broadcom.com>
9132
9133         * MAINTAINERS (write-after-approval): Add myself.
9134         (paper-trail): I've escaped!
9135
9136 2002-02-08  Christopher Faylor  <cgf@redhat.com>
9137
9138         * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
9139         changes.
9140         (_initialize_check_for_gdb_ini): Ditto.
9141
9142 2002-02-08  Martin M. Hunt  <hunt@redhat.com>
9143
9144         * win32-nat.c (cygwin_pid_to_str): Fix typo.
9145         xaprintf -> xasprintf.
9146
9147 2002-02-08  Pierre Muller  <muller@ics.u-strasbg.fr>
9148
9149         * win32-nat.c: Remove use of printf and sprintf functions.
9150
9151 2002-02-08  Richard Earnshaw  <rearnsha@arm.com>
9152
9153         * arm-tdep.c (arm_frame_chain_valid): Make static.
9154         (arm_push_arguments): Likewise.
9155         (arm_gdbarch_init): New function.
9156         (_initialize_arm_tdep): Call it.
9157         * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
9158         (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
9159         (FRAME_CHAIN_VALID): Delete.
9160         (arm_frame_chain_valid): Delete declaration.
9161         (PUSH_ARGUMENTS): Delete.
9162         (arm_push_arguments): Delete declaration.
9163         (CALL_DUMMY_P): Delete.
9164
9165 2002-02-08  Andrew Cagney  <ac131313@redhat.com>
9166             Corinna Vinschen  <vinschen@redhat.com>
9167
9168         * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
9169         on builtin float types.
9170
9171 2002-02-08  Daniel Jacobowitz  <drow@mvista.com>
9172
9173         * utils.c: Include <curses.h> before "bfd.h".
9174         * tui/tui-hooks.c: Likewise.
9175         * tui/tui.c: Likewise.
9176         * tui/tuiCommand.c: Likewise.
9177         * tui/tuiData.c: Likewise.
9178         * tui/tuiDataWin.c: Likewise.
9179         * tui/tuiDisassem.c: Likewise.
9180         * tui/tuiGeneralWin.c: Likewise.
9181         * tui/tuiIO.c: Likewise.
9182         * tui/tuiLayout.c: Likewise.
9183         * tui/tuiRegs.c: Likewise.
9184         * tui/tuiSource.c: Likewise.
9185         * tui/tuiSourceWin.c: Likewise.
9186         * tui/tuiStack.c: Likewise.
9187         * tui/tuiWin.c: Likewise.
9188
9189 2002-02-07  Elena Zannoni  <ezannoni@redhat.com>
9190
9191         * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
9192         to include space for pseudoregs as well. Update loops accordingly.
9193         (sh_fp_frame_init_saved_regs): Ditto.
9194         (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
9195
9196 2002-02-07  Andrew Cagney  <ac131313@redhat.com>
9197
9198         * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
9199         Add Richard Earnshaw to Arm maintainers.
9200
9201 2002-02-07  Andrew Cagney  <ac131313@redhat.com>
9202
9203         * defs.h (warning_begin): Delete declaration.
9204
9205         * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
9206         Delete macro.
9207
9208 2002-02-07  Michael Snyder  <msnyder@redhat.com>
9209
9210         * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
9211         Logic bug, remove misplaced else.
9212
9213 2002-02-07  Klee Dienes  <klee@apple.com>
9214
9215         * fork-inferior.c (fork_inferior): Add '!' to the list of
9216         characters that need to be quoted when building a string for the
9217         shell.  Quote '!' specifically with a backslash, since CSH chokes
9218         when trying to evaluate "str!str".
9219
9220 2002-02-06  Nick Clifton  <nickc@cambridge.redhat.com>
9221
9222         * rdi-share/host.h: Only provide a typedef for bool if it is not
9223         defined.
9224
9225 2002-02-04  Michael Snyder  <msnyder@redhat.com>
9226
9227         * breakpoint.h (enum bptype): Add new overlay event bp type.
9228         (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
9229
9230         * breakpoint.c (create_internal_breakpoint): New function.
9231         (internal_breakpoint_number): Moved into create_internal_breakpoint.
9232         (create_longjmp_breakpoint): Use create_internal_breakpoint.
9233         (create_thread_event_breakpoint): Ditto.
9234         (create_solib_event_breakpoint): Ditto.
9235         (create_overlay_event_breakpoint): New function.
9236         (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
9237         (update_breakpoints_after_exec): Delete and re-initialize
9238         overlay event breakpoints after an exec.  Add FIXME comment
9239         about longjmp breakpoint.
9240         (print_it_typical): Ignore overlay event breakpoints.
9241         (print_one_breakpoint): Ditto.
9242         (mention): Ditto.
9243         (bpstat_what): Do not stop for overlay event breakpoints.
9244         (delete_breakpoint): Don't delete overlay event breakpoints.
9245         (breakpoint_re_set_one): Delete the overlay event breakpoint.
9246         (breakpoint_re_set): Re-create overlay event breakpoint.
9247
9248         * symfile.c (overlay_auto_command): Enable overlay breakpoints.
9249         (overlay_manual_command): Disable overlay breakpoints.
9250         (overlay_off_command): Disable overlay breakpoints.
9251
9252 2002-02-06  Richard Earnshaw  <rearnsha@arm.com>
9253
9254         * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
9255         (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
9256         to here from config/tm-arm.h.
9257         (coff_sym_is_thumb): Make static.
9258         (arm_elf_make_msymbol_special): New function.
9259         (arm_coff_make_msymbol_special): New function.
9260         * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
9261         (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
9262         (coff_sym_is_thumb): Delete declaration.
9263         (arm_elf_make_msymbol_special): Declare.
9264         (arm_coff_make_msymbol_special): Declare.
9265         (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
9266         (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
9267
9268 2002-02-06  Richard Earnshaw  <rearnsha@arm.com>
9269
9270         * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
9271
9272 2002-02-06  Richard Earnshaw  <rearnsha@arm.com>
9273
9274         * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
9275         * gdbarch.c gdbarch.h: Regenerate.
9276         * arch-utils.c (default_print_float_info): New function.
9277         * arch-utils.h (default_print_float_info): Prototype it.
9278         * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
9279         * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
9280         (PRINT_FLOAT_INFO): Document it.
9281
9282         * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
9283         * config/arm/tm-arm.h (FLOAT_INFO): Delete.
9284         (PRINT_FLOAT_INFO): Define.
9285
9286 2002-02-06  Pierre Muller  <muller@ics.u-strasbg.fr>
9287
9288         * win32-nat.c (_initialize_check_for_gdb_ini):
9289         Add typecast to sprintf argument to suppress a warning.
9290
9291 2002-02-05  Pierre Muller  <muller@ics.u-strasbg.fr>
9292
9293         * win32-nat.c (last_sig): Changed type of variable to target_signal,
9294         to allow easier handling of pass state.
9295         (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
9296         that gives exception name and address.
9297         (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
9298         and set last_sig value to ourstatus->value.sig. Some missing
9299         exceptions added.
9300         (child_continue): Correctly report continue_status.
9301         (get_child_debug_event,do_initial_child_stuff): Set last_sig to
9302         TARGET_SIGNAL_0 (new default value).
9303         (child_resume): consider sig argument passed to decide if
9304         the exception should be passed to debuggee or not.
9305
9306 2002-02-05  Michael Snyder  <msnyder@redhat.com>
9307
9308         * regcache.c (fetch_register): Call target_fetch_register
9309         only if we don't call FETCH_PSEUDO_REGISTER.
9310         (store_register): Call target_store_register only if we
9311         don't call STORE_PSEUDO_REGISTER.
9312
9313 2002-02-05  Elena Zannoni  <ezannoni@redhat.com>
9314
9315         * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
9316         ELF_MAKE_MSYMBOL_SPECIAL.
9317         * gdbarch.c, gdbarch.h: Regenerate.
9318         * arch-utils.c (default_make_msymbol_special): New function.
9319         * arch-utils.h (default_make_msymbol_special): Export.
9320         * elfread.c (elf_symtab_read): Compile use of
9321         ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
9322         multiarched.
9323         * coffread.c (coff_symtab_read): Ditto, for
9324         COFF_MAKE_MSYMBOL_SPECIAL.
9325
9326 2002-02-05  Jim Blandy  <jimb@redhat.com>
9327
9328         * solib-svr4.c (svr4_truncate_ptr): New function.
9329         (svr4_relocate_section_addresses): Do the address arithmetic with
9330         the appropriate truncation for target addresses, even when
9331         CORE_ADDR is larger than a target address.
9332
9333 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
9334
9335         * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
9336         to (int *).
9337
9338 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
9339
9340         * gdbserver/linux-low.c (kill_inferior): Remove commented out
9341         code.
9342
9343 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
9344
9345         * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
9346
9347 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
9348
9349         * gdbserver/linux-low.c: Remove unused include files.
9350
9351 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
9352
9353         * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
9354         (read_inferior_memory): Use it.
9355         (write_inferior_memory): Likewise.
9356
9357 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
9358
9359         * gdbserver/linux-low.c (create_inferior): Call strerror instead of
9360         grubbing through sys_errlist.
9361
9362 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
9363
9364         * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
9365
9366 2002-02-04  Pierre Muller  <muller@ics.u-strasbg.fr>
9367         * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
9368
9369 2002-02-04  Andrew Cagney  <ac131313@redhat.com>
9370
9371         * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
9372         (do_sfunc, set_cmd_sfunc): New functions.
9373
9374         * command.h (struct cmd_list_element): Add field func.
9375         * cli/cli-decode.h (struct cmd_list_element): Ditto.
9376         * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
9377         * cli/cli-decode.h: Ditto.
9378
9379         * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
9380         (help_all, help_cmd_list): Ditto.
9381         (find_cmd, complete_on_cmdlist): Ditto.
9382         * top.c (execute_command): Ditto.
9383
9384         * cli/cli-setshow.c (do_setshow_command): Call func instead of
9385         function.sfunc.
9386
9387         * infcmd.c (notice_args_read): Fix function signature.
9388
9389         * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
9390         * cli/cli-decode.c (add_set_cmd): Ditto.
9391         * utils.c (initialize_utils): Ditto.
9392         * maint.c (_initialize_maint_cmds): Ditto.
9393         * infrun.c (_initialize_infrun): Ditto.
9394         * demangle.c (_initialize_demangler): Ditto.
9395         * remote.c (add_packet_config_cmd): Ditto.
9396         * mips-tdep.c (_initialize_mips_tdep): Ditto.
9397         * cris-tdep.c (_initialize_cris_tdep): Ditto.
9398         * proc-api.c (_initialize_proc_api): Ditto.
9399         * kod.c (_initialize_kod): Ditto.
9400         * valprint.c (_initialize_valprint): Ditto.
9401         * top.c (init_main): Ditto.
9402         * infcmd.c (_initialize_infcmd): Ditto.
9403         * corefile.c (_initialize_core): Ditto.
9404         * arm-tdep.c (_initialize_arm_tdep): Ditto.
9405         * arch-utils.c (initialize_current_architecture): Ditto.
9406         (_initialize_gdbarch_utils): Ditto.
9407         * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
9408
9409         * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
9410         * wince.c (_initialize_inftarg): Ditto.
9411         * symfile.c (_initialize_symfile): Ditto.
9412         * mips-tdep.c (_initialize_mips_tdep): Ditto.
9413         * language.c (_initialize_language): Ditto.
9414         * arc-tdep.c (_initialize_arc_tdep): Ditto.
9415
9416 2002-02-04  Michael Snyder  <msnyder@redhat.com>
9417
9418         * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
9419
9420 2002-02-04  Daniel Jacobowitz  <drow@mvista.com>
9421
9422         * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
9423         Add rules for building the register data files.
9424
9425 2002-02-04  Daniel Jacobowitz  <drow@mvista.com>
9426
9427         * regformats/regdat.sh: Add braces to the definition of
9428         expedite_regs_${arch}.
9429
9430 2002-02-04  Daniel Jacobowitz  <drow@mvista.com>
9431
9432         * regformats/regdef.h (struct reg): Add comment describing the
9433         requirements for offset and size fields.
9434
9435 2002-02-04  Andreas Schwab  <schwab@suse.de>
9436
9437         * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
9438         * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
9439
9440 2002-02-04  Richard Earnshaw  <rearnsha@arm.com>
9441
9442         * gdbarch.sh (copyright): Update years in generated header.
9443         (SMASH_TEXT_ADDRESS): Add rule.
9444         * gdbarch.h, gdbarch.c: Re-generate.
9445         * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
9446         * dbxread.c: Likewise.
9447         * dwarfread.c: Likewise.
9448         * elfread.c: Likewise.
9449         * somread.c: Likewise.
9450
9451         * arm-tdep.c (arm_smash_text_address): New function.
9452         * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
9453
9454 2002-02-04  Pierre Muller  <muller@ics.u-strasbg.fr>
9455
9456         Add support for hardware watchpoints on win32 native.
9457         * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
9458         CONTEXT_DEBUG_REGISTERS.
9459         (dr variable): New variable. Static array containing a local copy
9460         of debug registers.
9461         (debug_registers_changed): New variable.  Reflects when debug registers
9462         are changed and need to be written to inferior.
9463         (debug_registers_used): New variable. Reflects when any debug register
9464         was set, used when new threads are created.
9465         (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
9466         i386-nat code.
9467         (thread_rec): Set dr array if id is the thread of current_event .
9468         (child_continue, child_resume): Change the debug registers for all
9469         threads if debug_registers_changed.
9470         (child_add_thread): Change the debug registers if debug_registers_used.
9471         * config/i386/cygwin.mh: Add use of i386-nat.o file.
9472         Link nm.h to new nm-cygwin.h file.
9473         + config/i386/nm-cygwin.h: New file. Contains the macros used for use
9474         of hardware registers.
9475
9476 2002-02-03  Andrew Cagney  <ac131313@redhat.com>
9477
9478         * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
9479         Restore behavour broken by 2002-01-20 Andrew Cagney
9480         <ac131313@redhat.com> IEEE_FLOAT removal.
9481
9482 2002-02-03  Daniel Jacobowitz  <drow@mvista.com>
9483
9484         * c-valprint.c (c_val_print): Pass a proper valaddr to
9485         cp_print_class_method.
9486         * valops.c (search_struct_method): If there is only one method
9487         and args is NULL, return that method.
9488
9489 2002-02-03  Daniel Jacobowitz  <drow@mvista.com>
9490
9491         * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
9492         accessing tag_name directly.
9493
9494 2002-02-03  Daniel Jacobowitz  <drow@mvista.com>
9495
9496         * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
9497         of accessing tag_name directly.
9498
9499 2002-02-03  Daniel Jacobowitz  <drow@mvista.com>
9500
9501         PR gdb/280
9502         * gdbtypes.c (replace_type): New function.
9503         * gdbtypes.h (replace_type): Add prototype.
9504         * stabsread.c (read_type): Use replace_type.
9505
9506 2002-02-03  Richard Earnshaw  <rearnsha@arm.com>
9507
9508         * Makefile.in (memattr.o): Add missing dependencies rule.
9509
9510 2002-02-03  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
9511
9512         * breakpoint.c (break_at_finish_command): Really export.
9513         (break_at_finish_at_depth_command): Ditto.
9514         (tbreak_at_finish_command): Ditto.
9515         * hppa-tdep.c: Include completer.h.
9516         * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
9517         (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
9518
9519 2002-02-01  Andrew Cagney  <ac131313@redhat.com>
9520
9521         * utils.c (do_write): New function.
9522         (error_stream): Rewrite combining the code from error_begin and
9523         verror.
9524         (verror): Rewrite using error_stream.
9525         (error_begin): Delete function.
9526
9527 2002-02-01  Andrew Cagney  <ac131313@redhat.com>
9528
9529         * utils.c (error_begin): Make static.
9530         * defs.h (error_begin): Delete declaration.
9531
9532         * linespec.c (cplusplus_error): Replace cplusplus_hint.
9533         (decode_line_1): Use cplusplus_error instead of error_begin,
9534         cplusplus_hint and return_to_top_level.
9535         * coffread.c (coff_symfile_read): Use error instead of error_begin
9536         and return_to_top_level.
9537         * infrun.c (default_skip_permanent_breakpoint): Ditto.
9538
9539 2002-02-01  Andrew Cagney  <ac131313@redhat.com>
9540
9541         * language.h (type_error, range_error): Make string parameter
9542         constant.
9543         * language.c (warning_pre_print): Delete extern declaration.
9544         * dwarfread.c (warning_pre_print): Ditto.
9545         * language.c (type_error, range_error): Rewrite to use verror and
9546         vwarning instead of warning_begin.
9547
9548 2002-02-01  Michael Snyder  <msnyder@redhat.com>
9549
9550         * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
9551         (set_ignore_count): Move misplaced comment back where it belongs.
9552
9553 2002-02-01  Andrew Cagney  <ac131313@redhat.com>
9554
9555         * command.h (NO_FUNCTION): Delete macro.
9556         * cli/cli-decode.h (NO_FUNCTION): Ditto.
9557         * top.c (execute_command): Replace NO_FUNCTION with NULL.
9558         * tracepoint.c (_initialize_tracepoint): Ditto.
9559         * cli/cli-decode.c (add_set_cmd): Ditto.
9560         * cli/cli-cmds.c (init_cli_cmds): Ditto.
9561
9562 2002-02-01  Daniel Jacobowitz  <drow@mvista.com>
9563
9564         * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
9565         Update ``this'' pointer when calling virtual functions.
9566
9567 2002-02-01  Michael Snyder  <msnyder@redhat.com>
9568
9569         * breakpoint.c (create_temp_exception_breakpoint): Delete.
9570         * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
9571
9572 2002-02-01  Daniel Jacobowitz  <drow@mvista.com>
9573
9574         * regformats/reg-arm.dat: New file.
9575         * regformats/reg-i386.dat: New file.
9576         * regformats/reg-ia64.dat: New file.
9577         * regformats/reg-m68k.dat: New file.
9578         * regformats/reg-mips.dat: New file.
9579         * regformats/reg-ppc.dat: New file.
9580         * regformats/reg-sh.dat: New file.
9581         * regformats/regdef.h: New file.
9582         * regformats/regdat.sh: New file.
9583
9584 2002-02-01  Richard Earnshaw  <reanrsha@arm.com>
9585
9586         * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
9587         (arm_frame_args_address, arm_frame_locals_address): New functions.
9588         (arm_frame_num_args): New function.
9589         * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
9590         (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
9591         (FRMA_NUM_ARGS): Call arm_frame_num_args.
9592
9593 2002-01-31  Michael Snyder  <msnyder@redhat.com>
9594
9595         * breakpoint.c (break_at_finish_command): Export.
9596         (break_at_finish_at_depth_command): Export.
9597         (tbreak_at_finish_command): Export.
9598         (_initialize_breakpoint): Delete "xbreak" and "tbreak" commands.
9599         * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
9600         "tbreak" commands, which are HPPA specific.
9601
9602         * printcmd.c (disassemble_command): Remove an ancient
9603         artifact of an old merge.
9604
9605         * symfile.h (enum overlay_debugging_state):
9606         Define enum constant values for overlay mode.
9607         * symfile.c (overlay_debugging): Use enums instead of literals.
9608         (overlay_is_mapped, overlay_auto_command,
9609         overlay_manual_command): Ditto.
9610
9611         * breakpoint.c (insert_breakpoints, remove_breakpoint,
9612         breakpoint_here_p, breakpoint_inserted_here_p,
9613         breakpoint_thread_match, bpstat_stop_status,
9614         describe_other_breakpoints, check_duplicates, clear_command):
9615         Coding standard fixes.
9616
9617         * target.c (target_xfer_memory): Add spaces, coding standard.
9618         (do_xfer_memory): Add missing line to trust-readonly
9619         code: check bfd SEC_READONLY flag for section.
9620
9621 2002-01-31  Andrew Cagney  <ac131313@redhat.com>
9622
9623         * PROBLEMS: Fix typo, 5.1->5.1.1.
9624
9625 2002-01-30  Daniel Jacobowitz  <drow@mvista.com>
9626
9627         * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
9628         data symbols, since we search based on textlow and texthigh.
9629         (find_pc_sect_symtab): Likewise.
9630
9631 2002-01-30  Andrew Cagney  <ac131313@redhat.com>
9632
9633         * defs.h (vwarning): Declare.
9634         * utils.c (vwarning): New function.
9635         (warning): Call vwarning.
9636         (warning_begin): Delete function.
9637
9638         * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
9639         the warning message.
9640         * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
9641         warning_begin.
9642
9643 2002-01-30  Michael Snyder  <msnyder@redhat.com>
9644
9645         * NEWS: Mention "set trust-readonly-sections" command.
9646         Mention generate-core-file command.
9647
9648 2002-01-15  Michael Snyder  <msnyder@redhat.com>
9649
9650         * target.c: New command, "set trust-readonly-sections on".
9651         (do_xfer_memory): Honor the suggestion to trust readonly sections
9652         by reading them from the object file instead of from the target.
9653         (initialize_targets): Register command "set trust-readonly-sections".
9654
9655 2002-01-29  Andrew Cagney  <ac131313@redhat.com>
9656
9657         * parse.c (target_map_name_to_register): Simplify, search regs and
9658         pseudo-regs using a single loop.
9659
9660 2002-01-30  Andrew Cagney  <ac131313@redhat.com>
9661
9662         * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
9663
9664 2002-01-15  Rodney Brown  <rbrown64@csc.com.au>
9665
9666         * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
9667         * config/i386/i386v42mp.mh: Add i387-nat.o .
9668         * i386v4-nat.c: Include i387-nat.h.
9669         (supply_fpregset): Use i387_supply_fsave.
9670         (fill_fpregset): Use i387_fill_fsave.
9671
9672 2002-01-30  Richard Earnshaw  <rearnsha@arm.com>
9673
9674         * arm-tdep.c (arm_call_dummy_words): Define.
9675         * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
9676         * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
9677         (CALL_DUMMY_WORDS): Define.
9678         (arm_call_dummy_words): Declare.
9679         * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
9680         (arm_linux_call_dummy_words): Declare.
9681
9682 2002-01-30  Andreas Schwab  <schwab@suse.de>
9683
9684         * m68klinux-nat.c: Fix last change to use regcache_collect
9685         instead of referencing registers[] directly.
9686
9687 2002-01-29  Andrew Cagney  <ac131313@redhat.com>
9688
9689         * parse.c (target_map_name_to_register): Delete code wrapped in
9690         #ifdef REGISTER_NAME_ALIAS_HOOK.
9691
9692 2002-01-28  Michael Snyder  <msnyder@redhat.com>
9693
9694         * regcache.c (legacy_read_register_gen): Need to be able to
9695         read pseudo-register as well as real register.
9696         (legacy_write_register_gen): Ditto.
9697
9698 2002-01-28  Andrew Cagney  <ac131313@redhat.com>
9699
9700         * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
9701         * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
9702         * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
9703         * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
9704         * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
9705         * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
9706         * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
9707         * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
9708         * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
9709         * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
9710         * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
9711         * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
9712         * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
9713         * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
9714         * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
9715         * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
9716         * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
9717         * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
9718         * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
9719         * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
9720
9721 2002-01-28  Andrew Cagney  <ac131313@redhat.com>
9722
9723         * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
9724         (target_byte_order): Initialize to BFD_ENDIAN_BIG.
9725         (initialize_current_architecture): Update target_byte_order using
9726         information from BFD.
9727         * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
9728         * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
9729
9730 2002-01-28  Andrew Cagney  <ac131313@redhat.com>
9731
9732         * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
9733         * vax-tdep.c (INVALID_FLOAT): To here.  Document why it is broken.
9734
9735         * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
9736         #ifdef INVALID_FLOAT.
9737         * infcmd.c (do_registers_info): Ditto.
9738         * values.c (unpack_double): Ditto.  Add comment.
9739
9740         * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
9741         already commented out.
9742
9743 2002-01-26  Andreas Schwab  <schwab@suse.de>
9744
9745         * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
9746         * m68klinux-nat.c: Update ptrace interface for fetching/storing
9747         registers and add support for PTRACE_GETREGS.
9748
9749 2002-01-24  Andrew Cagney  <ac131313@redhat.com>
9750
9751         GDB 5.1.1 released from 5.1 branch.
9752         * NEWS: Add 5.1.1 news.
9753         * README: Sync with 5.1 branch.
9754
9755 2002-01-23  Fred Fish  <fnf@redhat.com>
9756
9757         * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
9758         stabstring on initial malloc.  Reallocing will copy it for us,
9759         if necessary.
9760
9761 2002-01-23  Elena Zannoni  <ezannoni@redhat.com>
9762
9763         * Makefile.in (hpread_h): Delete.
9764         (HFILES_NO_SRCDIR): Remove hpread.h.
9765         (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
9766         (hpread.o): Update dependencies.
9767         (hp-psymtab-read.o, hp-symtab-read.o): Remove.
9768
9769         * hp-psymtab-read.c: Remove file.
9770         * hp-symtab-read.c: Remove file.
9771         * hpread.h: Remove file.
9772
9773         * hpread.c: Merge all contents of hp-psymtab-read.c,
9774         hp-symtab-read.c and hpread.h into this file, as it was prior to
9775         January 1999.
9776
9777         * config/pa/hpux11w.mh, config/pa/hpux11.mh,
9778         config/pa/hpux1020.mh, config/pa/hppaosf.mh,
9779         config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
9780         Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
9781
9782 2002-01-23  Elena Zannoni  <ezannoni@redhat.com>
9783
9784         * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
9785         fill_gregset): Call gdbarch_tdep() just once, assign result to
9786         variable and use that, instead of calling the function several
9787         times.
9788
9789 2002-01-24  Alexandre Oliva  <aoliva@redhat.com>
9790
9791         * configure.host: Accept sparcv9 as alias for sparc64.
9792         * configure.tgt: Likewise.
9793
9794 2002-01-22  Kevin Buettner  <kevinb@redhat.com>
9795
9796         * solib-aix5.c (build_so_list_from_mapfile)
9797         (aix5_relocate_main_executable): Fix xcalloc() calls so order of
9798         arguments is not reversed.
9799         * solib-sunos.c (sunos_relocate_main_executable): Likewise.
9800         * solib-svr4.c (svr4_relocate_main_executable): Likewise.
9801
9802 2002-01-22  Elena Zannoni  <ezannoni@redhat.com>
9803
9804         * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
9805         modified version of obsolete sh_fetch_pseudo_register.
9806         (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
9807         (sh4_register_read): New function.
9808         (sh_pseudo_register_write): New function. Renamed and modified
9809         version of obsolete sh_store_pseudo_register.
9810         (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
9811         (sh4_register_write): New function.
9812         (sh_gdbarch_init): Remove setting of gdbarch function
9813         fetch_pseudo_register and store_pseudo_register. Remove setting of
9814         register_convert_to_raw, register_convert_to_virtual,
9815         register_convertible.
9816         (sh_sh4_register_convertible): Delete. No longer needed. All is
9817         taken care by architecture specific functions
9818         register_read/register_write.
9819         (sh_sh4_register_convert_to_virtual): Make static.
9820         (sh_sh4_register_convert_to_raw): Ditto.
9821
9822 2002-01-22  Andrew Cagney  <ac131313@redhat.com>
9823
9824         * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
9825         (floatformat_is_nan, floatformat_mantissa): Ditto.
9826
9827         * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
9828         for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
9829         builtin_type_ieee_double_little,
9830         builtin_type_ieee_double_littlebyte_bigword,
9831         builtin_type_m68881_ext, builtin_type_i960_ext,
9832         builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
9833         builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
9834         builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
9835         builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
9836
9837 2002-01-22  Corinna Vinschen  <vinschen@redhat.com>
9838
9839         * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
9840         parameter.  Set frameless flag if it exists and depended of
9841         whether the scanned function is frameless or not.
9842         (xstormy16_skip_prologue): If function is frameless, return
9843         result of xstormy16_scan_prologue().
9844         (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
9845         call.
9846
9847 2002-01-21  Elena Zannoni  <ezannoni@redhat.com>
9848
9849         * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
9850         sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
9851         sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
9852         sh_sh4_register_byte, sh_sh4_register_raw_size,
9853         sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
9854         sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
9855         sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
9856         sh_store_pseudo_register, sh_do_pseudo_register): Call
9857         gdbarch_tdep() just once, assign result to variable and use that,
9858         instead of calling the function several times.
9859
9860 2002-01-20  Mark Kettenis  <kettenis@gnu.org>
9861
9862         * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
9863         macros instead of LAST_FPU_CTRL_REGNUM.
9864         (store_register): Likewise.
9865
9866 2002-01-21  Jim Blandy  <jimb@redhat.com>
9867
9868         * infcmd.c (run_command): Check that the `exec' target layer's BFD
9869         is up-to-date before running the program, not just when a program
9870         exits.
9871
9872 2002-01-21  Fred Fish  <fnf@redhat.com>
9873
9874         * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
9875         when we have found all instructions we are looking for.
9876
9877 2002-01-21  Richard Earnshaw  <rearnsha@arm.com>
9878
9879         * arm-tdep.c (arm_register_name): New function.
9880         (arm_registers_names): Make static.
9881         * config/arm/tm-arm.h (arm_register_names): Delete declaration.
9882         (arm_register_name): Declare.
9883         (REGISTER_NAME): Use it.
9884
9885 2002-01-21  Richard Earnshaw  <rearnsha@arm.com>
9886             Kevin Buettner  <kevinb@redhat.com>
9887
9888         Convert arm targets to new FRAME interface.
9889         * arm-tdep.c (struct frame_extra_info): Remove fsr.
9890         (arm_frame_find_save_regs): Delete.
9891         (arm_frame_init_saved_regs): New.
9892         (arm_init_extra_frame_info): Alloacte saved_regs as required.
9893         Allocate extra_info as required.  Convert all uses of fsr.regs
9894         to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
9895         to use extra_info.
9896         (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
9897         (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
9898         (check_prologue_cache, save_prologue_cache): Likewise.
9899         (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
9900         * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
9901         (FRAME_FIND_SAVED_REGS): Delete.
9902         (arm_frame_find_saved_regs): Delete prototype.
9903         (arm_frame_init_saved_regs): New prototype.
9904         (FRAME_INIT_SAVED_REGS): Define.
9905
9906 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
9907
9908         * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
9909
9910 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
9911
9912         From Jeff Law <law@redhat.com>:
9913         * infttrace.c: Include <sys/pstat.h>.
9914         (child_pid_to_exec_file): Revamp.  Use pstat call to get the
9915         exec file if the ttrace equivalent fails.
9916
9917 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
9918
9919         * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
9920         (closeLogFile): Ditto.
9921
9922 2002-01-20  Michael Chastain  <mec@shout.net>
9923
9924         * top.c (print_gdb_version): Bump copyright year to 2002.
9925
9926 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
9927
9928         * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
9929         Zannoni and Eli Zaretskii.
9930
9931 2002-01-20  Daniel Jacobowitz  <drow@mvista.com>
9932
9933         * buildsym.c: Update copyright years.
9934         * c-typeprint.c: Likewise.
9935         * dwarf2read.c: Likewise.
9936         * f-typeprint.c: Likewise.
9937         * gdbtypes.c: Likewise.
9938         * gdbtypes.h: Likewise.
9939         * hp-symtab-read.c: Likewise.
9940         * hpread.c: Likewise.
9941         * mdebugread.c: Likewise.
9942         * p-typeprint.c: Likewise.
9943
9944 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
9945
9946         * remote-sim.c (gdbsim_open): Simplify code testing the macro
9947         TARGET_BYTE_ORDER_SELECTABLE_P.  Assume the target is always
9948         byte-order selectable.
9949         * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
9950         * arch-utils.c: Ditto.
9951         (set_endian): Ditto.
9952         (set_endian_from_file): Ditto.
9953         * gdbserver/low-sim.c (create_inferior): Ditto.
9954         * gdbarch.sh: Ditto.
9955         * gdbarch.h: Re-generate.
9956         * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
9957         * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
9958         * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
9959         * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
9960         * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
9961         * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
9962         * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
9963         * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
9964         macro definition.
9965         * config/mips/tm-wince.h: Remove #undef of macro
9966         TARGET_BYTE_ORDER_SELECTABLE.
9967         * config/sh/tm-wince.h: Ditto.
9968
9969 2002-01-20  Daniel Jacobowitz  <drow@mvista.com>
9970
9971         * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
9972         member function fields.  Add accessor macro
9973         TYPE_FN_FIELD_ARTIFICIAL.
9974         * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
9975         * c-typeprint.c (c_type_print_base): Skip artificial member
9976         functions.
9977
9978 2002-01-20  Daniel Jacobowitz  <drow@mvista.com>
9979
9980         * f-typeprint.c: Delete unused function f_type_print_args.
9981         * p-typeprint.c: Delete unused function pascal_type_print_args.
9982
9983 2002-01-20  Daniel Jacobowitz  <drow@mvista.com>
9984
9985         * gdbtypes.h (struct type): Fix whitespace.  Remove obsolete
9986         comment.  Add ``artificial'' to ``union field_location''.
9987
9988         * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
9989
9990         * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
9991         * mdebugread.c (parse_symbol): Likewise.
9992         * stabsread.c (define_symbol): Likewise.
9993         * hp-symtab-read.c (hpread_function_type): Likewise, instead of
9994         initializing TYPE_FIELD_BITPOS to n (obsolete).
9995         (hpread_doc_function_type): Likewise.
9996         * hpread.c (hpread_function_type): Likewise.
9997
9998 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
9999
10000         * configure.in (host_makefile_frag): Only require a host makefile
10001         fragment when a native build.
10002         * configure: Re-generate.
10003
10004 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
10005
10006         * doublest.h (floatformat_from_type): Declare.
10007         * doublest.c (floatformat_from_type): New function.
10008         (convert_typed_floating): Use.
10009
10010         * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
10011         call to function floatformat_from_type.
10012
10013         * gdbarch.sh (IEEE_FLOAT): Delete.
10014         * gdbarch.h, gdbarch.c: Re-generate.
10015         * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
10016         * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
10017         * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
10018         * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
10019         * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
10020         * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
10021         * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
10022         * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
10023         * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
10024         * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
10025         * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
10026         * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
10027
10028         * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
10029         * x86-64-tdep.c (i386_gdbarch_init): Ditto.
10030         * sparc-tdep.c (sparc_gdbarch_init): Ditto.
10031         * sh-tdep.c (sh_gdbarch_init): Ditto.
10032         * mips-tdep.c (mips_gdbarch_init): Ditto.
10033         * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
10034         * cris-tdep.c (cris_gdbarch_init): Ditto.
10035
10036 2002-01-20  Jiri Smid  <smid@suse.cz>
10037
10038         * configure.host, configure.tgt: Support x86-64.
10039         * NEWS: Note new target x86-64.
10040
10041         * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
10042         * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
10043         * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
10044         * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
10045         x86-64-linux-nat.o): Fix dependencies.
10046
10047 2002-01-19  Andrew Cagney  <ac131313@redhat.com>
10048
10049         * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
10050         * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
10051         * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
10052         * config/sparc/xm-sun4os4.h: Delete file.
10053         * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
10054
10055 2002-01-19  Andrew Cagney  <ac131313@redhat.com>
10056
10057         * config/sparc/sparclynx.mh (XM_FILE): Delete.
10058         * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
10059         * config/m68k/m68klynx.mh (XM_FILE): Delete.
10060         * config/i386/i386lynx.mh (XM_FILE): Delete.
10061         * config/rs6000/xm-rs6000ly.h: Delete file.
10062         * config/sparc/xm-sparclynx.h: Delete file.
10063         * config/m68k/xm-m68klynx.h: Delete file.
10064         * config/i386/xm-i386lynx.h: Delete file.
10065         * config/xm-lynx.h: Delete file.
10066         * config/djgpp/fnchange.lst: Update.
10067
10068 2002-01-19  Jason Thorpe  <thorpej@wasabisystems.com>
10069
10070         * alpha-tdep.c (alpha_register_byte): New function.
10071         (alpha_register_raw_size): Ditto.
10072         (alpha_register_virtual_size): Ditto.
10073         (alpha_skip_prologue_internal): Renamed from
10074         alpha_skip_prologue.
10075         (alpha_skip_prologue): New version that calls
10076         alpha_skip_prologue_internal.
10077         (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
10078         * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
10079         second argument from alpha_skip_prologue.
10080         (REGISTER_BYTE): Use alpha_register_byte.
10081         (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
10082         (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
10083         (FRAMELESS_FUNCTION_INVOCATION): Use
10084         generic_frameless_function_invocation_not.
10085         (FRAME_NUM_ARGS): Use frame_num_args_unknown.
10086         (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
10087
10088 2002-01-19  Andrew Cagney  <ac131313@redhat.com>
10089
10090         * config/mips/xm-news-mips.h: Delete file.
10091         * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
10092
10093         * config/m88k/xm-m88k.h: Delete file.
10094         * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
10095         * config/m88k/xm-delta88v4.h: Ditto.
10096         * config/m88k/xm-delta88.h: Ditto.
10097
10098         * config/alpha/xm-fbsd.h: Delete file.
10099         * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
10100
10101         * config/sparc/xm-sparc.h: Delete file.
10102         * Makefile.in (xm-sun4os4.h): Delete dependency.
10103         * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
10104         * config/sparc/xm-sun4os4.h: Ditto.
10105         * config/sparc/xm-linux.h: Ditto.
10106
10107         * config/i386/xm-windows.h: Delete file.
10108
10109 2002-01-19  Andrew Cagney  <ac131313@redhat.com>
10110
10111         * utils.c: Include <sys/param.h> for MAXPATHLEN.
10112         (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
10113
10114 2002-01-19  Jason Thorpe  <thorpej@wasabisystems.com>
10115
10116         * alpha-tdep.c (alpha_call_dummy_words): New.
10117         * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
10118         (CALL_DUMMY_P): Define.
10119         (CALL_DUMMY_WORDS): Define.
10120         (SIZEOF_CALL_DUMMY_WORDS): Define.
10121
10122 2002-01-19  Per Bothner  <per@bothner.com>
10123
10124         * gnu-v3-abi.c (gnuv3_rtti_type):  Guard that vtable_symbol_name
10125         isn't NULL, which can happen with some gcj-3.x-produced code.
10126
10127 2002-01-19  Jason Thorpe  <thorpej@wasabisystems.com>
10128
10129         * alpha-tdep.c (alpha_register_virtual_type): New function.
10130         (alpha_init_frame_pc_first): Ditto.
10131         (alpha_fix_call_dummy): Ditto.
10132         (alpha_store_struct_return): Ditto.
10133         (alpha_extract_struct_value_address): Ditto.
10134         * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
10135         alpha_register_virtual_type.
10136         (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
10137         (EXTRACT_STRUCT_VALUE_ADDRESS): Use
10138         alpha_extract_struct_value_address.
10139         (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
10140         (INIT_FRAME_PC): Use init_frame_pc_noop.
10141         (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
10142
10143 2002-01-19  Mark Kettenis  <kettenis@gnu.org>
10144
10145         * i386gnu-nat.c: Include "i386-tdep.h".
10146         (fetch_fpregs): Simplify code dealing with uninitialized floating
10147         point states such that it doesn't require FP7_REGNUM.
10148
10149 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
10150
10151         * alpha-tdep.c (frame_extra_info): New.
10152         (alpha_find_saved_regs): Make static.  Use
10153         frame->extra_info.
10154         (alpha_frame_init_saved_regs): New function.
10155         (alpha_frame_saved_pc): Use frame->extra_info.
10156         (temp_saved_regs): Don't declare as struct frame_saved_regs.
10157         (heuristic_proc_desc): Adjust for temp_saved_regs changes.
10158         (init_extra_frame_info): Rename to...
10159         (alpha_init_extra_frame_info): ...this.  Use frame->extra_info.
10160         (alpha_print_extra_frame_info): New function.
10161         (alpha_frame_locals_address): Ditto.
10162         (alpha_frame_args_address): Ditto.
10163         (alpha_pop_frame): Use frame->extra_info.
10164         * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
10165         alpha_frame_args_address.
10166         (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
10167         (alpha_find_saved_regs): Remove prototype.
10168         (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
10169         (EXTRA_FRAME_INFO): Remove.
10170         (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
10171         (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
10172
10173 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
10174
10175         * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
10176         (alpha_cannot_fetch_register): Ditto.
10177         (alpha_cannot_store_register): Ditto.
10178         (alpha_register_convertible): Ditto.
10179         (alpha_use_struct_convention): Ditto.
10180         * config/alpha/tm-alpha.h: Update copyright years.
10181         (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
10182         (INNER_THAN): Use core_addr_lessthan.
10183         (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
10184         (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
10185         (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
10186         (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
10187         (FRAME_CHAIN): Remove unnecessary cast.
10188
10189 2002-01-18  Andrew Cagney  <ac131313@redhat.com>
10190
10191         * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
10192         obsolete.
10193
10194 2002-01-18  Andrew Cagney  <ac131313@redhat.com>
10195
10196         * infptrace.c: Remove ATTRIBUTE_UNUSED.  Update copyright.
10197         * monitor.c, remote-array.c, remote-bug.c: Ditto.
10198         * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
10199         * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
10200         * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
10201         * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
10202         * x86-64-linux-nat.c: Ditto.
10203
10204 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
10205
10206         * alpha-tdep.c (alpha_register_name): New function.
10207         * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
10208         (REGISTER_NAME): Define.
10209
10210 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
10211
10212         * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
10213
10214 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
10215
10216         * alpha-tdep.c: Update copyright years.
10217         (alpha_next_pc): New function.
10218         (alpha_software_single_step): Ditto.
10219         * config/alpha/tm-alpha.h: Add prototype for
10220         alpha_software_single_step.
10221
10222 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
10223
10224         * alphabsd-nat.c: Update copyright years.
10225         (fill_gregset): Use regcache_collect.
10226         (fill_fpregset): Likewise.
10227         (fetch_inferior_registers): Only fetch integer registers
10228         if requested to do so.
10229         (store_inferior_registers): Only store integer registers
10230         if requested to do so.
10231
10232 2002-01-17  Andrew Cagney  <ac131313@redhat.com>
10233
10234         * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
10235         * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
10236         * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
10237         * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
10238         * config/alpha/fbsd.mh (XDEPFILES): Delete.
10239         * config/arm/linux.mh (XDEPFILES): Delete.
10240         * config/arm/nbsd.mh (XDEPFILES): Delete.
10241         * config/i386/i386dgux.mh (XDEPFILES): Delete.
10242         * config/i386/i386sol2.mh (XDEPFILES): Delete.
10243         * config/i386/i386m3.mh (XDEPFILES): Delete.
10244         (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
10245         * config/i386/i386gnu.mh (XDEPFILES): Delete.
10246         * config/i386/fbsd.mh (XDEPFILES): Delete.
10247         * config/i386/i386bsd.mh (XDEPFILES): Delete.
10248         * config/i386/i386sco5.mh (XDEPFILES): Delete.
10249         * config/i386/i386v4.mh (XDEPFILES): Delete.
10250         * config/i386/i386v42mp.mh (XDEPFILES): Delete.
10251         * config/i386/i386sco4.mh (XDEPFILES): Delete.
10252         * config/i386/i386aix.mh (XDEPFILES): Delete.
10253         * config/i386/go32.mh (XDEPFILES): Delete.
10254         * config/i386/cygwin.mh (XDEPFILES): Delete.
10255         * config/i386/i386lynx.mh (XDEPFILES): Delete.
10256         * config/i386/i386mach.mh (XDEPFILES): Delete.
10257         * config/i386/i386v32.mh (XDEPFILES): Delete.
10258         * config/i386/linux.mh (XDEPFILES): Delete.
10259         * config/i386/nbsdelf.mh (XDEPFILES): Delete.
10260         * config/i386/ncr3000.mh (XDEPFILES): Delete.
10261         * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
10262         * config/i386/i386sco.mh (XDEPFILES): Delete.
10263         * config/i386/i386v.mh (XDEPFILES): Delete.
10264         * config/i386/nbsd.mh (XDEPFILES): Delete.
10265         * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
10266         * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
10267         * config/i386/symmetry.mh (XDEPFILES): Delete.
10268         * config/i386/obsd.mh (XDEPFILES): Delete.
10269         * config/i386/x86-64linux.mh (XDEPFILES): Delete.
10270         * config/ia64/linux.mh (XDEPFILES): Delete.
10271         * config/ia64/aix.mh (XDEPFILES): Delete.
10272         * config/m68k/apollo68b.mh (XDEPFILES): Delete.
10273         * config/m68k/dpx2.mh (XDEPFILES): Delete.
10274         * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
10275         * config/m68k/apollo68v.mh (XDEPFILES): Delete.
10276         * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
10277         * config/m68k/linux.mh (XDEPFILES): Delete.
10278         * config/m68k/m68klynx.mh (XDEPFILES): Delete.
10279         * config/m68k/m68kv4.mh (XDEPFILES): Delete.
10280         * config/m68k/nbsd.mh (XDEPFILES): Delete.
10281         * config/m68k/sun2os3.mh (XDEPFILES): Delete.
10282         * config/m68k/sun2os4.mh (XDEPFILES): Delete.
10283         * config/m68k/sun3os3.mh (XDEPFILES): Delete.
10284         * config/m68k/sun3os4.mh (XDEPFILES): Delete.
10285         * config/m88k/delta88.mh (XDEPFILES): Delete.
10286         * config/m88k/delta88v4.mh (XDEPFILES): Delete.
10287         * config/m88k/m88k.mh (XDEPFILES): Delete.
10288         * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
10289         * config/mips/linux.mh (XDEPFILES): Delete.
10290         * config/mips/irix6.mh (XDEPFILES): Delete.
10291         * config/mips/irix5.mh (XDEPFILES): Delete.
10292         * config/mips/irix4.mh (XDEPFILES): Delete.
10293         * config/mips/irix3.mh (XDEPFILES): Delete.
10294         * config/mips/decstation.mh (XDEPFILES): Delete.
10295         * config/mips/mipsm3.mh (XDEPFILES): Delete.
10296         (NATDEPFILES): Move core-aout.o to here.
10297         * config/ns32k/nbsd.mh (XDEPFILES): Delete.
10298         * config/pa/hpux1020.mh (XDEPFILES): Delete.
10299         * config/pa/hppabsd.mh (XDEPFILES): Delete.
10300         * config/pa/hppahpux.mh (XDEPFILES): Delete.
10301         * config/pa/hpux11w.mh (XDEPFILES): Delete.
10302         * config/pa/hppaosf.mh (XDEPFILES): Delete.
10303         * config/pa/hpux11.mh (XDEPFILES): Delete.
10304         * config/powerpc/aix.mh (XDEPFILES): Delete.
10305         * config/powerpc/nbsd.mh (XDEPFILES): Delete.
10306         * config/powerpc/linux.mh (XDEPFILES): Delete.
10307         * config/romp/rtbsd.mh: Rename XDEPFILES.
10308         * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
10309         * config/rs6000/aix4.mh (XDEPFILES): Delete.
10310         * config/rs6000/rs6000.mh (XDEPFILES): Delete.
10311         * config/s390/s390.mh (XDEPFILES): Delete.
10312         * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
10313         * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
10314         * config/sparc/sun4os4.mh (XDEPFILES): Delete.
10315         * config/sparc/sparclynx.mh (XDEPFILES): Delete.
10316         * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
10317         * config/sparc/nbsd.mh (XDEPFILES): Delete.
10318         * config/sparc/linux.mh (XDEPFILES): Delete.
10319         * config/vax/vaxult.mh (XDEPFILES): Delete.
10320         * config/vax/vaxult2.mh (XDEPFILES): Delete.
10321         * Makefile.in (DEPFILES): Remove XDEPFILES.
10322
10323 2002-01-17  Andrew Cagney  <ac131313@redhat.com>
10324
10325         * utils.c (internal_verror): Fix comments, default is yes not no.
10326         Update queries to match.  Default to quit and dump core.
10327
10328 2002-01-17  Andrew Cagney  <ac131313@redhat.com>
10329
10330         * breakpoint.c: Update assuming #if UI_OUT is always true.  Update
10331         copyright.
10332         * defs.h, event-top.c, gdbcmd.h: Ditto.
10333         * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
10334         * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
10335         * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
10336         * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
10337         * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
10338         * mi/mi-main.c:Ditto.
10339
10340         * stack.c, symfile.c: Update copyright.
10341
10342 2002-01-17  Daniel Jacobowitz  <drow@mvista.com>
10343
10344         * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
10345         gdbserver/low-nbsd.c, gdbserver/low-sim.c,
10346         gdbserver/low-sparc.c, gdbserver/low-sun3.c,
10347         gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
10348
10349 2002-01-17  Daniel Jacobowitz  <drow@mvista.com>
10350
10351         * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
10352         * gdbserver/low-lynx.c (myattach): Likewise.
10353         * gdbserver/low-nbsd.c (myattach): Likewise.
10354         * gdbserver/low-sim.c (myattach): Likewise.
10355         * gdbserver/low-sparc.c (myattach): Likewise.
10356         * gdbserver/low-sun3.c (myattach): Likewise.
10357
10358         * gdbserver/low-linux.c (myattach): New function.
10359
10360         * gdbserver/server.c (attach_inferior): New function.
10361         (main): Handle "--attach".
10362
10363 2002-01-16  Andrew Cagney  <ac131313@redhat.com>
10364
10365         * MAINTAINERS (language support): Daniel Jacobwitz is C++
10366         maintainer.
10367
10368 2002-01-15  Daniel Jacobowitz  <drow@mvista.com>
10369
10370         * c-typeprint.c (is_type_conversion_operator): Add additional
10371         check for non-conversion operators.
10372
10373 2002-01-15  Michael Snyder  <msnyder@redhat.com>
10374
10375         * linux-proc.c: Add "info proc" command, a la procfs.c.
10376         (read_mapping): New function, abstract and re-use code.
10377         (linux_find_memory_regions): Use new func read_mapping.
10378         (linux_info_proc_cmd): New function, implement "info proc".
10379         (_initialize_linux_proc): Add new command "info proc".
10380
10381 2002-01-15  Michael Snyder  <msnyder@redhat.com>
10382
10383         * symfile.c (generic_load): Use bfd_map_over_sections method
10384         instead of manipulating bfd structure members directly.
10385         (add_section_size_callback): New function, bfd sections callback
10386         used by generic_load.
10387         (load_sections_callback): New function, bfd sections callback
10388         used by generic_load.
10389
10390 2002-01-15  Elena Zannoni  <ezannoni@redhat.com>
10391
10392         [Based on work by Jim Blandy]
10393         * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
10394         (builtin_type_vec128): Export.
10395         * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
10396         types.
10397         (builtin_type_vec128): New builtin type for 128 bit vector
10398         registers.
10399         (build_gdbtypes): Initialize builtin_type_v16qi and
10400         builtin_type_v8hi. Create the vec128 register builtin type
10401         structure.
10402         (build_builtin_type_vec128): New function.
10403         (_initialize_gdbtypes): Register builtin_type_v16qi and
10404         builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
10405         * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
10406         AltiVec register to new builtin type.
10407
10408 2001-01-15  Daniel Jacobowitz  <drow@mvista.com>
10409
10410         * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
10411         to make_cv_type.
10412
10413 2002-01-14  Andrew Cagney  <ac131313@redhat.com>
10414
10415         * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
10416         CLEAN_UP_REGISTER_VALUE.
10417         * regcache.c (supply_register): Update only call.
10418
10419 2002-01-14  Andrew Cagney  <ac131313@redhat.com>
10420
10421         * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
10422         a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
10423         a29k-*-vxworks* targets as obsolete.
10424
10425 2002-01-14  Michael Snyder  <msnyder@redhat.com>
10426
10427         * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
10428         until we can resolve portability issues.
10429         * gregset.h: Remove references to fpxregs.
10430         * gcore.c (gcore_command): Initialize note_sec to NULL.
10431
10432 2002-01-13  Andrew Cagney  <ac131313@redhat.com>
10433
10434         * signals.c (target_signal_to_name): Rewrite.  Only use
10435         signals[].name when in bounds and non-NULL.
10436
10437 2002-01-13  Andrew Cagney  <ac131313@redhat.com>
10438
10439         From Petr Ledvina <ledvinap@kae.zcu.cz>:
10440         * signals.c (target_signal_to_name): Verify that SIG is within the
10441         bounds of the signals array.
10442
10443 2002-01-13  Andrew Cagney  <ac131313@redhat.com>
10444
10445         * MAINTAINERS: Remove arm-coff and arm-pe from target list.
10446
10447 2002-01-13  Keith Seitz  <keiths@redhat.com>
10448
10449         * stack.c (print_frame_info_base): Print the frame's pc
10450         only if when print_frame_info_listing_hook is not defined.
10451
10452 2002-01-13  Keith Seitz  <keiths@redhat.com>
10453
10454         * varobj.c (varobj_set_value): Make sure that there were no
10455         errors evaluating the object before attempting to set its
10456         value.
10457         value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
10458         so this offset adjustment is no longer necessary.
10459         (create_child): Don't set the error flag if the child is
10460         a CPLUS_FAKE_CHILD.
10461         (value_of_child): If value_fetch_lazy fails, return NULL
10462         so that callers will be notified that an error occurred.
10463         (c_value_of_variable): Delay check of variable's validity
10464         until later. We actually want all structs and unions to have
10465         the value "{...}".
10466         Do not return "???" for variables which could not be evaluated.
10467         This error condition must be returned to the caller so that it
10468         can get the error condition from gdb.
10469         (cplus_name_of_child): Adjust index for vptr before figuring
10470         out the name of the child.
10471         (cplus_value_of_child): If a child's (real) parent is not valid,
10472         don't even bother trying to give a value for it. Just return
10473         an error. Change all instances in this function.
10474         (cplus_type_of_child): If our parent is one of the "fake"
10475         parents, we need to get at the type of the real parent, and
10476         derive the child's true type using this information.
10477
10478 2002-01-13  Andrew Cagney  <ac131313@redhat.com>
10479
10480         From 2002-01-09 John Marshall <johnm@falch.net>:
10481         * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
10482         sources.redhat.com, and tweak some related URLs which had
10483         suffered from linkrot.
10484
10485 2002-01-13  Andrew Cagney  <ac131313@redhat.com>
10486
10487         From Jeff law:
10488         * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
10489         structures passed in registers.
10490
10491 2002-01-13  Eli Zaretskii  <eliz@is.elta.co.il>
10492
10493         * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
10494         white space which prevented compilation.  Reported by DSK
10495         <dsk@student.unsw.edu.au>.
10496
10497 2002-01-11  Michael Snyder  <msnyder@redhat.com>
10498
10499         * symfile.c (build_section_addr_info_from_section_tab):
10500         Use bfd access method instead of manipulating bfd directly.
10501         (syms_from_objfile): Ditto.
10502         (simple_overlay_update_1): Ditto.
10503         (simple_overlay_update): Ditto.
10504         (generic_load): Ditto.
10505         (overlay_unmapped_address): FIXME comment, bfd access methods.
10506         (sections_overlap): FIXME comment, bfd access methods.
10507         (pc_in_mapped_range): FIXME comment, bfd access methods.
10508         (pc_in_unmapped_range): FIXME comment, bfd access methods.
10509         (section_is_mapped): FIXME comment, bfd access methods.
10510         (section_is_overlay): FIXME comment, bfd access methods.
10511
10512         * symfile.c (generic_load): Whitespace and long line cleanups.
10513         Remove duplicate variable, change several local variables to
10514         more appropriate data types.
10515         (print_transfer_performance): Use %lu instead of %ld for ulongs.
10516
10517 2002-01-12  Andrew Cagney  <ac131313@redhat.com>
10518
10519         From Peter Schauer:
10520         * language.c (longest_local_hex_string_custom): Use phex_nz to
10521         convert NUM to a hex string.
10522
10523 2002-01-12  Elena Zannoni  <ezannoni@redhat.com>
10524
10525         * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
10526         the function.
10527         Update Copyright year.
10528
10529 2002-01-12  Andrew Cagney  <ac131313@redhat.com>
10530
10531         * language.c (longest_raw_hex_string): Delete unused function.
10532
10533 2002-01-11  Petr Sorfa  <petrs@caldera.com>
10534
10535         * MAINTAINERS (write-after-approval): Add myself.
10536         * dwarf2read.c (read_tag_string_type): Handling of
10537         DW_AT_byte_size.
10538         (read_tag_string_type): FORTRAN fix to prevent propagation of
10539         first string size.
10540         (set_cu_language): Handling of DW_LANG_Fortran95
10541
10542 2002-01-11  Richard Earnshaw  <rearnsha@arm.com>
10543
10544         * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
10545         GETPID(inferior_ptid).
10546         (store_inferior_registers): Likewise.
10547
10548 2002-01-10  Jason Merrill  <jason@redhat.com>
10549
10550         * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
10551         Fix DW_OP_minus.
10552
10553 2002-01-10  Andrew Cagney  <ac131313@redhat.com>
10554
10555         * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
10556         and bfd/elf32-sh-nbsd.c.
10557
10558 2002-01-10  Michael Snyder  <msnyder@redhat.com>
10559
10560         * NEWS: Mention --pid and corefile/proc-id behavior change.
10561
10562         * Makefile.in: Add rules for gcore.o and linux-proc.o.
10563         * gcore.c: Include cli/cli-decode.h instead of command.h.
10564
10565         * main.c (captured_main): Add new command line option "--pid".
10566         If the second command line argument (following the symbol-file)
10567         begins with a digit, try to attach to it before trying to open
10568         it as a corefile.
10569         (print_gdb_help): Document the "--pid" argument.
10570
10571 2002-01-10  Eli Zaretskii  <eliz@is.elta.co.il>
10572
10573         * completer.c (command_completer): New function.
10574
10575         * completer.h <command_completer>: Add prototype.
10576
10577         * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
10578         completer for the "help" command.
10579
10580 2002-01-09  Jason Merrill  <jason@redhat.com>
10581
10582         * c-typeprint.c (is_type_conversion_operator): Fix thinko.
10583
10584 2002-01-09  Michael Snyder  <msnyder@redhat.com>
10585
10586         * i386-linux-nat.c (fill_fpxregset): Make global.
10587         (store_fpxregset): Ditto.
10588
10589         * gregset.h (gdb_fpxregset_t): Define.
10590         (supply_fpxregset): Prototype.
10591         (fill_fpxregset): Prototype.
10592
10593         * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
10594
10595 2002-01-09  Richard Earnshaw  <rearnsha@arm.com>
10596
10597         * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
10598         * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
10599         * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
10600
10601 2002-01-09  Andrew Cagney  <ac131313@redhat.com>
10602
10603         * MAINTAINERS: Update target maintainer rules so that any
10604         Maintainer can approve a tested patch for a maintenance-only
10605         target.
10606
10607 2002-01-09  Richard Earnshaw  <rearnsha@arm.com>
10608
10609         * MAINTAINERS (write-after-approval): Add myself.
10610
10611         * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
10612         IN_SIGTRAMP.
10613
10614 2002-01-08  Michael Snyder  <msnyder@redhat.com>
10615
10616         * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
10617         real name of the executable, rather than the /proc name.
10618
10619 2002-01-03  Michael Snyder  <msnyder@redhat.com>
10620
10621         Implement a "generate-core-file" command in gdb, save target state.
10622         * gcore.c: New file.  Implement new command 'generate-core-file'.
10623         Save a corefile image of the current state of the inferior.
10624         * linux-proc.c: Add linux-specific code for saving corefiles.
10625         * target.h (struct target_ops): Add new target vectors for saving
10626         corefiles; to_find_memory_regions and to_make_corefile_notes.
10627         (target_find_memory_regions): New macro.
10628         (target_make_corefile_notes): New macro.
10629         * target.c (update_current_target): Inherit new target methods.
10630         (dummy_find_memory_regions): New place-holder method.
10631         (dummy_make_corefile_notes): New place-holder method.
10632         (init_dummy_target): Initialize new dummy target vectors.
10633         * exec.c (exec_set_find_memory_regions): New function.
10634         Allow the exec_ops vector for memory regions to be taken over.
10635         (exec_make_note_section): New function, target vector method.
10636         * defs.h (exec_set_find_memory_regions): Export prototype.
10637         * procfs.c (proc_find_memory_regions): New function, corefile method.
10638         (procfs_make_note_section): New function, corefile method.
10639         (init_procfs_ops): Set new target vector pointers.
10640         (find_memory_regions_callback): New function.
10641         (procfs_do_thread_registers): New function.
10642         (procfs_corefile_thread_callback): New function.
10643         * sol-thread.c (sol_find_memory_regions): New function.
10644         (sol_make_note_section): New function.
10645         (init_sol_thread_ops): Initialize new target vectors.
10646         * inftarg.c (inftarg_set_find_memory_regions): New function.
10647         Allow to_find_memory_regions vector to be taken over.
10648         (inftarg_set_make_corefile_notes): New function.
10649         Allow to_make_corefile_notes vector to be taken over.
10650         * thread-db.c (thread_db_new_objfile): Don't activate thread-db
10651         interface layer if not target_has_execution (may be a corefile).
10652         * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
10653         * config/sparc/sun4sol2.mh: Ditto.
10654         * config/alpha/alpha-linux.mh: Ditto.
10655         * config/arm/linux.mh: Ditto.
10656         * config/i386/x86-64linux.mh: Ditto.
10657         * config/ia64/linux.mh: Ditto.
10658         * config/m68k/linux.mh: Ditto.
10659         * config/mips/linux.mh: Ditto.
10660         * config/powerpc/linux.mh: Ditto.
10661         * config/sparc/linux.mh: Ditto.
10662
10663 2002-01-07  Michael Snyder  <msnyder@redhat.com>
10664
10665         * arm-linux-nat.c: Remove references to regcache.c internal data
10666         (registers[] and register_valid[]).
10667
10668 2002-01-07  Michael Snyder  <msnyder@redhat.com>
10669
10670         * linux-proc.c: New file.  Implement child_pid_to_exec_file,
10671         so that attaching to a pid will automatically read the process's
10672         symbol file and shlibs.
10673         * Makefile.in: Add rule for linux-proc.o.
10674         * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
10675         * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
10676         * config/arm/linux.mh: Ditto.
10677         * config/i386/linux.mh: Ditto.
10678         * config/i386/x86-64linux.mh: Ditto.
10679         * config/ia64/linux.mh: Ditto.
10680         * config/m68k/linux.mh: Ditto.
10681         * config/mips/linux.mh: Ditto.
10682         * config/powerpc/linux.mh: Ditto.
10683         * config/sparc/linux.mh: Ditto.
10684
10685 2002-01-06  Pierre Muller  <muller@ics.u-strasbg.fr>
10686
10687         * win32-nat.c: Add i386-tdep.h dependency.
10688
10689 2002-01-07  Michael Snyder  <msnyder@redhat.com>
10690
10691         * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
10692         instead of bfd_get_arch_size.  Don't bail out just because
10693         there's no exec_bfd.
10694
10695         * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
10696         * p-valprint.c (pascal_object_print_value): Ditto.
10697         * somread.c (som_symtab_read): Ditto.
10698         * symfile.c (simple_free_overlay_region_table): Ditto.
10699         * valops.c (value_assign): Ditto.
10700
10701         * tracepoint.c (tracepoint_save_command): From Klee Dienes --
10702         use tilde_expand and strerror for opening save-tracepoints file.
10703
10704         * thread-db.c (thread_db_new_objfile): Indendation fix.
10705
10706         * infptrace.c (GDB_MAX_ALLOCA): New define.
10707         (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
10708         size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
10709         can be overridden with whatever value is appropriate to the host).
10710         * infttrace.c (child_xfer_memory): Add FIXME warning about use of
10711         alloca to allocate potentially large buffer.
10712         * rs6000-nat.c (child_xfer_memory): Ditto.
10713         * symm-nat.c (child_xfer_memory): Ditto.
10714         * x86-64-linux-nat.c (child_xfer_memory): Ditto.
10715
10716 2002-01-07  Jackie Smith Cashion  <jsmith@redhat.com>
10717
10718         From Nick Clifton  <nickc@redhat.com>
10719         * d10v-tdep.c: Set STACK_START to 0x200bffe.
10720
10721 2002-01-07  Michael Snyder  <msnyder@redhat.com>
10722
10723         * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
10724         Don't use exec_bfd if it's NULL.
10725
10726 2002-01-06  Mark Kettenis  <kettenis@gnu.org>
10727
10728         * valops.c (value_arg_coerce): Fix formatting.
10729
10730 2002-01-06  Andrew Cagney  <ac131313@redhat.com>
10731
10732         * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
10733         * gnu-nat.c: Ditto.
10734
10735 2002-01-06  Andrew Cagney  <ac131313@redhat.com>
10736
10737         * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
10738         arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
10739         i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
10740         ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
10741         z8k-coff have not been multi-arched.  Update z8k-coff build
10742         status.
10743
10744 2002-01-06  Andrew Cagney  <ac131313@redhat.com>
10745
10746         * MAINTAINERS: Mark a29k target as obsolete.
10747         * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
10748         (remote-mm.o, remote-udi.o): Obsolete.  Remove references in
10749         comments.
10750         * NEWS: Note that a29k targets are obsolete.
10751         * a29k-tdep.c: Mark as obsolete.
10752         * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
10753         a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
10754         a29k-*-vxworks* targets as obsolete.
10755         * remote-adapt.c: Obsolete.
10756         * remote-eb.c: Obsolete.
10757         * remote-mm.c: Obsolete.
10758         * remote-udi.c: Obsolete.
10759         * config/a29k/a29k-udi.mt: Obsolete.
10760         * config/a29k/a29k.mt: Obsolete.
10761         * config/a29k/tm-a29k.h: Obsolete.
10762         * config/a29k/tm-vx29k.h: Obsolete.
10763         * config/a29k/vx29k.mt: Obsolete.
10764
10765 2002-01-05  Andrew Cagney  <ac131313@redhat.com>
10766
10767         * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
10768         with BFD_ENDIAN_BIG.
10769
10770 2002-01-05  Andrew Cagney  <ac131313@redhat.com>
10771
10772         * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
10773         * configure, config.in: Re-generate.
10774         * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
10775         * defs.h: Do not include <endian.h>.
10776
10777 2002-01-05  Jason Thorpe  <thorpej@wasabisystems.com>
10778
10779         * acconfig.h (HAVE_PT_GETXMMREGS): New.
10780         * config.in: Regenerate.
10781         * configure.in: Update copyright years.
10782         Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
10783         * configure: Regenerate.
10784         * i386bsd-nat.c: Update copyright years.
10785         (fill_gregset): Use regcache_collect.
10786         (fetch_inferior_registers): Only fetch integer registers
10787         if requested to do so.  Add support for XMM registers
10788         using PT_GETXMMREGS.
10789         (store_inferior_registers): Only store integer registers
10790         if requested to do so.  Add support for XMM registers
10791         using PT_SETXMMREGS.
10792         * i386nbsd-nat.c (fetch_inferior_registers): Remove.
10793         (store_inferior_registers): Remove.
10794         (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
10795         (fetch_elfcore_registers): New function.
10796         (i386nbsd_elfcore_fns): New.
10797         (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
10798         * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
10799         i386bsd-nat.o.
10800         * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
10801         * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
10802         * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
10803         * config/i386/tm-nbsd.h: Update copyright years.
10804         (HAVE_SSE_REGS): Define.
10805         (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
10806         (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
10807         (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
10808         (SIGCONTEXT_PC_OFFSET): Remove.
10809         (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
10810
10811 2002-01-05  Andrew Cagney  <ac131313@redhat.com>
10812
10813         * configure.tgt: Remove powerpc-*-macos* target.
10814         * config/m68k/xm-mpw.h: Delete file.
10815         * config/xm-mpw.h: Delete file.
10816         * ser-mac.c: Delete file.
10817         * mpw-make.sed: Delete file.
10818         * mpw-config.in: Delete file.
10819         * mac-xdep.c: Delete file.
10820         * mac-gdb.r: Delete file.
10821         * mac-defs.h: Delete file.
10822         * mac-nat.c: Delete file.
10823         * config/powerpc/macos.mh: Delete file.
10824         * config/powerpc/macos.mt: Delete file.
10825         * config/powerpc/nm-macos.h: Delete file.
10826         * config/powerpc/tm-macos.h: Delete file.
10827         * source.c (openp, open_source_file): Remove obsolete code.
10828         * top.c (gdb_readline): Ditto.
10829         * utils.c (query): Ditto.
10830         * event-top.c (display_gdb_prompt): Ditto.
10831         * Makefile.in (ser-mac.o): Delete obsolete target.
10832         * NEWS: Update.
10833
10834 2002-01-04  Andrew Cagney  <ac131313@redhat.com>
10835
10836         * defs.h (BIG_ENDIAN): Delete macro definition.
10837         * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
10838         coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
10839         findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
10840         printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
10841         remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
10842         stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
10843         config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
10844         config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
10845         config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
10846         config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
10847         config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
10848         config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
10849         mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
10850         * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
10851         * gdbarch.c: Re-generate.
10852
10853 2002-01-04  Daniel Jacobowitz  <drow@mvista.com>
10854
10855         * thread-db.c (thread_db_new_objfile): Do not enable thread_db
10856         for core files.
10857
10858 2002-01-04  Jason Thorpe  <thorpej@wasabisystems.com>
10859
10860         * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
10861
10862 2002-01-04  Andrew Cagney  <ac131313@redhat.com>
10863
10864         * value.h (value_ptr): Delete typedef.
10865
10866 2002-01-04  Jason Thorpe  <thorpej@wasabisystems.com>
10867
10868         * i386nbsd-nat.c: Update copyright years.
10869         Include i386-tdep.h.
10870
10871 2002-01-04  Elena Zannoni  <ezannoni@redhat.com>
10872
10873         * stabsread.c: Update copyright years.
10874
10875         From Debashis Mahata <debashis.mahata@wipro.com>:
10876         (read_struct_fields): Deal with Sun C compiler erroneous stab
10877         output for structs and unions.
10878         Fix PR gdb/269.
10879
10880 2002-01-04  Daniel Jacobowitz  <drow@mvista.com>
10881
10882         * p-valprint.c: Include "cp-abi.h" for baseclass_offset
10883         prototype.
10884
10885 2002-01-04  Daniel Jacobowitz  <drow@mvista.com>
10886
10887         * cp-abi.c: Fix whitespace.
10888         (baseclass_offset): New wrapper function.
10889         * cp-abi.h (baseclass_offset): Add prototype.
10890         (struct cp_abi_ops): Add baseclass_offset pointer.
10891
10892         * valops.c (vb_match): Move to...
10893         * gnu-v2-abi.c (vb_match): here.
10894         * valops.c (baseclass_offset): Move to...
10895         * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
10896
10897         * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
10898
10899         * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
10900         * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
10901         * hpacc-abi.c (init_hpacc_ops): Likewise.
10902
10903 2002-01-04  Daniel Jacobowitz  <drow@mvista.com>
10904
10905         * valops.c (find_overload_match): Accept obj as a
10906         reference parameter.  Update it before returning.
10907         * value.h (find_overload_match): Update prototype.
10908         * eval.c (evaluate_subexp_standard): Pass object to
10909         find_overload_match by reference.
10910
10911 2002-01-03  Andrew Cagney  <ac131313@redhat.com>
10912
10913         * valarith.c: Replace value_ptr with struct value pointer.  Remove
10914         register attribute from value declarations.
10915         * valops.c: Ditto.
10916         * value.h: Ditto.
10917         * scm-lang.c (scm_lookup_name): Ditto.
10918
10919 2002-01-03  Michael Snyder  <msnyder@redhat.com>
10920
10921         Abstract the functionality of iterating over mapped memory
10922         regions into a general purpose iterator function.
10923         * procfs.c (iterate_over_mappings): New function, general purpose
10924         iterator for memory sections.
10925         (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
10926         (solib_mappings_callback): New function, callback for above.
10927         (info_proc_mappings): Reimpliment using iterate_over_mappings.
10928         (info_mappings_callback): New function, callback for above.
10929
10930         * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
10931
10932 2002-01-01  Mark Kettenis  <kettenis@gnu.org>
10933
10934         * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
10935         * i386-tdep.c: Include "elf-bfd.h".
10936         (process_note_abi_tag_sections): New function.
10937         (i386_gdbarch_init): Add code to recognize various OS/ABI
10938         combinations.
10939
10940         * maint.c (_initialize_maint_cmds): Add missing \ in
10941         string-literal.
10942
10943 For older changes see ChangeLog-2001
10944 \f
10945 Local Variables:
10946 mode: change-log
10947 left-margin: 8
10948 fill-column: 74
10949 version-control: never
10950 End: