* infcmd.c (print_vector_info, print_float_info): Move code that
[external/binutils.git] / gdb / ChangeLog
1 2002-11-09  Mark Kettenis  <kettenis@gnu.org>
2
3         * infcmd.c (print_vector_info, print_float_info): Move code that
4         checks whether the target has any registers and whether there is a
5         selected frame up, such that it is also used if a target provides
6         multi-arch definitions of these functions.
7
8 2002-11-08  Andrew Cagney  <ac131313@redhat.com>
9
10         * Makefile.in (DESTDIR): Define.
11         (install-only, install-gdbtk, uninstall-gdbtk): Add $(DESTDIR)
12         prefix.
13
14         * config/djgpp/fnchange.lst: 8.3 proof i386obsd-nat.c and
15         i386obsd-tdep.c.  Rename to "gdb.cxx", paths containing "gdb.c++".
16
17 2002-11-08  Andrew Cagney  <ac131313@redhat.com>
18
19         * i386-linux-tdep.c: Include "reggroups.h".
20         (i386_linux_register_reggroup_p): New function.
21         (i386_linux_init_abi): Set register_reggroup_p to
22         i386_linux_register_reggroup_p.
23         * i386-tdep.h (i386_register_reggroup_p): Declare.
24         * i386-tdep.c: Include "reggroups.h".
25         (i386_init_reggroups): New function.
26         (i386_add_reggroups): New function.
27         (i386_register_reggroup_p): New function.
28         (i386_sse_reggroup, i386_mmx_reggroup): New variables.
29         (_initialize_i386_tdep): Call i386_init_reggroups.
30         (i386_gdbarch_init): Set register_reggroup_p and add in the i386
31         specific reggroups.
32
33 2002-11-09  Mark Kettenis  <kettenis@gnu.org>
34
35         * infptrace.c (child_xfer_memory): Make use of the new PT_IO
36         request that's available in *BSD.
37
38         * i386-tdep.h (IS_FPU_CTRL_REGNUM): Remove.
39
40         * i387-tdep.c (i387_fill_fxsave): Use FOOFF_REGNUM instead of
41         FDOFF_REGNUM.
42
43 2002-11-08  Andrew Cagney  <ac131313@redhat.com>
44
45         * frame.c (set_unwind_by_pc): Use dummy_frame_register_unwind.
46         * dummy-frame.c (find_dummy_frame): Rename
47         generic_find_dummy_frame, make static.  Return the dummy frame
48         instead of the regcache.
49         (generic_find_dummy_frame): Re-implement using find_dummy_frame,
50         (cached_find_dummy_frame): New function.  Use find_dummy_frame.
51         (dummy_frame_register_unwind): Rename
52         generic_call_dummy_register_unwind.  Use cached_find_dummy_frame.
53         * dummy-frame.h (dummy_frame_register_unwind): Rename
54         generic_call_dummy_register_unwind.
55
56 2002-11-08  Mark Kettenis  <kettenis@gnu.org>
57
58         * config/i386/tm-i386v42mp.h: Remove file.  Move its contents,
59         except the inclusion of "i386/tm-i386.h", to...
60         * config/i386/nm-i386v42mp.h: ...here.
61         * config/i386/i386v42mp.mt (TM_FILE): Set to tm-i386.h.
62
63 2002-11-08  Andrew Cagney  <ac131313@redhat.com>
64
65         * Makefile.in (frame.o): Update dependencies.
66         * blockframe.c (current_frame, frame_obstack_alloc)
67         (frame_saved_regs_zalloc, get_current_frame)
68         (set_current_frame, create_new_frame)
69         (set_unwind_by_pc, get_next_frame)
70         (flush_cached_frames, reinit_frame_cache)
71         (frame_saved_regs_register_unwind)
72         (deprecated_generic_get_saved_register)
73         (get_prev_frame, get_frame_pc, get_frame_saved_regs)
74         (_initialize_blockframe): Move frame code from here...
75         * frame.c: ...to here.  Include "gdb_obstack.h", "gdbcore.h",
76         "annotate.h" and "dummy-frame.h".
77         (_initialize_frame): New function.
78
79 2002-11-08  Jim Blandy  <jimb@redhat.com>
80
81         * dwarf2read.c (read_func_scope): Restore list_in_scope properly
82         when we finish a function a context.
83         * buildsym.h (outermost_context_p): New macro.
84         (Bug analyzed by David Edelsohn.)
85
86 2002-11-08  Andrew Cagney  <ac131313@redhat.com>
87
88         * blockframe.c: Include "dummy-frame.h".
89         (struct dummy_frame, dummy_frame_stack)
90         (generic_find_dummy_frame, deprecated_generic_find_dummy_frame)
91         (generic_pc_in_call_dummy, deprecated_read_register_dummy)
92         (generic_push_dummy_frame, generic_save_dummy_frame_tos)
93         (generic_save_call_dummy_addr, generic_pop_current_frame)
94         (generic_pop_dummy_frame, generic_fix_call_dummy)
95         (generic_fix_call_dummy, generic_call_dummy_register_unwind): Move
96         dummy frame code from here...
97         * dummy-frame.c: ...to here.  New file.
98         * dummy-frame.h: New file.
99         (generic_call_dummy_register_unwind): Declare.
100         (generic_find_dummy_frame): Declare.
101         * Makefile.in (SFILES): Add dummy-frame.c.
102         (dummy-frame.o): Specify dependencies.
103         (dummy_frame_h): Define.
104         (COMMON_OBS): Add dummy-frame.o.
105         (blockframe.o): Update dependencies.
106
107 2002-11-08  Jim Blandy  <jimb@redhat.com>
108
109         * dwarf2read.c (read_func_scope): Restore local_symbols and
110         param_symbols after we finish the function context.  (Based on a
111         patch from David Edelsohn.)
112
113 2002-11-08  David Carlton  <carlton@math.stanford.edu>
114
115         * linespec.c (symbol_found): New function.
116         (minsym_found): New function.
117         (decode_line_1): Separate out some code into separate functions.
118
119 2002-11-08  Joel Brobecker  <brobecker@gnat.com>
120
121         * i386-tdep.c (i386_frameless_signal_p): Make non static for
122         the benefit of the interix target.
123         * i386-tdep.h (i386_frameless_signal_p): Declare.
124
125 2002-11-08  Andrew Cagney  <ac131313@redhat.com>
126
127         * i386-tdep.h (i386_linux_orig_eax_regnum_p): Delete stray
128         declaration that snuck in from change below.
129
130 2002-11-06  Andrew Cagney  <cagney@redhat.com>
131
132         * i386-tdep.c (i386_mmx_regnum_p): Rename mmx_regnum_p.  Update
133         all callers.
134         (i386_fp_regnum_p): New function.  Use instead of FP_REGNUM_P.
135         (i386_fpc_regnum_p): New function.  Use instead of FPC_REGNUM_P.
136         (i386_sse_regnum_p): New function.  Use instead of SSE_REGNUM_P.
137         (i386_mxcsr_regnum_p): new function.  Use instead of
138         MXCSR_REGNUM_P.
139         * i386-tdep.h (SSE_REGNUM_P): Delete macro.
140         (i386_sse_regnum_p): Declare.
141         (i386_mxcsr_regnum_p): Declare.
142         (FP_REGNUM_P, FPC_REGNUM_P): Delete macros.
143         (i386_fp_regnum_p, i386_fpc_regnum_p): Declare.
144         (IS_FP_REGNUM): Update definition.
145         (IS_FPU_CTRL_REGNUM): Update definition..
146         (IS_SSE_REGNUM): Update definition..
147         * i386v-nat.c (register_u_addr): Update.
148         * go32-nat.c (fetch_register): Update.
149         (store_register): Update.
150
151 2002-11-07  Joel Brobecker  <brobecker@gnat.com>
152
153         Preparation work to convert the hppa targets to multiarch partial.
154
155         * hppa-tdep.c: Add new functions replacing macro bodies from
156         config/pa/tm-hppa.h. These function will be used to initialize
157         the gdbarch structure. Import some comments from tm-hppa.h,
158         and place them where appropriate, to avoid loosing them when
159         we cleanup this file.
160         (hppa_reg_struct_has_addr): New function.
161         (hppa_inner_than): New function.
162         (hppa_stack_align): New function.
163         (hppa_pc_requires_run_before_use): New function.
164         (hppa_instruction_nullified): New function.
165         (hppa_register_byte): New function.
166         (hppa_register_virtual_type): New function.
167         (hppa_store_struct_return): New function.
168         (hppa_cannot_store_register): New function.
169         (hppa_frame_args_address): New function.
170         (hppa_frame_locals_address): New function.
171         (hppa_smash_text_address): New function.
172         (hppa_coerce_float_to_double): New function. Requires the inclusion
173         of "language.h".
174
175         * Makefile.in (hppa-tdep.o): Add dependency on language.h.
176
177         * tm-hppa.h (REG_STRUCT_HAS_ADDR): Change the definition of this
178         gdbarch-eligible macro to a call to the new associated function
179         created in hppa-tdep.c.
180         (INNER_THAN): Likewise.
181         (STACK_ALIGN): Likewise.
182         (PC_REQUIRES_RUN_BEFORE_USE): Likewise.
183         (INSTRUCTION_NULLIFIED): Likewise.
184         (REGISTER_BYTE): Likewise.
185         (REGISTER_VIRTUAL_TYPE): Likewise.
186         (STORE_STRUCT_RETURN): Likewise.
187         (CANNOT_STORE_REGISTER): Likewise.
188         (FRAME_ARGS_ADDRESS): Likewise.
189         (FRAME_LOCALS_ADDRESS): Likewise.
190         (SMASH_TEXT_ADDRESS): Likewise.
191         (COERCE_FLOAT_TO_DOUBLE): Likewise.
192         (ABOUT_TO_RETURN): Delete, as no longer used.
193
194 2002-11-07  Fernando Nasser  <fnasser@redhat.com>
195
196         * printcmd.c (disassemble_command): Remove obsolete function.
197         (_initialize_printcmd): Do not create disassemble command here.
198         * cli/cli-cmds.c (disassemble_command): New function.  Implements
199         disassemble command.
200         (init_cli_cmds): Create disassemble command here instead.
201
202 2002-11-07  Andrew Cagney  <ac131313@redhat.com>
203
204         * MAINTAINERS: Add Daniel Jacobowitz to global maintainers list.
205
206 2002-11-07  Andrew Cagney  <ac131313@redhat.com>
207
208         * regcache.h (regcache_cooked_read_using_offset_hack)
209         (regcache_cooked_write_using_offset_hack): Delete declarations.
210         (register_changed): Delete declaration.
211         * regcache.c (regcache_cooked_read_using_offset_hack)
212         (regcache_cooked_write_using_offset_hack): Delete functions.
213         (cooked_xfer_using_offset_hack): Delete function.
214         (register_changed): Delete function.
215
216 2002-11-07  Jim Blandy  <jimb@redhat.com>
217
218         * macroscope.c: #include "complaints.h".
219         (sal_macro_scope): Cope with filenames that appear in the symtabs,
220         but not in the macro table.
221         * Makefile.in (macroscope.o): Record dependency.
222
223 2002-11-07  Joel Brobecker  <brobecker@gnat.com>
224
225         * PROBLEMS: Document gdb/816 (unable to read core file on alpha-osf).
226
227 2002-11-07  Andrew Cagney  <ac131313@redhat.com>
228
229         * regcache.c (deprecated_registers_fetched): Update.
230         * regcache.h (deprecated_registers_fetched): Rename
231         registers_fetched.
232         * remote-vxsparc.c (vx_read_register): Update.
233         * remote-vxmips.c (vx_read_register): Update.
234         * remote-vx68.c (vx_read_register): Update.
235         * irix5-nat.c (fetch_core_registers): Update.
236         * mipsm3-nat.c (fetch_inferior_registers): Update.
237         * sun3-nat.c (fetch_inferior_registers): Update.
238         * symm-nat.c (fetch_inferior_registers): Update.
239         * ns32knbsd-nat.c (fetch_inferior_registers): Update.
240         (fetch_core_registers): Update.
241         (fetch_kcore_registers): Update.
242         * mips-nat.c (fetch_inferior_registers): Update.
243         * corelow.c (get_core_registers): Update.
244         * a68v-nat.c (fetch_inferior_registers): Update.
245
246 2002-11-06  Joel Brobecker  <brobecker@gnat.com>
247
248         Put in place the framework necessary for multiarching the hppa targets.
249         * hppa-tdep.c (hppa_gdbarch_init): New function.
250         (hppa_dump_tdep): New function.
251         (_initialize_hppa_tdep): Register the hppa gdbarch init function and
252         tdep structure dumper.
253         * config/pa/tm-hppa.h (GDB_MULTI_ARCH): New macro, defined to 0
254         until the multi-arching conversion has partially been completed.
255
256 2002-11-06  Andrew Cagney  <ac131313@redhat.com>
257
258         * valops.c (value_assign): Merge lval_register case into
259         lval_reg_frame_relative.  Use frame_register and
260         regcache_cooked_write instead of get_saved_register and
261         write_register_bytes.  After flushing the register cache, try to
262         re-select the selected frame.
263
264 2002-11-06  Andrew Cagney  <ac131313@redhat.com>
265
266         * regcache.h (deprecated_register_valid): Rename register_valid.
267         * regcache.c: Update.
268         * ia64-aix-nat.c: Update.
269         * i386gnu-nat.c: Update.
270         * alpha-nat.c: Update.
271         * sparc-nat.c: Update.
272         * lynx-nat.c: Update.
273         * remote-mips.c: Update.
274
275 2002-11-06  Joel Brobecker  <brobecker@gnat.com>
276
277         * hppa-tdep.c (_initialize_hppa_tdep): Move function body
278         to end of file, to be more consistent with the pratice followed
279         by other targets.
280
281 2002-11-06  Andrew Cagney  <ac131313@redhat.com>
282
283         * infcmd.c: Include "reggroups.h" and <ctype.h>.
284         (print_float_info): Print registers in float_reggroup.
285         (print_vector_info): Print registers in vector_reggroup.
286         (default_print_registers_info): When all, print registers in
287         all_reggroup.  Otherwize, print registers in general_reggroup.
288         (registers_info): Rewrite.  Add support for register groups.
289         Eliminate a goto.
290
291 2002-11-06  Elena Zannoni  <ezannoni@redhat.com>
292
293         * symtab.c (methods_info): Delete. It has been ifdeffed out for
294         ages.
295         (symtab_symbol_info): Remove eons old ifdeffed out code.
296         (_initialize_symtab): Remove prehistoric disabled 'info methods'
297         command.
298
299 2002-11-06  Theodore A. Roth  <troth@openavr.org>
300
301         * c-exp.y: Add missing semi-colons.
302         * f-exp.y: Add missing semi-colons.
303         * m2-exp.y: Add missing semi-colons.
304         * p-exp.y: Add missing semi-colons.
305         Add empty action to start rule to avoid a type clash error when
306         building with bison >= 1.50.
307
308 2002-11-06  Jim Blandy  <jimb@redhat.com>
309
310         * macrotab.h (struct macro_source_file): Doc fix.
311
312 2002-11-05  Jeff Johnston  <jjohnstn@redhat.com>
313
314         * varobj.c (child_exists, cplus_number_of_children): Change
315         STREQ macro references to strcmp.
316         (cplus_name_of_child): Change code to handle the fact that
317         fields are not necessarily contiguous with regards to their 
318         access control. This is a fix for PR gdb/792.
319
320 2002-11-05  Andrew Cagney  <ac131313@redhat.com>
321
322         * gdbarch.sh (GET_SAVED_REGISTER): Change to a predicate function.
323         * gdbarch.h, gdbarch.c: Regnerate.
324         * frame.h (frame_register): Declare.
325         * frame.c (frame_register): New function.
326         (get_saved_register): Test GET_SAVED_REGISTER_P before calling
327         GET_SAVED_REGISTER, otherwize call
328         generic_unwind_get_saved_register.
329         (frame_register_read): Use frame_register instead of
330         get_saved_register.
331
332 2002-11-05  Elena Zannoni  <ezannoni@redhat.com>
333         
334         From Jim Ingham  <jingham@apple.com>:
335         * event-top.c (gdb_disable_readline): New function.
336         (_initialize_event_loop): Move comment.
337
338 2002-11-05  Elena Zannoni  <ezannoni@redhat.com>
339
340         * event-loop.c (start_event_loop): Add comment.
341         Update copyright.
342
343 2002-11-05  Andrew Cagney  <ac131313@redhat.com>
344
345         * infcmd.c (default_print_registers_info): Do not call
346         PRINT_REGISTER_HOOK.
347
348 2002-11-05  Andrew Cagney  <ac131313@redhat.com>
349
350         * sparc-tdep.c (sparc_print_register_hook): Make static.
351         (sparc_print_registers_info): New function.
352         (sparc_do_registers_info): New function.
353         (sparclet_print_registers_info): New function.
354         (sparclet_do_registers_info): New function.
355         (do_sparc_print_registers_info): New function.
356         (sparc_print_registers): New static function, clone of infcmd.c's
357         default_print_registers_info.
358         * config/sparc/tm-sparclet.h (PRINT_REGISTER_HOOK): Delete macro.
359         (sparclet_do_registers_info): Declare.
360         (DEPRECATED_DO_REGISTERS_INFO): Re-define.
361         * config/sparc/tm-sparc.h (DEPRECATED_DO_REGISTERS_INFO):
362         Re-define.
363         (sparc_do_registers_info): Declare.
364         (PRINT_REGISTER_HOOK): Delete macro.
365         (sparc_print_register_hook): Delete declaration.
366
367 2002-11-05  David Carlton  <carlton@math.stanford.edu>
368
369         * symtab.c (lookup_symbol_aux): Move chunks of code into separate
370         functions.
371         (lookup_symbol_aux_local): New function.
372         (lookup_symbol_aux_symtabs): New function.
373         (lookup_symbol_aux_psymtabs): New function.
374
375 2002-11-05  David Carlton  <carlton@math.stanford.edu>
376
377         * symtab.c (lookup_symbol_aux): In minsym sections, don't use the
378         previous values of 'objfile' and 'block'.
379
380 2002-11-05  Pierre Muller  <muller@ics.u-strasbg.fr>
381
382         * values.c (value_change_enclosing_type): Set 
383         enclosing_type field correctly also for the case where 
384         more memory needs to be allocated.
385
386 2002-11-03  Mark Kettenis  <kettenis@gnu.org>
387
388         * i387-tdep.c (i387_print_float_info): Call fputs_filtered instead
389         of puts_filtered.
390
391         * i387-tdep.c (i387_print_float_info): Replace calls to
392         register_read and deprecated_read_register_gen with calls to
393         frame_register_read, and make the necessary adjustments to the
394         surrounding code.
395
396 2002-11-02  Andrew Cagney  <ac131313@redhat.com>
397
398         * gdbarch.sh (register_reggroup_p): Allow default value.
399         * gdbarch.h, gdbarch.c: Regenerate.
400
401 2002-11-02  Andrew Cagney  <ac131313@redhat.com>
402
403         * regcache.h: Add coment indicating replacements for deprecated
404         functions.
405
406 2002-11-02  Andrew Cagney  <cagney@redhat.com>
407
408         * reggroups.h, reggroups.c: New files.
409         * regcache.c: Include "reggroups.h".
410         (enum regcache_dump_what): Add `regcache_dump_groups'.
411         (regcache_dump): Contract size of the "Type" column.  When
412         specified, dump the register's groups.
413         (maintenance_print_register_groups): New function.
414         (_initialize_regcache): Add command `maint print register-groups'.
415         * Makefile.in (COMMON_OBS): Add reggroups.o
416         (SFILES): Add reggroups.c.
417         (reggroups_h): Define.
418         (regcache.o, gdbarch.o): Update dependencies.
419         (reggroups.o): Specify dependencies.
420         * gdbarch.sh (register_reggroup_p): Add pure multi-arch method.
421         Add opaque declaration for `struct reggroup' in generated .h file.
422         Include "reggroups.h" in generated .c file.
423         gdbarch.h, gdbarch.c: Re-generate.
424
425 2002-11-02  Andrew Cagney  <cagney@redhat.com>
426
427         * regcache.h (deprecated_read_register_gen): Rename
428         read_register_gen.
429         (deprecated_write_register_gen): Rename write_register_gen.
430         * i387-tdep.c: Update.
431         * x86-64-linux-nat.c: Update
432         * wince.c: Update.
433         * thread-db.c: Update.
434         * win32-nat.c: Update.
435         * mips-tdep.c: Update.
436         * d10v-tdep.c: Update.
437         * cris-tdep.c: Update.
438         * remote-sim.c: Update.
439         * remote-rdi.c: Update.
440         * remote-rdp.c: Update.
441         * frame.c: Update.
442         * target.c: Update.
443         * blockframe.c: Update.
444         * x86-64-tdep.c: Update.
445         * xstormy16-tdep.c: Update.
446         * sh-tdep.c: Update.
447         * s390-tdep.c: Update.
448         * rs6000-tdep.c: Update.
449         * sparc-tdep.c: Update.
450         * i386-tdep.c: Update.
451         * dwarf2cfi.c: Update.
452         * regcache.c: Update.
453
454 2002-11-01  Joel Brobecker  <brobecker@gnat.com>
455
456         New interix-specific files:
457         * config/i386/nm-interix.h: New file.
458         * config/i386/interix.mh: New file.
459         * config/i386/interix.mt: New file.
460         * i386-interix-nat.c: New file.
461         * i386-interix-tdep.c: New file.
462
463 2002-11-01  Andrew Cagney  <cagney@redhat.com>
464
465         * frame.h (deprecated_generic_get_saved_register): Rename
466         generic_get_saved_register.
467         * blockframe.c (deprecated_generic_get_saved_register): Update.
468         * xstormy16-tdep.c (xstormy16_get_saved_register): Update.
469         (xstormy16_frame_saved_register): Update.
470         * sh-tdep.c (sh_gdbarch_init): Update.
471         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
472         * ia64-tdep.c (ia64_get_saved_register): Update.
473         * cris-tdep.c (cris_gdbarch_init): Update.
474         * config/m32r/tm-m32r.h (GET_SAVED_REGISTER): Update.
475         * arm-tdep.c (arm_gdbarch_init): Update.
476
477 2002-10-31  Daniel Jacobowitz  <drow@mvista.com>
478
479         * lin-lwp.c (lin_lwp_resume): Remove resume_all test for !step.
480
481 2002-10-31  Daniel Jacobowitz  <drow@mvista.com>
482
483         * i386-linux-tdep.c (i386_linux_pc_in_sigtramp): Check for
484         trampolines in sigaction.
485
486 2002-10-31  Andrew Cagney  <cagney@redhat.com>
487
488         * h8300-tdep.c: Include "gdb_assert.h".
489         (h8300_print_register): Add gdbarch, file and frame parameters.
490         Use frame_read_unsigned_register to read the register's value.
491         Use fprintf_filtered to display output.
492         (h8300_print_registers_info): Replace h8300_do_registers_info.
493         (h8300_gdbarch_init): Set print_registers_info.
494
495 2002-10-31  Andrew Cagney  <cagney@redhat.com>
496
497         * frame.c (frame_read_unsigned_register): New function.
498         (frame_read_signed_register): New function.
499         * frame.h (frame_read_unsigned_register): Declare.
500         (frame_read_signed_register): Declare.
501
502 2002-10-31  Andrew Cagney  <cagney@redhat.com>
503
504         * h8500-tdep.c (h8500_print_registers_info): New static function,
505         clone of infcmd.c's default_print_registers_info.
506         (h8500_do_registers_info): New funtion.
507         (h8500_print_register_hook): Rename print_register_hook, make
508         static.
509
510         * config/h8500/tm-h8500.h: Update copyright.
511         (DEPRECATED_DO_REGISTERS_INFO): Define.
512         (h8500_do_registers_info: Declare.
513         (PRINT_REGISTER_HOOK): Delete macro.
514         (print_register_hook): Delete function.
515
516 2002-10-31  Andrew Cagney  <cagney@redhat.com>
517
518         * z8k-tdep.c (z8k_print_register_hook): Make static.
519         (z8k_print_registers_info): New static function, clone of
520         infcmd.c's default_print_registers_info.
521         (z8k_do_registers_info): New function.  Wrap
522         z8k_print_registers_info.
523         * config/z8k/tm-z8k.h: Update copyright.
524         (PRINT_REGISTER_HOOK): Delete macro.
525         (z8k_print_register_hook): Delete declaration.
526         (DEPRECATED_DO_REGISTERS_INFO): Define.
527         (z8k_do_registers_info): Declare.
528
529 2002-10-30  Joel Brobecker  <brobecker@gnat.com>
530
531         * hppa-tdep.c (find_function_in_inferior): Remove this extern,
532         as this is already provided by value.h, and was actually causing
533         a compilation error because of a conflict in parameter type
534         declaration due to a missing const keyword.
535         (low_text_segment_addres): Fix a compilation warning.
536
537 2002-10-29  Daniel Jacobowitz  <drow@mvista.com>
538
539         * mips-linux-nat.c (mips_linux_cannot_fetch_register): Don't fetch
540         registers without a name.
541         (mips_linux_cannot_store_register): Don't store registers without
542         a name.
543
544 2002-10-28  David Carlton  <carlton@math.stanford.edu>
545
546         * symtab.c (find_addr_symbol): Delete.  (It was already commented
547         out.)
548         * symtab.h: Delete prototype for find_addr_symbol.
549
550 2002-10-26  Andrew Cagney  <cagney@redhat.com>
551
552         * gdbarch.sh (DEPRECATED_DO_REGISTERS_INFO): Rename
553         DO_REGISTERS_INFO.
554         gdbarch.h, gdbarch.c: Re-generate.
555         * infcmd.c (default_print_registers_info): Update reference.
556         * mips-tdep.c (mips_gdbarch_init): Set deprecated_do_registers_info.
557         (mips_dump_tdep): Do not print DO_REGISTERS_INFO.
558         * sh-tdep.c (sh_gdbarch_init): Ditto.
559         * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
560         * h8300-tdep.c (h8300_gdbarch_init): Ditto.
561
562 2002-10-26  Mark Kettenis  <kettenis@gnu.org>
563
564         * x86-64-tdep.c (x86_64_init_abi): Set init_extra_frame_info to
565         cfi_init_extra_frame_info.
566         * x86-64-tdep.h (x86_64_init_extra_frame_info): Remove prototype.
567         * x86-64-linux-tdep.c (x86_64_init_extra_frame_info): Remove function.
568
569         * x86-64-tdep.c (x86_64_init_abi): Add calls to override the i386
570         target where necessary.  Add more comments and remove the ones
571         that don't provide any useful information.
572
573         * i386-tdep.c (i386_frame_saved_pc): Replace call to
574         deprecated_read_register_dummy with
575         frame_unwind_unsigned_register.
576
577         * i386-tdep.c (i386_extract_struct_value_address): Use
578         regcache_raw_read_unsigned instead of
579         regcache_cooked_read_unsigned since we know that the register
580         we're reading isn't a pseudo register.  Rename variable 'val' into
581         the more descriptive 'addr'.
582
583         * x86-64-tdep.c: Fix some formatting problems, mostly in comments.
584         (x86_64_push_return_address): Add comment.
585         (x86_64_pop_frame): Make static.
586         (examine_argument): Clarify comment.
587         (x86_64_skip_prologue): Make prolog_expact variable static.
588
589         * dwarf2cfi.c: Fix some formatting problems.
590         (context_cpy, read_encoded_pointer): Clarify comments.
591
592         * x86-64-tdep.c (x86_64_breakpoint_from_pc): Constify.
593         (x86_64_init_abi): Move set_gdbarch_* calls that overlap with the
594         i386 target back into x86_64_gdbarch_init.  Add some comments and
595         remove meaningless ones.
596
597 2002-10-25  Andrew Cagney  <cagney@redhat.com>
598
599         * complaints.h (struct deprecated_complaint): Rename `struct
600         complaint'.
601         * complaints.c (complain): Update.
602         * remote-vx68.c, remote-vxmips.c, remote-vxsparc.c: Delete
603         incorrect comment indicating that "symfile.h" was being included
604         for the `struct complaint' definition.
605         * remote-vx.c: Update.
606         * objc-lang.c: Update.
607         * xcoffread.c: Update.
608         * hpread.c: Update.
609         * mdebugread.c: Update.
610         * stabsread.c: Update.
611         * dwarf2read.c: Update.
612         * dwarfread.c: Update.
613         * elfread.c: Update.
614         * coffread.c: Update.
615         * stabsread.h: Update.
616         * dbxread.c: Update.
617         * buildsym.c: Update.
618         * gdbtypes.c: Update.
619         * macrotab.c: Update.
620
621 2002-10-25  Mark Kettenis  <kettenis@gnu.org>
622
623         * x86-64-tdep.c (x86_64_gdbarch_init): Make a bit more similar to
624         the version in i386-tdep.c.  Move set_gdbarch_* calls out into...
625         (x86_64_init_abi): ...new function.
626
627         * Makefile.in (i386v-nat.o): Add $(i386_tdep_h).
628         * i386v-nat.c: Include "i386-tdep.h".
629
630 2002-10-25  Andrew Cagney  <cagney@redhat.com>
631
632         * gdbtypes.c (address_space_name_to_int): Update.
633         (address_space_int_to_name): Update.
634         * gdbarch.sh (address_class_type_flags_to_name): Change to a pure
635         multi-arch predicate.
636         (address_class_name_to_type_flags): Ditto.
637         * gdbarch.h, gdbarch.c: Re-generate.
638         
639         * MAINTAINERS: Check all warnings when h8300hms and alpha-elf.
640
641 2002-10-24  Martin M. Hunt  <hunt@redhat.com>
642
643         * utils.c (string_to_core_addr): Revert patch from 11 Oct.
644
645 2002-10-24  Elena Zannoni  <ezannoni@redhat.com>
646
647         * symtab.h (INIT_SAL): Delete macro.
648         (init_sal): Export.
649         * symtab.c (init_sal): New function.
650
651         * ada-lang.c (ada_finish_decode_line_1): Change INIT_SAL macro
652         to init_sal function call.
653         (find_sal_from_funcs_and_line): Ditto.
654         (all_sals_for_line): Ditto. 
655         * breakpoint.c (create_internal_breakpoint): Ditto. 
656         (create_fork_vfork_event_catchpoint): Ditto. 
657         (create_exec_event_catchpoint): Ditto. 
658         (parse_breakpoint_sals): Ditto. 
659         (watch_command_1): Ditto. 
660         (handle_gnu_4_16_catch_command): Ditto.
661         (clear_command): Ditto. 
662         * hppa-tdep.c (child_enable_exception_callback): Ditto. 
663         * infcmd.c (run_stack_dummy): Ditto. 
664         * infrun.c (process_event_stop_test): Ditto.
665         (check_sigtramp2): Ditto.
666         (step_over_function): Ditto. 
667         * linespec.c (decode_line_2): Ditto. 
668         (decode_line_1): Ditto. 
669         * source.c (line_info): Ditto. 
670         * symtab.c (find_pc_sect_line): Ditto.
671
672 2002-10-24  Michal Ludvig  <mludvig@suse.cz>
673
674         * dwarf2cfi.c (struct context)
675         (struct context_reg): Moved to dwarf2cfi.h
676         (context_alloc, frame_state_alloc, context_cpy):
677         Made extern instead of static, removed prototypes.
678         * dwarf2cfi.h (struct context)
679         (struct context_reg): New, moved from dwarf2cfi.c
680         (context_alloc, frame_state_alloc, context_cpy):
681         New prototypes.
682         * x86-64-linux-tdep.c (x86_64_linux_sigtramp_saved_pc):
683         Changed from static to extern.
684         (LINUX_SIGINFO_SIZE, LINUX_SIGCONTEXT_PC_OFFSET)
685         (LINUX_SIGCONTEXT_FP_OFFSET)
686         (LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Adjusted.
687         (x86_64_linux_in_sigtramp, x86_64_linux_frame_chain)
688         (x86_64_init_frame_pc, x86_64_init_extra_frame_info): New.
689         * x86-64-tdep.c (x86_64_gdbarch_init): Several
690         set_gdbarch_*() calls now use x86-64 specific functions 
691         instead of DWARF2 CFI ones.
692         * x86-64-tdep.h (x86_64_linux_in_sigtramp)
693         (x86_64_linux_frame_chain, x86_64_init_frame_pc)
694         (x86_64_init_extra_frame_info): New prototypes.
695         
696 2002-10-23  David Carlton  <carlton@math.stanford.edu>
697
698         * linespec.c: #include "parser-defs.h".
699         Delete prototype for find_template_name_end.
700         * Makefile.in (linespec.o): Depend on $(parser_defs_h).
701
702 2002-10-23  Jeff Johnston  <jjohnstn@redhat.com>
703
704         * NEWS: add recent mi fixes.
705         * varobj.c (struct varobj): Add new "updated" flag.
706         (new_variable): Default "updated" flag to 0.
707         (varobj_set_value): Set "updated" flag to 1 if value
708         changes.
709         (varobj_update): Check varobj "updated" flag before
710         comparing old and refreshed values.  Fix for
711         PR gdb/702.
712
713 2002-10-23  David Carlton  <carlton@math.stanford.edu>
714
715         * parse.c (parse_exp_1): Use BLOCK_START.
716         * x86-64-tdep.c (x86_64_skip_prologue): Use BLOCK_END,
717         SYMBOL_BLOCK_VALUE.
718         * objc-lang.c (find_methods): Use BLOCK_START, BLOCK_END.
719
720 2002-10-23  David Carlton  <carlton@math.stanford.edu>
721
722         * symtab.c: Delete cplusplus_hint.
723         Delete prototype for find_template_name_end.
724
725 2002-10-23  Elena Zannoni  <ezannoni@redhat.com>
726
727         * symtab.h: Update comment.
728
729 2002-10-23  Michael Snyder  <msnyder@redhat.com>
730
731         * printcmd.c (address_info): Restore quotes in output.
732         * valops.c (value_of_local): Restore quotes in error message.
733
734 2002-10-23  Elena Zannoni  <ezannoni@redhat.com>
735
736         * symtab.c (symbol_demangled_name): New function.
737         * symtab.h (SYMBOL_DEMANGLED_NAME): Simplify macro, by
738         turning most of it into a function.
739         (symbol_demangled_name): Export.
740
741 2002-10-23  Michael Snyder  <msnyder@redhat.com>
742
743         * valops.c (value_of_local): Restore quotes in error message.
744
745 2002-10-23  Elena Zannoni  <ezannoni@redhat.com>
746
747         * symtab.c (symbol_init_language_specific): New function.
748         * symtab.h (SYMBOL_INIT_LANGUAGE_SPECIFIC): Simplify macro, by
749         turning most of it into a function.
750         (symbol_init_language_specific): Export.
751
752 2002-10-23  David Carlton  <carlton@math.stanford.edu>
753
754         * dwarf2read.c (dwarf_tag_name): Add DWARF 3 names.
755         (dwarf_attr_name): Ditto.
756         (dwarf_type_encoding_name): Ditto.
757         (scan_partial_symbols): Descend into DW_TAG_namespace entries.
758         (process_die): Handle DW_TAG_namespace,
759         DW_TAG_imported_declaration, DW_TAG_imported_module.
760         (read_namespace): New function.
761
762 2002-10-22  Joel Brobecker  <brobecker@gnat.com>
763
764         * configure.in: Define NEW_PROC_API on Interix too.
765         * configure: Regenerate.
766
767 2002-10-21  Joel Brobecker  <brobecker@gnat.com>
768
769         * configure: Regenerate using the proper version of autoconf.
770
771 2002-10-21  Elena Zannoni  <ezannoni@redhat.com>
772
773         * findvar.c (read_var_value): Temporarily disable TLS code, until
774         complete TLS support is added.
775
776 2002-10-21  Jim Blandy  <jimb@redhat.com>
777             Elena Zannoni  <ezannoni@redhat.com>
778
779         * symtab.h (address_class): Re-add LOC_THREAD_LOCAL_STATIC
780         for thread local storage locations.
781         (struct symbol): Add objfile field.
782         (SYMBOL_OBJFILE): Define.
783         * dwarf2read.c (is_thread_local): New static variable.
784         (new_symbol): If variable is in thread local fill in address class
785         and objfile appropriately.
786         (decode_locdesc): Recognize and handle DW_OP_GNU_push_tls_address
787         stack operation.
788         * printcmd.c (address_info): Print the information for thread
789         local storage variable.
790         * findvar.c (read_var_value): In case of thread local variable,
791         defer to the target vector code to compute address.
792
793 2002-10-21  Elena Zannoni  <ezannoni@redhat.com>
794
795         * solib-svr4.c (svr4_fetch_objfile_link_map): New function.
796         * solib-svr4.h (svr4_fetch_objfile_link_map): Export.   
797
798 2002-10-21  Elena Zannoni  <ezannoni@redhat.com>
799
800         * symtab.h (address_class):  Rename
801         LOC_THREAD_LOCAL_STATIC to LOC_HP_THREAD_LOCAL_STATIC.
802         * hpread.c (hpread_process_one_debug_symbol): Ditto.
803         * printcmd.c (address_info): Ditto.
804         * findvar.c (symbol_read_needs_frame, read_var_value): Ditto.
805
806 2002-10-20  Mark Kettenis  <kettenis@gnu.org>
807
808         * i386bsd-nat.c (i386bsd_dr_set, i386bsd_dr_get_status): Use
809         DBREG_DRX macro to acces debug registers.
810
811         * Makefile.in (i386obsd-tdep.o): New target.
812
813         * solib-sunos.c: Include "bcache.h" and "regcache.h".
814         * Makefile.in (solib-sunos.o): Add $(bcache_h) and $(regcache_h).
815
816         * configure.tgt (i[3456]86-*-openbsd*): Set gdb_target to obds.
817         * config/i386/obsd.mt: New file.
818         * i386bsd-nat.c (_initialize_i386bsd_nat): Introduce
819         i386obsd_sc_pc_offset and i386obsd_sc_sp_offset;
820         * i386obsd-nat.c (_initialize_i386obsd_nat): Set
821         i386obsd_sigtramp_start and i386obsd_sigtramp_end instead of
822         i386nbsd_sigtramp_start and i386nbsd_sigtramp_end.
823         * i386obsd-tdep.c: New file.
824
825 2002-10-19  Adam Fedor  <fedor@gnu.org>
826
827         * objc-exp.y (name_not_typename): Fix invalid comment.  
828
829 2002-10-20  Mark Kettenis  <kettenis@gnu.org>
830
831         * solib-sunos.c (allocate_rt_common_objfile): Use bcache_xmalloc
832         to allocate partial syms and macro byte caches.
833
834 2002-10-18  David Carlton  <carlton@math.stanford.edu>
835
836         * symtab.h: Delete 'struct source' and 'struct sourcevector'.
837
838 2002-10-18  Adam Fedor  <fedor@gnu.org>
839
840         * stabsread.c (find_name_end): New function.
841         (define_symbol): Use it.
842
843 2002-10-18  Daniel Jacobowitz  <drow@mvista.com>
844
845         * config/alpha/nm-fbsd.h (CANNOT_STEP_BREAKPOINT): Define to 1.
846         * config/alpha/nm-linux.h (CANNOT_STEP_BREAKPOINT): Define to 1.
847         * config/alpha/nm-nbsd.h (CANNOT_STEP_BREAKPOINT): Define to 1.
848         * config/alpha/nm-osf.h (CANNOT_STEP_BREAKPOINT): Define to 1.
849
850 2002-10-17  David Carlton  <carlton@math.stanford.edu>
851
852         * symfile.h: Add opaque declaration for struct obstack.
853         Declare obsavestring to take a const char *.
854         * symfile.c (obsavestring): Make first argument a const char *.
855
856 2002-10-16  Adam Fedor  <fedor@gnu.org>
857
858         * breakpoint.c (parse_breakpoint_sals): Ignore ObjC method
859         names when matching breakpoints in current file.
860
861 2002-10-16  Kevin Buettner  <kevinb@redhat.com>
862
863         * dwarf2read.c (dwarf2_invalid_pointer_size): New complaint.
864         (read_tag_pointer_type): Add address class support.
865         * gdbarch.sh (ADDRESS_CLASS_TYPE_FLAGS)
866         (ADDRESS_CLASS_TYPE_FLAGS_TO_NAME, ADDRESS_CLASS_NAME_TO_TYPE_FLAGS):
867         New methods.
868         * gdbarch.h, gdbarch.c: Regenerate.
869         * gdbtypes.c (address_space_name_to_int, address_space_int_to_name)
870         (make_type_with_address_space, recursive_type_dump): Add address
871         class support.
872         * gdbtypes.h (TYPE_FLAG_ADDRESS_CLASS_1, TYPE_FLAG_ADDRESS_CLASS_2)
873         (TYPE_FLAG_ADDRESS_CLASS_ALL, TYPE_ADDRESS_CLASS_1)
874         (TYPE_ADDRESS_CLASS_2, TYPE_ADDRESS_CLASS_ALL): New defines
875
876 2002-10-16  Klee Dienes  <kdienes@apple.com>
877
878         * stabsread.c (read_tilde_fields): Use name[sizeof(vptr_name)-2]
879         to get the last character of a char[] buffer, not
880         name[sizeof(vptr_name)-1].
881
882 2002-10-14  Adam Fedor  <fedor@gnu.org>
883
884         * symtab.h: New objc_specific struct.
885         (SYMBOL_INIT_LANGUAGE_SPECIFIC): Handle ObjC.
886         (SYMBOL_DEMANGLED_NAME): Likewise.
887
888 2002-10-14  Adam Fedor  <fedor@gnu.org>
889
890         * symfile.c (init_filename_language_table): Add ObjC file extension.
891
892 2002-10-14  Adam Fedor  <fedor@gnu.org>
893
894         * utils.c (puts_filtered_tabular): New function.
895         (fprintf_symbol_filtered): Get ObjC demangled name.
896         * defs.h (puts_filtered_tabular): Declared.
897
898 2002-10-14  Kevin Buettner  <kevinb@redhat.com>
899
900         * c-lang.h (c_type_print_varspec_prefix): Delete.
901         * c-typeprint.c (c_type_print_varspec_prefix): Make static.  Add
902         ``need_post_space'' parameter.  Adjust all callers.
903
904 2002-10-14  Daniel Jacobowitz  <drow@mvista.com>  
905  
906         * config/mips/nm-irix4.h (HAVE_NONSTEPPABLE_WATCHPOINT): Define to 1.
907         * config/mips/nm-irix5.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
908         * config/mips/tm-embed.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
909         * config/pa/nm-hppah.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
910
911 2002-10-13  Adam Fedor  <fedor@gnu.org>
912
913         * source.c (print_source_lines): Update comments.
914
915 2002-10-13  Adam Fedor  <fedor@gnu.org>
916
917         * valops.c (value_of_local): New function.
918         (value_of_this): Use it.
919         * value.h (value_of_local): Declared.
920
921 2002-10-13  Adam Fedor  <fedor@gnu.org>
922
923         * parse.c: (length_of_subexp, prefixify_subexp): Handle
924         OP_MSGCALL, OP_SELECTOR, OP_NSSTRING, and OP_SELF.
925
926 2002-10-12  Adam Fedor  <fedor@gnu.org>
927
928         * language.c (binop_result_type): Add language_objc to case.
929         (integral_type): Likewise.
930         (character_type): Likewise.
931         (string_type): Likewise.
932         (boolean_type): Likewise.
933         (structured_type): Likewise.
934         (binop_type_check): Likewise.
935
936 2002-10-11  Adam Fedor  <fedor@gnu.org>
937
938         * printcmd.c (address_info): Print 'self' for ObjC.
939
940 2002-10-11  Adam Fedor  <fedor@gnu.org>
941
942         * expression.h: New ops OP_NSSTRING, OP_SELECTOR, OP_MSGCALL, and
943         OP_SELF.
944
945 2002-10-11  Adam Fedor  <fedor@gnu.org>
946
947         * language.h (CAST_IS_CONVERSION): Add language_objc.
948
949 2002-10-11  Adam Fedor  <fedor@gnu.org>
950
951         * defs.h (enum language): Add language_objc.
952
953 2002-10-11  Klee Dienes  <kdienes@apple.com>
954
955         * corefile.c (read_memory_typed_address): New function.
956         * gdbcore.h (read_memory_typed_address): Add prototype.
957         * blockframe.c (sigtramp_saved_pc): Use read_memory_typed_address
958         to read a value destined for a CORE_ADDR, not read_memory_integer.
959         * f-valprint.c (f77_get_dynamic_upperbound): Ditto.
960         (f77_get_dynamic_lowerbound): Ditto.
961
962 2002-10-11  Martin M. Hunt  <hunt@redhat.com>
963
964         * utils.c (string_to_core_addr): After turning string into
965         a number, convert to a CORE_ADDR using INTEGER_TO_ADDRESS
966         which will do necessary sign-extension, etc.
967
968 2002-10-11  Daniel Jacobowitz  <drow@mvista.com>
969
970         * c-exp.y (THIS): Delete token and grammar rule.
971         (yylex): Don't return THIS.
972         * cp-valprint.c (vtbl_ptr_name_old): Delete.
973         (cp_is_vtbl_ptr_type): Don't check vtbl_ptr_name_old.
974         * demangle.c (cplus_markers): Update comment.  Put '$'
975         first.  Remove CPLUS_MARKER.
976         (_initialize_demangler): Don't call set_cplus_marker_for_demangling.
977         * jv-exp.y (THIS): Delete token and grammar rule.
978         (yylex): Don't return THIS.
979         * mips-tdep.c (mips_dump_tdep): Don't dump CPLUS_MARKER.
980         * objc-exp.y (THIS): Delete token and grammar rule.
981         (yylex): Don't return THIS.
982         * p-exp.y (yylex): Remove reference to CPLUS_MARKER.
983         * stabsread.c (vptr_name, vb_name): Replace CPLUS_MARKER with '$'.
984         (read_member_functions): Likewise for opname.
985         (read_tilde_fields): Use is_cplus_marker.
986
987         * defs.h (CPLUS_MARKER): Don't define.
988         * config/tm-sysv4.h (CPLUS_MARKER): Likewise.
989         * config/i386/xm-i386sco.h (CPLUS_MARKER): Likewise.
990         * config/mips/tm-irix3.h (CPLUS_MARKER): Likewise.
991         * config/mips/tm-irix6.h (CPLUS_MARKER): Likewise.
992         * config/rs6000/tm-rs6000.h (CPLUS_MARKER): Likewise.
993
994         * config/i386/tm-i386v4.h: Delete file.
995         * config/djgpp/fnchange.lst: Delete tm-i386v4.h.
996         * config/i386/tm-i386sol2.h: Include "i386/tm-i386.h" instead.
997         * config/i386/tm-i386v42mp.h: Include "i386/tm-i386.h" instead.
998         * config/i386/tm-ptx.h: Include "i386/tm-i386.h" instead.
999         * config/i386/i386gnu.mt (TM_FILE): Use tm-i386.h.
1000         * config/i386/i386sco5.mt (TM_FILE): Likewise.
1001         * config/i386/i386v4.mt (TM_FILE): Likewise.
1002         * config/i386/ncr3000.mt (TM_FILE): Likewise.
1003
1004 2002-10-10  Marko Mlinar  <markom@opencores.org>
1005
1006         * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C,
1007         accidentially not commited 2002-10-09
1008         * gdbarch.h, gdbarch.c: Re-generate.
1009
1010 2002-10-09  Marko Mlinar  <markom@opencores.org>
1011
1012         * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C.
1013         * gdbarch.sh (HAVE_NONSTEPPABLE_WATCHPOINT): Add.
1014         * gdbarch.h, gdbarch.c: Re-generate.
1015
1016 2002-10-08  Petr Sorfa <petrs@caldera.com>
1017
1018         Revised and re-submitted by John Wolfe <jlw@caldera.com>
1019
1020         Move the Dwarf 2 abbrev table to a per-compilation-unit structure,
1021         so we can work on more than one compilation unit at a time.  This
1022         helps prepare GDB to handle inter-CU die references.
1023         * dwarf2read.c (ABBREV_HASH_SIZE): moved definition forward in
1024         the code to be defined before struct comp_unit_head.
1025         (comp_unit_head): Added new members - offset, cu_head,
1026         begin_die, next and dwarf2_abbrevs.
1027         (dwarf2_abbrevs): Removed single static var; now member of
1028         struct comp_unit_head.
1029         dwarf2_build_psymtabs_hard): Complete new struct comp_unit_head
1030         members.
1031         (psymtab_to_symtab_1): Changed to work with the new
1032         struct comp_unit_head.
1033         (dwarf2_read_abbrevs): Now accepts a cu_header parameter and
1034         constructs the dwarf2_abbrevs[] inside the cu_header.
1035         (dwarf2_empty_abbrev_table): Now expects a ptr to a
1036         dwarf2_abbrev table to clean up.
1037         (dwarf2_lookup_abbrev): Now accepts a cu_header parameter and
1038         handling of dwarf2_abbrevs inside the cu_header.
1039         (read_partial_die): Now supports the call to the new
1040         dwarf2_lookup_abbrev.
1041         (read_full_die): Now supports the call to the new
1042         dwarf2_lookup_abbrev.
1043
1044 2002-10-06  Christopher Faylor  <cgf@redhat.com>
1045
1046         * Makefile.in (install-gdbtk): Add missing continuation backslash to
1047         insure that shell variables, such as "transformed_name" are propagated
1048         to later shell statements in rule.
1049
1050 2002-10-06  Mark Kettenis  <kettenis@gnu.org>
1051
1052         * config/i386/nm-i386sco.h: Add protection against
1053         multiple-inclusion.  Include "i386/nm-i386v.h".
1054         (REGISTER_U_ADDR): Remove define.
1055         (i386_register_u_addr): Remove prototype.
1056
1057 2002-10-04  Michael Snyder  <msnyder@redhat.com>
1058
1059         * m32r-stub.c (handle_exception): Make sure exception is "trap"
1060         before treating it as a single-step event.
1061
1062 2002-10-03  Adam Fedor  <fedor@gnu.org>
1063
1064         * objc-lang.c: ARI fixes.  Change string.h to gdb_string.h.
1065         (objc_demangle): Remove assignment in if statements, Replace
1066         free with xfree.
1067         (add_msglist): Likewise.
1068         (end_msglist): Likewise.
1069         (complare_selectors): Likewise.
1070         (selectors_info): Likewise.
1071         (compare_classes): Likewise.
1072         (classes_info): Likewise.
1073         (print_object_command): Likewise.
1074         (find_objc_msgcall_submethod): Replace PTR with void *.
1075         * objc-lang.h: Remove check for __STDC__.
1076
1077 2002-10-03  Jeff Johnston  <jjohnstn@redhat.com>
1078
1079         * ui-out.h (ui_out_field_fmt_int): New prototype.
1080         * ui-out.c (ui_out_field_fmt_int): New function allowing specification
1081         of field width and alignment.
1082         * stack.c (print_frame_info_base): When printing frame level, use
1083         ui_out_field_fmt_int with a width of 2 and left alignment.  Fix for
1084         PR gdb/192
1085
1086 2002-10-03  Jeff Johnston  <jjohnstn@redhat.com>
1087
1088         * MAINTAINERS: Add self to Write After Approval list.
1089
1090 2002-10-02  Elena Zannoni  <ezannoni@redhat.com>
1091
1092         * infcmd.c (interrupt_target_command_wrapper): Delete.
1093         (interrupt_target_command): Make non static.
1094         (nofp_registers_info): Make static.
1095         * stack.c (return_command_wrapper): Delete.
1096         (return_command): Make non static.
1097
1098 2002-10-02  Elena Zannoni  <ezannoni@redhat.com>
1099
1100         * event-top.c (gdb_setup_readline): New function. Code moved from
1101         _initialize_event_loop().
1102         (_initialize_event_loop): Call gdb_setup_readline().
1103
1104 2002-10-02  Andrew Cagney  <ac131313@redhat.com>
1105
1106         * infrun.c (resume): Convert #ifdef CANNOT_STEP_BREAKPOINT into C.
1107         * gdbarch.sh (CANNOT_STEP_BREAKPOINT): Add.
1108         * gdbarch.h, gdbarch.c: Re-generate.
1109
1110 2002-10-02  Daniel Jacobowitz  <drow@mvista.com>
1111
1112         Fix PR gdb/778
1113         * gdbtypes.c (fill_in_vptr_fieldno): Call check_typedef
1114         before recursing.
1115         * gnu-v3-abi.c (gnuv3_virtual_fn_field): Check return value
1116         of fill_in_vptr_fieldno.
1117
1118 2002-10-02  Elena Zannoni  <ezannoni@redhat.com>
1119
1120         * inferior.h (registers_info, stepi_command, nexti_command,
1121         continue_command, interrupt_target_command): Export from infcmd.c.
1122         * frame.h (args_info, selected_frame_level_changed_hook,
1123         return_command): Export from stack.c.
1124         * v850ice.c (stepi_command, nexti_command, continue_command): use
1125         prototypes from inferior.h.
1126         * tracepoint.c (registers_info, args_info, locals_info): Use
1127         prototypes from frame.h and inferior.h.
1128         * Makefile.in (mi-main.o): Add dependency on frame.h.
1129
1130 2002-10-02  Andrew Cagney  <ac131313@redhat.com>
1131
1132         * rs6000-tdep.c (rs6000_store_struct_return): Store struct_return
1133         value in register 3 adjusted by ppc_gp0_regnum.
1134
1135         * rs6000-tdep.c (skip_prologue): Bias alloca_reg by ppc_gp0_regnum.
1136
1137 2002-10-02  Marko Mlinar <markom@opencores.org>
1138
1139         * MAINTAINERS: Add myself to the Write After Approval list.
1140
1141 2002-10-01  Alexandre Oliva  <aoliva@redhat.com>
1142
1143         * mips-tdep.c (mips_find_abi_section): .mdebug.abi64 is the name
1144         of the section for the N64 ABI, fixed.
1145
1146         * config/mips/tm-irix6.h: Include solib.h.
1147
1148 2002-10-01  Elena Zannoni  <ezannoni@redhat.com>
1149
1150         * dwarf2read.c (dwarf_stack_op_name): Recognize more dwarf3 and
1151         GNU operators.
1152
1153 2002-10-01  Andrew Cagney  <ac131313@redhat.com>
1154
1155         * NEWS: Mention that MI syntax, selected by "mi" changed to "mi2"
1156         and that "mi0" syntax has been removed.
1157
1158 2002-09-30  David Carlton  <carlton@math.stanford.edu>
1159
1160         * Makefile.in (ppc-sysv-tdep.o): Depend on gdb_string_h.
1161         * ppc-sysv-tdep.c: #include "gdb_string.h".
1162         * remote-sds.c (getmessage): Add semicolon after 'retry' label to
1163         pacify GCC.
1164
1165 2002-10-01  Andrew Cagney  <ac131313@redhat.com>
1166
1167         * rs6000-tdep.c (rs6000_gdbarch_init): For powerpc:7400, fix
1168         "vrsave"'s register number.
1169
1170 2002-09-30  Andrew Cagney  <ac131313@redhat.com>
1171
1172         * mips-tdep.c (mips_frame_saved_pc): When a generic dummy frame,
1173         use frame_unwind_signed_register to obtain the PC.
1174         (mips_frame_chain): Handle a generic dummy frame.
1175         (mips_init_extra_frame_info): When a generic dummy frame, don't
1176         re-compute the frame base.
1177         (mips_pop_frame): Handle generic dummy frames.
1178         (mips_gdbarch_init): When generic dummy frames, set
1179         use_generic_dummy_frames, push_dummy_frame to
1180         generic_push_dummy_frame, pc_in_call_dummy to
1181         generic_pc_in_call_dummy, and save_dummy_frame_top_of_stack to
1182         generic_save_dummy_frame_tos.
1183
1184 2002-09-30  Andrew Cagney  <ac131313@redhat.com>
1185
1186         * blockframe.c (generic_find_dummy_frame): Rewrite.  Only test
1187         against TOP when TOP was explictly set.
1188         (generic_push_dummy_frame): Set TOP to zero.
1189
1190 2002-09-30  Elena Zannoni  <ezannoni@redhat.com>
1191
1192         * event-loop.c (start_event_loop): Rename variable 'result' to
1193         'gdb_result', to avoid conflicts with upcoming intepreters changes.
1194
1195 2002-09-30  Keith Seitz  <keiths@redhat.com>
1196
1197         * gdb-events.sh (selected_thread_changed): New event.
1198         * gdb-events.c: Regenerated.
1199         * gdb-events.h: Regenerated.
1200
1201 2002-09-30  Hans-Peter Nilsson  <hp@bitrange.com>
1202
1203         * MAINTAINERS: Add self to Write After Approval list.
1204
1205 2002-09-30  Fernando Nasser  <fnasser@redhat.com>
1206
1207         * disasm.c: New file.  
1208         * disasm.h: New file.  
1209         * mi/mi-cmd-disas.c (gdb_dis_asm_read_memory): Moved to disasm.c.
1210         (compare_lines): Ditto.
1211         (dump_insns): Ditto.
1212         (do_mixed_source_and_assembly): Moved to disasm.c. Added uiout
1213         argument.
1214         (do_assembly_only): Ditto.
1215         (do_disassembly): Renamed to gdb_disassembly and moved to
1216         disasm.c.  Sdded uiout argument.
1217         * Makefile.in: Add new files.  Reorder SFILES list. Update
1218         dependencies.  Include libgdb.a later in the insight executable.
1219
1220 2002-09-29  Andrew Cagney  <ac131313@redhat.com>
1221
1222         * config/djgpp/fnchange.lst: Rename bfd/elf64-alpha.c and
1223         bfd/elf64-alpha-fbsd.c.
1224
1225 2002-09-29  Andrew Cagney  <ac131313@redhat.com>
1226
1227         * config/djgpp/fnchange.lst: Rename i386gnu-nat.c and
1228         i386gnu-tdep.c.
1229
1230 2002-09-29  Andrew Cagney  <ac131313@redhat.com>
1231
1232         * gnu-nat.h (debug): Use __FILE__ and __LINE__ instead of
1233         __FUNCTION__.
1234         * gnu-nat.c (do_mach_notify_no_senders): Replace __FUNCTION__ with
1235         function name.
1236         (do_mach_notify_port_deleted, do_mach_notify_msg_accepted): Ditto.
1237         (do_mach_notify_port_destroyed, do_mach_notify_send_once): Ditto.
1238         (S_proc_setmsgport_reply, S_proc_getmsgport_reply): Ditto.
1239         (S_msg_sig_post_reply): Ditto.
1240         
1241 2002-09-28  Corinna Vinschen  <vinschen@redhat.com>
1242
1243         * sh-tdep.c (sh_use_struct_convention): Use definition according
1244         to ABI.
1245         (sh_push_arguments): Store in register with correct endianess.
1246         (sh_default_store_return_value): Ditto.
1247         (sh_gdbarch_init): Set sizeof long double to 8.
1248
1249 2002-09-27  Mark Kettenis  <kettenis@gnu.org>
1250
1251         * defs.h: Move inclusion of "ansidecl.h" before "gdb_locale.h".
1252         Fix some whitespace problems.
1253
1254 2002-09-27  David Carlton  <carlton@math.stanford.edu>
1255
1256         * Makefile.in (cris-tdep.o): Depend on gdb_string_h.
1257         (mcore-tdep.o): Ditto.
1258         (ns32k-tdep.o): Ditto.
1259         (ns32knbsd-tdep.o): Ditto.
1260         (sh3-rom.o): Ditto.
1261         (vax-tdep.o): Ditto.
1262         * cris-tdep.c: #include "gdb_string.h"
1263         * mcore-tdep.c: Ditto.
1264         * ns32k-tdep.c: Ditto.
1265         * ns32knbsd-tdep.c: Ditto.
1266         * sh3-rom.c: Ditto.
1267         * vax-tdep.c: Ditto.
1268
1269 2002-09-27  David Carlton  <carlton@math.stanford.edu>
1270
1271         * config/djgpp/fnchange.lst: Add entries for
1272         gdb/testsuite/gdb.c++/m-static files.
1273
1274 2002-09-27  Jim Wilson  <wilson@redhat.com>
1275
1276         * MAINTAINERS: Add myself to the Write After Approval list.
1277
1278 2002-09-26  Martin M. Hunt  <hunt@redhat.com>
1279
1280         * mips-tdep.c (find_proc_desc): Initialize startaddr.
1281
1282
1283 2002-09-26  Andrew Cagney  <ac131313@redhat.com>
1284
1285         * rs6000-tdep.c (rs6000_frame_chain): Don't chain past the dummy
1286         frame.
1287
1288 2002-09-26  Andrew Cagney  <ac131313@redhat.com>
1289
1290         * rs6000-tdep.c (rs6000_extract_struct_value_address): Return 0.
1291         (rs6000_struct_return_address): Delete variable.
1292         (rs6000_store_struct_return): Update.
1293         (rs6000_gdbarch_init): Set extract_struct_value_address instead of
1294         deprecated_extract_struct_value_address.
1295         (rs6000_frame_align): New function.
1296         (rs6000_gdbarch_init): Set frame_align.
1297
1298 2002-09-26  Andrew Cagney  <ac131313@redhat.com>
1299
1300         From Grace Sainsbury <graces@redhat.com>:
1301         * Makefile.in (gdbtk-main.o): New target.
1302         (gdb.o): New target.
1303         (main_h): Define.
1304         (main.o): Update dependencies.
1305         (gdb$(EXEEXT)): Add gdb.o.
1306         (SUBDIR_GDBTK_SRCS): Add gdbtk-main.c.
1307         (SUBDIR_GDBTK_ALL, SUBDIR_GDBTK_UNINSTALL): Set.
1308         (SUBDIR_GDBTK_CLEAN): Set.
1309         (install-gdbtk): Install the insight binary.
1310         (uninstall-gdbtk): New target.
1311         (all-gdbtk, clean-gdbtk): New rule.
1312         * top.c (use_windows): Default to zero.
1313         * main.c: Include "main.h".
1314         (main): Delete.
1315         (struct captured_main_args): Delete.
1316         (gdb_main): New function.
1317         * main.h: New file.
1318         * gdb.c: New File.
1319
1320 2002-09-25  Andrew Cagney  <cagney@redhat.com>
1321
1322         * frame.c: Include "gdb_string.h" and "builtin-regs.h".
1323         (frame_map_regnum_to_name): New function.
1324         (frame_map_name_to_regnum): New function.
1325         * frame.h (frame_map_name_to_regnum): Declare.
1326         (frame_map_regnum_to_name): Declare.
1327         * builtin-regs.c (builtin_reg_map_regnum_to_name): New function.
1328         * builtin-regs.h (builtin_reg_map_regnum_to_name): Declare.
1329         * parse.c: Do not include "builtin-regs.h".
1330         (target_map_name_to_register): Delete function.
1331         (write_dollar_variable): Use frame_map_name_to_regnum.
1332         * parser-defs.h (target_map_name_to_register): Delete declaration.
1333         * expprint.c: Include "frame.h".
1334         (print_subexp): Use frame_map_regnum_to_name.
1335         * eval.c (evaluate_subexp_standard): Use frame_map_regnum_to_name.
1336         * infcmd.c (registers_info): Use frame_map_name_to_regnum.
1337
1338 2002-09-25  Andrew Cagney  <ac131313@redhat.com>
1339
1340         * rs6000-tdep.c (rs6000_frame_saved_pc): If the link register
1341         wasn't saved, and the next innermost frame is a dummy, return the
1342         dummy frame's link register.
1343
1344 2002-09-24  Jim Blandy  <jimb@redhat.com>
1345
1346         Fix from Paul Breed:
1347         * main.c (captured_main): Add a `break' after the case for 'b'.
1348
1349 2002-09-24  Keith Seitz  <keiths@redhat.com>
1350
1351         * varobj.c (c_type_of_child): Use get_target_type instead
1352         of TYPE_TARGET_TYPE.
1353
1354 2002-09-22  Fernando Nasser  <fnasser@redhat.com>
1355
1356         * source.c (get_current_or_default_source_symtab_and_line): Remove
1357         function.
1358         (set_default_source_symtab_and_line): New function. Attempts to
1359         determine a source file to list lines from if one is not currently
1360         defined.
1361         (get_current_source_symtab_and_line): Initialize sal.pc and
1362         sal.end fields.
1363         (set_current_source_symtab_and_line): Mark argument as const.
1364         * source.h: Update declarations and comments.
1365         * linespec.c (decode_line_1): Replace call to removed routine above.
1366         * stack.c (print_frame_info_base): Ditto.
1367         * cli/cli-cmds.c (edit_command): Ditto.
1368         (list_command): Ditto.
1369
1370 2002-09-22  Fernando Nasser  <fnasser@redhat.com>
1371
1372         * source.c (get_current_or_default_source_symtab_and_line): Initialize
1373         sal.pc and sal.end fields.
1374         (get_current_or_default_source_symtab_and_line): Ditto.
1375         * breakpoint.c (parse_breakpoint_sals): Use correct accessor function
1376         so we do not cause a new source symtab to be searched for (reverting an
1377         unintentional change from the 2002-09-20 patch).
1378         * scm-lang.c (scm_unpac): Ditto.
1379
1380 2002-09-21  Andrew Cagney  <cagney@redhat.com>
1381
1382         * complaints.c (symfile_explanations): Remove new-line from
1383         ``isolated_message''.
1384         (vcomplaint): When ISOLATED_MESSAGE, force a line break.
1385         (clear_complaints): When a SUBSEQUENT_MESSAGE, force a line break.
1386
1387 2002-09-20  Nick Clifton  <nickc@redhat.com>
1388         
1389         * NEWS: Announce that V850EA ISA is no longer supported.
1390         * v850-tdep.c: Remove reference to bfd_mach_v850ea.
1391
1392 2002-09-20  David Carlton  <carlton@math.stanford.edu>
1393
1394         * Makefile.in (c-lang.o): Correct dependencies.
1395         (utils.o): Gather dependencies.
1396         (charset.o): Move.
1397         * c-lang.c: #include "gdb_string.h"
1398
1399 2002-09-20  Fernando Nasser  <fnasser@redhat.com>
1400
1401         From 2002-07-02  George Helffrich <george@gly.bris.ac.uk>
1402         * cli/cli-cmds.c (list_command): New function.  Implements the new
1403         cli edit command.
1404         (_init_cli_cmds): Add new command definition.
1405         * gdb.1: Document edit command.
1406         * doc/gdb.texinfo: Document edit command.
1407
1408 2002-09-20  Fernando Nasser  <fnasser@redhat.com>
1409
1410         * source.c: Make global variables current_source_symtab and
1411         current_source_line static.
1412         (list_command): Moved to cli/cli-cmds.c.
1413         (ambiguous_line_spec): Moved to cli/cli-cmds.c.
1414         (get_first_line_listed): New accessor function.
1415         (get_lines_to_list): New accessor function.
1416         (get_current_source_symtab_and_line): New function. Retrieves the
1417         position in the source code that we consider current.
1418         (get_current_or_default_source_symtab_and_line): New function.
1419         Like the above but attempts to determine a default position if one
1420         is not currently defined.
1421         (set_current_source_symtab_and_line): New function. Sets the source
1422         code position considered current and returns the previously set one.
1423         (clear_current_source_symtab_and_line): Reset stored information about
1424         a current source line.
1425         (_initialize_source): Remove registration for the "list" command and
1426         its alias.
1427         * source.h: Add declarations for the new functions above.
1428         * symtab.h: Remove declarations for the global variables mentioned
1429         above.
1430         * breakpoint.c (parse_breakpoint_sals): Use accessor functions to
1431         obtain current source line.
1432         * linespec.c (decode_line_1): Ditto.
1433         * macroscope.c (default_macro_scope): Ditto.
1434         * scm-lang.c (scm_unpac): Ditto.
1435         * stack.c (print_frame_info_base): Ditto.
1436         * symfile.c (clear_symtab_users): Ditto.
1437         * symtab.c (decode_line_spec): Ditto.
1438         * cli/cli-cmds.c (list_command): Moved here from source.c.
1439         (ambiguous_line_spec): Moved here from source.c.
1440         (_init_cli_cmds): Add definition for "list" and its alias.
1441         * Makefile.in: Update dependencies.
1442
1443 2002-09-20  Corinna Vinschen  <vinschen@redhat.com>
1444
1445         * h8300-tdep.c (h8300_examine_prologue): Match saved regs location
1446         with what gcc thinks is correct.
1447
1448 2002-09-20  Corinna Vinschen  <vinschen@redhat.com>
1449
1450         * h8300-tdep.c (h8300_examine_prologue): Fix loop for saved regs in
1451         multiple register push instruction.
1452
1453 2002-09-19  Jim Blandy  <jimb@redhat.com>
1454
1455         Add support for distinct host and target character sets.
1456         * charset.c, charset.h: New files.
1457         * c-exp.y: #include "charset.h".
1458         (yylex): Convert character and string literals to the target
1459         character set, before returning them as the semantic value of the
1460         token.
1461         * c-lang.c: #include "charset.h".
1462         (c_emit_char): Use charset-specific methods to recognize
1463         characters with backslash escape forms, to decide which characters
1464         to print literally and which to print using numeric escape
1465         sequences, and to convert target characters to host characters
1466         before printing.
1467         * utils.c: #include "charset.h".
1468         (no_control_char_error): New function.
1469         (parse_escape): Use charset-specific methods to recognize
1470         backslash escapes, parse `control character' notation, and convert
1471         characters from the host character set to the target character set.
1472         * configure.in: Set the default host character set.
1473         Check where to find iconv, and what its argument types might be.
1474         * acinclude.m4 (AM_ICONV): New macro, borrowed from GCC.
1475         * Makefile.in (SFILES): List charset.c.
1476         (COMMON_OBS): List charset.o.   
1477         (charset.o): New rule.
1478         (charset_h): New header dependency variable.
1479         (c-lang.o, utils.o, c-exp.tab.o): Note dependency on $(charset_h).
1480         (LIBICONV): New variable, set by configure.
1481         (CLIBS): Include $(LIBICONV) here.
1482         * aclocal.m4, config.in, configure: Regenerated.
1483
1484 2002-09-19  Joel Brobecker  <brobecker@gnat.com>
1485
1486         * ada-exp.y: Add missing semicolons to end rules. Fixes a
1487         bison 1.35 warning.
1488
1489 2002-09-19  Richard Earnshaw  <rearnsha@arm.com>
1490
1491         * gdb_mbuild.sh: New file.
1492
1493 2002-09-19  Andrew Cagney  <ac131313@redhat.com>
1494
1495         * objc-exp.y, objc-lang.h, objc-lang.c: Fix copyright notice.
1496
1497 2002-09-18  Andrew Cagney  <ac131313@redhat.com>
1498
1499         * breakpoint.c, c-exp.y, defs.h, elfread.c, expression.h,
1500         jv-exp.y, language.c, language.h, p-exp.y, parse.c, parser-defs.h,
1501         printcmd.c, source.c, stabsread.c, symfile.c, symtab.h, utils.c,
1502         valops.c, value.h: Revert previous change.
1503         
1504 2002-09-18  Michael Snyder  <msnyder@redhat.com>
1505
1506         Preliminary support for Objective-C:
1507         * defs.h (language_objc): New enum value.
1508         (puts_filtered_tabular): Declaration only, exported from utils.c.
1509         (skip_quoted): Delete, declared in completer.h.
1510         * c-exp.y: Include completer.h.
1511         * p-exp.y: Ditto.
1512         * jv-exp.y: Ditto.
1513         * expression.h (OP_MSGCALL, OP_SELECTOR, OP_SELF, OP_NSSTRING): 
1514         New operator enum values.
1515         * language.h (CAST_IS_CONVERSION): Test for language_objc.
1516         * language.c (binop_result_type): Handle language_objc case.
1517         (integral_type, character_type, string_type, boolean_type,
1518         structured_type, binop_type_check): Ditto.
1519         * symtab.h (SYMBOL_OBJC_DEMANGLED_NAME): Define.
1520         (struct objc_specific): Add to general_symbol_info.
1521         (SYMBOL_INIT_LANGUAGE_SPECIFIC): Add objc initialization.
1522         (SYMBOL_DEMANGLED_NAME): Handle objc case.
1523         * parser-defs.h (struct objc_class_str): New struct type.
1524         (start_msglist, end_msglist, add_msglist): Declaration only,
1525         exported from objc-lang.c.
1526         * value.h (value_of_local, value_nsstring, 
1527         call_function_by_hand_expecting_type): Exported from valops.c.
1528         * valops.c (find_function_addr): Export.
1529         (call_function_by_hand_expecting_type): New function.
1530         (value_of_local): New function.
1531         * symfile.c (init_filename_language_table): Add ".m" extension
1532         for Objective-C.
1533         * utils.c (puts_filtered_tabular): New function.
1534         (fprintf_symbol_filtered): Add objc demangling support (disabled).
1535         (set/show demangle): Extend help-string to refer to ObjC.
1536         * elfread.c (elf_symtab_read): Skip Objective-C special symbols.
1537         * stabsread.c (symbol_reference_defined): Objective-C symbols
1538         may contain colons: make allowances when scanning stabs strings
1539         for colons.
1540         (objc_find_colon): New function.
1541         * printcmd.c (address_info): If language == objc then print
1542         "self" instead of "this".
1543         * parse.c (length_of_subexp): Handle new operators OP_MSGCALL,
1544         OP_NSSTRING, and OP_SELF.
1545         (prefixify_subexp): Ditto.
1546         * source.c (print_source_lines): Mention objc in comment.
1547         * breakpoint.c (parse_breakpoint_sals): Recognize Objective-C
1548         method names.
1549
1550 2002-09-18  Andrew Cagney  <ac131313@redhat.com>
1551
1552         * complaints.h: Update copyright.
1553         (struct complaints): Declare.
1554         (struct complaint): Make `message' constant.
1555         (internal_complaint): Declare.
1556         (complaint): Declare.
1557         (complaint_root): Delete declaration.
1558         (symfile_complaints): Delete declaration.
1559         (struct complaints): Add opaque declaration.
1560         (clear_complaints): Add a complaints parameter.
1561         * complaints.c: Update copyright.
1562         (enum complaint_series): Define.
1563         (complaint_root): Delete.
1564         (struct complaints): Define.
1565         (complaint_sentinel, symfile_complaint_book): New variables.
1566         (symfile_explanations, symfile_complaints): New variables.
1567         New variables.
1568         (get_complaints): New function.
1569         (vcomplaint): New function.
1570         (complaint): New function.
1571         (internal_complaint): New function.
1572         (complain): Call vcomplain with symfile_complaint.
1573         (clear_complaints): Rewrite.
1574         (_initialize_complaints): Use add_setshow_command.
1575         * Makefile.in (complaints.o): Update dependencies.
1576         * symfile.c (syms_from_objfile): Add symfile_complaints parameter
1577         to call to clear_complaints.
1578         (new_symfile_objfile, reread_symbols): Ditto.
1579         (oldsyms_complaint): Delete.
1580         (empty_symtab_complaint, unknown_option_complaint): Delete.
1581         (free_named_symtabs): Use complaint instead of complain.
1582
1583 2002-09-18  Michael Snyder  <msnyder@redhat.com>
1584
1585         Contributed by Apple Computer, Inc.  Merged with current sources
1586         by Adam Fedor <fedor@doc.com> [cagney].
1587         
1588         * objc-lang.c: First clean-up round: comments, indentation.
1589         * objc-lang.h: Ditto.
1590         * objc-lang.y: Ditto.
1591
1592 2002-09-18  Andrew Cagney  <ac131313@redhat.com>
1593
1594         * maint.c (maintenance_internal_error): Print the parameter as the
1595         error message.
1596         (maintenance_internal_warning): New function.
1597         (_initialize_maint_cmds): Add command `maint internal-warning'.
1598
1599         * defs.h (internal_warning, internal_vwarning): Declare.
1600         * utils.c (struct internal_problem): Define.
1601         (internal_vproblem): New function.
1602         (internal_warning): New function.
1603         (internal_vwarning): New function.
1604         (internal_warning_problem, internal_error_problem): New variables.
1605         (internal_verror): Just call internal_vproblem.
1606
1607 2002-09-18  Michael Snyder  <msnyder@redhat.com>
1608
1609         * objc-lang.c: New file, support for Objective-C.
1610         Preliminary check-in, not yet integrated into gdb.
1611         * objc-lang.h: New file.
1612         * objc-exp.y:  New file.
1613
1614 2002-09-18  Andrew Cagney  <ac131313@redhat.com>
1615
1616         * infrun.c (signal_stop_update): Convert definition to ISO C.
1617         (signal_print_update): Ditto.
1618         (signal_pass_update): Ditto.
1619         * inflow.c (terminal_save_ours): Ditto.
1620
1621         * h8300-tdep.c (h8300_gdbarch_init): Use C instead of C++
1622         comments.
1623         
1624         * config/djgpp/fnchange.lst: Handle name clashes between
1625         bfd/coff-tic30.c, bfd/coff-tic4x.c, bfd/coff-tic54x.c and
1626         bfd/coff-tic80.c.
1627
1628         * i386-linux-tdep.h: Fix tipo.
1629
1630 2002-09-18  Adam Fedor  <fedor@gnu.org>
1631
1632         * MAINTAINERS: Add myself to the Write After Approval list.
1633
1634 2002-09-18  Jim Blandy  <jimb@redhat.com>
1635
1636         * dbxread.c, mdebugread.c: Revert my change of 2001-10-23.  Moving
1637         texthigh and textlow to reader-specific structs caused
1638         objfile_relocate to miss them.  This is fixable, but the work that
1639         the change was supposed to prepare GDB for never got done anyway.
1640
1641 2002-09-18  David Carlton  <carlton@math.stanford.edu>
1642
1643         * MAINTAINERS: Alphabetize Write After Approval list.
1644
1645 2002-09-18  Daniel Jacobowitz  <drow@mvista.com>
1646
1647         Fix PR gdb/709
1648         * values.c (value_static_field): Call read_var_value.
1649
1650 2002-09-18  Andrew Cagney  <ac131313@redhat.com>
1651
1652         * valops.c (hand_function_call): Align the initial stack pointer
1653         and STRUCT_ADDR using frame_align.  When STRUCT_RETURN and
1654         FRAME_ALIGN_P, use STRUCT_ADDR to obtain the called function's
1655         return value.
1656         * mips-tdep.c (mips_frame_align): New function.
1657         (mips_gdbarch_init): Set frame_align.
1658         * gdbarch.sh (FRAME_ALIGN): New method.
1659         * gdbarch.h, gdbarch.c: Re-generate.
1660
1661 2002-09-18  Michal Ludvig  <mludvig@suse.cz>
1662
1663         * x86-64-linux-nat.c (x86_64_regmap): Added CS and SS
1664         registers.
1665
1666 2002-09-17  Andrew Cagney  <ac131313@redhat.com>
1667
1668         * NEWS: Mention that MIPS $fp behavior changed.
1669         * mipsnbsd-tdep.c (mipsnbsd_cannot_fetch_register): Delete
1670         reference to FP_REGNUM.
1671         (mipsnbsd_cannot_store_register): Ditto.
1672         * mips-linux-nat.c: Update copyright.
1673         (mips_linux_cannot_fetch_register): Delete reference to FP_REGNUM.
1674         (mips_linux_cannot_store_register): Ditto.
1675         * mips-linux-tdep.c (supply_gregset): Ditto.  Update copyright.
1676         * config/mips/tm-mips.h: Update copyright.
1677         (FP_REGNUM): Delete macro.
1678         (MIPS_REGISTER_NAMES): Replace "fp" with "".
1679         * config/mips/tm-irix6.h (FP_REGNUM): Delete macro.
1680         * mips-tdep.c (mips_gdbarch_init): Set read_fp to mips_read_sp.
1681         (mips_r3041_reg_names, mips_r3051_reg_names)
1682         (mips_r3081_reg_names): Replace "fp" with "".
1683         Fix PR gdb/480.
1684
1685 2002-09-17  Theodore A. Roth  <troth@verinet.com>
1686
1687         * gdb/avr-tdep.c(avr_scan_prologue): Fix bad call to 
1688         generic_read_register_dummy() (PR gdb/703).
1689         (avr_push_return_address): #if 0 out unused vars.
1690         (avr_gdbarch_init): Enable use of avr_push_return_address().
1691
1692 2002-09-17  Michael Snyder  <msnyder@redhat.com>
1693
1694         * m32r-stub.c (restore_and_return): Postpone restoring of PSW.
1695         RTE will take care of it.
1696
1697 2002-09-17  Andrew Cagney  <ac131313@redhat.com>
1698
1699         * arch-utils.c (legacy_virtual_frame_pointer): If FP_REGNUM is
1700         invalid, return SP_REGNUM.
1701
1702 2002-09-17  Michael Snyder  <msnyder@redhat.com>
1703
1704         * mips-tdep.c (mips_pop_frame): Read saved values of floating
1705         point registers without sign extension.
1706
1707 2002-09-17  Andrew Cagney  <cagney@redhat.com>
1708
1709         * blockframe.c (deprecated_read_register_dummy): Rename
1710         generic_read_register_dummy.
1711         * frame.c (frame_unwind_signed_register): New function.
1712         (frame_unwind_unsigned_register): New function.
1713         * frame.h (frame_unwind_signed_register): Declare.
1714         (frame_unwind_unsigned_register): Declare.
1715         (deprecated_read_register_dummy): Rename
1716         generic_read_register_dummy.
1717
1718         * h8300-tdep.c (h8300_frame_chain): Update.
1719         (h8300_frame_saved_pc): Update.
1720         * xstormy16-tdep.c (xstormy16_frame_saved_pc): Update.
1721         * rs6000-tdep.c (rs6000_frame_saved_pc): Update.
1722         * s390-tdep.c (s390_frame_saved_pc_nofix): Update.
1723         (s390_frame_chain): Update.
1724         * v850-tdep.c (v850_find_callers_reg): Update.
1725         (v850_frame_saved_pc): Update.
1726         * m32r-tdep.c (m32r_init_extra_frame_info): Update.
1727         (m32r_find_callers_reg): Update.
1728         (m32r_frame_saved_pc): Update.
1729         * sh-tdep.c (sh_find_callers_reg): Update.
1730         (sh64_get_saved_pr): Update.
1731         (sh_init_extra_frame_info): Update.
1732         (sh_init_extra_frame_info): Update.
1733         (sh64_init_extra_frame_info): Update.
1734         (sh64_init_extra_frame_info): Update.
1735         * mcore-tdep.c (mcore_find_callers_reg): Update.
1736         (mcore_frame_saved_pc): Update.
1737         (mcore_init_extra_frame_info): Update.
1738         * i386-tdep.c (i386_frame_saved_pc): Update.
1739         * ia64-tdep.c (ia64_frame_saved_pc): Update.
1740         (ia64_init_extra_frame_info): Update.
1741         (ia64_init_extra_frame_info): Update.
1742         * d10v-tdep.c (d10v_frame_saved_pc): Update.
1743         * cris-tdep.c (cris_init_extra_frame_info): Update.
1744         * avr-tdep.c (avr_frame_chain): Update.
1745         (avr_init_extra_frame_info): Update.
1746         (avr_frame_saved_pc): Update.
1747         * arm-tdep.c (arm_find_callers_reg): Update.
1748         (arm_init_extra_frame_info): Update.
1749         (arm_frame_saved_pc): Update.
1750
1751 2002-09-17  Tom Tromey  <tromey@redhat.com>
1752
1753         * c-lang.c (c_emit_char): Don't treat \0 specially unless quoter
1754         is "'".
1755
1756 2002-09-17  Corinna Vinschen  <vinschen@redhat.com>
1757
1758         * MAINTAINERS: Remove "non multi-arched" text from h8300.
1759         * h8300-tdep.c (h8300_next_prologue_insn) Renamed from
1760         NEXT_PROLOGUE_INSN.
1761         (h8300_examine_prologue): Call h8300_next_prologue_insn instead of
1762         NEXT_PROLOGUE_INSN.
1763
1764 2002-09-16  Joel Brobecker  <brobecker@gnat.com>
1765
1766         * osfsolib.c: Remove file, replaced by solib-osf.c.
1767         * Makefile.in: Remove compilation rules for osfsolib.c.
1768
1769 2002-09-16  David Carlton  <carlton@math.stanford.edu>
1770
1771         * cp-valprint.c (cp_print_class_method): Correct args to
1772         check_stub_method_group.
1773
1774 2002-09-16  Corinna Vinschen  <vinschen@redhat.com>
1775
1776         * h8300-tdep.c: Multiarch.  Drop `set machine' command in favor of
1777         `set architecture'.  Unify naming convention of functions.
1778         (h8300_skip_prologue): Improve prologue analysis.
1779         (h8300_push_arguments): Rewritten to more closely match GCC's
1780         bizarre argument-passing behavior, along with the comment describing
1781         said behavior.
1782         * remote-hms.c (hms_regnames): Don't use NUM_REGS in definition.
1783         * config/h8300/tm-h8300.h: Multiarch.  Just keep stuff needed by
1784         sim, remote-e7000.c, remote-hms.c and remote.c
1785
1786 2002-09-15  Mark Kettenis  <kettenis@gnu.org>
1787
1788         * i386-tdep.c (gdb_print_insn_i386): Removed.
1789         (i386_print_insn): New function.
1790         (i386_gdbarch_init): Set print_insn to i386_print_insns.
1791         (_initialize_i386_tdep): Don't initialize tm_print_insn and
1792         tm_print_insn_info.
1793
1794 2002-09-14  Mark Kettenis  <kettenis@gnu.org>
1795
1796         * gdbtypes.c (check_stub_method_group): Initialize found_stub to
1797         zero.
1798
1799 2002-09-14  Corinna Vinschen  <vinschen@redhat.com>
1800
1801         * arch-utils.c (legacy_pc_in_sigtramp): Move preprocessor expression
1802         for IN_SIGTRAMP to here.  Use IN_SIGTRAMP only if it's defined. 
1803         Guard usage of SIGTRAMP_START() by using SIGTRAMP_START_P.
1804
1805 2002-09-13  Christopher Faylor  <cgf@redhat.com>
1806
1807         * win32-nat.c (child_create_inferior): Honor 'tty' command.
1808
1809 2002-09-13  Daniel Jacobowitz  <drow@mvista.com>
1810
1811         * gdbtypes.c (check_stub_method): Make static.
1812         (check_stub_method_group): New function.
1813         * gdbtypes.h: Update prototypes.
1814         * cp-support.c: New file.
1815         * cp-support.h: New file.
1816
1817         * stabsread.c: Include "cp-abi.h" and "cp-support.h".
1818         (update_method_name_from_physname): New function.
1819         (read_member_functions): Correct method names for operators
1820         and v3 constructors/destructors.  Separate v2 constructors and
1821         destructors.
1822         * Makefile.in (stabsread.o): Update dependencies.
1823         (SFILES): Add cp-support.c.
1824         (COMMON_OBS): Add cp-support.o.
1825         (cp_support_h, cp-support.o): Add.
1826
1827         * cp-valprint.c (cp_print_class_method): Call
1828         check_stub_method_group instead of check_stub_method.  Remove
1829         extraneous QUITs.
1830         * p-valprint.c (pascal_object_print_class_method): Likewise.
1831         * valops.c (search_struct_method): Likewise.
1832         (find_method_list, value_struct_elt_for_reference): Likewise.
1833
1834 2002-09-13  Andrew Cagney  <cagney@redhat.com>
1835
1836         * gdbarch.sh (SIGTRAMP_END): Change to a predicate function.
1837         * gdbarch.h, gdbarch.c: Regenerate.
1838
1839 2002-09-13  Andrew Cagney  <ac131313@redhat.com>
1840
1841         * frame.c (find_saved_register): Delete function.
1842         * frame.h (find_saved_register): Delete declaration.
1843         Fix PR gdb/631.
1844
1845 Fri Sep 13 14:59:55 2002  Andrew Cagney  <cagney@redhat.com>
1846
1847         * mips-tdep.c (read_next_frame_reg): Re-hack using
1848         frame_register_unwind.
1849
1850 Fri Sep 13 07:42:09 2002  Andrew Cagney  <cagney@redhat.com>
1851
1852         * mips-tdep.c (mips_get_saved_register): Re-hack using
1853         frame_register_unwind.
1854
1855 2002-09-12  Joel Brobecker  <brobecker@gnat.com>
1856
1857         * gdbarch.sh (NAME_OF_MALLOC): New variable in the architecture
1858         vector. Will be useful for Interix.  
1859         * gdbarch.h, gdbarch.c: Regenerate.
1860
1861         * valops.c (value_allocate_space_in_inferior): Replace hard-coded
1862         name of the malloc function by NAME_OF_MALLOC.
1863
1864 2002-09-12  Joel Brobecker  <brobecker@gnat.com>
1865
1866         * value.h (find_function_in_inferior): Add const keyword to
1867         one of the parameters. Allows us to invoke this function with
1868         a const char *.
1869         * valops.c (find_function_in_inferior): Likewise.
1870
1871 2002-09-12  Joel Brobecker  <brobecker@gnat.com>
1872
1873         * exec.c (xfer_memory): Fix compilation warning with old versions
1874         of GCC.
1875         * tracepoint.c (trace_find_tracepoint_command): Likewise.
1876
1877 2002-09-12  David Carlton  <carlton@math.stanford.edu>
1878
1879         * symtab.h: Run through gdb_indent.h.
1880         Add 2002 to Copyright year list.
1881
1882 2002-09-12  Alan Modra  <amodra@bigpond.net.au>
1883
1884         * x86-64-tdep.c (_initialize_x86_64_tdep): Don't use hard-coded
1885         mach constants.
1886         * MAINTAINERS: Add myself to write after approval list.
1887
1888 2002-09-11  J. Brobecker  <brobecker@gnat.com>
1889
1890         * osabi.c (gdb_osabi_name): Add entry for GDB_OSABI_INTERIX.
1891
1892 2002-09-11  J. Brobecker  <brobecker@gnat.com>
1893
1894         * osabi.h (gdb_osabi): Add new GDB_OSABI_INTERIX enum value for
1895         Interix.
1896
1897 2002-06-05  Paul N. Hilfinger  <hilfingr@otisco.mckusick.com>
1898
1899         * procfs.c (do_detach): Clear current signal, not just fault.
1900         Corrects problem with breakpoint trap signal leaking to detached
1901         process on Tru64.
1902
1903 2002-09-10  Michael Snyder  <msnyder@redhat.com>
1904
1905         * buildsym.c (finish_block): Protect against null pointer.
1906
1907 2002-09-10  Andrew Cagney  <cagney@redhat.com>
1908
1909         * infcmd.c (default_print_registers_info): Send all output to
1910         ``file'' instead of ``gdb_stdout''.
1911
1912 2002-09-10  Michael Snyder  <msnyder@redhat.com>
1913
1914         * mips-tdep.c (mips_extract_struct_value_address): Make val a
1915         LONGEST, and use signed register read (addresses are sign-
1916         extended for mips).
1917
1918 2002-09-10  Stephane Carrez  <stcarrez@nerim.fr>
1919
1920         * event-loop.c (gdb_do_one_event): Make public.
1921         * event-loop.h (gdb_do_one_event): Declare.
1922
1923 2002-09-10  Jeff Law  <law@redhat.com>
1924
1925         * infttrace.c (child_resume): Simplify and rework to avoid
1926         TT_PROC_CONTINUE.
1927
1928 2002-09-09  Fred Fish  <fnf@intrinsity.com>
1929
1930         * printcmd.c (print_scalar_formatted): "len" is the number of
1931         target bytes, NOT the number of target bits.
1932
1933 2002-09-09  Elena Zannoni  <ezannoni@redhat.com>
1934
1935         From: Emmanuel Thome'  <thome@lix.polytechnique.fr>
1936         * top.c (init_main): Set rl_terminal_name.
1937
1938 2002-09-08  Aidan Skinner <aidan@velvet.net>
1939
1940         * ada-lang.c (ada_array_bound, ada_type_match,
1941         _initialize_ada_language): Fix K&R definitions.
1942         * ada-tasks.c (get_current_task): Fix K&R definitions.
1943         * ada-valprint.c (adjust_type_signedness): Fix K&R definitions.
1944                         
1945 2002-09-07  Christopher Faylor  <cgf@redhat.com>
1946
1947         * MAINTAINERS: Remove CE from list of maintainership responsibilities.
1948         Add XP.
1949
1950 2002-09-06  Mark Kettenis  <kettenis@gnu.org>
1951
1952         * i386-tdep.c (i386_register_virtual_type,
1953         i386_register_convertible, i386_register_convert_to_virtual,
1954         i386_register_comvert_to_raw): Use FP_REGNUM_P and SSE_REGNUM_P
1955         instead of IS_FP_REGNUM and IS_SSE_REGNUM.
1956         (i386_gdbarch_init): Fix comment.  Add comments on calls that set
1957         sp_regnum, fp_regnum, pc_regnum, ps_regnum and fp0_regnum.
1958         Don't set push_arguments twice.
1959
1960         * i386bsd-tdep.c (i386bsd_init_abi): Set sigtramp_start and
1961         sigtramp_end to i386bsd_sigtramp_start and i386bsd_sigtramp_end.
1962         * i386nbsd-tdep.c (i386nbsd_init_abi): Set sigtramp_start and
1963         sigtramp_end to NULL.
1964         * config/i386/tm-fbsd.h (SIGTRAMP_START, SIGTRAMP_END): Remove
1965         defines.
1966         (i386bsd_sigtramp_start, i386_sigtramp_end): Remove prototypes.
1967
1968         * i386nbsd-tdep.c (i386nbsd_pc_in_sigtramp): Remove spurious
1969         whitespace.
1970
1971         * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): New methods.
1972         * gdbarch.h, gdbarch.c: Re-generate.
1973         * blockframe.c (find_pc_sect_partial_function): Convert to use
1974         SIGTRAMP_START_P predicate.
1975
1976 2002-09-05  Michael Snyder  <msnyder@redhat.com>
1977
1978         * arm-tdep.c (arm_init_extra_frame_info): Distinguish between
1979         generic_dummy_frame method and old method.  Also distinguish
1980         between ARM_FP_REGNUM and THUMB_FP_REGNUM.
1981         (arm_extract_return_value): Use new regcache method.
1982
1983         * mips-tdep.c (mips_n32n64_push_arguments): Remove alignment
1984         adjustment that doesn't conform to the ABI.
1985         (mips_extract_struct_value_address): Retrieve V0_REGNUM from
1986         saved regcache, not from current regcache.
1987
1988 2002-09-05  Andrew Cagney  <ac131313@redhat.com>
1989
1990         * NEWS: Update for 5.3.  Add new section ``Changes since 5.3''.
1991         * README: Update.
1992
1993 2002-09-04  Jason Thorpe  <thorpej@wasabisystems.com>
1994
1995         * arm-tdep.c (arm_addr_bits_remove): Don't check for Thumb mode
1996         if arm_apcs_32 is false.
1997
1998 2002-09-04  Andrew Cagney  <ac131313@redhat.com>
1999
2000         GDB 5.3 branch created.
2001
2002 2002-09-03  Theodore A. Roth  <troth@verinet.com>
2003
2004         * gdb/avr-tdep.c (avr_gdbarch_init): Use
2005         generic_unwind_get_saved_register.
2006
2007 2002-09-03  David Carlton  <carlton@math.stanford.edu>
2008
2009         * dwarf2read.c (dwarf2_add_member_fn): Add the 'type'
2010         argument (PR gdb/653).  Update call to smash_to_method_type.
2011         (read_structure_scope): Update call to dwarf2_add_member_fn.
2012
2013 2002-09-03  Michal Ludvig  <mludvig@suse.cz>
2014
2015         * x86-64-linux-tdep.c: Include gdb_string.h
2016         * x86-64-linux-nat.c: Ditto.
2017
2018 2002-09-02  Jason Thorpe  <thorpej@wasabisystems.com>
2019
2020         * ada-exp.y (yyname, yyrule): Remap global variables that appear
2021         when YYDEBUG is set to 1.  
2022         * c-exp.y: Likewise.
2023         * f-exp.y: Likewise.
2024         * jv-exp.y: Likewise.
2025         * m2-exp.y: Likewise.
2026         * p-exp.y: Likewise.
2027
2028 2002-09-02  Jason Thorpe  <thorpej@wasabisystems.com>
2029
2030         * Makefile.in (i386nbsd-tdep.o): Add $(solib_svr4_h) to
2031         dependency list.
2032         * i386nbsd-tdep.c (i386nbsdelf_init_abi): Set
2033         solib_svr4_fetch_link_map_offsets to
2034         nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
2035         * config/i386/nbsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
2036         * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
2037         * config/i386/nbsdelf.mh (NATDEPFILES): Remove solib.o,
2038         solib-svr4.o, and solib-legacy.o.
2039         * config/i386/tm-nbsd.h: Include solib.h.
2040
2041 2002-09-02  Jason Thorpe  <thorpej@wasabisystems.com>
2042
2043         * configure.tgt (i[3456]86-*-netbsdelf*): Merge with... 
2044         (i[3456]86-*-netbsd*): ...this.  Set gdb_target to nbsd. 
2045         (i[3456]86-*-openbsd*): Make this a separate entry.  Add a
2046         comment noting that this needs its own target configuration.
2047         * config/i386/nbsd.mt: New file.
2048         * config/i386/nbsdaout.mt: Remove.
2049         * config/i386/nbsdelf.mt: Ditto.
2050         * config/i386/tm-nbsdaout.h: Ditto. 
2051
2052 2002-09-02  Jason Thorpe  <thorpej@wasabisystems.com>
2053
2054         * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): New function. 
2055         (i386nbsd_pc_in_sigtramp): Rewrite to use i386nbsd_sigtramp_offset. 
2056         (i386nbsd_init_abi): Don't initialize tdep->sigtramp_start or
2057         tdep->sigtramp_end.
2058         (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end): Remove. 
2059         * config/i386/tm-nbsd.h (SIGTRAMP_START, SIGTRAMP_END)
2060         (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove.
2061
2062 2002-09-02  Jason Thorpe  <thorpej@wasabisystems.com>
2063
2064         * Makefile.in (i386nbsd-tdep.o): Add $(arch_utils_h),
2065         $(i386_tdep_h), and $(nbsd_tdep_h) to dependency list.
2066         * i386-tdep.h (i386bsd_init_abi): New prototype.
2067         * i386bsd-tdep.c (i386bsd_init_abi): Remove "static" from
2068         function declaration.
2069         (_initialize_i386bsd_tdep): Don't register OS ABI handlers
2070         for NetBSD-a.out or NetBSD-ELF.
2071         (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end)
2072         (i386nbsd_sc_pc_offset, i386nbsd_sc_sp_offset)
2073         (i386nbsd_init_abi, i386nbsdelf_init_abi): Move to...
2074         * i386nbsd-tdep.c: ...here.  Include arch-utils.h, i386-tdep.h,
2075         and nbsd-tdep.h.
2076         (i386nbsd_pc_in_sigtramp): New function.
2077         (i386nbsd_init_abi): Set gdbarch_pc_in_sigtramp to
2078         i386nbsd_pc_in_sigtramp.
2079         (_initialize_i386nbsd_tdep): Register i386nbsd_init_abi
2080         and i386nbsdelf_init_abi OS ABI handlers.
2081         * config/i386/nbsdaout.mt (TDEPFILES): Add nbsd-tdep.o.
2082         * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
2083
2084 2002-09-02  Mark Kettenis  <kettenis@gnu.org>
2085
2086         * i386-linux-nat.c (dummy_sse_values): Only try to fill in the SSE
2087         registers if the target really has them.
2088
2089 2002-08-31  Jason Thorpe  <thorpej@wasabisystems.com>
2090
2091         * Makefile.in (mipsnbsd-tdep.o): Use $(nbsd_tdep_h) rather
2092         than nbsd-tdep.h.
2093
2094 2002-08-31  Jason Thorpe  <thorpej@wasabisystems.com>
2095
2096         * Makefile.in (alphanbsd-tdep.o): Add $(frame_h) to dependency
2097         list.
2098         * alphanbsd-tdep.c (alphanbsd_sigcontext_addr)
2099         (alphanbsd_skip_sigtramp_frame): New functions. 
2100         (alphanbsd_init_abi): Set tdep->skip_sigtramp_frame to
2101         alphanbsd_skip_sigtramp_frame.  Set tdep->sigcontext_addr
2102         to alphanbsd_sigcontext_addr. 
2103
2104 2002-08-31  Jason Thorpe  <thorpej@wasabisystems.com>
2105
2106         * Makefile.in (mipsnbsd-tdep.o): Add nbsd-tdep.h to dependency
2107         list.
2108         (nbsd-tdep.o): Add $(gdb_string_h) to dependency list. 
2109         * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): Use
2110         nbsd_pc_in_sigtramp. 
2111         * mipsnbsd-tdep.c: Include nbsd-tdep.h.
2112         (mipsnbsd_pc_in_sigtramp): Use nbsd_pc_in_sigtramp.
2113         * nbsd-tdep.c: Include gdb_string.h.
2114         (nbsd_pc_in_sigtramp): New function. 
2115         * nbsd-tdep.h (nbsd_pc_in_sigtramp): New prototype. 
2116         * ppcnbsd-tdep.c (ppcnbsd_pc_in_sigtramp): New function.
2117         (ppcnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
2118         ppcnbsd_pc_in_sigtramp. 
2119         * shnbsd-tdep.c (shnbsd_pc_in_sigtramp): New function.
2120         (shnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
2121         shnbsd_pc_in_sigtramp. 
2122         * sparcnbsd-tdep.c (sparcnbsd_init_abi_elf): Set
2123         gdbarch_pc_in_sigtramp to nbsd_pc_in_sigtramp. 
2124         * config/mips/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
2125
2126 2002-08-30  Pierre Muller  <muller@ics.u-strasbg.fr>
2127
2128         * breakpoint.c (breakpoint_init_inferior): Reset the val field of
2129         watchpoints to NULL.
2130         (insert_breakpoints): set val field of watchpoints if NULL.
2131
2132
2133 2002-08-29  Jim Blandy  <jimb@redhat.com>
2134
2135         * symtab.c (lookup_symbol_aux): In the cases where we find a
2136         minimal symbol of an appropriate name and use its address to
2137         select a symtab to read and search, use `name' (as passed to us)
2138         as the demangled name when searching the symtab's global and
2139         static blocks, not the minsym's name.
2140
2141 2002-08-29  Keith Seitz  <keiths@redhat.com>
2142
2143         * stack.c (print_frame_info_base): Always set current_source_symtab
2144         and current_source_line.
2145
2146 2002-08-29  Donn Terry  <donnte@microsoft.com>
2147
2148         * proc-api.c (rw_table): Fix typo in #ifdef PCSHOLD (missing S).
2149
2150 2002-08-28  Keith Seitz  <keiths@redhat.com>
2151
2152         * stack.c (select_frame): Add FIXME concerning selected-frame
2153         events.
2154         (select_frame_command): Send selected-frame-level-changed
2155         event notification, but only if the level actually changed.
2156         (up_silently_base): Add selected-frame-level-changed event
2157         notification.
2158         (down_silently_base): Likewise.
2159
2160 2002-08-28  Andrew Cagney  <ac131313@redhat.com>
2161
2162         * Makefile.in: Update dependencies for all gdb/*.c files.
2163
2164 2002-08-27  Tom Tromey  <tromey@redhat.com>
2165
2166         * Makefile.in (osabi.o, i387-tdep.o, i386-linux-nat.o, lin-lwp.o,
2167         ax-gdb.o, signals.o, jv-valprint.o, c-valprint.o, cp-abi.o):
2168         Update dependencies.
2169         * i387-tdep.c: Include gdb_string.h.
2170         * osabi.c: Likewise.
2171         * i386-linux-nat.c: Likewise.
2172         * lin-lwp.c: Likewise.
2173         * ax-gdb.c: Likewise.
2174         * signals/signals.c: Likewise.
2175         * jv-valprint.c: Likewise.
2176         * p-lang.c: Likewise.
2177         * c-valprint.c: Likewise.
2178         * cp-abi.c: Likewise.
2179
2180 2002-08-27  Elena Zannoni  <ezannoni@redhat.com>
2181
2182         * cli/cli-script.h (copy_command_lines): Export.
2183         * breakpoint.c: Include cli/cli-script.h.
2184         * Makefile.in (breakpoint.o): Update dependencies.
2185
2186 2002-08-26  Michael Snyder  <msnyder@redhat.com>
2187
2188         * breakpoint.c (insert_breakpoints): Protect all references
2189         to 'process_warning'.  Shorten long lines.
2190
2191 2002-08-26  Joel Brobecker  <brobecker@gnat.com>
2192
2193         * cli/cli-script.c (copy_command_lines): New function.
2194         * defs.h (copy_command_lines): Export.
2195         * testsuite/gdb.base/commands.exp: New tests for commands
2196         attached to a temporary breakpoint, and for commands that
2197         delete the breakpoint they are attached to.
2198         
2199 2002-08-26  Michael Snyder  <msnyder@redhat.com>
2200
2201         * breakpoint.c (bpstat_stop_status): Instead of copying the 
2202         pointer to the breakpoint commands struct, make a new copy
2203         of the struct and point to that.
2204         (bpstat_clear): Free the commands struct.
2205         (bpstat_clear_actions): Free the commands struct.
2206         (bpstat_do_actions): Free the command actions.  Also execute
2207         the local cleanups, instead of deleting them.
2208         (delete_breakpoint): Leave the commands field of the bpstat
2209         chain alone -- it will be freed later.
2210
2211 2002-08-26  Kevin Buettner  <kevinb@redhat.com>
2212
2213         * rs6000-tdep.c (altivec_register_p): Restore function inadvertently
2214         deleted in 2002-08-20 commit.  This function is still used by
2215         ppc-linux-nat.c.
2216
2217 2002-08-26  Keith Seitz  <keiths@redhat.com>
2218
2219         * gdb-events.sh: Add selected-frame-level-changed event.
2220         * gdb-events.c: Regenerated.
2221         * gdb-events.h: Regenerated.
2222         
2223 2002-08-26  Stephane Carrez  <stcarrez@nerim.fr>
2224
2225         Fix PR gdb/393:
2226         * inflow.c (terminal_save_ours): New function to save terminal
2227         settings.
2228         * inferior.h (terminal_save_ours): Declare.
2229         * target.c (debug_to_terminal_save_ours): New function.
2230         (cleanup_target): Defaults to_terminal_save_ours.
2231         (update_current_target): Inherit to_terminal_save_ours.
2232         (setup_target_debug): Set to_terminal_save_ours.
2233         * target.h (target_terminal_save_ours): New to save terminal settings.
2234         (target_ops): New member to_terminal_save_ours.
2235         * gnu-nat.c (init_gnu_ops): Set to_terminal_save_ours.
2236         * hpux-thread.c (init_hpux_thread_ops): Likewise.
2237         * inftarg.c (init_child_ops): Likewise.
2238         * m3-nat.c (init_m3_ops): Likewise.
2239         * procfs.c (init_procfs_ops): Likewise.
2240         * wince.c (init_child_ops): Likewise.
2241         * win32-nat.c (init_child_ops): Likewise.
2242         * sol-thread.c (init_sol_thread_ops): Likewise.
2243
2244 2002-08-26  Mark Kettenis  <kettenis@gnu.org>
2245
2246         * i386-tdep.c (i386_store_return_value): Undeprecate.  Convert to
2247         use regcache_* functions.
2248         (i386_gdbarch_init): Set store_return_value instead of
2249         deprecated_store_return_value.
2250
2251         * regcache.c (regcache_raw_write_signed,
2252         regcache_raw_write_unsigned): New functions.
2253         * regcache.h (regcache_raw_write_signed,
2254         regcache_raw_write_unsigned): New prototypes.
2255
2256 2002-08-25  Andrew Cagney  <ac131313@redhat.com>
2257
2258         * Makefile.in (c-exp.tab.o, jv-exp.tab.o, f-exp.tab.o)
2259         (m2-exp.tab.o, p-exp.tab.o, ada-exp.tab.o): Move to before the
2260         source file dependencies.  Cleanup corresponding generator rules.
2261
2262 2002-08-25  Andrew Cagney  <ac131313@redhat.com>
2263
2264         * regcache.h (register_offset_hack): Declare.
2265         (regcache_cooked_read_using_offset_hack): Declare.
2266         (regcache_cooked_write_using_offset_hack): Declare.
2267
2268         * regcache.c (register_offset_hack): New function.
2269         (regcache_cooked_read_using_offset_hack): New function.
2270         (regcache_cooked_write_using_offset_hack): New function.
2271         (regcache_dump): Check that the registers, according to their
2272         offset, are packed hard against each other.
2273         (cooked_xfer_using_offset_hack): New function.
2274
2275 2002-08-25  Andrew Cagney  <ac131313@redhat.com>
2276
2277         * regcache.c (struct regcache_descr): Add field register_type.
2278         (init_legacy_regcache_descr): Pass a pre-allocated regcache_descr
2279         in as a parameter
2280         (init_regcache_descr): Initialize register_type.  Pass the descr
2281         to init_legacy_regcache_descr.  Use register_type instead of
2282         REGISTER_VIRTUAL_TYPE.
2283         (register_type): New function.
2284         (regcache_dump): Replace REGISTER_VIRTUAL_TYPE with register_type.
2285         * regcache.h (register_type): Declare.
2286
2287 2002-08-25  Andrew Cagney  <ac131313@redhat.com>
2288
2289         * rs6000-tdep.c (rs6000_gdbarch_init): Set store_struct_return
2290         instead of deprecated_store_return_value.  Fix fallout from
2291         2002-08-23 Andrew Cagney <cagney@redhat.com>.
2292
2293 2002-08-25  Andrew Cagney  <ac131313@redhat.com>
2294
2295         * regcache.c (max_register_size): New function.
2296         (init_legacy_regcache_descr): Ensure that max_register_size is
2297         large enough for REGISTER_VIRTUAL_SIZE.
2298         * regcache.h (max_register_size): Declare.
2299
2300 2002-08-24  Andrew Cagney  <ac131313@redhat.com>
2301
2302         * rs6000-tdep.c (rs6000_gdbarch_init): Use deprecated version of
2303         store_return_value.
2304         (e500_extract_return_value): Change type of valbuf pointer to
2305         void.
2306
2307 2002-08-24  Mark Kettenis  <kettenis@gnu.org>
2308
2309         * PROBLEMS: Clarify problems with FreeBSD's compiler and suggest
2310         workaround.
2311
2312         * valprint.c (print_longest) [CC_HAS_LONG_LONG &&
2313         PRINTF_HAS_LONG_LONG]: Cast val_long to (long long) or (unsigned
2314         long long) to prevent compiler warning on 64-bit systems.
2315
2316 2002-08-23  Andrew Cagney  <cagney@redhat.com>
2317
2318         * gdbarch.sh (STORE_RETURN_VALUE): Add regcache parameter.
2319         (DEPRECATED_STORE_RETURN_VALUE): New method.
2320         (EXTRACT_RETURN_VALUE): Make buffer parameter a void pointer.
2321         * gdbarch.h, gdbarch.c: Re-generate.
2322
2323         * values.c (set_return_value): Pass current_regcache to
2324         STORE_RETURN_VALUE.
2325         * arch-utils.h (legacy_store_return_value): Declare.
2326         * arch-utils.c (legacy_store_return_value): New function.
2327         (legacy_extract_return_value): Update parameters.
2328
2329         * config/pa/tm-hppa.h (DEPRECATED_STORE_RETURN_VALUE): Rename
2330         STORE_RETURN_VALUE.
2331         * config/pa/tm-hppa64.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2332         * config/sparc/tm-sparc.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2333         * config/z8k/tm-z8k.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2334         * config/sparc/tm-sparclet.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2335         * config/mn10200/tm-mn10200.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2336         * config/m68k/tm-linux.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2337         * config/m68k/tm-delta68.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2338         * config/m32r/tm-m32r.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2339         * config/h8500/tm-h8500.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2340         * config/h8300/tm-h8300.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
2341
2342         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
2343         * i386-tdep.c (i386_extract_return_value): Update.
2344         * arch-utils.c (legacy_extract_return_value): Update.
2345         * frv-tdep.c (frv_gdbarch_init): Update.
2346         * cris-tdep.c (cris_gdbarch_init): Update.
2347         * d10v-tdep.c (d10v_gdbarch_init): Update.
2348         * rs6000-tdep.c (rs6000_gdbarch_init): Update.
2349         * m68k-tdep.c (m68k_gdbarch_init): Update.
2350         * mcore-tdep.c (mcore_gdbarch_init): Update.
2351         * mn10300-tdep.c (mn10300_gdbarch_init): Update.
2352         * s390-tdep.c (s390_gdbarch_init): Update.
2353         * sparc-tdep.c (sparc_gdbarch_init): Update.
2354         * sh-tdep.c (sh_gdbarch_init): Update.
2355         * x86-64-tdep.c (x86_64_gdbarch_init): Update.
2356         * v850-tdep.c (v850_gdbarch_init): Update.
2357         * avr-tdep.c (avr_gdbarch_init): Update.
2358         * ia64-tdep.c (ia64_gdbarch_init): Update.
2359         * ns32k-tdep.c (ns32k_gdbarch_init): Update.
2360         * vax-tdep.c (vax_gdbarch_init): Update.
2361         * alpha-tdep.c (alpha_gdbarch_init): Update.
2362         * arm-tdep.c (arm_gdbarch_init): Update.
2363         * mips-tdep.c (mips_gdbarch_init): Update.
2364         * i386-tdep.c (i386_gdbarch_init): Update.
2365
2366 2002-08-23  Andrew Cagney  <ac131313@redhat.com>
2367
2368         * config/djgpp/fnchange.lst: Add entries for bfd/elf32-ppcqnx.c,
2369         bfd/elf32-ppc.c, bfd/elf32-sh.c and bfd/elf32-shqnx.c.
2370
2371 2002-08-24  Mark Kettenis  <kettenis@gnu.org>
2372
2373         * PROBLEMS: Refer to GDB 5.3 instead of 5.2.  Mention FreeBSD
2374         problems.
2375
2376 2002-08-23  Joel Brobecker  <brobecker@gnat.com>
2377
2378         * infrun.c (handle_inferior_event): Move a comment outside of a
2379         function call, in order to avoid indent reformatting this part
2380         of the code in an unreadable way.
2381
2382 2002-08-23  Grace Sainsbury  <graces@redhat.com>
2383
2384         * infrun.c (normal_stop, proceed): Remove call to print_sys_errmsg
2385         when breakpoints fail. Move general breakpoint error messages to
2386         insert_breakpoints.  
2387         * breakpoint.c (insert_breakpoints): Change warnings when
2388         breakpoints are nto inserted to specify the type. Remove call to
2389         memory_error when hardware breakpoints can't be inserted. Remove
2390         multiple calls to warning so all messages are sent to the user at
2391         once.
2392         (delete_breakpoints): Make insert error messsages more explicit.
2393
2394 2002-08-23  Daniel Jacobowitz  <drow@mvista.com>
2395
2396         * ChangeLog: Move gdbserver entries after GDB 5.2 to
2397         gdbserver/ChangeLog.
2398
2399 2002-08-23  Mark Kettenis  <kettenis@gnu.org>
2400
2401         * i386-tdep.c: Include "objfiles.h".
2402         (i386_svr4_init_abi): Set in_solib_call_trampoline and
2403         skip_trampoline_code.
2404         * config/i386/tm-i386v4.h: Don't include "config/tm-sysv4.h".
2405         (CPLUS_MARKER): Define to '.'.
2406
2407         * linux-proc.c (struct linux_corefile_thread_data): Add num_notes
2408         member.
2409         (linux_corefile_thread_callback): Increase args->num_notes.
2410         (linux_make_note_section): Initialize thread_args.num_notes, and
2411         use it to determine whether notes for any threads were created.
2412
2413 2002-08-23  Donn Terry  <donnte@microsoft.com>
2414
2415         * proc-api.c (rw_table): Do not include a row for PCDSTOP if the
2416         corresponding macro is not defined. Likewise for PCNICE, PCSHOLD
2417         and PCUNKILL.
2418         (write_with_trace): Conditionalize out the switch branch handling
2419         PCSHOLD if the corresponding macro is not defined. Likewise for
2420         PRSABORT and PRSTOP.
2421         This change will be needed by the Interix port.
2422
2423 2002-08-22  Elena Zannoni  <ezannoni@redhat.com>
2424
2425         * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): use
2426         write_register wherever possible instead of manipulating the
2427         register bytes directly.
2428         Assign VALUE_CONTENTS to a variable and use that.
2429         The GPR numbers are now dependent on the architecture.
2430         
2431 2002-08-22  Elena Zannoni  <ezannoni@redhat.com>
2432
2433         * rs6000-tdep.c (struct rs6000_framedata): Add saved_ev and
2434         ev_offset fields.
2435         (skip_prologue): Add support for BookE/e500 instructions.
2436         (e500_extract_return_value): New function.
2437         (frame_get_saved_regs): Add support for saving ev registers and
2438         pseudo gpr's.
2439         (e500_store_return_value): New function.
2440         (rs6000_gdbarch_init): Move up default intializations of
2441         deprecated_extract_return_value and store_return_value.  Overwrite
2442         init of store_return_value with e500 specific version.
2443         Set extract_return_value for e500.
2444         
2445 2002-08-22  Elena Zannoni  <ezannoni@redhat.com>
2446
2447         * blockframe.c (generic_call_dummy_register_unwind): Use
2448         regcache_cooked_read to catch cases in which the variable is
2449         stored in a pseudo register.
2450
2451 2002-08-22  Andrew Cagney  <cagney@redhat.com>
2452
2453         * NEWS: Mention that the i960 has been made obsolete.
2454         * Makefile.in (SFILES): Delete remote-nrom.c, remote-nindy.c and
2455         i960-tdep.c
2456         (remote-nrom.o): Obsolete target.
2457         (remote-nindy.o, i960-tdep.o): Ditto.
2458         * remote-nrom.c: Make file obsolete.
2459         * remote-nindy.c, remote-vx960.c: Ditto.
2460         * config/i960/vxworks960.mt, config/i960/nindy960.mt: Ditto.
2461         * config/i960/mon960.mt, config/i960/tm-i960.h: Ditto.
2462         * config/i960/tm-vx960.h, config/i960/tm-nindy960.h: Ditto.
2463         * config/i960/tm-mon960.h, i960-tdep.c: Ditto.
2464         * configure.tgt: Make i960-*-bout*, i960-nindy-coff*,
2465         i960-*-coff*, i960-nindy-elf*, i960-*-elf*, i960-*-nindy* and
2466         i960-*-vxworks* obsolete.
2467         * MAINTAINERS: Note that the i960 is obsolete.
2468
2469 2002-08-21  Corinna Vinschen  <vinschen@redhat.com
2470
2471         * aix-thread.c (aix_thread_detach): Disable thread debugging on
2472         detach to allow reinitialization.
2473
2474 2002-08-22  Andrew Cagney  <ac131313@redhat.com>
2475
2476         * MAINTAINERS: Change the s390 target to s390-linux-gnu (second
2477         attempt).
2478
2479 2002-08-22  Jim Blandy  <jimb@redhat.com>
2480
2481         * coffread.c (coff_symfile_read): Don't try to read the line
2482         number table from disk if the image file doesn't have a symbol
2483         table; we'll never actually look at the info anyway, and Windows
2484         ships DLL's with bogus file offsets for the line number data.
2485
2486 2002-08-21  Elena Zannoni  <ezannoni@redhat.com>
2487
2488         * rs6000-tdep.c (rs6000_gdbarch_init): Figure out whether we have
2489         an e500 executable.
2490
2491 2002-08-21  Michael Snyder  <msnyder@redhat.com>
2492
2493         * mips-tdep.c (MSYMBOL_IS_SPECIAL): Replace macro with function.
2494         (MSYMBOL_SIZE): Replace macro with function.
2495         (DEFAULT_MIPS_TYPE): Delete unused macro.
2496         * config/mips/tm-mips.h (DEFAULT_MIPS_TYPE): Delete unused macro.
2497         * config/mips/tm-embed.h (DEFAULT_MIPS_TYPE): Delete unused macro.
2498
2499 2002-08-21  Jim Blandy  <jimb@redhat.com>
2500
2501         * valops.c (value_cast): Simplify and correct logic for doing a
2502         static cast from a pointer to a base class to a pointer to a
2503         derived class.
2504
2505 2002-08-21  Andrew Cagney  <ac131313@redhat.com>
2506
2507         * infcmd.c (default_print_registers_info): Replace
2508         do_registers_info.
2509         (registers_info): Use gdbarch_print_registers_info instead of
2510         DO_REGISTERS_INFO.
2511         * inferior.h (default_print_registers_info): Replace
2512         do_registers_info.
2513         * gdbarch.sh (PRINT_REGISTERS_INFO): New method.
2514         (DO_REGISTERS_INFO): Change to a predicate function.
2515         * gdbarch.h, gdbarch.c: Regenerate.
2516         
2517 2002-08-21  Keith Seitz  <keiths@redhat.com>
2518
2519         * gdb-events.sh: Add target-changed event.
2520         * gdb-events.c: Regenerated.
2521         * gdb-events.c: Regenerated.
2522         * valops.c (value_assign): Add target-changed event notification
2523         to inlval_register, lval_memory, and lval_reg_frame_relative.
2524
2525 2002-08-21  Joel Brobecker  <brobecker@gnat.com>
2526
2527         * NEWS: Add an entry regarding the improvement of the next/step
2528         operation on Alpha Tru64 multi-processor machines.
2529
2530 2002-08-21  Andrew Cagney  <ac131313@redhat.com>
2531
2532         * Makefile.in: Update dependencies for mi/ cli/ and tui/
2533         directores.
2534         * Makefile.in: Update all _h macro definitions.
2535         * Makefile.in (install-gdbtk): Move to install section.
2536         (rdi-share/libangsd.a): Move to end of file.
2537
2538 2002-08-19  Andrew Cagney  <ac131313@redhat.com>
2539
2540         * frame.c (frame_register_unwind): When a register, set addrp to
2541         the register's byte.
2542
2543 2002-08-20  Michael Snyder  <msnyder@redhat.com>
2544
2545         * mips-tdep.c (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): These are only
2546         used locally, so move them from the target machine header to here.
2547         (mips_set_processor_type, mips_register_name, mips32_next_pc, 
2548         mips16_next_pc, cached_proc_desc, mips_set_processor_type): 
2549         Make static.
2550         * config/mips/tm-mips.h (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Delete.
2551
2552 2002-08-20  Andrew Cagney  <cagney@redhat.com>
2553
2554         * NEWS: Mention that the Apollo line was made obsolete.
2555         * configure.tgt: Make m68*-apollo*-bsd*, m68*-hp-bsd*, and
2556         m68*-hp-hpux* obsolete.
2557         * configure.host: Make m68*-apollo*-sysv*, m68*-apollo*-bsd*,
2558         m68*-hp-bsd* and m68*-hp-hpux* obsolete.
2559         * buildsym.c (make_blockvector): Make static.
2560         * buildsym.h (make_blockvector): Make extern declaration obsolete.
2561         * Makefile.in (HFILES_NO_SRCDIR): Remove dst.h
2562         (ALLDEPFILES): Remove dstread.c.
2563         (dstread.o): Obsolete make rule.
2564         * dstread.c: Makefile obsolete.
2565         * dst.h: Ditto.
2566         * config/m68k/hp300hpux.mt: Ditto.
2567         * config/m68k/hp300hpux.mh: Ditto.
2568         * config/m68k/hp300bsd.mt: Ditto.
2569         * config/m68k/hp300bsd.mh: Ditto.
2570         * config/m68k/apollo68b.mt: Ditto.
2571         * config/m68k/apollo68v.mh: Ditto.
2572         * config/m68k/apollo68b.mh: Ditto.
2573
2574 2002-08-20  Michael Snyder  <msnyder@redhat.com>
2575
2576         * mips-tdep.c (mips_in_return_stub): Make static.
2577         (mips_gdbarch_init): Set in_solib_return_trampoline.
2578         * config/mips/tm-mips.h (IN_SOLIB_RETURN_TRAMPOLINE): Delete.
2579
2580 2002-08-20  Michael Snyder  <msnyder@redhat.com>
2581
2582         * gdbarch.sh (IN_SOLIB_RETURN_TRAMPOLINE): Add.
2583         * gdbarch.c, gdbarch.h: Regenerate.
2584         * arch-utils.c, arch-utils.h (generic_in_solib_return_trampoline):
2585         Add.
2586         * infrun.c (IN_SOLIB_RETURN_TRAMPOLINE): Delete default definition.
2587
2588 2002-08-20  Michael Snyder  <msnyder@redhat.com>
2589
2590         * mips-tdep.c (mips_skip_stub, mips_in_call_stub): Make static.
2591         (mips_gdbarch_init): Set skip_trampoline_code, 
2592         in_solib_call_trampoline.
2593         * config/mips/tm-mips.h (REGISTER_NAME): Delete.
2594         (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE): Delete.
2595
2596 2002-08-20  Elena Zannoni  <ezannoni@redhat.com>
2597
2598         * ppc-tdep.h (struct gdbarch_tdep): Add ev registers.
2599
2600         * rs6000-tdep.c (rs6000_register_virtual_type): Return 64 bit
2601         vector type for ev registers.
2602         (e500_pseudo_register_read): New function.
2603         (e500_pseudo_register_write): New function.
2604         (e500_dwarf2_reg_to_regnum): New function.
2605         (PPC_UISA_NOFP_SPRS): New macro.
2606         (PPC_EV_REGS): New macro.
2607         (PPC_GPRS_PSEUDO_REGS): New macro.
2608         (registers_e500): New register set for e500.
2609         (variants): Add e500 variant.
2610         (rs6000_gdbarch_init): Move setting of pc, sp, fp regnums to
2611         before setting architectural dependent variations.  Initialize ev
2612         registers numbers.  Add case for e500 architecture.  Set the
2613         number of pseudo registers.
2614
2615 2002-08-20  Elena Zannoni  <ezannoni@redhat.com>
2616
2617         * rs6000-tdep.c: Clean up comments.
2618
2619 2002-08-20  Andrew Cagney  <cagney@redhat.com>
2620
2621         * h8300-tdep.c: Re-indent file.
2622
2623 2002-08-20  Jim Blandy  <jimb@redhat.com>
2624
2625         * Makefile.in (LDFLAGS): Allow the configure script to establish a
2626         default for this.
2627
2628 2002-08-20  Keith Seitz  <keiths@redhat.com>
2629
2630         * breakpoints.c (watch_command_1): Use internal breakpoint
2631         when setting a watchpoint_scope breakpoint.
2632
2633 2002-08-20  Elena Zannoni  <ezannoni@redhat.com>
2634
2635         * gdbtypes.c (build_builtin_type_vec64): Add name to type.
2636         (build_builtin_type_vec64i): Ditto.
2637         (build_builtin_type_vec128): Ditto.
2638         (build_builtin_type_vec128i): Ditto.
2639
2640 2002-08-19  Michael Snyder  <msnyder@redhat.com>
2641
2642         * config/mips/tm-mips.h (ELF_MAKE_MSYMBOL_SPECIAL): Delete.
2643         (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Change into functions.
2644         (FIX_CALL_DUMMY, PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME,
2645         POP_FRAME, INIT_EXTRA_FRAME_INFO): Delete.
2646         (CALL_DUMMY_START_OFFSET, CALL_DUMMY_BREAKPOINT_OFFSET,
2647         CALL_DUMMY_ADDRESS): Delete.
2648         * mips-tdep.c (mips_elf_make_msymbol_special, mips_msymbol_size,
2649         mips_msymbol_is_special, mips_fix_call_dummy): New functions.
2650         (mips_gdbarch_init): Set elf_make_msymbol_special, pop_frame, 
2651         push_dummy_frame, fix_call_dummy, init_extra_frame_info, 
2652         push_return_address.
2653         (mips_register_raw_size, mips_eabi_use_struct_convention, 
2654         mips_n32n64_use_struct_convention, mips_o32_use_struct_convention,
2655         mips_o32_reg_struct_has_addr, mips_frame_saved_pc, mips_frame_chain,
2656         mips_init_extra_frame_info, mips_eabi_push_arguments, 
2657         mips_n32n64_push_arguments, mips_push_return_address,
2658         mips_push_dummy_frame, mips_pop_frame, mips_skip_prologue,
2659         mips_breakpoint_from_pc, mips_call_dummy_address): Make static.
2660
2661 2002-08-19  Michael Snyder  <msnyder@redhat.com>
2662
2663         * mips-tdep.c (mips_frame_num_args): New function.
2664         (mips_gdbarch_init): Set frame_chain, frameless_function_invocation,
2665         frame_saved_pc, frame_args_address, frame_locals_address, 
2666         frame_num_args, and frame_args_skip.
2667         * config/mips/tm-mips.h (FRAME_CHAIN, FRAMELESS_FUNCTION_INVOCATION,
2668         FRAME_SAVED_PC, FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS, 
2669         FRAME_NUM_ARGS, FRAME_ARGS_SKIP): Delete.
2670         * config/mips/tm-mipsv4.h (FRAME_CHAIN_VALID): Delete.
2671
2672 2002-08-20  Michael Snyder  <msnyder@redhat.com>
2673
2674         * config/mips/tm-mips.h (STORE_STRUCT_RETURN): Delete.
2675         (EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
2676         * mips-tdep.c (mips_store_struct_return): New function.
2677         (mips_extract_struct_value_address): New function.
2678         (mips_gdbarch_init): Set store_struct_return and
2679         extract_struct_value_address.
2680
2681 2002-08-20  David Carlton  <carlton@math.stanford.edu>
2682
2683         * dwarf2read.c (dwarf2_build_psymtabs): Check that
2684         dwarf_line_offset is nonzero before creating dwarf_line_buffer.
2685         (read_file_scope): Check that line_header is nonzero before
2686         decoding macro information.
2687
2688 2002-08-20  Mark Kettenis  <kettenis@gnu.org>
2689
2690         * i386-tdep.h (FP_REGNUM_P): Change such that we don't incorrectly
2691         flag the general-purpose registers as floating-point on targets
2692         that don't support the floating-point registers.
2693
2694 2002-08-20  Elena Zannoni  <ezannoni@redhat.com>
2695
2696         * rs6000-tdep.c (altivec_register_p): Delete.
2697         (rs6000_do_altivec_registers): Delete.
2698         (rs6000_altivec_registers_info): Delete.
2699         (rs6000_do_registers_info): Delete.
2700         (_initialize_rs6000_tdep): Remove command 'info powerpc altivec'.
2701         (rs6000_gdbarch_init): Remove setting of do_registers_info.
2702
2703 2002-08-20  Elena Zannoni  <ezannoni@redhat.com>
2704
2705         * infcmd.c (do_registers_info): Print vector registers in hex
2706         format only.
2707         (print_vector_info): Check that printing registers
2708         makes sense.
2709         (print_float_info): Ditto.
2710
2711 2002-08-20  Andrew Cagney  <ac131313@redhat.com>
2712
2713         * mips-tdep.c (mips_gdbarch_init): Update.
2714         (mips_o32_extract_return_value): Rewrite.
2715         (mips_o32_store_return_value): Rewrite.
2716         (mips_o32_xfer_return_value): New function.
2717         (mips_xfer_register): Tweak debug print message.  Allow for
2718         buf_offset when dumping the value transfered.
2719
2720 2002-08-20  Andrew Cagney  <ac131313@redhat.com>
2721
2722         * config/mips/tm-nbsd.h (MIPS_DEFAULT_ABI): Delete.
2723         * config/mips/tm-linux.h (MIPS_DEFAULT_ABI): Delete.
2724         * config/mips/tm-irix5.h (MIPS_DEFAULT_ABI): Delete.
2725         * config/mips/tm-irix6.h (MIPS_DEFAULT_ABI): Delete.
2726         * mips-tdep.c (mips_gdbarch_init) [MIPS_DEFAULT_ABI]: Delete code.
2727
2728 2002-08-14  Michael Snyder  <msnyder@redhat.com>
2729
2730         * mips-tdep.c (mips_frame_chain): Check for call-dummy frames.
2731
2732 2002-08-19  Elena Zannoni  <ezannoni@redhat.com>
2733
2734         * rs6000-tdep.c (struct reg): Add field to indicate a pseudo
2735         register.
2736         (P): New macro to define a register as a pseudo register.
2737         (R, R4, R8, R16, FR32, R64, R0): Updated.
2738         (struct variant): Add new fields for number of pseudo registers
2739         and number of total registers.
2740         (tot_num_registers): New macro replacing....
2741         (num_registers): ...deleted macro.
2742         (num_registers): New function.
2743         (num_pseudo_registers): New function.
2744         (variants): Update all variants to intialize new fields correctly.
2745         Postpone initialization of number of pseudo regs and real regs.
2746         (init_variants): New function.
2747         (rs6000_gdbarch_init): Initialize variants.  Update calculation of
2748         registers offsets.
2749
2750 2002-08-19  David Carlton  <carlton@math.stanford.edu>
2751
2752         * valops.c (search_struct_field): Change error message to treat
2753         return value of 0 from value_static_field as meaning that field is
2754         optimized out.
2755         (value_struct_elt_for_reference): Ditto.
2756         * values.c (value_static_field): Treat an unresolved location the
2757         same as a nonexistent symbol.  Fix PR gdb/635.
2758         * gnu-v2-abi.c (gnuv2_value_rtti_type): Eliminate test for being
2759         enclosed.  Fix PR gdb/574.
2760         * MAINTAINERS: Add self to Write After Approval list.
2761
2762 2002-08-19  Andrew Cagney  <ac131313@redhat.com>
2763
2764         * mips-tdep.c (mips_xfer_register): New function.
2765         (mips_n32n64_extract_return_value): Rewrite.
2766         (mips_gdbarch_init): For N32 and N64, set extract_return_value
2767         instead of deprecated_extract_return_value.
2768
2769 2002-08-19  Elena Zannoni  <ezannoni@redhat.com>
2770
2771         * rs6000-tdep.c (TDEP): Delete macro.
2772         (branch_dest): Replace use of TDEP macro with its body.
2773         (rs6000_pop_frame): Ditto.
2774         (rs6000_push_arguments): Ditto.
2775         (rs6000_skip_trampoline_code): Ditto.
2776         (rs6000_frame_saved_pc): Ditto.
2777         (rs6000_frame_chain): Ditto.
2778         (rs6000_register_name): Ditto.
2779         (rs6000_register_byte): Ditto.
2780         (rs6000_register_raw_size): Ditto.
2781         (rs6000_register_virtual_type): Ditto.
2782         (rs6000_register_convertible): Ditto.
2783         (rs6000_convert_from_func_ptr_addr): Ditto.
2784
2785 2002-08-19  Daniel Jacobowitz  <drow@mvista.com>
2786
2787         * config/mips/tm-linux.h (REALTIME_LO, REALTIME_HI): Define
2788         conditionally.
2789         (JB_PC, JB_ELEMENT_SIZE): Rename to MIPS_LINUX_JB_PC and
2790         MIPS_LINUX_JB_ELEMENT_SIZE.
2791         * mips-linux-tdep.c (supply_gregset, fill_gregset): Use alloca
2792         for MAX_REGISTER_RAW_SIZE arrays.
2793         (mips_linux_get_longjmp_target): Use MIPS_LINUX_JB_PC and
2794         MIPS_LINUX_JB_ELEMENT_SIZE.
2795
2796 2002-08-19  Pierre Muller  <muller@ics.u-strasbg.fr>
2797
2798         * i387-tdep.c (i387_print_float_info): Fix typo in comment.
2799
2800 2002-08-19  Aidan Skinner <aidan@velvet.net>
2801
2802         * Makefile.in (SFILES): Add ada-exp.y ada-lang.c ada-typeprint.c
2803         ada-valprint.c ada-tasks.c.
2804         (YYFILES): Add ada-exp.y.
2805         (ada-exp.tab.c ada-lex.c ada-lang.o): New target.
2806         (ada-tasks.o ada-typeprint.o ada-valprint.o): New target.
2807         (ada-exp.tab.o): New target.
2808                 
2809 2002-08-18  Andrew Cagney  <ac131313@redhat.com>
2810
2811         * regcache.c (regcache_xfer_part): New function.
2812         (regcache_raw_read_part): New function.
2813         (regcache_raw_write_part): New function.
2814         (regcache_cooked_read_part): New function.
2815         (regcache_cooked_write_part): New function.
2816         * regcache.h (regcache_raw_read_part): Declare.
2817         (regcache_raw_write_part): Declare.
2818         (regcache_cooked_read_part): Declare.
2819         (regcache_cooked_write_part): Declare.
2820
2821 2002-08-18  Daniel Jacobowitz  <drow@mvista.com>
2822
2823         * remote.c (remote_open_1): Add async_p.
2824         (remote_async_open_1): Delete.
2825         (open_remote_target): Delete.
2826         (remote_open, extended_remote_open): Update calls to remote_open_1.
2827         (remote_async_open, extended_remote_async_open): Call
2828         remote_open_1 instead of remote_async_open_1.
2829
2830 2002-08-19  Mark Kettenis  <kettenis@gnu.org>
2831
2832         * blockframe.c: Fix a few coding standard violations.
2833
2834 2002-08-19  Mark Kettenis  <kettenis@gnu.org>
2835
2836         * config/i386/nm-i386sco5.h (START_INFERIOR_TRAPS_EXPECTED): Moved
2837         here from ...
2838         * config/i386/tm-i386sco5.h: ... here.  File removed.
2839         * config/i386/i386sco5.mt (TM_FILE): Set to tm-i386v4.h.
2840
2841         * config/i386/nm-i386v.h (START_INFERIOR_TRAPS_EXPECTED): New define.
2842         * config/i386/i386aout.mt (TDEPFILES): Add i387-tdep.o
2843         (TM_FILE): Set to tm-i386.h.
2844         * config/i386/i386v.mt (TM_FILE): Set to tm-i386.h.
2845         * config/i386/tm-i386v.h: Remove file.
2846         * config/i386/tm-ptx.h [!SEQUENT_PTX4]: Include "i386/tm-i386.h"
2847         instead of "i386/tm-i386v.h".
2848         (START_INFERIOR_TRAPS_EXPECTED): Remove define.
2849         * config/i386/tm-symmetry: Include "i386/tm-i386.h" instead of
2850         "i386/tm-i386v.h".
2851         (START_INFERIOR_TRAPS_EXPECTED): Remove define.
2852         * config/i386/tm-vxworks.h: Include "i386/tm-i386.h" instead of
2853         "i386/tm-i386.h".
2854
2855 2002-08-18  Mark Kettenis  <kettenis@gnu.org>
2856
2857         * config/i386/nm-i386v.h: Add protection against
2858         multiple-inclusion.
2859         (i386_register_u_addr): Remove prototype.
2860         (register_u_addr): New prototype.
2861         (REGISTER_U_ADDR): Redefine accordingly.
2862         * i386v-nat.c: Improve several comments.
2863         (i386_register_u_addr): Change signature and rename to
2864         register_u_addr.  Use FP_REGNUM_P.  Rewrite slightly to get rid of
2865         ubase variable.
2866
2867 2002-08-18  Andrew Cagney  <ac131313@redhat.com>
2868
2869         * config/mips/tm-mips.h (STORE_RETURN_VALUE): Delete macro.
2870         (DEPRECATED_EXTRACT_RETURN_VALUE): Delete macro.
2871         * mips-tdep.c (mips_gdbarch_init): Set store_return_value and
2872         deprecated_extract_return_value.
2873         (mips_o32_push_arguments, mips_o64_push_arguments): Clone and
2874         rename mips_o32o64_push_arguments.
2875         (mips_gdbarch_init): Update.
2876         (mips_extract_return_value): Delete.
2877         (mips_o32_extract_return_value): Clone mips_extract_return_value.
2878         (mips_o64_extract_return_value): Clone mips_extract_return_value.
2879         (mips_eabi_extract_return_value): Clone mips_extract_return_value.
2880         (mips_n32n64_extract_return_value): Clone
2881         mips_extract_return_value.
2882         (mips_store_return_value): Delete.
2883         (mips_o32_store_return_value): Clone mips_store_return_value.
2884         (mips_o64_store_return_value): Clone mips_store_return_value.
2885         (mips_eabi_store_return_value): Clone mips_store_return_value.
2886         (mips_n32n64_store_return_value): Clone mips_store_return_value.
2887
2888 2002-08-18  Aidan Skinner <aidan@velvet.net>
2889
2890         * ada-lang.c: Use gdb_string.h instead of <string.h>.
2891         * ada-typeprint.c: Use gdb_string.h instead of <string.h>.
2892                 
2893 2002-08-18  Aidan Skinner <aidan@velvet.net>
2894
2895         * ada-lang.c: Run through gdb_indent.sh.
2896         * ada-lang.h: Run through gdb_indent.sh.
2897         * ada-tasks.c: Run through gdb_indent.sh.
2898         * ada-typeprint.c: Run through gdb_indent.sh.
2899         * ada-valprint.c: Run through gdb_indent.sh.
2900
2901 2002-08-18  Andrew Cagney  <ac131313@redhat.com>
2902
2903         * osabi.c (gdbarch_init_osabi): Don't complain about an unknown
2904         ABI.
2905
2906 2002-08-18  Mark Kettenis  <kettenis@gnu.org>
2907
2908         * i386b-nat.c [FETCH_INFERIOR_REGISTERS]: Remove dead code.
2909
2910         * config/i386/nm-i386bsd.h (FLOAT_INFO): Remove redundant #undef.
2911         * i386b-nat.c [FLOAT_INFO]: Remove dead code.
2912
2913         * i386-tdep.c (i386_do_pop_frame, i386_store_return_value): Call
2914         write_register_gen instead of write_register_bytes.
2915
2916         * NEWS: Mention that the i[3456]-*mach3*, i[3456]-*-mach* and
2917         i[3456]-*-osf1mk* configurations have been made obsolete.
2918         * configure.host: Make i[3456]86-*-mach3*, i[3456]86-*mach* and
2919         i[3456]86-*-osf1mk* hosts obsolete.
2920         * confighure.tgt: Make i[3456]86-*-mach3*, i[3456]86-*-osf1mk*
2921         targets obsolete.
2922         * config/i386/i386mach.mh, config/i386/nm-i386mach.h,
2923         config/i386/xm-i386mach.h, config/i386/i386m3.mh,
2924         config/i386/i386m3.mt, config/i386/nm-m3.h,
2925         config/i386/tm-i386m3.h, config/i386/xm-i386m3.h,
2926         config/i386/i386mk.mh, config/i386/i386mk.mt,
2927         config/i386/tm-i386mk.h, config/i386/xm-i386mk.h: Make files
2928         obsolete.
2929         * i386mach-nat.c, i386m3-nat.c: Make files obsolete.
2930         * Makefile.in (ALLDEPFILES): Remove i386mach.c i386m3-nat.c
2931         (i386mach-nat.o, i386m3-nat.o):Make targets obsolete.
2932
2933 2002-08-18  Andrew Cagney  <ac131313@redhat.com>
2934
2935         * config/pa/tm-hppa.h (hppa_store_return_value): Declare.
2936         (hppa_value_returned_from_stack): Declare.
2937         (hppa_extract_return_value): Declare.
2938         * config/pa/hppa.mt: New file.
2939         * configure.tgt: Recognize hppa*-*-*.
2940         * MAINTAINERS: Change HPPA target to hppa-elf.  Still broken.
2941
2942 2002-08-18  Mark Kettenis  <kettenis@gnu.org>
2943
2944         * i386-sol2-tdep.c (_initialize_i386_sol2_tdep): Fix typo in
2945         comment.
2946
2947 2002-08-17  Mark Kettenis  <kettenis@gnu.org>
2948
2949         * top.c (gdb_rl_operate_and_get_next): Make sure
2950         operate-and-get-next functions correctly even when the history
2951         list is completely filled.
2952
2953 2002-08-18  Andrew Cagney  <ac131313@redhat.com>
2954
2955         * MAINTAINERS (Target Instruction Set Architectures): Rename
2956         Target/Architectures.  Replace vax-dec-vms5.5 with vax-netbsd.
2957         Replace s390-linux with s390-linux-gnu.  Remove i386-aout,
2958         mcore-pe, mips64-elf, sparc64-elf.  Remove i586-pc-msdosdjgpp,
2959         already listed under Host/Native.
2960
2961         * configure.tgt: Combine i[3456]86-*-coff*, i[3456]86-*-elf*,
2962         i[3456]86-*-pe*, and i[3456]86-*-aout* into i[3456]86-*-*.  Add
2963         mips*-*-*.
2964
2965 2002-08-17  Andrew Cagney  <ac131313@redhat.com>
2966
2967         * config/ia64/ia64.mt: New file.
2968         * config/alpha/alpha.mt: New file.
2969         * MAINTAINERS: Change the alpha target to alpha-elf and IA-64 to
2970         ia64-linux-gnu.  Mention that ia64-elf is broken.
2971         * configure.tgt: Add alpha*-*-* and ia64*-*-* patterns.
2972
2973 2002-08-17  Mark Kettenis  <kettenis@elgar.kettenis.dyndns.org>
2974
2975         * i386-tdep.c (i386_svr4_init_abi, i386_nw_init_abi): Use
2976         generic_func_frame_valid instead of func_frame_valid.
2977
2978 2002-08-16  Joel Brobecker  <brobecker@gnat.com>
2979
2980         * alpha-osf1-tdep.c (alpha_osf1_init_abi): Unfortunately,
2981         procfs appears to be broken when debugging on multi-processor
2982         machines. So enable software single stepping in order to avoid
2983         using the procfs interface to do next/step operations, using
2984         internal breakpoints instead.
2985
2986         * infrun.c (handle_inferior_event): Readjust the stop_pc by
2987         DECR_PC_AFTER_BREAK when hitting a single step breakpoint, to
2988         make this pc address equal to the value it would have if the
2989         system stepping capability was used. Also set a new flag used
2990         to ensure that we don't readjust the PC one more time later.
2991
2992         * breakpoint.c (bpstat_stop_status): Do not adjust the PC
2993         address by DECR_PC_AFTER_BREAK when software single step is
2994         in use for this architecture, as this has already been taken
2995         care of in handle_inferior_event().
2996
2997 2002-08-16  Joel Brobecker  <brobecker@gnat.com>
2998
2999         * infrun.c (handle_inferior_event): Minor reformatting, to make
3000         a rather long condition expression easier to read.
3001
3002 2002-08-16  Andrew Cagney  <ac131313@redhat.com>
3003
3004         * Makefile.in (gdbtk.o): Move to end of file.
3005         (gdbtk-bp.o, gdbtk-cmds.o): Ditto.
3006         (gdbtk-hooks.o, gdbtk-register.o): Ditto.
3007         (gdbtk-stack.o, gdbtk-varobj.o): Ditto.
3008         (gdbtk-wrapper.o, gdbres.o): Ditto.
3009
3010 2002-08-16  Andrew Cagney  <ac131313@redhat.com>
3011
3012         * Makefile.in (copying.o): Separate out compile rule.
3013         (hpux-thread.o, procfs.o, signals.o): Ditto.
3014         (v850ice.o, z8k-tdep.o): Ditto.
3015         (tui-file.o): Move to TUI section.
3016         (xdr_ptrace.o, xdr_rdb.o, xdr_ld.o): Move to separate section.
3017         (nindy.o, Onindy.o, ttyflush.o): Move to separate section.
3018
3019 2002-08-16  Joel Brobecker  <brobecker@gnat.com>
3020
3021         * i386-tdep.c (i386_pe_skip_trampoline_code): renamed from
3022         skip_trampoline_code, for better namespace-proofing.   
3023
3024         * i386-tdep.h (i386_pe_skip_trampoline_code): Add declaration.
3025
3026 2002-08-16  Joel Brobecker  <brobecker@gnat.com>
3027
3028         * config/i386/tm-cygwin.h: Remove some "#if 0"'ed macros.
3029
3030 2002-08-16  Joel Brobecker  <brobecker@gnat.com>
3031
3032         * infrun.c (handle_inferior_event): When receiving a SIGTRAP
3033         signal, check whether we hit a breakpoint before checking for a
3034         single step breakpoint. Otherwise, GDB fails to notice that a
3035         breakpoint has been hit when stepping onto a breakpoint.
3036
3037 2002-08-16  Keith Seitz  <keiths@redhat.com>
3038
3039         * gdb-events.sh (clear_gdb_event_hooks): New function.
3040         * gdb-events.c: Regenerate.
3041         * gdb-events.h: Regenerate.
3042
3043 2002-08-16  Andrew Cagney  <ac131313@redhat.com>
3044
3045         * breakpoint.c (bpstat_stop_status): Rename not_a_breakpoint to
3046         not_a_sw_breakpoint.
3047         * breakpoint.h (bpstat_stop_status): Add parameter names.
3048
3049 2002-08-16  Grace Sainsbury  <graces@redhat.com>
3050
3051         * remote.c (remote_insert_hw_breakpoint)
3052         (remote_remove_hw_breakpoint): Fix calculation of length field
3053         for Z-packet.
3054
3055 2002-08-15  Michael Snyder  <msnyder@redhat.com>
3056
3057         * irix5-nat.c (supply_gregset): Allocate plenty-big buffer
3058         (32 bytes) instead of using MAX_REGISTER_RAW_SIZE.
3059         (supply_fpregset): Ditto.
3060         
3061         * config/mips/tm-mips.h (REGISTER_CONVERT_TO_VIRTUAL, 
3062         REGISTER_CONVERT_TO_RAW, REGISTER_CONVERTIBLE, 
3063         MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE): Delete.
3064         (TARGET_READ_SP): Delete.
3065         (DO_REGISTERS_INFO): Delete.
3066         (FUNCTION_START_OFFSET, IN_SIGTRAMP, REGISTER_VIRTUAL_SIZE):
3067         Delete.
3068         (REGISTER_CONVERT_FROM_TYPE, REGISTER_CONVERT_TO_TYPE): Convert
3069         from macros to functions.
3070
3071         * mips-tdep.c (mips_gdbarch_init): Set the above in the gdbarch.
3072         (mips_register_convertible, mips_register_convert_to_virtual,
3073         mips_register_convert_to_raw): Make static.
3074         (mips_read_sp): New function.
3075         (mips_gdbarch_init): Set gdbarch read_sp to mips_read_sp.
3076         (mips_do_registers_info): Make static.
3077         (mips_gdbarch_init): Insert mips_do_registers_info into gdbarch.
3078         (in_sigtramp): Make static, rename to mips_pc_in_sigtramp.
3079         (mips_register_convert_from_type, mips_register_convert_to_type):
3080         New functions.
3081         (mips_gdbarch_init): Set up function_start_offset, 
3082         register_virtual_size, pc_in_sigtramp.
3083
3084 2002-08-15  Andrew Cagney  <ac131313@redhat.com>
3085
3086         * infcmd.c (vector_info): New function.
3087         (_initialize_infcmd): Add command "info vector".
3088         (print_vector_info): New function.
3089
3090         * gdbarch.sh (PRINT_VECTOR_INFO): New method
3091         * gdbarch.h, gdbarch.c: Regenerate.
3092
3093 2002-08-15  Andrew Cagney  <ac131313@redhat.com>
3094
3095         * infcmd.c (do_registers_info): Rename parameter ``fpregs'' to
3096         ``print_all''.  Only print vector registers when ``print_all''.
3097
3098 2002-08-15  Andrew Cagney  <ac131313@redhat.com>
3099
3100         * i387-tdep.h (i387_print_float_info): Add `args' parameter.
3101         * i387-tdep.c (i387_print_float_info): Add `args' parameter.
3102
3103         * gdbarch.sh (PRINT_FLOAT_INFO): Change to a predicate method.
3104         Add `args' parameter.
3105         * gdbarch.h, gdbarch.c: Regenerate.
3106         
3107         * arm-tdep.c (arm_print_float_info): Add the parameter `args'.
3108         
3109         * infcmd.c (float_info): Call print_float_info.
3110         (print_float_info): New function.  By default, print the
3111         floating-point registers.
3112
3113         * arch-utils.h (default_print_float_info): Delete declaration.
3114         * arch-utils.c (default_print_float_info): Delete function.
3115         
3116 2002-08-16  Mark Kettenis  <kettenis@gnu.org>
3117
3118         * config/i386/nm-i386v.h (FLOAT_INFO): Remove already commented
3119         out define.
3120
3121         * i387-tdep.c (i387_print_float_info): Add comment about ignoring
3122         FRAME.
3123
3124         * NEWS: Mention that the i[3456]-*-aix target has been made obsolete.
3125         * configure.host: Make i[3456]86-*-aix host obsolete.
3126         * configure.tgt: Make i[3456]86-*-aix target obsolete.
3127         * config/i386/i386aix.mh, config/i386/i386aix.mt,
3128         config/i386/nm-i386aix.h, condig/i386/tm-i386aix.h,
3129         config/i386/xm-i386aix.h: Make files obsolete.
3130         * i386aix-nat.c: Make file obsolete.
3131         * Makefile.in (ALLDEPFILES): Remove i386aix-nat.c.
3132         (i386aix-nat.o): Make target obsolete.
3133
3134         * config/i386/nm-gnu.h: Removed.
3135         * config/i386/nm-i386gnu.h: New file.
3136         (THREAD_STATE_FLAVOR, THREAD_STATE_SIZE,
3137         THREAD_STATE_SET_TRACED, THREAD_STATE_CLEAR_STATE, ATTACH_DETACH):
3138         Moved here from ...
3139         * config/i386/tm-i386gnu.h: ... here.  Removed.
3140         * config/i386/xm-i386gnu.h: Removed.
3141         * config/i386/i386gnu.mh (XM_FILE): Set to xm-i386.h.
3142         (NAT_FILE): Set to nm-i386gnu.h.
3143         * config/i386/i386gnu.mt (TDEPFILES): Add i386gnu-tdep.o.
3144         * i386-tdep.c: New file.
3145         * Makefile.in (ALLDEPFILES): Add i386gnu-nat.c and i386gnu-tdep.c.
3146         (i386gnu-tdep.o): Specify dependencies.
3147
3148 2002-08-15  Mark Kettenis  <kettenis@gnu.org>
3149
3150         * config/i386/tm-i386sco5.h: Include "i386/tm-i386v4.h" instead of
3151         "i386/tm-i386.h", "i386/tm-i386v.h" and "config/tm-sysv.h".
3152         Adjust a few comments to reflect reality a bit closer.
3153         (KERNEL_U_SIZE, TARGET_HAS_HARDWARE_WATCHPOINTS,
3154         TARGET_CAN_USE_HARDWARE_WATCHPOINT, HAVE_CONTINUEABLE_WATCHPOINT,
3155         HAVE_STEPPABLE_WATCHPOINT, STOPPED_BY_WATCHPOINT,
3156         target_insert_watchpoint, target_remove_watchpoint):
3157         Move defines to ...
3158         * config/i386/nm-i386sco5.h: ... here.
3159         (kernel_u_size): Add prototype.  Improve a few comments and add
3160         protection against multiple inclusion.
3161         
3162         * config/i386/nm-i386sco.h (FLOAT_INFO): Remove already commented
3163         out define.
3164
3165         * uw-thread.c (SP_ARG0): Define if not already defined.
3166         * config/i386/tm-i386.h (SO_ARG0): Remove define.
3167
3168         * config/i386/tm-i386v4.h (HAVE_I387_REGS): Remove define.
3169
3170         * config/i386/tm-i386.h: Don't include "regcache.h".
3171
3172         * i387-tdep.h (i387_print_float_info): New prototype.
3173         * i387-tdep.c (print_i387_value, print_i387_ext,
3174         print_i387_status_word, print_i387_control_word): Add `struct
3175         ui_file *' argument and use it for output.
3176         (i387_print_float_info): Renamed from i387_float_info.  Add
3177         `struct gdbarch *' and `struct ui_file *' arguments and use the
3178         latter for output.
3179         * i386-tdep.c: Include "i387-tdep.h".
3180         (i386_gdbarch_init): Set print_float_info.
3181         * config/i386/tm-i386.h (i387_float_info): Remove prototype.
3182         (FLOAT_INFO): Remove define.
3183
3184 2002-08-13  Michael Snyder  <msnyder@redhat.com>
3185
3186         * mips-tdep.c (mips_push_arguments): Rename to
3187         mips_eabi_push_arguments, and tune for EABI.
3188         (MIPS_REGS_HAVE_HOME_P): Delete.
3189         (struct gdbarch_tdep): Remove mips_regs_have_home_p field.
3190         (mips_gdbarch_init): Set gdbarch push_arguments for eabi.
3191         Delete references to mips_regs_have_home_p.
3192
3193 2002-08-14  Keith Seitz  <keiths@redhat.com>
3194
3195         * Makefile.in (install-gdbtk): Create insight plugin directory.
3196         Install plugins.tcl file.
3197
3198 2002-08-14  Keith Seitz  <keiths@redhat.com>
3199
3200         * configure.in: Move SUBDIRS to near top of the file so that
3201         --enable options may add things to it.
3202         If gdbtk is enabled, add gdbtk directory to SUBDIRS and configdirs.
3203         * configure: Regenerate.
3204
3205 2002-08-13  Michael Snyder  <msnyder@redhat.com>
3206
3207         * mips-tdep.c (mips_o32o64_push_arguments):  New function, 
3208         cloned from mips_push_arguments, tuned for o32/o64 ABI.
3209         (mips_gdbarch_init): Set gdbarch_push_arguments to new func.
3210
3211 2002-08-13  Andrew Cagney  <ac131313@redhat.com>
3212
3213         * vax-tdep.c (vax_get_saved_register): Delete function.
3214         (vax_gdbarch_init): Update.
3215         * ns32k-tdep.c (ns32k_get_saved_register): Delete function.
3216         (ns32k_gdbarch_init): Update.
3217         * alpha-tdep.c (alpha_get_saved_register): Delete function.
3218         (alpha_gdbarch_init): Update.
3219
3220 2002-08-13  Andrew Cagney  <cagney@redhat.com>
3221
3222         * regcache.c (init_regcache_descr): Overallocate the
3223         raw_register_valid_p array including space for NUM_PSEUDO_REGS.
3224         (registers_changed): Replace NUM_REGS+NUM_PSEUDO_REGS with
3225         nr_raw_registers.
3226         (set_register_cached): Add range checking assertions.  Use
3227         current_regcache.
3228
3229 2002-08-13  Mark Kettenis  <kettenis@gnu.org>
3230
3231         * i386-tdep.c (i386_stab_reg_to_regnum): Return correct register
3232         numbers for MMX registers.
3233
3234 2002-08-13  Andrew Cagney  <cagney@redhat.com>
3235
3236         * i386-tdep.c (i386_gdbarch_init): Use
3237         generic_unwind_get_saved_register.
3238
3239 2002-08-13  Kevin Buettner  <kevinb@redhat.com>
3240
3241         * procfs.c (procfs_can_use_hw_breakpoint): New function.
3242         (init_procfs_ops): Define ``to_can_use_hw_breakpoint'' for procfs
3243         target vector.
3244         * config/mips/nm-irix5.h (TARGET_CAN_USE_HARDWARE_WATCHPOINT):
3245         Delete.  Add comment regarding this now-deleted target method.
3246
3247 2002-08-13  Stephane Carrez  <stcarrez@nerim.fr>
3248
3249         * m68hc11-tdep.c (M68HC12_NUM_PSEUDO_REGS): New define.
3250         (M68HC12_HARD_PC_REGNUM): Define specific PC for 68HC12 (pseudo reg).
3251         (m68hc11_pseudo_register_read): Compute the 68HC12 PC using the
3252         real PC and the page number (if it's within the memory bank window).
3253         (m68hc11_pseudo_register_write): Likewise when saving.
3254         (m68hc11_register_name): Name the virtual pc 'pc' and the real one ppc.
3255         (m68hc11_register_virtual_type): Return uint32 for virtual pc.
3256         (m68hc11_register_raw_size): And use 32-bit for it.
3257         (m68hc11_gdbarch_init): Use 32-bit address for 68HC12 if the
3258         16K memory bank is used by the prog; also use the virtual pc.
3259
3260 2002-08-13  Stephane Carrez  <stcarrez@nerim.fr>
3261
3262         * m68hc11-tdep.c (m68hc11_elf_make_msymbol_special): New function.
3263         (m68hc11_gdbarch_init): Install it in gdbarch.
3264         (MSYMBOL_SET_RTC, MSYMBOL_SET_RTI): New to set symbol specific flags.
3265         (MSYMBOL_IS_RTC, MSYMBOL_IS_RTI): New to test these flags.
3266         (MSYMBOL_SIZE): New for documentation.
3267         (insn_return_kind): Enum to specify how a function returns.
3268         (frame_extra_info): Cleanup and record the return mode.
3269         (gdbarch_tdep, USE_PAGE_REGISTER): New to control the use of page 
3270         register in address computation.
3271         (m68hc11_get_return_insn): New to obtain the return instruction used
3272         by the function.
3273         (m68hc11_frame_init_saved_regs): Take into account the return
3274         instruction used by the function for far and interrupt functions.
3275         (m68hc11_init_extra_frame_info): Take into account page register.
3276         (m68hc11_frame_args_address): Adjust according to the return mode.
3277         (show_regs): Print page register only when it's used.
3278
3279 2002-08-13  Stephane Carrez  <stcarrez@nerim.fr>
3280
3281         * m68hc11-tdep.c (HARD_PAGE_REGNUM): Define for 68HC12 page register.
3282         (M68HC11_LAST_HARD_REG, m68hc11_register_names): Update.
3283         (m68hc11_register_virtual_type): Return a 8-bit type for 8-bit
3284         registers.
3285         (m68hc11_register_raw_size): Likewise.
3286
3287 2002-08-13  Andrew Cagney  <cagney@redhat.com>
3288
3289         * i386-tdep.c (i386_register_name): Handle mmx registers.
3290         (mmx_regnum_p): New function.
3291         (i386_mmx_names): New array.
3292         (mmx_num_regs): New variable.
3293         (i386_pseudo_register_read): New function.
3294         (i386_pseudo_register_write): New function.
3295         (mmx_regnum_to_fp_regnum): New function. Code from Fernando Nasser.
3296
3297         * regcache.c (regcache_raw_read_unsigned): New function.
3298         (regcache_raw_read_signed): New function.
3299         * regcache.h (regcache_raw_read_unsigned): Declare.
3300         (regcache_raw_read_signed): Declare.
3301
3302 2002-08-13  Andrew Cagney  <cagney@redhat.com>
3303
3304         * regcache.c (regcache_raw_read_as_address): Delete function.
3305         (regcache_cooked_read_signed): New function.
3306         (regcache_cooked_read_unsigned): New function.
3307         * regcache.h (regcache_cooked_read_signed): Declare.
3308         (regcache_cooked_read_unsigned): Declare.
3309         (regcache_raw_read_as_address): Delete declaration.
3310
3311         * blockframe.c (generic_read_register_dummy): Use
3312         regcache_cooked_read_unsigned.
3313         * i386-tdep.c (i386_extract_struct_value_address): Use
3314         regcache_cooked_read_unsigned.
3315
3316 2002-08-13  Stephane Carrez  <stcarrez@nerim.fr>
3317
3318         * m68hc11-tdep.c (m68hc11_gdbarch_init): Set int, double and long
3319         double sizes according to ELF ABI flags.
3320         (gdbarch_tdep): Record elf_flags.
3321
3322 2002-08-13  Stephane Carrez  <stcarrez@nerim.fr>
3323
3324         * m68hc11-tdep.c (M6812_OP_PSHX, M6812_OP_PSHY): New defines.
3325         (m6812_prolog): They can appear in 68HC12 function prologue.
3326         (m68hc11_frame_chain): Cleanup.
3327
3328 2002-08-12  Andrew Cagney  <cagney@redhat.com>
3329
3330         * i386-tdep.h (i386_register_byte, i386_register_raw_size): Delete
3331         declarations.
3332         * i386-linux-tdep.c (i386_linux_register_byte): Delete function.
3333         (i386_linux_register_raw_size): Delete function.
3334         (i386_linux_init_abi): Update.
3335         * i386-tdep.c (i386_register_raw_size): Delete function.
3336         (i386_register_byte): Delete function.
3337         (i386_gdbarch_init): Update.
3338         (i386_register_size): Delete array.
3339         (i386_register_offset): Delete array.
3340
3341         * config/i386/tm-symmetry.h (REGISTER_BYTE): Delete macro.
3342         (REGISTER_RAW_SIZE): Delete macro.
3343         * config/i386/tm-ptx.h (REGISTER_RAW_SIZE): Delete macro.
3344         (REGISTER_BYTE): Delete macro.
3345
3346 2002-08-11  Aidan Skinner <aidan@velvet.net>
3347
3348         * ada-lang.c (ada_lookup_partial_symbol)
3349         (to_fixed_variant_branch_type) (find_line_in_linetable): Fix
3350         prototype names so that grep ^func works properly.
3351
3352         * ada-lang.c (ada_array_element_type)
3353         (ada_lookup_partial_symbol): Fix typos in parameter list.
3354
3355         * ada-valprint.c (val_print_packed_array_elements) (ada_val_print_1):
3356         Fix prototype names so that grep ^func works properly.
3357         
3358 2002-08-10  Andrew Cagney  <cagney@redhat.com>
3359             Elena Zannoni  <ezannoni@redhat.com>
3360             Martin M. Hunt  <hunt@redhat.com>
3361
3362         * gdbtypes.c (build_builtin_type_vec128): Set the vector bit.
3363         (build_builtin_type_vec128i): Set the vector bit.
3364         * gdbtypes.h (builtin_type_vec64, builtin_type_vec64i): Declare.
3365         * gdbtypes.c (builtin_type_vec64, builtin_type_vec64i): Define.
3366         (build_builtin_type_vec64): New function.
3367         (build_builtin_type_vec64i): New function.
3368         (build_gdbtypes): Initialize builtin_type_vec64 and
3369         builtin_type_vec64i.
3370
3371 2002-08-09  Andrew Cagney  <cagney@redhat.com>
3372
3373         * regcache.c (regcache_dump): Compare the register offset
3374         with REGISTER_BYTE.
3375         * arch-utils.c (generic_register_byte): New function.
3376         * arch-utils.h (generic_register_byte): Declare.
3377         * gdbarch.sh (REGISTER_BYTE): Default to generic_register_byte.
3378         * gdbarch.h, gdbarch.c: Regenerate.
3379
3380 2002-08-09  Andrew Cagney  <cagney@redhat.com>
3381
3382         * regcache.c: Include "gdbcmd.h"
3383         (_initialize_regcache): Add commands "maintenance print
3384         registers", "maintenance print raw-registers" and "maintenance
3385         print cooked-registers".
3386         (enum regcache_dump_what): Define.
3387         (dump_endian_bytes): New function.
3388         (regcache_dump): New function.
3389         (regcache_print): New function.
3390         (maintenance_print_registers): New function.
3391         (maintenance_print_raw_registers): New function.
3392         (maintenance_print_cooked_registers): New function.
3393         * Makefile.in (regcache.o): Update dependencies.
3394
3395 2002-08-09  Michael Snyder  <msnyder@redhat.com>
3396
3397         * mips-tdep.c (ROUND_DOWN, ROUND_UP): Move to global scope.
3398         (mips_push_arguments): Correct some comments.  Use paddr_nz
3399         for printing addresses in debug output.  Replace static
3400         allocation using MAX_REGISTER_RAW_SIZE with alloca.
3401         (mips_n32n64_push_arguments): New function, cloned from
3402         mips_push_arguments and tuned for the n32/n64 ABI.
3403         (mips_push_register): Buffer needs dynamic allocation.
3404         (mips_print_register): Ditto.
3405         (do_gp_register_row): Ditto.
3406         (mips_store_return_value): Ditto.
3407         (mips_gdbarch_init): Set gdbarch_push_arguments per ABI.
3408
3409 2002-08-09  Don Howard  <dhoward@redhat.com>
3410
3411         * memattr.c (mem_info_command): Print special case of upper bound
3412         as max CORE_ADDR + 1.
3413
3414 2002-08-08  Michael Snyder  <msnyder@redhat.com>
3415
3416         * mips-tdep.c (mips_n32n64_use_struct_convention): N32 only 
3417         returns structs by ref if they're too big to fit in two registers.
3418
3419 2002-08-09  Kevin Buettner  <kevinb@redhat.com>
3420
3421         * mips-tdep.c (mips_init_extra_frame_info): Initialize SP_REGNUM's
3422         saved regs value.
3423         (read_next_frame_reg): Call FRAME_INIT_SAVED_REGS instead of
3424         mips_find_saved_regs().
3425         (mips_pop_frame): Likewise.
3426
3427 2002-08-09  Kevin Buettner  <kevinb@redhat.com>
3428
3429         * blockframe.c (frame_saved_regs_register_unwind): Revise
3430         PC_IN_CALL_DUMMY assertion to only apply when generic dummy
3431         frames are in use.
3432
3433 2002-08-09  Grace Sainsbury  <graces@redhat.com>
3434         
3435         * remote.c: (remote_wait, remote_async_wait): Add check for awatch
3436         T-packets; the 'a' is not taken as a register number.
3437         (remote_check_watch_resources, remote_stopped_by_watchpoint)
3438         (remote_stopped_data_address): New functions; add to target
3439         vector.
3440         (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Change
3441         prototypes to match other implementations of this
3442         function. replace integer argument with pointer -- the length
3443         field in the Z-packet is the length of what is pointed to or 1 if
3444         pointer is null. Add to target vector.
3445         (remote_insert_watchpoint, remote_remove_watchpoint): Add to
3446         target vector.
3447
3448         From Mark Salter:
3449         * remote.c (remote_wait): Add support to extract optional
3450         watchpoint information from T-packet. Ignore unrecognized
3451         optional info in T-packet.
3452         (remote_async_wait): Ditto.
3453
3454 2002-08-09  Corinna Vinschen  <vinschen@redhat.com>
3455
3456         * cli/cli-dump.c: Change fopen modes to use binary open modes
3457         as defined in include/fopen-bin.h throughout.
3458
3459 2002-08-08  Michael Snyder  <msnyder@redhat.com>
3460
3461         * mips-tdep.c: Minor whitespace and indentation clean-ups.
3462
3463 2002-08-08  Kevin Buettner  <kevinb@redhat.com>
3464
3465         * doublest.c (store_floating): Avoid floatformat_from_doublest()
3466         assertion failure by returning early after a warning.
3467
3468 2002-08-08  Kevin Buettner  <kevinb@redhat.com>
3469
3470         * mips-tdep.c (mips_find_saved_regs): Make static.
3471         (mips_frame_init_saved_regs): New function.
3472         (mips_gdbarch_init): Setup FRAME_INIT_SAVED_REGS method.
3473         * config/mips/tm-mips.h (FRAME_INIT_SAVED_REGS): Delete macro.
3474         (mips_find_saved_regs): Delete declaration.
3475
3476 2002-08-08  Grace Sainsbury  <graces@redhat.com>
3477
3478         * remote.c (remote_wait, remote_async_wait): Change
3479         thread_num from int to ULONGEST.
3480         (unpack_varlen_hex): Change result parameter from
3481         int * to ULONGEST *.
3482
3483 2002-08-08  Andrew Cagney  <ac131313@redhat.com>
3484
3485         * configure.tgt: Replace powerpc-*-sysv*, powerpc-*-elf*,
3486         powerpcle-*-eabi*, powerpcle-*-sysv* and powerpcle-*-elf* with
3487         powerpc*-*-*.
3488         * MAINTAINERS: Remove redundant rs6000-ibm-aix4.1 target.
3489
3490 2002-08-08  Andrew Cagney  <cagney@redhat.com>
3491
3492         * gcore.c (override_derive_stack_segment): Delete variable.
3493         (preempt_derive_stack_segment): Delete function.
3494         (derive_stack_segment): Delete function.
3495         (default_derive_stack_segment): Renamed to derive_stack_segment.
3496         (override_derive_heap_segment): Delete variable.
3497         (preempt_derive_heap_segment): Delete function.
3498         (derive_heap_segment): Delete function.
3499         (default_derive_heap_segment): Rename to derive_heap_segment.
3500
3501 2002-08-06  Michael Snyder  <msnyder@redhat.com>
3502
3503         * config/mips/tm-mips.h: Remove #define USE_STRUCT_CONVENTION.
3504         * mips-tdep.c (mips_EABI_use_struct_convention, 
3505         mips_OABI_use_struct_convention, mips_NABI_use_struct_convention):
3506         New functions.  (mips_use_struct_convention): Delete.
3507         (mips_gdbarch_init): set use_gdbarch_convention.
3508
3509 2002-08-06  Michael Snyder  <msnyder@redhat.com>
3510
3511         *  mips-tdep.c: gdbarch-ify reg_struct_has_addr.
3512         (mips_eabi_reg_struct_has_addr, mips_n32n64_reg_struct_has_addr, 
3513         mips_o32_reg_struct_has_addr): New functions.
3514         (mips_gdbarch_init): Set gdbarch reg_struct_has_addr.
3515
3516 2002-08-07  Andrew Cagney  <ac131313@redhat.com>
3517
3518         * regcache.c (pseudo_register): Delete function.
3519         (fetch_register): Delete function.
3520         (store_register): Delete function.
3521         (regcache_raw_read, legacy_read_register_gen): Use
3522         target_fetch_registers instead of fetch_register.
3523         (legacy_write_register_gen, regcache_raw_write): Use
3524         target_store_register instead of store_register.
3525         (write_register_bytes): Ditto.
3526
3527         * gdbarch.sh (FETCH_PSEUDO_REGISTER): Delete.
3528         (STORE_PSEUDO_REGISTER): Delete.
3529         * gdbarch.h, gdbarch.c: Regenerate.
3530
3531 2002-08-06  Corinna Vinschen  <vinschen@redhat.com>
3532
3533         * cli/cli-dump.c (add_dump_command): Explicitely use "b" flag to
3534         write dump file binary.
3535
3536 2002-08-05  Michael Snyder  <msnyder@redhat.com>
3537
3538         *  mips-tdep.c (mips_find_saved_regs): Adjust stack according
3539         to MIPS_SAVED_REGSIZE, not GDB_TARGET_IS_MIPS64.  Enhance comment.
3540         (mips_gdbarch_init): Set N32 target to be mips64.
3541
3542 2002-08-06  Kevin Buettner  <kevinb@redhat.com>
3543
3544         * frame.c (find_saved_register): Break out of loop once saved
3545         register address is found.  Don't mention sparc in loop comment
3546         anymore.
3547
3548 2002-08-06  Kevin Buettner  <kevinb@redhat.com>
3549
3550         * mips-tdep.c (mips_gdbarch_init): For the N32 ABI, set
3551         mips_default_saved_regsize to 8.
3552
3553 2002-08-06  Andrew Cagney  <ac131313@redhat.com>
3554
3555         * gcore.c: Do not include <sys/procfs.h>.
3556         * Makefile.in (gcore.o): Update dependencies.
3557
3558 2002-08-06  Andrew Cagney  <cagney@redhat.com>
3559
3560         * configure.tgt: Make arc-*-* obsolete.
3561         * NEWS: Mention that arc-*-* has been identifed as obsolete.
3562         * MAINTAINERS: Make arc-elf obsolete.
3563         * arc-tdep.c: Make file obsolete.
3564         * config/arc/arc.mt: Ditto.
3565         * config/arc/tm-arc.h: Ditto.
3566
3567 2002-08-05  Theodore A. Roth  <troth@verinet.com>
3568
3569         * avr-tdep.c (avr_skip_prologue): Fix to return the correct pc.
3570
3571 2002-08-05  Andrew Cagney  <ac131313@redhat.com>
3572
3573         * mcore-tdep.c (mcore_gdbarch_init): Use
3574         generic_unwind_get_saved_register instead of
3575         generic_get_saved_register.
3576         * v850-tdep.c (v850_gdbarch_init): Ditto.
3577         * frv-tdep.c (frv_gdbarch_init): Ditto.
3578         * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
3579         * s390-tdep.c (s390_gdbarch_init): Ditto.
3580         * d10v-tdep.c (d10v_gdbarch_init): Ditto.
3581         * config/mn10200/tm-mn10200.h (GET_SAVED_REGISTER): Ditto.
3582         * config/h8300/tm-h8300.h (GET_SAVED_REGISTER): Ditto.
3583
3584 2002-08-05  Joel Brobecker  <brobecker@gnat.com>
3585
3586         * objfiles.h: Add missing #include "symfile.h"
3587
3588         * Makefile.in (objfiles_h): Add dependency on symfile.h and dependents.
3589
3590 2002-08-04  Andrew Cagney  <ac131313@redhat.com>
3591
3592         From 2002-08-01 david carlton <carlton@math.stanford.edu>:
3593         * hpread.c (hpread_read_struct_type): Deleted superfluous setting
3594         of FIELD_BITSIZE.
3595
3596 2002-08-04  Daniel Jacobowitz  <drow@mvista.com>
3597
3598         * NEWS: Cleanup and nitpick.
3599
3600 2002-08-03  Andrew Cagney  <ac131313@redhat.com>
3601
3602         * NEWS: Cleanup.  Use *-linux*-gnu*.  Only use `*' for headings.
3603
3604 2002-08-03  Andrew Cagney  <ac131313@redhat.com>
3605
3606         * Makefile.in (gdbtk-bp.o): Update dependencies.
3607         (gdbtk-register.o): Ditto.
3608         (gdbtk-varobj.o): Ditto.
3609
3610 2002-08-03  Andrew Cagney  <cagney@redhat.com>
3611
3612         * m68hc11-tdep.c (m68hc11_pseudo_register_read): Replace
3613         m68hc11_fetch_pseudo_register.
3614         (m68hc11_pseudo_register_write): Replace
3615         m68hc11_store_pseudo_register.
3616         (m68hc11_gdbarch_init): Update.
3617
3618 Fri Aug  2 15:53:50 2002  Andrew Cagney  <cagney@redhat.com>
3619
3620         * gdbarch.sh: Include "gdb_string.h".
3621         * gdbarch.c: Regenerate.
3622
3623         * regcache.c: Include "gdb_string.h".
3624         * ax-general.c: Ditto.
3625         * varobj.c: Ditto.
3626         * std-regs.c: Ditto.
3627         * fbsd-proc.c: Ditto.
3628         * thread.c: Ditto.
3629
3630         * Makefile.in (regcache.o): Update dependencies.
3631         (thread.o, gdbarch.o): Ditto.
3632         (ax-general.o, gdbarch.o): Ditto.
3633         (varobj.o, std-regs.o): Ditto.
3634         (fbsd-proc.o): Specify dependencies.
3635
3636 2002-08-02  Andrew Cagney  <cagney@redhat.com>
3637
3638         * regcache.c (regcache_cooked_read): Rename rawnum parameter to
3639         regnum.
3640         (regcache_cooked_write): Ditto.
3641
3642 2002-08-02  Andrew Cagney  <ac131313@redhat.com>
3643
3644         * regcache.c (regcache_cooked_read): New function.
3645         (regcache_cooked_write): New function.
3646         (read_register_gen): Rewrite using regcache_cooked_read.
3647         (write_register_gen): Rewrite using regcache_cooked_write.
3648
3649         * regcache.h (regcache_cooked_read, regcache_cooked_write):
3650         Declare.
3651
3652 2002-08-02  Andrew Cagney  <cagney@redhat.com>
3653
3654         * gdbarch.sh (pseudo_register_read, pseudo_register_write):
3655         Replace the architecture methods register_read and register_write.
3656         * gdbarch.h, gdbarch.c: Regenerate.
3657         * regcache.c (init_regcache_descr): Update.
3658         (read_register_gen): Update.
3659         (write_register_gen): Update.
3660         (supply_register): Update comment.
3661
3662         * sh-tdep.c (sh_gdbarch_init): Update.
3663         (sh_pseudo_register_read, sh64_pseudo_register_read): Add
3664         `regcache' and `gdbarch' parameters.  Make `buffer' a void
3665         pointer.  Update code.
3666         (sh_pseudo_register_write, sh64_pseudo_register_write): Add
3667         `regcache' and `gdbarch' parameters.  Make `buffer' a constant
3668         void pointer.  Update code.
3669         (sh64_register_write): Delete.
3670         (sh4_register_read): Delete.
3671         (sh64_register_read): Delete.
3672         (sh4_register_write): Delete.
3673         (sh_sh4_register_convert_to_raw): Make `from' parameter a constant
3674         void pointer, `to' parameter a void pointer.
3675         (sh_sh64_register_convert_to_raw): Ditto.
3676
3677 2002-08-01  Kevin Buettner  <kevinb@redhat.com>
3678
3679         * mips-tdep.c (mips_register_virtual_type): Use architecture
3680         invariant return values.
3681
3682 2002-08-01  Andrew Cagney  <cagney@redhat.com>
3683
3684         * linux-proc.c: Include "gdb_string.h".
3685         * Makefile.in (linux-proc.o): Update dependency list.
3686
3687 2002-08-01  Kevin Buettner  <kevinb@redhat.com>
3688
3689         * mips-tdep.c (mips_gdbarch_init): Add comments.  Fix typo in
3690         comment.
3691
3692 2002-08-01  Grace Sainsbury  <graces@redhat.com>
3693
3694         * target.h: Add to_insert_hw_breakpoint, to_remove_hw_breakpoint,
3695         to_insert_watchpoint, to_remove_watchpoint,
3696         to_stopped_by_watchpoint, to_stopped_data_address,
3697         to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint to
3698         target vecctor. Define their corresponding macros so they call
3699         them.
3700         
3701         * target.c: Add default and debug versions of for
3702         to_insert_hw_breakpoint, to_remove_hw_breakpoint,
3703         to_insert_watchpoint, to_remove_watchpoint,
3704         to_stopped_by_watchpoint, to_stopped_data_address,
3705         to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint.
3706
3707 2002-08-01  Kevin Buettner  <kevinb@redhat.com>
3708
3709         * mips-tdep.c (mips_register_virtual_type): New function.
3710         (mips_gdbarch_init): Register mips_register_virtual_type()
3711         with gdbarch machinery.
3712         * config/mips/tm-irix6.h (mips/tm-bigmips64.h): Include
3713         this file instead of tm-bigmips.h.
3714         (MIPS_REGSIZE): Delete this macro.
3715         (REGISTER_VIRTUAL_TYPE): Delete macro.  Undef macro so that
3716         multiarch version in mips-tdep.c will be found.
3717
3718 2002-08-01  Andrew Cagney  <cagney@redhat.com>
3719
3720         * NEWS: Menion that CHILL has been made obsolete.
3721
3722         * gdbtypes.c (chill_varying_type): Make chill references obsolete.
3723         * stabsread.c (read_range_type): Ditto.
3724         * gdbtypes.h: Ditto.
3725         * language.c (binop_type_check): Ditto.
3726         (binop_result_type): Ditto.
3727         (integral_type): Ditto.
3728         (character_type): Ditto.
3729         (string_type): Ditto.
3730         (boolean_type): Ditto.
3731         (structured_type): Ditto.
3732         (lang_bool_type): Ditto.
3733         (binop_type_check): Ditto.
3734         * language.h (_LANG_chill): Ditto.
3735         * dwarfread.c (set_cu_language): Ditto.
3736         * dwarfread.c (CHILL_PRODUCER): Ditto.
3737         * dwarfread.c (handle_producer): Ditto.
3738         * expression.h (enum exp_opcode): Ditto.
3739         * eval.c: Ditto for comments.
3740         * typeprint.c (typedef_print) [_LANG_chill]: Ditto.
3741         * expprint.c (print_subexp): Ditto.
3742         (print_subexp): Ditto.
3743         * valops.c (value_cast): Ditto.
3744         (search_struct_field): Ditto.
3745         * value.h (COERCE_VARYING_ARRAY): Ditto.
3746         * symfile.c (init_filename_language_table): Ditto.
3747         (add_psymbol_with_dem_name_to_list): Ditto.
3748         * valarith.c (value_binop): Ditto.
3749         (value_neg): Ditto.
3750         * valops.c (value_slice): Ditto.
3751         * symtab.h (union language_specific): Ditto.
3752         (SYMBOL_INIT_LANGUAGE_SPECIFIC): Ditto.
3753         (SYMBOL_DEMANGLED_NAME): Ditto.
3754         (SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
3755         * defs.h (enum language): Ditto.
3756         * symtab.c (got_symtab): Ditto.
3757         * utils.c (fprintf_symbol_filtered): Ditto.
3758
3759         * ch-typeprint.c: Make file obsolete.
3760         * ch-valprint.c: Make file obsolete.
3761         * ch-lang.h: Make file obsolete.
3762         * ch-exp.c: Make file obsolete.
3763         * ch-lang.c: Make file obsolete.
3764
3765         * Makefile.in (FLAGS_TO_PASS): Do not pass CHILL or CHILLFLAGS or
3766         CHILL_LIB.
3767         (TARGET_FLAGS_TO_PASS): Ditto.
3768         (CHILLFLAGS): Obsolete.
3769         (CHILL): Obsolete.
3770         (CHILL_FOR_TARGET): Obsolete.
3771         (CHILL_LIB): Obsolete.
3772         (SFILES): Remove ch-exp.c, ch-lang.c, ch-typeprint.c and
3773         ch-valprint.c.
3774         (HFILES_NO_SRCDIR): Remove ch-lang.h.
3775         (COMMON_OBS): Remove ch-valprint.o, ch-typeprint.o, ch-exp.o and
3776         ch-lang.o.
3777         (ch-exp.o, ch-lang.o, ch-typeprint.o, ch-valprint.o): Delete
3778         targets.
3779
3780 2002-07-31  Joel Brobecker  <brobecker@gnat.com>
3781
3782         * dwarf2read.c (set_cu_language): Add handler for LANG_Ada95.
3783         This does not change anything at the moment, but will be helpful
3784         later when full Ada support is integrated.
3785
3786 2002-07-31  Kevin Buettner  <kevinb@redhat.com>
3787
3788         * mips-tdep.c (_initialize_mips_tdep): Add "n64" to "set mips abi"
3789         help message.
3790
3791 2002-07-31  Kevin Buettner  <kevinb@redhat.com>
3792
3793         * mips-tdep.c (mips_push_arguments): Fetch gdbarch_tdep struct
3794         and save it in a local variable.  Use variable in later test.
3795
3796 2002-07-31  Kevin Buettner  <kevinb@redhat.com>
3797
3798         * mips-tdep.c (mips_find_abi_section): Add N64 ABI recognition
3799         test.  (Thanks to Daniel Jacobowitz.)
3800         
3801 2002-07-31  Kevin Buettner  <kevinb@redhat.com>
3802
3803         * mips-tdep.c (enum mips_abi): Add MIPS_ABI_N64.
3804         (mips_abi_strings): Add "n64".
3805         (mips_gdbarch_init): Add test for n64 abi.  Add MIPS_ABI_N64 case.
3806
3807 2002-07-31  Kevin Buettner  <kevinb@redhat.com>
3808
3809         * config/mips/tm-irix6.h (MIPS_REGSIZE): Define to be 8.
3810         (REGISTER_VIRTUAL_TYPE): Some registers are now 64 bits wide.
3811
3812 2002-07-31  Kevin Buettner  <kevinb@redhat.com>
3813
3814         * utils.c (host_pointer_to_address, address_to_host_pointer):
3815         Use gdb_assert() instead of explicit call to internal_error().
3816
3817 2002-07-30  Kevin Buettner  <kevinb@redhat.com>
3818
3819         * Makefile.in (rs6000-nat.o): Update dependencies.
3820
3821         From Nicholas Duffek:
3822         * Makefile.in (ALLDEPFILES): Add aix-thread.c.
3823         (aix-thread.o): New rule.
3824         * configure.host (gdb_host): Set to aix432 on AIX 4.3.2+.
3825         * config/powerpc/aix432.mh: New file.
3826
3827 2002-07-30  Daniel Jacobowitz  <drow@mvista.com>
3828
3829         * ppc-linux-tdep.c (ELF_NGREG, ELF_NFPREG, ELF_NVRREG)
3830         (ELF_FPREGSET_SIZE, ELF_GREGSET_SIZE): New enums.
3831         (fetch_core_registers, ppc_linux_supply_gregset)
3832         (ppc_linux_supply_fpregset): New functions.
3833         (ppc_linux_regset_core_fns): New.
3834         (_initialize_ppc_linux_tdep): Call add_core_fns.
3835         * ppc-tdep.h: Add prototypes for ppc_linux_supply_fpregset
3836         and ppc_linux_supply_gregset.
3837         * ppc-linux-nat.c (supply_gregset): Call ppc_linux_supply_gregset.
3838         (supply_fpregset): Call ppc_linux_supply_fpregset.
3839         * config/powerpc/linux.mh (NATDEPFILES): Remove core-regset.o and
3840         corelow.o.
3841         * config/powerpc/linux.mt (TDEPFILES): Add corelow.o.
3842
3843 2002-07-30  Daniel Jacobowitz  <drow@mvista.com>
3844
3845         * symtab.c (lookup_symbol): Demangle before lowercasing.
3846
3847 2002-07-30  Andrew Cagney  <ac131313@redhat.com>
3848
3849         * symtab.h: Replace #include "gdb_obstack.h" with opaque
3850         declaration.
3851         * cli/cli-cmds.c, cli/cli-script.c: Include "gdb_string.h".
3852         * gnu-v3-abi.c, arc-tdep.c, cli/cli-decode.c: Ditto.
3853         * avr-tdep.c, mon960-rom.c, i960-tdep.c: Ditto.
3854         * arch-utils.c, cli/cli-setshow.c: Unconditionally include
3855         "gdb_string.h".
3856         * Makefile.in (cli-script.o, cli-cmds.o): Update dependencies.
3857         (gnu-v3-abi.o, cli-setshow.o, i960-tdep.o): Ditto.
3858         (cli-decode.o, mi-cmd-var.o, mi-cmd-disas.o): Ditto.
3859         (avr-tdep.o, mon960-rom.o): Ditto.
3860         (aout_stabs_gnu_h): Define.
3861         (symtab_h): Remove $(gdb_obstack_h).
3862
3863 2002-07-30  Jim Blandy  <jimb@redhat.com>
3864
3865         Patch from David Carlton <carlton@math.stanford.edu>:
3866         * gdbinit.in: Move the `dir' commands that add GDB's own source
3867         directory to the search path to the end, so that the `gdb' source
3868         directory will be searched first.
3869
3870 2002-07-29  Andrew Cagney  <ac131313@redhat.com>
3871
3872         * gdb_obstack.h: New file.
3873         * symtab.h: Include "gdb_obstack.h" instead of "obstack.h".
3874         (obstack_chunk_alloc, obstack_chunk_free): Delete macros.
3875         * objfiles.h: Include "gdb_obstack.h".
3876         * Makefile.in (gdb_obstack_h): Define.
3877         (symtab_h): Add $(gdb_obstack_h).
3878         (objfiles_h): Add $(gdb_obstack_h).
3879         
3880         * objfiles.c: Include "gdb_obstack.h" instead of "obstack.h".
3881         * macrotab.c, cp-valprint.c, dbxread.c: Ditto.
3882         * ch-typeprint.c, ch-valprint.c, dstread.c: Ditto.
3883         * macroexp.c, p-typeprint.c, stabsread.c: Ditto.
3884         * symtab.c, f-typeprint.c, mdebugread.c: Ditto.
3885         * p-valprint.c, symmisc.c, typeprint.c: Ditto.
3886         * symfile.c, coffread.c, c-typeprint.c: Ditto.
3887         * buildsym.c, bcache.c, ada-typeprint.c: Ditto.
3888
3889         * Makefile.in (bcache.o): Update dependencies.
3890         (buildsym.o, c-typeprint.o, ch-typeprint.o): Ditto.
3891         (ch-valprint.o, coffread.o, cp-valprint.o): Ditto.
3892         (dbxread.o, dstread.o, f-typeprint.o): Ditto.
3893         (objfiles.o, p-typeprint.o, p-valprint.o): Ditto.
3894         (stabsread.o, symfile.o, symmisc.o): Ditto.
3895         (symtab.o, typeprint.o, macroexp.o): Ditto.
3896         (macrotab.o, mdebugread.o): Ditto.
3897         (f_lang_h, coff_sym_h, coff_symconst_h): Define.
3898         (coff_ecoff_h, aout_aout64_h): Define.
3899         (aout_stabs_gnu_h, libaout_h): Define.
3900
3901 2002-07-29  Andrew Cagney  <cagney@redhat.com>
3902
3903         * regcache.c (struct regcache_descr): Rename nr_registers to
3904         nr_cooked_registers.  Revise comments describing the structure
3905         member fields.
3906         (init_regcache_descr): Update.
3907         (init_legacy_regcache_descr): Update.
3908         (read_register_gen, write_register_gen): When a cooked register in
3909         the raw register range, directly access the value from the raw
3910         register cache.
3911
3912 2002-07-29  Andrew Cagney  <ac131313@redhat.com>
3913
3914         * z8k-tdep.c: Do not include "obstack.h".
3915         * h8300-tdep.c, h8500-tdep.c: Ditto.
3916         * m68hc11-tdep.c, sh-tdep.c: Ditto.
3917         * valprint.c, v850-tdep.c: Ditto.
3918         * d10v-tdep.c, mn10300-tdep.c: Ditto.
3919         * mn10200-tdep.c: Ditto.
3920
3921         * Makefile.in (z8k-tdep.o): Update dependencies.
3922         (m68hc11-tdep.o, valprint.o): Ditto.
3923         (v850-tdep.o, d10v-tdep.o): Ditto.
3924         (mn10300-tdep.o, sparc-tdep.o): Ditto.
3925         (sh-tdep.o, h8500-tdep.o, h8300-tdep.o): Ditto.
3926         (m32r-tdep.o, mn10200-tdep.o): Specify dependencies.
3927         (sh_opc_h, gdb_sim_sh_h): Define.
3928         (elf_sh_h, elf_bfd_h): Define.
3929         (opcode_m68hc11_h): Define.
3930         (OPCODES_SRC, OPCODES_DIR): define.
3931         (OPCODES): Use $(OPCODES_DIR).
3932         (gdb_sim_d10v_h): Rename sim_d10v_h.
3933         (gdb_sim_arm_h): Rename sim_arm_h.
3934
3935 2002-07-26  Kevin Buettner  <kevinb@redhat.com>
3936
3937         * utils.c (host_pointer_to_address, address_to_host_pointer):
3938         Change internal_error() message to indicate function responsible
3939         for the error.
3940
3941 2002-07-26  Kevin Buettner  <kevinb@redhat.com>
3942
3943         * ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in
3944         calls to local_hex_string_custom().
3945
3946 2002-07-26  Kevin Buettner  <kevinb@redhat.com>
3947
3948         * irix5-nat.c: Move IRIX shared library support from here...
3949         * solib-irix.c: ...to here.  Revised substantially to work with
3950         generic solib framework.
3951
3952         * osabi.h (gdb_osabi): Add new enum constant GDB_OSABI_IRIX.
3953         * osabi.c (gdb_osabi_names): Add corresponding string for Irix.
3954         * mips-irix-tdep.c: New file.
3955
3956         * Makefile.in (ALLDEPFILES): Add mips-irix-tdep.c and solib-irix.c.
3957         (mips-irix-tdep.o, solib-irix.o): New rules.
3958         * config/mips/irix5.mt (TDEPFILES): Add mips-irix-tdep.o, solib.o,
3959         solib-irix.o.
3960         * config/mips/irix6.mt (TDEPFILES): Likewise.
3961         * config/mips/irix6.mh (NATDEPFILES): Remove solib.o.
3962
3963 2002-07-26  Kevin Buettner  <kevinb@redhat.com>
3964
3965         * aix-thread.c (coff/internal.h, bfd/libcoff.h, pthread.h): Remove
3966         disabled (via ``#if 0'') includes.
3967
3968 2002-07-26  Kevin Buettner  <kevinb@redhat.com>
3969
3970         * aix-thread.c (special_register_p, supply_sprs64, supply_sprs32)
3971         (fetch_regs_user_thread, fetch_regs_kernel_thread, fill_sprs64)
3972         (fill_sprs32, store_regs_user_thread, store_regs_kernel_thread):
3973         Add support for the fpscr register.
3974         * rs6000-nat.c (regmap, fetch_inferior_registers)
3975         (store_inferior_registers, fetch_core_registers): Likewise.
3976
3977 2002-07-26  Kevin Buettner  <kevinb@redhat.com>
3978
3979         * rs6000-nat.c (language.h): Include.
3980         (special_regs): Delete this array.
3981         (regmap): New function.
3982         (fetch_register, store_register):  Use regmap() to map gdb
3983         register numbers to ptrace register numbers.  Also, use
3984         outputs from regmap() to make decisions regarding type of
3985         ptrace() call to make.  In particular, don't compare against
3986         FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
3987         (fetch_inferior_registers, store_inferior_registers): Where
3988         possible, obtain register numbers from tdep struct.  Don't
3989         refer to FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
3990         * config/rs6000/tm-rs6000.h (FIRST_UISA_SP_REGNUM)
3991         (LAST_UISA_SP_REGNUM): Delete.
3992         
3993 2002-07-25  Kevin Buettner  <kevinb@redhat.com>
3994
3995         * rs6000-nat.c (ppc-tdep.h): Include.
3996         (fetch_registers, store_register, fetch_core_registers): Don't
3997         access registers[] directly.  Instead, use supply_register() or
3998         regcache_collect() as appropriate.
3999         (find_toc_address): Format hex address with local_hex_string().
4000
4001 2002-07-25  Andrew Cagney  <ac131313@redhat.com>
4002
4003         * config/djgpp/fnchange.lst: Rename bfd/elf32-fr30.c and
4004         bfd/elf32-frv.c.
4005
4006 2002-07-24  Tom Tromey  <tromey@redhat.com>
4007
4008         * jv-exp.y: Marked all strings with _().
4009         (ClassInstanceCreationExpression, ArrayCreationExpression): Use
4010         internal_error.
4011         (MethodInvocation, CastExpression, parse_number, yyerror,
4012         java_type_from_name, push_expression_name, yylex): Typo fixes.
4013
4014 2002-07-24  Daniel Jacobowitz  <drow@mvista.com>
4015
4016         * ui-file.c (struct tee_file, tee_file_new, tee_file_delete)
4017         (tee_file_flush, tee_file_write, tee_file_fputs)
4018         (tee_file_isatty): New.
4019         * ui-file.h (tee_file_new): Add prototype.
4020
4021 2002-07-24  Aidan Skinner <aidan@velvet.net>
4022
4023         * ada-lang.c: Change k&r style function definitions to prototyped
4024         form.
4025         * ada-typeprint.c: Change k&r style function definitions to prototyped
4026         form.
4027         * ada-valprint.c: Change k&r style function definitions to prototyped
4028         form.
4029         
4030 2002-07-24  Andrew Cagney  <cagney@redhat.com>
4031
4032         * README: Remove reference to remote-bug.
4033         * Makefile.in (ALLDEPFILES): Remove m88k-nat.c, m88k-tdep.c and
4034         remote-bug.c.
4035         (m88k-nat.o): Delete rule.
4036         (m88k-tdep.o): Delete rule.
4037         (remote-bug.o): Delete rule.
4038         * MAINTAINERS: Mark as obsolete.
4039         * elfread.c (elf_symtab_read): Mention that m88k is obsolete.
4040         * m88k-tdep.c: Make file obsolete.
4041         * config/m88k/m88k.mh: Ditto.
4042         * config/m88k/delta88v4.mh: Ditto.
4043         * config/m88k/delta88v4.mt: Ditto.
4044         * config/m88k/delta88.mt: Ditto.
4045         * config/m88k/delta88.mh: Ditto.
4046         * remote-bug.c: Ditto.
4047         * config/m88k/tm-delta88.h: Ditto.
4048         * config/m88k/nm-delta88v4.h: Ditto.
4049         * config/m88k/xm-delta88.h: Ditto.
4050         * config/m88k/xm-dgux.h: Ditto.
4051         * config/m88k/tm-m88k.h: Ditto.
4052         * config/m88k/nm-m88k.h: Ditto.
4053         * config/m88k/tm-delta88v4.h: Ditto.
4054         * m88k-nat.c: Ditto.
4055         * cxux-nat.c: Ditto.
4056         * configure.host: Make m88*-motorola-sysv4*, m88*-motorola-sysv*
4057         and m88*-*-* obsolete.
4058         * configure.tgt: Make m88*-motorola-sysv4*, m88*-motorola-* and
4059         m88*-*-* obsolete.
4060
4061 2002-07-24  Andrew Cagney  <cagney@redhat.com>
4062
4063         * findvar.c (extract_unsigned_integer): Make `addr' parameter
4064         constant.  Same for local pointer variables.
4065         (extract_signed_integer): Ditto.
4066         * defs.h (extract_unsigned_integer): Update.
4067         (extract_signed_integer): Update.
4068
4069 2002-07-24  Andrew Cagney  <cagney@redhat.com>
4070
4071         * regcache.c (regcache_raw_write): Change buf parameter to a
4072         constant void pointer.
4073         (regcache_raw_read): Change buf parameter to a void pointer.
4074         (legacy_write_register_gen): Change myaddr parameter a constant
4075         void pointer.
4076         (supply_register): Change val parameter to a const void pointer.
4077         * regcache.h (regcache_raw_write): Update declaration.
4078         (regcache_raw_read): Update declaration.
4079         (supply_register): Update declaration.
4080
4081 2002-07-24  Tom Tromey  <tromey@redhat.com>
4082
4083         * defs.h (gdb_readline_wrapper): Declare.
4084         * utils.c (prompt_for_continue): Use gdb_readline_wrapper.
4085         * tracepoint.c (read_actions): Use gdb_readline_wrapper.
4086         * top.c (gdb_readline_wrapper): New function.
4087         (command_line_input): Use it.
4088
4089 2002-07-24  Andrew Cagney  <cagney@redhat.com>
4090
4091         * regcache.h (regcache_raw_read, regcache_raw_write): Replace
4092         regcache_read and regcache_write.
4093         (regcache_raw_read_as_address): Replace regcache_read_as_address.
4094         * regcache.c: Update.
4095         * sh-tdep.c (sh64_push_arguments): Update comment.
4096         (sh_pseudo_register_read): Update.
4097         (sh_pseudo_register_write): Update.
4098         (sh4_register_read): Update.
4099         (sh4_register_write): Update.
4100         (sh64_pseudo_register_read): Update.
4101         (sh64_pseudo_register_write): Update.
4102         (sh64_register_read): Update.
4103         (sh64_register_write): Update.
4104         * i386-tdep.c (i386_extract_return_value): Update.
4105         (i386_extract_struct_value_address): Update.
4106         (i386_extract_return_value): Update.
4107         * blockframe.c (generic_read_register_dummy): Update.
4108         (generic_call_dummy_register_unwind): Update
4109         * infrun.c (write_inferior_status_register): Update.
4110
4111 2002-07-23  Jim Blandy  <jimb@redhat.com>
4112
4113         * parser-defs.h (expression_context_pc): Make this extern.
4114         (Thanks to Michael Snyder.)
4115
4116 2002-07-23  Andrew Cagney  <ac131313@redhat.com>
4117
4118         GDB 5.2.1 released from 5.2 branch.
4119         * NEWS: Mention changes in 5.2.1 including addition of AVR target.
4120         * README: Update to mention 5.2.1.
4121
4122 2002-07-23  Mark Salter  <msalter@redhat.com>
4123
4124         * remote.c (remote_read_bytes): Fix check for error.
4125
4126 2002-07-22  Kevin Buettner  <kevinb@redhat.com>
4127
4128         * aix-thread.c (language.h): Include.
4129         (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
4130         (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
4131         Print newlines at end of debug messages.
4132         (pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
4133         (pdc_write_data): Use local_hex_string() instead of %llx formats.
4134
4135 2002-07-22  Kevin Buettner  <kevinb@redhat.com>
4136
4137         * aix-thread.c (ppc-tdep.h): Include.
4138         (special_register_p): New function.
4139         (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32)
4140         (store_regs_user_thread): Use register number information from
4141         gdbarch_tdep struct instead of hardcoded offsets relative to
4142         FIRST_UISA_SP_REGNUM.
4143         (fetch_regs_kernel_thread, store_regs_kernel_thread):  Call
4144         special_register_p() instead of using FPLAST_REGNUM and
4145         LAST_UISA_SP_REGNUM as lower and upper bounds on the special
4146         register numbers.  Also, don't assume that LAST_UISA_SP_REGNUM
4147         will be MQ's register number.
4148
4149 2002-07-22  Michael Snyder  <msnyder@redhat.com>
4150
4151         * aix-thread.c (ops): Rename to aix_thread_ops.
4152         (base_ops): Rename to base_target.
4153         (ops_attach): Rename to aix_thread_attach.
4154         (ops_detach): Rename to aix_thread_detach.
4155         (ops_resume): Rename to aix_thread_detach.
4156         (ops_wait):   Rename to aix_thread_wait.
4157         (ops_kill):   Rename to aix_thread_kill.
4158         (init_ops):   Rename to init_aix_thread_ops.
4159         (ops_fetch_register): Rename to aix_thread_fetch_register.
4160         (ops_store_register): Rename to aix_thread_store_register.
4161         (ops_mourn_inferior): Rename to aix_thread_mourn_inferior.
4162         (ops_thread_alive):   Rename to aix_thread_thread_alive.
4163         (ops_extra_thread_info: Rename to aix_thread_extra_thread_info.
4164         (ops_pid_to_str):  Rename to aix_thread_pid_to_str.
4165         (ops_xfer_memory): Rename to aix_thread_xfer_memory.
4166         (fetch_regs_lib):  Rename to fetch_regs_user_thread.
4167         (fetch_regs_kern): Rename to fetch_regs_kernel_thread.
4168         (store_regs_lib):  Rename to store_regs_user_thread.
4169         (store_regs_kern): Rename to store_regs_kernel_thread.
4170
4171 2002-07-22  Michael Snyder  <msnyder@redhat.com>
4172
4173         * aix-thread.c (ops_prepare_to_store): Eliminate.
4174         (init_ops): Don't initialize ops.prepare_to_store.
4175         (store_regs_kern): Pre-fetch register buffers from child, 
4176         because some registers may not be in the cache.  Copy
4177         regs from register cache only if they are cached.
4178         (store_regs_lib): Copy regs from register cache only
4179         if they are cached.
4180         (fill_sprs32, (fill_sprs64, fill_fprs, fill_gprs32,
4181         fill_gprs64): Ditto.
4182
4183 2002-07-22  Kevin Buettner  <kevinb@redhat.com>
4184
4185         * aix-thread.c (gdb_assert.h): Include.
4186         (fill_sprs64, fill_sprs32): Add selected asserts to make sure that
4187         register sizes (from register cache) match size of buffer holding
4188         register data.
4189         (fill_sprs32): Change parameter types to match those in the ptrace()
4190         buffer.
4191         (store_regs_lib): Likewise, but for 32-bit temporary variables.
4192         (ops_prepare_to_store): Rename loop variable ``i'' to ``regno''.
4193
4194 2002-07-22  Michael Snyder  <msnyder@redhat.com>
4195
4196         * aix-thread.c (supply_sprs64): Cosmetic change.
4197         (supply_sprs32): Cosmetic change.
4198         (fill_gprs64, fill_gprs32, fill_fprs, fill_sprs32): New funcs.
4199         (fill_sprs64): Use regcache_collect instead of read_register.
4200         (store_regs_lib): Use regcache_collect instead of 
4201         read_register.  Use fill_sprs32 instead of fill_sprs64,
4202         if debugging a 32-bit architecture.
4203         (store_regs_kern): Use fill_gprs64 etc. to pull the values
4204         out of the register cache, instead of passing a pointer into
4205         the register cache directly to ptrace.  Use regcache_collect
4206         insteaad of read_register.
4207         (ops_prepare_to_store): Use target_read_registers instead
4208         of read_register_bytes.
4209
4210 2002-07-20  Aidan Skinner <aidan@velvet.net>
4211
4212         * MAINTAINERS: Add self under write after approval. 
4213                 
4214 2002-07-20  Aidan Skinner <aidan@velvet.net>
4215
4216         * ada-tasks.c: Change k&r style function definitions to prototyped
4217         form.
4218                 
4219 2002-07-19  Andrew Cagney  <ac131313@redhat.com>
4220
4221         * Makefile.in (x86-64-tdep.o): Add $(objfiles_h).
4222         * x86-64-tdep.c: Include "objfiles.h".
4223         (x86_64_gdbarch_init): Set in_solib_call_trampoline to
4224         in_plt_section.  From 2002-07-18 Michal Ludvig <mludvig@suse.cz>.
4225
4226 2002-07-17  Michal Ludvig  <michal@suse.cz>
4227
4228         * dwarf2cfi.c (execute_stack_op): Complain on unknown DW_OP_ value.
4229         (update_context): Initialise cfa variable.
4230
4231 2002-07-17  Michael Snyder  <msnyder@redhat.com>
4232
4233         * aix-thread.c: Shorten some long lines.  
4234         Bring comments into line with code spec.
4235
4236 2002-07-18  Joel Brobecker  <brobecker@gnat.com>
4237
4238         * infrun.c: Re-indent using gdb_indent.sh.
4239
4240 2002-07-18  Joel Brobecker  <brobecker@gnat.com>
4241
4242         * infrun.c (handle_inferior_event): Remove unneeded extra brace.
4243         Leave the indentation temporarily untouched, to minimize the diffs.
4244
4245 2002-07-18  Elena Zannoni  <ezannoni@redhat.com>
4246
4247         * stabsread.c: Make os9k sections of the code obsolete,
4248         for real this time.
4249         * stabsread.h: Make os9k sections of the code obsolete.
4250
4251 2002-07-18  Michal Ludvig <mludvig@suse.cz>
4252
4253         * linux-low.c (regsets_store_inferior_registers): Add free()
4254         at the end of a loop to prevent memory leak.
4255         * linux-x86-64-low.c (x86_64_regmap): Add CS, SS registers.
4256         (X86_64_NUM_GREGS): Count it from the size of x86_64_regmap.
4257         * config/sparc/tm-sp64linux.h: Make the rest of #endif
4258         line a comment.
4259         * Makefile.in (x86-64-linux-nat.o): Remove dependency on i387-tdep.h
4260
4261 2002-07-17  Jim Blandy  <jimb@redhat.com>
4262
4263         * macrocmd.c (info_macro_command): Remove newline from error
4264         message.
4265
4266 2002-07-17  J"orn Rennecke <joern.rennecke@superh.com>
4267
4268         * sh-tdep.c (sh_dsp_register_sim_regno): New function.
4269         (sh_gdbarch_init): Use it for sh-dsp.
4270
4271 2002-07-16  Kevin Buettner  <kevinb@redhat.com>
4272
4273         * dwarf2read.c (read_initial_length): Handle older, non-standard,
4274         64-bit DWARF2 format.
4275
4276 2002-07-16  Joel Brobecker  <brobecker@gnat.com>
4277
4278         * proc-api.c: use HAVE_SYS_PROC_H macro to avoid including
4279         <sys/proc.h> when not available.
4280
4281 2002-07-16  Andrew Cagney  <ac131313@redhat.com>
4282
4283         * NEWS: Mention that the i[34]86-*-os9k has been made obsolete.
4284         * stabsread.c: Make os9k sections of the code obsolete.
4285         * configure.tgt: Make i[3456]86-*-os9k target obsolete.
4286         * config/i386/i386os9k.mt: Make file obsolete.
4287         * Makefile.in (ALLDEPFILES): Remove remote-os9k.c.
4288         (COMMON_OBS): Remove os9kread.o
4289         (SFILES): Remove os9kread.c.
4290         (os9kread.o, remote-os9k.o): Make target obsolete.
4291         * remote-os9k.c: Make file obsolete.
4292         * os9kread.c: Make file obsolete.
4293         * Makefile.in
4294
4295 2002-07-16  Andrew Cagney  <ac131313@redhat.com>
4296
4297         * NEWS: Mention that the FR30 has been made obsolete.
4298         * fr30-tdep.c: Make file obsolete.
4299         * config/fr30/tm-fr30.h: Ditto.
4300         * config/fr30/fr30.mt: Ditto.
4301         * configure.tgt: Make fr30-*-elf obsolete.
4302         * MAINTAINERS: Make fr30-elf obsolete.
4303
4304 2002-07-16  Pierre Muller  <muller@ics.u-strasbg.fr>
4305
4306         * blockframe.c (get_pc_function_start): return 0 if the minimal symbol
4307         found is not inside a section.
4308
4309 2002-07-15  Kevin Buettner  <kevinb@redhat.com>
4310
4311         * aix-thread.c (ptrace_check): Use safe_strerror() instead of
4312         strerror().
4313         (pdc_realloc): Use xrealloc() instead of realloc().
4314
4315 2002-07-15  Kevin Buettner  <kevinb@redhat.com>
4316
4317         * aix-thread.c (PD_ERROR, CALL_BASE): Delete.
4318         (ops_resume, ops_wait, fetch_regs_lib, store_regs_lib)
4319         (ops_xfer_memory, ops_kill): Don't use PD_ERROR or CALL_BASE
4320         macros.
4321
4322 2002-07-15  Kevin Buettner  <kevinb@redhat.com>
4323
4324         * aix-thread.c (ptrace_check): Eliminate goto.
4325         (sync_threadlists): Eliminate gotos.  Also, fix array overrun
4326         problem.
4327
4328 2002-07-15  Kevin Buettner  <kevinb@redhat.com>
4329
4330         * aix-thread.c (gdbcmd.h): Include.
4331         (DEBUG, DBG, DBG2, dbg): Eliminate.
4332         (debug_aix_thread): New static global.
4333         (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
4334         (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
4335         (fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
4336         invocations to DBG and DBG2 macros to test against
4337         ``debug_aix_thread'' and call fprintf_unfiltered().
4338         (_initialize_aix_thread): Add new command "set debug aix-thread".
4339
4340 2002-07-15  Andrew Cagney  <ac131313@redhat.com>
4341
4342         From Gerhard Tonn <TON@de.ibm.com>:
4343         * s390-nat.c (fill_fpregset, fill_gregset): Use regcache_collect
4344         instead of supply_register.
4345
4346 2002-07-15  Andrew Cagney  <ac131313@redhat.com>
4347
4348         * dwarf2cfi.c: Include "gdb_assert.h".
4349         (frame_state_for): Use gdb_assert to check that fde->cie_ptr is
4350         non-NULL.
4351         (update_context): Do not use __func__.  Add missing ``break''.
4352         (update_context): Do not use __func__.
4353
4354 2002-07-15  Elena Zannoni  <ezannoni@redhat.com>
4355
4356         * rs6000-tdep.c (rs6000_gdbarch_init): Remove variable print_insn
4357         and its setting.  Set gdbarch instruction printing functions
4358         directly.  For non-rs6000 case use new function
4359         gdb_print_insn_powerpc.
4360         (gdb_print_insn_powerpc): New function.
4361
4362 2002-07-13  Andrew Cagney  <ac131313@redhat.com>
4363
4364         * NEWS: Mention that the d30v has been marked obsolete.
4365         * MAINTAINERS: Note that d30v / d30v-elf has been made obsolete.
4366         * configure.tgt: Mark d30v-*-* as obsolete.
4367         * d30v-tdep.c: Mark file as obsolete.
4368         * config/d30v/d30v.mt: Ditto.
4369         * config/d30v/tm-d30v.h: Ditto.
4370
4371 2002-07-13  Aidan Skinner <aidan@velvet.net>
4372
4373         * ada-tasks.c (add_task_entry): replace calls to
4374         malloc() with xmalloc
4375         * ada-tasks.c (init_task_list): replace calls to free with xfree()
4376         
4377         * ada-lang.c (replace_operator_with_call, fill_in_ada_prototype,
4378         ada_finish_decode_line_1, all_sals_for_line
4379         ada_breakpoint_rewrite): replace calls to free() with xfree()
4380                 
4381 2002-07-12  Kevin Buettner  <kevinb@redhat.com>
4382
4383         From Nicholas Duffek (with minor changes by Martin Hunt, 
4384         Louis Hamilton, and Kevin Buettner):
4385         * aix-thread.c: New file.
4386
4387 2002-07-12  Petr Sorfa <petrs@caldera.com>
4388
4389         *  dwarf2read.c (dwarf2_invalid_attrib_class): New
4390         complaint for invalid attribute class or form.
4391         (read_func_scope): DW_AT_frame_base
4392         better handling of DW_AT_block*.
4393         (dwarf2_add_member_fn): DW_AT_vtable_elem_location
4394         better handling of DW_AT_block*.
4395         (read_common_block): DW_AT_location
4396         better handling of DW_AT_block*.
4397         (read_partial_die): DW_AT_location better handling
4398         of DW_AT_block*.
4399         (new_symbol): DW_AT_external better handling of
4400         DW_AT_block*. Proper initialization of variable
4401         "addr".
4402         (attr_form_is_block): New function that returns true
4403         if the attribute's form is of DW_FORM_block*.
4404
4405 2002-07-12  Peter Schauer  <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
4406
4407         * valops.c (find_method_list): Remove comment about
4408         removed STATIC_MEMFUNCP argument.
4409         (value_find_oload_method_list): Likewise.
4410
4411 2002-07-12  Kevin Buettner  <kevinb@redhat.com>
4412
4413         From Nicholas Duffek:
4414         * rs6000-nat.c (vmap_ldinfo, xcoff_relocate_core): Call
4415         target_new_objfile_hook.
4416
4417 2002-07-12  Kevin Buettner  <kevinb@redhat.com>
4418
4419         From Nicholas Duffek:
4420         * xcoffread.c (scan_xcoff_symtab): Recognize XMC_TD as a data storage
4421         csect.
4422
4423 2002-07-12  Andrew Cagney  <cagney@redhat.com>
4424
4425         * MAINTAINERS: Mention --enable-sim-build-warnings.
4426         (m68hc11-elf): Disable sim build warnings.
4427         (m32r-elf): Mark as broken obsolete candidate.
4428         (x86_64-linux-gnu): Mark as buildable with -Werror.
4429         (arm-elf): Change -w to ``,'' which enables warnings but not
4430         -Werror.
4431
4432 2002-07-12  Andrew Cagney  <ac131313@redhat.com>
4433
4434         * bcache.h: Update copyright.
4435         (struct bstring, struct bcache): Move definition to "bcache.c".
4436         Replaced by opaque declaration.
4437         (bcache_xfree): Replace free_bcache.
4438         (bcache_xmalloc, bcache_memory_used): Declare.
4439         
4440         * bcache.c: Update copyright.
4441         (struct bstring, struct bcache): Moved to here from "bcache.h".
4442         Update comments.
4443         (bcache_xmalloc, bcache_memory_used): New functions.
4444         (bcache_xfree): Replace function free_bcache.
4445         
4446         * Makefile.in (objfiles.o): Add $(bcache_h).
4447         (objfiles_h): Remove $(bcache_h).
4448         (symfile.o): Add $(bcache_h).
4449
4450         * symmisc.c: Update copyright.
4451         (print_symbol_bcache_statistics): Pass psymbol_cache by value.
4452         (print_objfile_statistics): Use bcache_memory_used.
4453
4454         * symfile.c: Include "bcache.h".
4455         (reread_symbols): Use bcache_xfree.
4456         (reread_symbols): Use bcache_xmalloc and bcache_xfree.
4457         (add_psymbol_to_list): Pass psymbol_cache by value.
4458         (add_psymbol_with_dem_name_to_list): Ditto.
4459
4460         * objfiles.h: Update copyright.
4461         (struct bcache): Declare opaque.  Do not include "bcache.h".
4462         (struct objfile): Change psymbol_cache and macro_cache to ``struct
4463         bcache'' pointers.
4464         * dwarf2read.c (macro_start_file): Pass macro_cache by value.
4465
4466         * objfiles.c: Include "bcache.h".  Update copyright.
4467         (allocate_objfile): Use bcache_xmalloc to create psymbol_cache and
4468         macro_cache.
4469         (free_objfile): Use bcache_xfree.
4470
4471 2002-07-11  Grace Sainsbury  <graces@redhat.com>
4472
4473         * monitor.c (monitor_fetch_register): Make name a constant.
4474         (monitor_store_register): Same.
4475
4476 2002-07-11  Daniel Jacobowitz  <drow@mvista.com>
4477
4478         Based on patch from Daniel Berlin <dberlin@dberlin.org>.
4479         * buildsym.c: Include "demangle.h" for SYMBOL_INIT_DEMANGLED_NAME.
4480         (finish_block) For non-function blocks, hash the symbol table.  For
4481         function blocks, mark the symbol table as unhashed.
4482         * minsyms.c (msymbol_hash): Return hash value without taking modulus.
4483         (msymbol_hash_iw): Likewise.
4484         (add_minsym_to_hash_table): Take modulus of msymbol_hash's return
4485         value.
4486         (add_minsym_to_demangled_hash_table): Likewise for msymbol_hash_iw.
4487         (lookup_minimal_symbol): Likewise for both.
4488         * symtab.h (struct block): Add `hashtable' flag.  Comment the
4489         hashtable.
4490         (BLOCK_HASHTABLE, BLOCK_BUCKETS, BLOCK_BUCKET): New macro.
4491         (ALL_BLOCK_SYMBOLS): Update.
4492         (BLOCK_SHOULD_SORT): Do not sort hashed blocks.
4493         (struct symbol): Add `hash_next' pointer.
4494         * symtab.c (lookup_block_symbol): Search using the hash table when
4495         possible.
4496         (find_pc_sect_symtab): Use ALL_BLOCK_SYMBOLS.
4497         (search_symbols, find_addr_symbol): Likewise.
4498
4499         * dstread.c (process_dst_block): Clear hashtable bit for new block.
4500         (read_dst_symtab): Likewise.
4501         * jv-lang.c (get_java_class_symtab): Likewise.
4502         * mdebugread.c: Include "gdb_assert.h".
4503         (shrink_block): Assert that the block being modified is not hashed.
4504         * coffread.c (patch_opaque_types): Use ALL_BLOCK_SYMBOLS.
4505         * symmisc.c (free_symtab_block): Walk the hash table when freeing
4506         symbols.
4507         (dump_symtab): Recognize hashed blocks.
4508         * printcmd.c (print_frame_args):  Assert that function blocks do not
4509         have hashed symbol tables.
4510         * ada-lang.c (symtab_for_sym): Use ALL_BLOCK_SYMBOLS.
4511         (fill_in_ada_prototype, debug_print_block): Likewise.
4512         (ada_add_block_symbols): Use ALL_BLOCK_SYMBOLS.  Handle hash tables.
4513
4514 2002-07-11  Corinna Vinschen  <vinschen@redhat.com>
4515
4516         * stack.c (print_frame): Use result of frame_address_in_block()
4517         instead of fi->pc when evaluating symbols.
4518         (backtrace_command_1): Ditto.
4519
4520 2002-07-11  Andrew Cagney  <cagney@redhat.com>
4521
4522         * cris-tdep.c (cris_saved_pc_after_call): Fix parameter type.
4523         Make static.
4524
4525         * arm-tdep.c (arm_register_name): Make return type constant.
4526
4527 2002-07-10  Andrew Cagney  <ac131313@redhat.com>
4528
4529         * win32-nat.c (has_detach_ability): Convert to strict ISO C
4530         prototype.
4531         * top.c (gdb_rl_operate_and_get_next_completion): Ditto.
4532         * s390-tdep.c (s390_fp_regnum): Ditto.
4533         (s390_read_fp): Ditto.
4534         (s390_pop_frame): Ditto.
4535         (_initialize_s390_tdep): Ditto.
4536         * remote.c (get_remote_state): Ditto.
4537         * procfs.c (mappingflags): Ditto.
4538         * memattr.c (_initialize_mem): Ditto.
4539         * mcore-tdep.c (mcore_pop_frame): Ditto.
4540         * m68klinux-nat.c (_initialize_m68k_linux_nat): Ditto.
4541         * m68k-tdep.c (m68k_register_bytes_ok): Ditto.
4542         * language.c (set_case_str): Ditto.
4543         * gnu-v3-abi.c (vtable_address_point_offset): Ditto.
4544         * frv-tdep.c (new_variant): Ditto.
4545         (frv_stopped_data_address): Ditto.
4546         * dwarf2cfi.c (fde_chunks_need_space): Ditto.
4547         (context_alloc): Ditto.
4548         (frame_state_alloc): Ditto.
4549         (unwind_tmp_obstack_init): Ditto.
4550         (unwind_tmp_obstack_free): Ditto.
4551         (cfi_read_fp): Ditto.
4552         * cris-tdep.c (cris_saved_pc_after_call): Ditto.
4553         (cris_pop_frame): Ditto.
4554         * c-lang.c (scanning_macro_expansion): Ditto.
4555         (finished_macro_expansion): Ditto.
4556         (c_preprocess_and_parse): Ditto.
4557         * gdbarch.sh: Ditto.
4558         * gdbarch.h, gdbarch.c: Regenerate.
4559         * config/mn10200/tm-mn10200.h: Adjust indentation.
4560         * target.c: Adjust indentation.
4561         * symtab.h: Adjust indentation.
4562         * stabsread.h: Adjust indentation.
4563         * remote-es.c: Adjust indentation.
4564         * os9kread.c: Adjust indentation.
4565
4566 2002-07-10  Andrew Cagney  <ac131313@redhat.com>
4567         
4568         * wince.c (_initialize_wince): Rename _initialize_inftarg.
4569         * win32-nat.c (_initialize_win32_nat): Rename _initialize_inftarg.
4570
4571 2002-07-10  Grace Sainsbury  <graces@redhat.com>
4572         
4573         * NEWS: Mention m68k, mcore multi-arching.  
4574         * MAINTAINERS: Change status of m68k, mcore to reflect
4575         multi-arching.
4576
4577 2002-07-10  Daniel Jacobowitz  <drow@mvista.com>
4578
4579         * valops.c (find_overload_match): Free oload_syms.
4580
4581 2002-07-09  Joel Brobecker  <brobecker@gnat.com>
4582
4583         Define HAVE_SYS_PROC_H if sys/proc.h exists
4584         * configure.in: Add check for sys/proc.h
4585         * config.in: Regenerate.
4586         * configure: Regenerate.
4587
4588 2002-07-09  Grace Sainsbury  <graces@redhat.com>
4589
4590         * config/m68k/tm-m68k.h: Remove macros wrapped in 
4591         #if !GDB_MULTI_ARCH. 
4592
4593 2002-07-08  Andrew Cagney  <ac131313@redhat.com>
4594
4595         * config.in, configure: Regenerate.
4596
4597 2002-07-08  Mark Kettenis  <kettenis@gnu.org>
4598
4599         * dwarf2cfi.c: Include "gcore.h".
4600         (execute_stack_op): Fix implementation of the
4601         DW_OP_deref and DW_OP_deref_size operators by letting do their
4602         lookup in the target.
4603
4604 2002-07-07  Mark Kettenis  <kettenis@gnu.org>
4605
4606         From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de>:
4607         * i386-sol2-tdep.c (i386_sol2_init_abi): Correct value for
4608         tdep->sc_sp_offset.
4609
4610 2002-07-05  Daniel Jacobowitz  <drow@mvista.com>
4611
4612         Fix PR gdb/595, gdb/602
4613         * gnu-v3-abi.c (gnuv3_baseclass_offset): Remove unused variables.
4614         Don't call value_cast, just read the vtable pointer; update comments
4615         to match.
4616
4617 2002-07-05  Grace Sainsbury  <graces@redhat.com>
4618
4619         * config/mcore/tm-mcore.h: Remove file.
4620         * config/mcore/mcore.mt: Remove definition of TM_FILE
4621         * configure.tgt: Set gdb_multi_arch to yes for the mcore target.
4622
4623 2002-07-05  Mark Kettenis  <kettenis@gnu.org>
4624
4625         * i386bsd-tdep.c: Include "gdb_string.h".
4626
4627 2002-07-04  Grace Sainsbury  <graces@redhat.com>
4628
4629         * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Set to 2.
4630         (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG,RETVAL_REGNUM): Move to
4631         mcore-tdep.
4632         (REG_STRUCT_HAS_ADDR, USE_STRUCT_CONVENTION, GET_SAVED_REGISTER)
4633         (TARGET_VIRTUAL_FRAME_POINTER, BELIEVE_PCC_PROMOTION): Remove.
4634         * mcore-tdep.c (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG)
4635         (RETVAL_REGNUM): Move macros from tm-mcore.h
4636         (mcore_reg_struct_has_addr): New function.
4637         (mcore_gdbarch_init): Added initializations for the macros removed
4638         from tm-mcore.h.
4639
4640 2002-07-04  Mark Kettenis  <kettenis@gnu.org>
4641
4642         * osabi.c (generic_elf_osabi_sniffer): Add check for FreeBSD 3.x's
4643         traditonal string branding within the ELF header.
4644
4645 2002-07-04  Daniel Jacobowitz  <drow@mvista.com>
4646
4647         * symtab.c (remove_params): New function.
4648         (make_symbol_overload_list): Use it instead of cplus_demangle.
4649         (overload_list_add_symbol): Likewise.  Reorder.  Fix memory leak.
4650
4651 2002-07-04  Mark Kettenis  <kettenis@gnu.org>
4652
4653         * i386obsd-nat.c (_initialize_i386obsd_nat): Fix typo in prototype.
4654
4655         * i386bsd-tdep.c (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end):
4656         New variables.
4657         (i386nbsd_init_abi): Use these to initialize tdep->sigtramp_start
4658         and tdep->sigtramp_end.
4659         * i386obsd-nat.c: New file.
4660         * config/i386/obsd.mh (NATDEPFILES): Add i386obsd-nat.o.
4661
4662         * dwarf2cfi.c (cfi_pop_frame): Use alloca() for regbuf.
4663         Don't call get_current_frame().
4664
4665 2002-07-04  Pierre Muller  <muller@ics.u-strasbg.fr>
4666
4667         * i386-nat.c (child_post_startup_inferior): New function
4668         calling i386_cleanup_dregs if
4669         I386_USE_GENERIC_WATCHPOINTS is defined.
4670         * config/i386/nm-i386.h: define CHILD_POST_STARTUP_INFERIOR
4671         conditional to acknowledge that i386-nat.c has its
4672         own child_post_startup_inferior function.
4673
4674 2002-07-04  Mark Kettenis  <kettenis@gnu.org>
4675
4676         * i386-tdep.h (I386_MAX_REGISTER_SIZE): New define.
4677         * i386-tdep.c (i386_do_pop_frame): Use I386_MAX_REGISTER_SIZE
4678         instead of MAX_REGISTER_RAW_SIZE.
4679         (i386_extract_return_value, i386_extract_struct_value_address):
4680         Convert to use regcache.
4681         (i386_gdbarch_init): Set max_register_raw_size and
4682         max_register_virtual_size to I386_MAX_REGISTER_SIZE.
4683         Set extract_return_value and extract_struct_value_address instead
4684         of their deprecated variants.
4685
4686         Convert i386 target to generic dummy frames.
4687         * i386-tdep.c: Include "symfile.h".
4688         (i386_frameless_signal_p): Consider a function to be frameless if
4689         the pc points at the first instruction of the function.
4690         (i386_frame_chain): Handle (generic) call dummies.
4691         (i386_frame_saved_pc): Likewise.
4692         (i386_frame_init_saved_regs): Remove code dealing with call
4693         dummies on the stack.
4694         (i386_push_dummy_frame): Removed.
4695         (i386_call_dummy_words): Removed.
4696         (i386_fix_call_dummy): Removed.
4697         (i386_push_return_address): New function.
4698         (i386_do_pop_frame): Renamed from i386_pop_frame.  Add FRAME
4699         parameter, and don't call get_current_frame.
4700         (i386_pop_frame): New function.
4701         (i386_gdbarch_init): Set use_generic_dummy_frames to 1, set
4702         call_dummy_location to AT_ENTRY_POINT, set call_dummy_address to
4703         entry_point_address, set call_dummy_breakpoint_offset to 0, set
4704         call_dummy_length to 0, set call_dummy_words to NULL, set
4705         sizeof_call_dummy_words to 0, set fix_call_dummy to
4706         generic_fix_call_dummy, set pc_in_call_dummy to
4707         pc_in_call_dummy_at_entry_point, set push_dummy_frame to
4708         generic_push_dummy_frame, set push_return_address to
4709         i386_push_return_address and set frame_chain_valid to
4710         generic_file_frame_chain_valid.
4711
4712 2002-07-03  Andrew Cagney  <ac131313@redhat.com>
4713
4714         * gdbarch.sh (struct regcache): Add opaque declaration.
4715         (EXTRACT_RETURN_VALUE): New architecture method.
4716         (EXTRACT_STRUCT_VALUE_ADDRESS): Ditto.
4717         * gdbarch.h, gdbarch.c: Regenerate.
4718         * arch-utils.c (legacy_extract_return_value): New function.
4719         * arch-utils.h (legacy_extract_return_value): Declare.
4720         * values.c (value_being_returned): Re-enable code handling
4721         EXTRACT_STRUCT_VALUE_ADDRESS.  Move
4722         deprecated_grub_regcache_for_registers call to block handling
4723         DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
4724         (EXTRACT_RETURN_VALUE): Do not define.
4725
4726 2002-07-03  Grace Sainsbury  <graces@redhat.com>
4727
4728         * config/mcore/tm-mcore.h (REGISTER_BYTES, NUM_REGS, PC_REGNUM)
4729         (SP_REGNUM, FP_REGNUM, FUNCTION_START_OFFSET, DECR_PC_AFTER_BREAK)
4730         (BREAKPOINT_FROM_PC, INNER_THAN, SAVED_PC_AFTER_CALL)
4731         (INIT_EXTRA_FRAME_INFO, FRAME_INIT_SAVED_REGS, INIT_FRAME_PC)
4732         (FRAME_CHAIN, FRAME_CHAIN_VALID, FRAME_SAVED_PC)
4733         (STORE_RETURN_VALUE, DEPRECATED_EXTRACT_RETURN_VALUE)
4734         (STORE_STRUCT_RETURN, DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
4735         (SKIP_PROLOGUE, FRAME_ARGS_SKIP, FRAME_ARGS_ADDRESS)
4736         (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, POP_FRAME)
4737         (PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME, PUSH_ARGUMENTS): Remove.
4738         * mcore-tdep.c (mcore_init_extra_frame_info): Add fromleaf
4739         argument so the function fits the prototype in the architecture
4740         vector.
4741         (mcore_pop_frame): Remove argument so the function fits the
4742         prototype. Use get_current_frame instead of the argument.
4743         (mcore_push_arguments): Change type of struct_return so the
4744         function can be used in the architecture vector.
4745         (mcore_store_struct_return): Add.
4746         (mcore_frame_init_saved_regs): Add.
4747         (mcore_gdbarch_init): Add function calls to replace the macros
4748         removed from tm-mcore.h
4749
4750 2002-07-03  Andrew Cagney  <ac131313@redhat.com>
4751
4752         * infcmd.c (print_return_value): Remove compatibility code calling
4753         deprecated_grub_regcache_for_registers.
4754         
4755         * values.c: Include "regcache.h".
4756         (value_being_returned): Update.  Use
4757         deprecated_grub_regcache_for_registers to extract the register
4758         buffer address.  
4759         * value.h (value_being_returned): Change ``retbuf'' parameter to a
4760         ``struct regcache''.
4761         * Makefile.in (values.o): Add dependency on $(regcache_h).
4762
4763         * inferior.h (run_stack_dummy): Change type of second parameter to
4764         a ``struct regcache''.
4765         * valops.c (hand_function_call): Change type of retbuf to ``struct
4766         regcache''.  Allocate using regcache_xmalloc, clean using
4767         make_cleanup_regcache_xfree.
4768         * infcmd.c (run_stack_dummy): Update.  Use
4769         regcache_cpu_no_passthrough instead of memcpy to copy the buffer.
4770
4771         * regcache.c (do_regcache_xfree): New function.
4772         (make_cleanup_regcache_xfree): New function.
4773         * regcache.h (make_cleanup_regcache_xfree): Declare.
4774
4775 2002-07-03  Martin M. Hunt  <hunt@redhat.com>
4776
4777         * event-top.c (command_line_handler): Don't read past
4778         beginning of buffer.
4779
4780 2002-07-03  Martin M. Hunt  <hunt@redhat.com>
4781         
4782         * varobj.c (struct varobj_root): Change frame from CORE_ADDR to 
4783         struct frame_id. 
4784         (varobj_create): Store frame_id for root.
4785         (varobj_gen_name): Use xasprintf.
4786         (varobj_update): Save and restore frame using get_frame_id() and
4787         frame_find_by_id().
4788         (create_child): Use xasprintf.
4789         (new_root_variable): Initialize frame_id.
4790         (c_name_of_child): Use xasprintf. Call find_frame_by_id().
4791         (c_value_of_variable): Use xasprintf. Move mem_fileopen call
4792         to prevent memory leak.
4793
4794 2002-07-03  Andrew Cagney  <ac131313@redhat.com>
4795
4796         * valops.c (hand_function_call): Move declaration of retbuf to
4797         start of function, allocate using malloc, add a cleanup but before
4798         the inf_status cleanup, cleanup the buffer.  Rename local variable
4799         old_chain to inf_status_cleanup.
4800
4801 2002-07-03  Martin M. Hunt  <hunt@redhat.com>
4802
4803         * top.c (execute_command): Use cmd_func() and cmd_func_p().
4804
4805         * cli/cli-decode.c (cmd_func_p): New function.
4806         (cmd_func): New function.
4807
4808         * command.h: Add cmd_func() and cmd_func_p().   
4809         
4810 2002-07-03  Grace Sainsbury  <graces@redhat.com>
4811
4812         * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Add macro. Set to 0.
4813         (REGISTER_SIZE): Remove.
4814         (MAX_REGISTER_RAW_SIZE): Remove.
4815         (REGISTER_VIRTUAL_TYPE): Remove.
4816         (MAX_REGISTER_VIRTUAL_SIZE): Remove.
4817         (REGISTER_NAME): Remove.
4818         (USE_GENERIC_DUMMY_FRAMES): Remove.
4819         (CALL_DUMMY): Remove.
4820         (CALL_DUMMY_START_OFFSET): Remove.
4821         (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
4822         (CALL_DUMMY_LOCATION): Remove.
4823         (FIX_CALL_DUMMY): Remove.
4824         (CALL_DUMMY_ADDRESS): Remove.
4825         (SIZEOF_CALL_DUMMY_WORDS): Remove.
4826         (SAVE_DUMMY_FRAME_TOS): Remove.
4827         * mcore-tdep.c (MCORE_REG_SIZE, MCORE_NUM_REGS): Add macros.
4828         (mcore_register_virtual_type): New function.
4829         (mcore_register_byte): New function.
4830         (mcore_register_size): New function.
4831         (mcore_register_name): New function.
4832         (mcore_gdbarch_init): New function. Add set_gdbarch calls for
4833         macros removed from tm-mcore.h.
4834         (mcore_dump_tdep): Add.
4835         (_initialize_mcore_tdep): Add gdbarch_register call.
4836
4837 2002-07-03  Mark Kettenis  <kettenis@gnu.org>
4838
4839         * i386-tdep.c (i386_frameless_signal_p): Provide an argument in to
4840         frameless_look_for_prologue, such that we actually call this
4841         function.
4842
4843 2002-07-02  Joel Brobecker  <brobecker@gnat.com>
4844
4845         * frame.h (frame_address_in_block): New function.
4846
4847         * blockframe.c (frame_address_in_block): New function extracted
4848         from get_frame_block().
4849         (get_frame_block): Use frame_address_in_block().
4850         (block_innermost_frame): Use frame_address_in_block() to match
4851         the frame pc address against the block boundaries rather than
4852         the frame pc directly. This prevents a failure when a frame pc
4853         is actually a return-address pointing immediately after the end
4854         of the given block. 
4855
4856 2002-07-02  Grace Sainsbury  <graces@redhat.com>
4857
4858         * MAINTAINERS: Add self under write after approval. 
4859
4860 2002-07-02  Grace Sainsbury  <graces@redhat.com>
4861
4862         * m68k-tdep.c (m68k_remote_breakpoint_from_pc): Add. Currently not
4863         used in architecture vector. The default is
4864         m68k_local_breakpoint_from_pc.
4865         (m68k_local_breakpoint_from_pc): Add.
4866         (enum): Add register numbers from tm-m68k.h.
4867         (m68k_gdbarch_init): Add breakpoint_from_pc to architecture
4868         vector.  
4869         * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Set to
4870         GDB_MULTI_ARCH_PARTIAL.
4871         (BPT_VECTOR, REGISTER_BYTES_FP, REGISTER_BYTES_NOFP)
4872         (NUM_FREGS, SIG_PC_FP_OFFSET, SP_ARG0, REMOTE_BPT_VECTOR): Move to
4873         m68k-tdep.c.
4874         (BREAKPOINT, REMOTE_BREAKPOINT): Remove.
4875         (A1_REGNUM, FP0_REGNUM, FPC_REGNUM, FPS_REGNUM, FPI_REGNUM): Move
4876         to enum in m68k-tdep.c
4877
4878 2002-07-02  Joel Brobecker  <brobecker@gnat.com>
4879
4880         * solib-osf.c (open_map): Compute the list of shared libraries
4881         loaded by the inferior, rather than the list of libraries loaded
4882         by GDB itself.  Otherwise, GDB ends up reading the symbols from
4883         the wrong shared libraries...
4884
4885 2002-07-02  Mark Kettenis  <kettenis@gnu.org>
4886
4887         * i386-linux-tdep.c (i386_linux_sigcontext_addr): Make static.
4888         (LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONEXT_SP_OFFSET): Remove
4889         macros.
4890         (i386_linux_sigtramp_saved_pc, i386_linux_sigtramp_saved_sp):
4891         Remove functions.
4892         (FRAMELESS_SIGNAL): Remove function.
4893         (i386_linux_frame_chain, i386_linux_frame_saved_pc,
4894         i386_linux_saved_pc_after_call): Removed.
4895         (i386_linux_init_abi): Initialize tdep->sigcontext_addr,
4896         tdep->sc_pc_offset and tdep->sc_sp_offset.  Don't override
4897         frame_chain, frame_saved_pc and saved_pc_after_call any longer.
4898
4899         * i386-tdep.c (i386_frameless_signal_p): New function.
4900         (i386_frame_chain): Deal with frameless signals.
4901         (i386_sigtramp_saved_sp): New function.
4902         (i386_frame_saved_pc): Deal with frameless signals.
4903         (i386_saved_pc_after_call): Make sure the correct value is
4904         returned just after entry into a sigtramp.
4905         * i386bsd-tdep.c (i386bsd_sc_sp_offset, i386nbsd_sc_sp_offset,
4906         i386fbsd4_sc_sp_offset): New variables.
4907         (i386bsd_init_abi, i386nbsd_init_abi, i386fbsd4_init_abi): Use
4908         these variables to initialize tdep->sc_sp_offset.  * i386bsd-nat.c
4909         (_initialize_i386bsd_nat): Add sanity check for sc_sp_offset
4910         similiar to what we already did for sc_pc_offset.
4911         * i386-sol2-tdep.c (i386_sol2_init_abi): Initialize
4912         tdep->sc_sp_offset.
4913
4914         * i386nbsd-tdep.c (fetch_elfcore_registers): Wrap long line.
4915
4916 2002-07-02  Michal Ludvig  <mludvig@suse.cz>
4917
4918         * config/i386/tm-x86-64linux.h: New.
4919         * config/i386/x86-64linux.mt: Add GDB_MULTI_ARCH and TM_FILE
4920         definitions.
4921         * config/i386/nm-x86-64.h: Rename to ...
4922         * config/i386/nm-x86-64linux.h: ... this one.
4923         * config/i386/x86-64linux.mh: Reflect the above change.
4924         
4925 2002-07-01  Mark Kettenis  <kettenis@gnu.org>
4926
4927         * i386-tdep.h (struct gdbarch_tdep): Replace sigtramp_saved_pc
4928         with sigcontext_addr.  Add sc_sp_offset.
4929         (i386bsd_sigtramp_saved_pc): Remove prototype.
4930         (i386bsd_sicontext_addr): Add prototype.
4931         * i386-tdep.c (i386_sigtramp_saved_pc): New function.
4932         (i386_frame_saved_pc): Rewrite to call i386_sigtramp_saved_pc.
4933         (i386_svr4_sigtramp_saved_pc): Removed.
4934         (i386_svr4_sigcontext_addr): New function.
4935         (i386_svr4_init_abi): Don't initialize tdep->sigtramp_saved_pc.
4936         Initialize tdep->sigcontext_addr instead.  Initialize
4937         tdep->sc_pc_offset and tdep->sc_sp_offset.
4938         (i386_gdbarch_init): Likewise.
4939         * i386bsd-tdep.c (i386bsd_sigcontext_addr): Don't make it static
4940         any more.
4941         (i386bsd_sigtramp_saved_pc): Remove function.
4942         (i386bsd_init_abi): Don't initialize tdep->sigtramp_saved_pc.
4943         Initialize tdep->sigcontext_addr instead.  Initialize
4944         tdep->sc_pc_offset.
4945         * i386-linux-tdep.c (i386_linux_init_abi): Remove initialization
4946         of tdep->sigtramp_saved_pc.
4947         * i386-sol2-tdep.c (i386_sol2_init_abi): Don't initialize
4948         tdep->sigtramp_saved_pc.  Initialize tdep->sigcontext_addr
4949         instead.
4950
4951         * i386-tdep.c (i386_frameless_function_invocation,
4952         i386_frame_num_args, i386_frame_init_saved_regs,
4953         i386_skip_prologue, i386_push_dummy_frame, i386_fix_call_dummy,
4954         i386_pop_frame, i386_push_arguments, i386_store_struct_return,
4955         i386_extract_return_value, i386_store_return_value,
4956         i386_extract_struct_value_address, i386_register_virtual_type,
4957         i386_register_convertible, i386_register_convert_to_virtual,
4958         i386_register_convert_to_raw, i386_svr4_sigtramp_saved_pc,
4959         i386_go32_init_abi, i386_nw_init_abi, i386_gdbarch_init): Make
4960         static.
4961
4962 2002-07-01  Mark Kettenis  <kettenis@gnu.org>
4963
4964         * i386bsd-tdep.c (i386bsd_frame_saved_pc): Removed.
4965
4966         * config/i386/tm-i386sol2.h (COERCE_FLOAT_TO_DOUBLE): Removed.
4967         * i386-sol2-tdep.c (i386_sol2_init_abi): Adjust for the removal of
4968         this macro.  Include "value.h".
4969
4970 2002-06-30  Aidan Skinner  <aidan@velvet.net>
4971
4972         * ada-exp.tab.c: remove as it's a generated file
4973         * ada-lex.c: remove as it's a generated file
4974                 
4975 2002-06-30  Mark Kettenis  <kettenis@gnu.org>
4976
4977         * config/i386/tm-i386.h (struct frame_info, struct
4978         frame_saved_regs, struct value, struct type): Remove forward
4979         declarations.
4980
4981         * config/i386/tm-linux.h [HAVE_PTRACE_GETFPXREGS]
4982         (FILL_FPXREGSET, HAVE_SSE_REGS): Remove define.
4983         * config/i386/nm-linux.h [HAVE_PTRACE_GETFPXREGS]
4984         (FILL_FPXREGSET): Define.
4985
4986         * config/i386/tm-nbsd.h (HAVE_SSE_REGS): Remove define.
4987
4988         * configure.tgt (i[3456]86-*-openbsd*): Fold into
4989         i[3456]86-*-netbsd* case.
4990         * config/i386/tm-obsd.h: Removed.
4991         * config/i386/obsd.mt: Removed.
4992         * config/i386/obsd.mh (NATDEPFILES): Remove corelow.o and
4993         core-aout.o.
4994         (MH_CFLAGS): Add -DYYDEBUG=0.
4995
4996         * i386bsd-nat.c (_initialize_i386bsd_nat): Define SC_PC_OFFSET to
4997         i386nbsd_sc_pc_offset on OpenBSD too.
4998
4999         * config/i386/tm-fbsd.h [!SVR4_SHARED_LIBS]
5000         (IN_SOLIB_CALL_TRAMPOLINE): Remove define.
5001         * config/i386/tm-nbsdaout.h (IN_SOLIB_CALL_TRAMPOLINE): Remove
5002         define.
5003         * i386bsd-tdep.c: Include "arch-utils.h".
5004         (i386bsd_aout_in_solib_call_trampoline): New function.
5005         (i386bsd_init_abi): Set in_solib_call_trampoline to
5006         i386bsd_aout_in_solib_call_trampoline.
5007         (i386nbsdelf_init_abi, i386fbsd_init_abi): Set
5008         in_solib_call_trampoline to generic_in_solib_call_trampoline.
5009
5010 2002-06-28  Andrew Cagney  <ac131313@redhat.com>
5011
5012         * macrotab.h: Do not include "obstack.h" or "bcache.h".
5013         (struct obstack, struct bcache): Add opaque declarations.
5014         * Makefile.in (macrotab_h): Update
5015
5016 2002-06-28  Andrew Cagney  <ac131313@redhat.com>
5017
5018         * blockframe.c (generic_find_dummy_frame): Change return type to
5019         ``struct regcache''.
5020         (struct dummy_frame): Replace field ``registers'' with regcache, a
5021         struct regcache object.
5022         (generic_find_dummy_frame): Update.
5023         (generic_push_dummy_frame): Update.  Use regcache_xfree,
5024         regcache_xmalloc and regcache_cpy.
5025         (generic_pop_dummy_frame): Update.  Use regcache_cpy and
5026         regcache_xfree.
5027         (deprecated_generic_find_dummy_frame): Update.
5028         (generic_read_register_dummy): Update.  Use
5029         regcache_read_as_address.
5030         (generic_call_dummy_register_unwind): Update.  Use regcache_read.
5031         (generic_get_saved_register): Update.  Use regcache_read.
5032
5033 2002-06-28  Andrew Cagney  <ac131313@redhat.com>
5034
5035         * Makefile.in (objfiles_h): Add $(bcache_h).
5036         * objfiles.h: Include "bcache.h".
5037
5038         * Makefile.in (symtab_h): Remove $(bcache_h).
5039         * symtab.h: Do not include "bcache.h".
5040
5041 2002-06-28  Andrew Cagney  <ac131313@redhat.com>
5042
5043         * ppcnbsd-tdep.c (ppcnbsd_init_abi): Set frame_chain_valid to
5044         generic_func_frame_chain_valid.
5045
5046 2002-06-28  David O'Brien  <obrien@FreeBSD.org>
5047
5048         * config/i386/nm-fbsd.h: Include <sys/param.h>.
5049         * config/i386/tm-fbsd.h: Likewise.
5050
5051 2002-06-28  Andrew Cagney  <ac131313@redhat.com>
5052
5053         * rs6000-tdep.c (rs6000_gdbarch_init): Use
5054         generic_unwind_get_saved_register.
5055
5056 2002-06-27  Andrew Cagney  <ac131313@redhat.com>
5057
5058         From 2002-06-27 John David Anglin <dave@hiauly1.hia.nrc.ca>:
5059         * regcache.c (supply_register): Add missing argument to
5060         register_buffer call.
5061
5062 2002-06-27  Andrew Cagney  <ac131313@redhat.com>
5063
5064         * Makefile.in (init.c): Drop -e option to grep.  Not necessary and
5065         Solaris /bin/grep does not not like it.  From Peter Schauer.
5066
5067 2002-06-26  Tom Tromey  <tromey@redhat.com>
5068
5069         * command.h (add_setshow_cmd): Declare.
5070         (add_setshow_cmd_full): Declare.
5071         * cli/cli-decode.c (add_setshow_cmd): No longer static.  Now
5072         returns void.  Use add_setshow_cmd_full.
5073         (add_setshow_cmd_full): New function.
5074         (add_setshow_auto_boolean_cmd): Use add_setshow_cmd_full.
5075         (add_setshow_boolean_cmd): Likewise.
5076
5077 2002-06-26  Jason Thorpe  <thorpej@wasabisystems.com>
5078
5079         * config/vax/tm-vax.h: Protect from multiple inclusion.
5080         (TARGET_UPAGES, TARGET_NBPG, STACK_END_ADDR)
5081         (SIGTRAMP_START, SIGTRAMP_END, SIGCONTEXT_PC_OFFSET): Move to...
5082         * config/vax/tm-vaxbsd.h: ...here.  New file.
5083         * config/vax/vax.mt (TM_FILE): Set to tm-vaxbsd.h.
5084
5085 2002-06-26  Jason Thorpe  <thorpej@wasabisystems.com>
5086
5087         * config/vax/tm-vax.h (BREAKPOINT): Remove.
5088         (BELIEVE_PCC_PROMOTION): Remove.
5089         (AP_REGNUM): Move to...
5090         * config/vax/nm-vax.h: ...here.
5091         * vax-tdep.c: Use VAX_AP_REGNUM instead of AP_REGNUM.
5092         (vax_breakpoint_from_pc): New function.
5093         (vax_gdbarch_init): Initialize gdbarch_breakpoint_from_pc
5094         and gdbarch_believe_pcc_promotion.
5095
5096 2002-06-26  Jason Thorpe  <thorpej@wasabisystems.com>
5097
5098         * Makefile.in (vax_tdep_h): Define.  
5099         (vax-tdep.o): Use $(vax_tdep_h).
5100         * vax-tdep.c (vax_gdbarch_init): Use generic OS ABI framework.
5101         (vax_dump_tdep): New function. 
5102         (_initialize_vax_tdep): Register vax_dump_tdep.
5103         * vax-tdep.h: Include osabi.h.     
5104         (struct gdbarch_tdep): New. 
5105
5106 2002-06-26  Andrew Cagney  <cagney@redhat.com>
5107
5108         * frame.h (deprecated_generic_find_dummy_frame): Rename
5109         generic_find_dummy_frame.
5110         * blockframe.c (generic_find_dummy_frame): Make static.
5111         (deprecated_generic_find_dummy_frame): New function.
5112         * sh-tdep.c (sh_nofp_frame_init_saved_regs): Replace
5113         generic_find_dummy_frame with deprecated_find_dummy_frame.
5114         (sh64_nofp_frame_init_saved_regs): Ditto.
5115         (sh_fp_frame_init_saved_regs): Ditto.
5116         * s390-tdep.c (s390_frame_saved_pc_nofix): Ditto.
5117         (s390_frame_chain): Ditto.
5118         * cris-tdep.c (cris_frame_init_saved_regs): Ditto.
5119
5120 2002-06-26  Grace Sainsbury  <graces@redhat.com>
5121
5122         * config/m68k/tm-m68k.h: Rearrange code so macros not in the
5123         gdbarch vector are at the top.
5124         (NUM_REGS): Remove.
5125         (FP_REGNUM, SP_REGNUM, PS_REGNUM, PC_REGNUM, FP0_REGNUM): Remove.
5126         (FRAME_ARGS_ADDRESS): Remove.
5127         (FRAME_LOCALS_ADDRESS): Remove.
5128         (FRAME_NUM_ARGS): Remove.
5129         (FRAME_ARGS_SKIP): Remove.  
5130         * m68k-tdep.c (enum): Add eumeration of special register numbers.
5131         (m68k_gdbarch_init): Add gdbarch initializations for macros
5132         undefined in tm-m68k.h
5133
5134 2002-06-26  Grace Sainsbury  <graces@redhat.com>
5135
5136         * monitor.h: Add the function regname to monitor_ops
5137         structure. This way NUM_REGS does not have to be a constant.
5138         * monitor.c (monitor_fetch_register): Added support for regname
5139         function. The function is called if the array regnames is NULL.
5140         (monitor_store_register): Same.
5141         * cpu32bug-rom.c (cpu32bug_regname): Add function. Replaces
5142         regnames array.
5143         (init_cpu32bug_cmds): set cpu32bug_cmds.regnames to NULL,
5144         cpu32bug_cmds.regname to point to new function.
5145         * abug-rom.c (abug_regname): Same as above.
5146         (init_abug_cmds): Same.
5147         * dbug-rom.c (dbug_regname): Same as above.
5148         (init_dbug_cmds): Same.
5149         * remote-est.c (est_regname): Same. 
5150         (init_est_cmds): Same.
5151         * rom68k-rom.c (rom68k_regname): Same. 
5152         (init_rom68k_cmds): Same.
5153
5154 2002-06-25  Tom Tromey  <tromey@redhat.com>
5155
5156         * breakpoint.c (delete_command): Don't repeat `delete' commands.
5157
5158 2002-06-25  Andrew Cagney  <cagney@redhat.com>
5159
5160         * infrun.c (stop_registers): Change variable's type to ``struct
5161         regcache'''.
5162         (xmalloc_inferior_status): Delete function.
5163         (free_inferior_status): Delete function.
5164         (normal_stop): Use regcache_cpy.
5165         (struct inferior_status): Change type of fields ``stop_registers''
5166         and ``registers'' to ``struct regcache''.
5167         (write_inferior_status_register): Use regcache_write.
5168         (save_inferior_status): Instead of calling
5169         xmalloc_inferior_status, allocate the inf_status buffer directly.
5170         Use regcache_dup_no_passthrough and regcache_dup to save the
5171         buffers.
5172         (restore_inferior_status): Use regcache_xfree and regcache_cpy.
5173         Replace the stop_registers regcache instead of overriding it.  Use
5174         regcache_xfree.  Instead of calling free_inferior_status, xfree
5175         the buffer directly.
5176         (discard_inferior_status): Use regcache_xfree.  Instead of calling
5177         free_inferior_status, xfree the buffer directly.
5178         (build_infrun): Use regcache_xmalloc.
5179         (_initialize_infrun): Delete redundant call to build_infrun.
5180
5181         * Makefile.in (infcmd.o): Add $(regcache_h).
5182
5183         * infcmd.c: Include "regcache.h".
5184         (run_stack_dummy): Use deprecated_grub_regcache_for_registers to
5185         obtain the address of `stop_registers' register buffer.
5186         (print_return_value): Ditto.
5187
5188         * inferior.h (struct regcache): Add opaque declaration.
5189         (stop_registers): Change variable's declared type to ``struct
5190         regcache''.
5191
5192 2002-06-24  Tom Tromey  <tromey@redhat.com>
5193
5194         * cli/cli-decode.c (add_show_from_set): Fixed typo in comment.
5195         * target.c (initialize_targets): Fixed typo in
5196         trust-readonly-sections `show' documentation.
5197
5198         * main.c: Marked all strings with _().
5199
5200 2002-06-24  Don Howard  <dhoward@redhat.com>
5201
5202         * memattr.c (create_mem_region): Treat hi == 0 as a special case
5203         that means max CORE_ADDR+1.
5204         (lookup_mem_region): Ditto.
5205         (mem_info_command): Ditto.
5206
5207 2002-06-24  Grace Sainsbury  <graces@redhat.com>
5208
5209         * config/m68k/tm-m68k.h (DECR_PC_AFTER_BREAK): Remove.
5210         (REGISTER_BYTES_OK): Remove.
5211         (REGISTER_BYTES): Remove.
5212         (STORE_STRUCT_RETURN): Remove.
5213         (DEPRECATED_EXTRACT_RETURN_VALUE): Remove.
5214         (STORE_RETURN_VALUE): Remove.
5215         (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Remove.
5216         (FRAME_CHAIN): Remove.
5217         (FRAMELESS_FUNCTION_INVOCATION): Remove.
5218         (FRAME_SAVED_PC): Remove.  
5219         * m68k-tdep.c (m68k_register_bytes_ok):Add.
5220         (m68k_store_struct_return): Add.
5221         (m68k_deprecated_extract_return_value): Add.
5222         (m68k_deprecated_extract_struct_value_address): Add.
5223         (m68k_store_return_value): Add.
5224         (m68k_frame_chain): Add.
5225         (m68k_frameless_function_invocation): Add.
5226         (m68k_frame_saved_pc): Add.
5227         (m68k_gdbarch_init): added set_gdbarch calls for new 
5228         functions and deleted macros.
5229
5230 2002-06-23  Tom Tromey  <tromey@redhat.com>
5231
5232         * Makefile.in (HFILES_NO_SRCDIR): Remove old files.
5233         (ALLDEPFILES): Likewise.
5234         (udiheaders): Removed.
5235         (udip2soc.o): Likewise.
5236         (udi2go32.o): Likewise.
5237         (udr.o): Likewise.
5238         (HFILES_WITH_SRCDIR): Don't mention udiheaders.
5239
5240 2002-06-22  Andrew Cagney  <ac131313@redhat.com>
5241
5242         * infrun.c (_initialize_infrun): Delete unnecessary call to
5243         build_infrun.
5244
5245         * regcache.h: Update comments describing the regcache_cpy family
5246         of functions.
5247         (regcache_save, regcache_restore): Delete declaration.
5248         (regcache_save_no_passthrough): Delete declaration.
5249         (regcache_restore_no_passthrough): Delete declaration.
5250         * regcache.c (regcache_save): Delete function.
5251         (regcache_save_no_passthrough): Delete function.
5252         (regcache_restore): Delete function.
5253         (regcache_restore_no_passthrough): Delete function.
5254
5255 2002-06-21  Andrew Cagney  <ac131313@redhat.com>
5256
5257         * config/m68k/tm-m68k.h: Fix typo.
5258         (FRAME_INIT_SAVED_REGS): Define when non-multi-arch.
5259         (m68k_frame_init_saved_regs): Declare.
5260
5261 2002-06-21  Jim Blandy  <jimb@redhat.com>
5262
5263         Remove some vestiges of Harris 88k support.
5264         * dwarf2read.c (decode_locdesc): Remove `#if' block for Harris 88k
5265         register numbering quirk.
5266         * elfread.c (elf_symtab_read): Remove `#if' block for skipping
5267         odd symbols occurring in Harris 88k ELF targets.
5268
5269 2002-06-21  Tom Tromey  <tromey@redhat.com>
5270
5271         * gdb_locale.h: New file.
5272         * Makefile.in (GDB_CFLAGS): Define LOCALEDIR.
5273         (defs_h): Added gdb_locale.h.
5274         * configure, config.in: Rebuilt.
5275         * configure.in (PACKAGE): Define.
5276         * defs.h: Include gdb_locale.h.
5277         * main.c (captured_main): Call setlocale, bindtextdomain,
5278         textdomain.
5279
5280 2002-06-21  Dave Brolley  <brolley@redhat.com>
5281
5282         From Stan Shebs, Jim Blandy, Mark Salter, Kevin Buettner:
5283         * config/frv/frv.mt: New file.
5284         * config/frv/tm-frv.h: New file.
5285         * configure.tgt: Support frv-*-*.
5286         * Makefile.in (frv-tdep.o): New target.
5287         * frv-tdep.c: New file.
5288         * NEWS: Mention frv.
5289
5290 2002-06-21  Dave Brolley  <brolley@redhat.com>
5291
5292         * MAINTAINERS: Add self to "Write After Approval" list.
5293
5294 2002-06-21  Grace Sainsbury  <graces@redhat.com>
5295
5296         * config/m68k/tm-m68k.h (REGISTER_BYTE, REGISTER_RAW_SIZE)
5297         (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
5298         (REGISTER_VIRTUAL_TYPE, REGISTER_NAMES, TARGET_LONG_DOUBLE_FORMAT)
5299         (FUNCTION_START_OFFSET, SKIP_PROLOGUE, SAVED_PC_AFTER_CALL)
5300         (INNER_THAN, STACK_ALIGN, REGISTER_SIZE): Remove macros.
5301
5302         * m68k-tdep.c: Include arch-utils.h
5303         (m68k_register_raw_size): Add.
5304         (m68k_register_virtual_size): Add.
5305         (m68k_register_virtual_type): Add.
5306         (m68k_register_name): Add.
5307         (m68k_stack_align): Add.
5308         (m68k_register_byte): Add.
5309         (m68k_gdbarch_init): Add set_gdbarch calls for macros removed in
5310         tm-m68k.h.
5311
5312 2002-06-21  Grace Sainsbury  <graces@redhat.com>
5313
5314         * m68k-tdep.c (m68k_frame_init_saved_regs): Replace
5315         m68k_find_saved_regs.
5316         (m68k_pop_frame): Removed saved_regs structure, and replaced
5317         references to it with frame->saved_regs.
5318         (m68k_gdbarch_init): Added function calls to initialize the
5319         gdbarch structure.
5320         (m68k_fix_call_dummy): Add. 
5321         * config/m68k/tm-m68k.h: (FRAME_FIND_SAVED_REGS): Remove.
5322         (CALL_DUMMY): Remove.
5323         (CALL_DUMMY_LENGTH): Remove.
5324         (CALL_DUMMY_START_OFFSET): Remove.
5325         (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
5326         (FIX_CALL_DUMMY): Remove.
5327         (PUSH_DUMMY_FRAME): Remove.
5328         (POP_FRAME): Remove.
5329
5330 2002-06-19  Pierre Muller  <muller@ics.u-strasbg.fr>
5331
5332         * parse.c (parse_fprintf): New function used to avoid calls to
5333         fprintf in bison parser generated debug code.
5334         * parser-defs.h: Declaration of new parse_fprintf function.
5335         * ada-exp.y, c-exp.y, f-exp.y, jv-exp.y, m2-exp.y, p-exp.y:
5336         Set YYDEBUG to 1 by default.
5337         Set YYFPRINTF as parse_fprintf.
5338
5339 2002-06-21  Michal Ludvig  <mludvig@suse.cz>
5340
5341         * dwarf2cfi.c (read_encoded_pointer): Don't handle pointer 
5342         encoding anymore.
5343         (pointer_encoding, enum ptr_encoding): New.
5344         (execute_cfa_program): Take care about pointer encoding.        
5345         (dwarf2_build_frame_info): Only call parse_frame_info for 
5346         .debug_frame and .eh_frame.
5347         (parse_frame_info): New, derived from former dwarf2_build_frame_info.
5348         fixed augmentation handling, added relative addressing, 
5349         ignore duplicate FDEs. Added comments.
5350         * dwarf2cfi.c: Reindented.
5351         
5352 2002-06-20  Elena Zannoni  <ezannoni@redhat.com>
5353
5354         * event-top.c (command_handler): Don't use space_at_cmd_start
5355         unless there is sbrk() on the host. Assign time and space data
5356         to union fields of the appropriate length.
5357
5358 2002-06-20  Michal Ludvig  <mludvig@suse.cz>
5359
5360         * x86-64-tdep.c (x86_64_register_nr2name): Rename to 
5361         x86_64_register_name. Return type changed to 'const char *'.
5362         (x86_64_register_name2nr): Rename to x86_64_register_number.
5363         (x86_64_gdbarch_init): Update to reflect the change.
5364         * x86-64-tdep.h: Ditto.
5365         * x86-64-linux-nat.c (x86_64_fxsave_offset)
5366         (supply_fpregset): Ditto.
5367
5368 2002-06-19  Andrew Cagney  <cagney@redhat.com>
5369
5370         * regcache.h: Update copyright.
5371         (struct regcache, struct gdbarch): Add opaque declarations.
5372         (current_regcache): Declare global variable.
5373         (regcache_read, regcache_write): Add gdbarch parameter.
5374         (regcache_save, regcache_save_no_passthrough)
5375         (regcache_restore, regcache_restore_no_passthrough)
5376         (regcache_dup, regcache_dup_no_passthrough)
5377         (regcache_cpy, regcache_cpy_no_passthrough)
5378         (deprecated_grub_regcache_for_registers)
5379         (deprecated_grub_regcache_for_register_valid)
5380         (regcache_valid_p): Add function declarations.
5381         
5382         * regcache.c: Update copyright.
5383         (regcache_descr_handle): New global variable.
5384         (struct regcache_descr): Define.
5385         (init_legacy_regcache_descr, init_regcache_descr): New functions.
5386         (regcache_descr, xfree_regcache_descr): New functions.
5387         (struct regcache): Define.
5388         (regcache_xmalloc, regcache_xfree): New functions.
5389         (regcache_cpy, regcache_cpy_no_passthrough): New functions.
5390         (regcache_dup, regcache_dup_no_passthrough): New functions.
5391         (regcache_valid_p, regcache_read_as_address): New functions.
5392         (deprecated_grub_regcache_for_registers): New function.
5393         (deprecated_grub_regcache_for_register_valid): New function.
5394         (current_regcache): New global variable.
5395         (register_buffer): Add regcache parameter.  Update calls.
5396         (regcache_read, regcache_write): Add regcache parameter.  Rewrite.
5397         (read_register_gen, write_register_gen): Update register_buffer
5398         call.  Test for legacy_p instead of gdbarch_register_read_p or
5399         gdbarch_register_write_p.
5400         (regcache_collect): Update register_buffer call.
5401         (build_regcache): Rewrite.  Use deprecated grub functions.
5402         (regcache_save, regcache_save_no_passthrough): New functions.
5403         (regcache_restore, regcache_restore_no_passthrough): New
5404         functions.
5405         (_initialize_regcache): Create the regcache_data_handle. Swap
5406         current_regcache global variable.
5407         
5408         * sh-tdep.c (sh_pseudo_register_read): Add current_regcache
5409         parameter to regcache_read and regcache_write calls.
5410         (sh4_register_read): Ditto.
5411         (sh64_pseudo_register_read): Ditto.
5412         (sh64_register_read): Ditto.
5413         (sh_pseudo_register_write): Ditto.
5414         (sh4_register_write): Ditto.
5415         (sh64_pseudo_register_write): Ditto.
5416         (sh64_register_write): Ditto.
5417
5418         * defs.h (XCALLOC): Define.
5419
5420 2002-06-19  Grace Sainsbury  <graces@redhat.com>
5421
5422         * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Added (set to 0).
5423         * m68k-tdep.c (m68k_gdbarch_init): Added.
5424         (m68k_dump_tdep): Added.
5425
5426 2002-06-19  Daniel Jacobowitz  <drow@mvista.com>
5427
5428         * ada-lang.c (fill_in_ada_prototype): Update comment.
5429
5430 2002-06-19  Daniel Jacobowitz  <drow@mvista.com>
5431
5432         * mips-tdep.c (enum mips_abi): Explicitly start at 0.  Add
5433         MIPS_ABI_LAST.
5434         (mips_abi_string, mips_abi_strings): New.
5435         (struct gdbarch_tdep): Remove mips_abi_string, add found_abi.
5436         (mips_gdbarch_init): Set tdep->found_abi.  Don't set
5437         tdep->mips_abi_string.  Honor mips_abi_string.  Default to
5438         O32 if no ABI is found.
5439         (mips_dump_tdep): Use mips_abi_strings.
5440         (mips_abi_update): New function.
5441         (_initialize_mips_tdep): Initialize mips_abi_string.  Add  
5442         ``set mips abi'' and ``show mips abi''.  Check the size of
5443         mips_abi_strings.
5444
5445 2002-06-19  Andrew Cagney  <cagney@redhat.com>
5446
5447         * i386-linux-tdep.c (i386_linux_register_name): Make return type
5448         constant.
5449
5450 2002-06-18  Joel Brobecker  <brobecker@gnat.com>
5451
5452         * alpha-tdep.c (heuristic_proc_desc): Compute the size of the  
5453         current frame using only the first stack size adjustment. All
5454         subsequent size adjustments are not considered to be part of
5455         the "static" part of the current frame.
5456         Compute the address of the saved registers relative to the
5457         Frame Pointer ($fp) instead of the Stack Pointer if $fp is
5458         in use in this frame.
5459
5460 2002-06-18  Don Howard  <dhoward@redhat.com>
5461  
5462         * valops.c (value_ind): Use value_at_lazy() when dereferencing
5463         type int expressions.  Thanks to Jim Blandy <jimb@redhat.com> for
5464         suggesting this solution.
5465
5466 2002-06-18  Andrew Cagney  <ac131313@redhat.com>
5467
5468         * config/romp/xm-rtbsd.h: Delete file.
5469         * config/romp/rtbsd.mh: Delete file.
5470
5471 2002-06-18  Keith Seitz  <keiths@redhat.com>
5472
5473         * breakpoint.c (condition_command): Post breakpoint_modify
5474         when a condition is added to an existing breakpoint.
5475         (commands_command): Likewise for commands.
5476         (set_ignore_count): Likewise for ignore counts.
5477         If no tty, do not simply return, still need to send event
5478         notification.
5479         (ignore_command): Only print a newline if the command came
5480         from a tty.
5481         Don't call breakpoints_changed, since this is now properly
5482         handled by set_ignore_count.
5483
5484 2002-06-18  Andrew Cagney  <cagney@redhat.com>
5485
5486         * MAINTAINERS: Note that cris-elf target can be compiled with
5487         -Werror.
5488         * cris-tdep.c (cris_register_name): Make return type constant.
5489         (cris_breakpoint_from_pc): Ditto.
5490
5491 2002-06-18  Michal Ludvig  <mludvig@suse.cz>
5492
5493         * frame.h (struct frame_info): Change type of context to 
5494         'struct context'.
5495
5496 2002-06-17  Andrew Cagney  <cagney@redhat.com>
5497
5498         * gdbarch.sh (REGISTER_NAME): Change return type a constant string
5499         pointer.
5500         * gdbarch.h, gdbarch.c: Regenerate.
5501         * config/mips/tm-mips.h (mips_register_name): Update.
5502         * i386-tdep.h (i386_register_name): Update.
5503         * mips-tdep.c (mips_register_name): Update
5504         * alpha-tdep.c (alpha_register_name): Update.
5505         * arch-utils.c (legacy_register_name): Update.
5506         * arch-utils.h (legacy_register_name): Update.
5507         * avr-tdep.c (avr_register_name): Update.
5508         * ia64-tdep.c (ia64_register_name): Update.
5509         * i386-tdep.c (i386_register_name): Update.
5510         * sparc-tdep.c (sparc32_register_name): Update.
5511         (sparc64_register_name): Update.
5512         (sparclite_register_name): Update.
5513         (sparclet_register_name): Update.
5514         * sh-tdep.c (sh_generic_register_name): Update.
5515         (sh_sh_register_name): Update.
5516         (sh_sh3_register_name): Update.
5517         (sh_sh3e_register_name): Update.
5518         (sh_sh_dsp_register_name): Update.
5519         (sh_sh3_dsp_register_name): Update.
5520         (sh_sh4_register_name): Update.
5521         (sh_sh64_register_name): Update.
5522         * s390-tdep.c (s390_register_name): Update.
5523         * rs6000-tdep.c (rs6000_register_name): Update.
5524         * ns32k-tdep.c (ns32k_register_name_32082): Update.
5525         (ns32k_register_name_32382): Update.
5526         * d10v-tdep.c (d10v_ts2_register_name): Update.
5527         (d10v_ts3_register_name): Update.
5528         * xstormy16-tdep.c (xstormy16_register_name): Update.
5529         * vax-tdep.c (vax_register_name): Update.
5530         * v850-tdep.c (v850_register_name): Update.
5531         * m68hc11-tdep.c (m68hc11_register_name): Update.
5532         * mn10300-tdep.c (mn10300_generic_register_name): Update.
5533         (am33_register_name): Update.
5534
5535 2002-06-17  Grace Sainsbury  <graces@redhat.com>
5536
5537         * m68k-tdep.c: Reindented.
5538
5539 2002-06-17  Andrew Cagney  <ac131313@redhat.com>
5540
5541         * gdb_indent.sh: Add prgregset_t, fpregset_t, and gregset_t to the
5542         list of predefined types.
5543
5544 2002-06-16  Mark Kettenis  <kettenis@gnu.org>
5545
5546         * config/i386/tm-i386.h (REGISTER_VIRTUAL_TYPE,
5547         REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL,
5548         REGISTER_CONVERT_TO_RAW): Remove defines.
5549         (i386_register_virtual_type, i386_register_convertible,
5550         i386_register_convert_to_virtual, i386_register_convert_to_raw):
5551         Remove prototypes.
5552         * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
5553         macros mentioned above.
5554
5555         * config/i386/tm-i386lynx.h (SAVED_PC_AFTER_CALL): Remove define.
5556         (i386lynx_saved_pc_after_call): Remove prototype.
5557         * i386ly-tdep.c: Include "i386-tdep.h".
5558         (i386lynx_saved_pc_after_call): Make static.  Use
5559         read_memory_nobpt instead of read_memory.  Use
5560         read_memory_unsigned_integer instead of read_memory_integer.
5561         (i386lynx_init_abi): New function.
5562         (i386lynx_coff_osabi_sniffer): New function.
5563         (_initialize_i386bsd_tdep): New function.
5564
5565         * config/i386/tm-i386.h (PARM_BOUNDARY, CALL_DUMMY,
5566         CALL_DUMMY_LENGTH, CALL_DUMMY_START_OFFSET,
5567         CALL_DUMMY_BREAKPOINT_OFFSET, FIX_CALL_DUMMY): Remove defines.
5568         (i386_fix_call_dummy): Remove prototype.
5569         * i386-tdep.c (i386_call_dummy_words): New variable.
5570         (i386_gdbarch_init): Adjust for removal of the
5571         macros mentioned above.
5572
5573 2002-06-15  Andrew Cagney  <ac131313@redhat.com>
5574
5575         * command.h (add_setshow_auto_boolean_cmd): Replace
5576         add_set_auto_boolean_cmd.
5577         * cli/cli-decode.c (add_setshow_auto_boolean_cmd): Replace
5578         add_set_auto_boolean_cmd.
5579         * cli/cli-decode.h (add_set_auto_boolean_cmd): Delete declaration.
5580         * mips-tdep.c (_initialize_mips_tdep): Update ``set mips
5581         mask-address'' command.
5582         (show_mask_address): Add cmd parameter.
5583         * remote.c (add_packet_config_cmd): Update.  Change type of
5584         set_func and show_func to cmd_sfunc_ftype.
5585         (_initialize_remote): Update `set remote Z-packet'
5586         (show_remote_protocol_qSymbol_packet_cmd): Add cmd parameter.
5587         (show_remote_protocol_e_packet_cmd): Ditto.
5588         (show_remote_protocol_E_packet_cmd): Ditto.
5589         (show_remote_protocol_P_packet_cmd): Ditto.
5590         (show_remote_protocol_Z_software_bp_packet_cmd): Ditto.
5591         (show_remote_protocol_Z_hardware_bp_packet_cmd): Ditto.
5592         (show_remote_protocol_Z_write_wp_packet_cmd): Ditto.
5593         (show_remote_protocol_Z_read_wp_packet_cmd): Ditto.
5594         (show_remote_protocol_Z_access_wp_packet_cmd): Ditto.
5595         (show_remote_protocol_Z_packet_cmd): Ditto.
5596         (show_remote_protocol_binary_download_cmd): Ditto.
5597         (show_remote_cmd): Pass NULL to all of above.
5598
5599 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
5600
5601         * config/i386/tm-i386.h (PUSH_ARGUMENTS, STORE_STRUCT_RETURN,
5602         DEPRECATED_EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE,
5603         DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS, PUSH_DUMMY_FRAME,
5604         POP_FRAME): Remove defines.
5605         (i386_push_arguments, i386_store_struct_return,
5606         i386_extract_return_value, i386_store_return_value,
5607         i386_extract_struct_value_address, i386_push_dummy_frame,
5608         i386_pop_frame): Renove prototypes.
5609         * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
5610         macros mentioned above.
5611
5612 2002-06-15  Andrew Cagney  <ac131313@redhat.com>
5613
5614         * cli/cli-decode.c (add_setshow_boolean_cmd): Replace
5615         add_set_boolean_cmd.
5616         (add_setshow_cmd): New function.
5617         * command.h (add_setshow_boolean_cmd): Replace
5618         add_set_boolean_cmd.
5619         * remote-rdi.c (_initialize_remote_rdi): Update ``set rdiheartbeat''
5620         and ``set rdiromatzero''.
5621         * maint.c (_initialize_maint_cmds): Update commented out code.
5622         * cli/cli-decode.h (add_set_boolean_cmd): Delete declaration.
5623         * target.c (initialize_targets): Update `set
5624         trust-readonly-sections'.
5625         * remote.c (_initialize_remote): Update `set remotebreak'.
5626
5627 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
5628
5629         * config/i386/tm-i386.h (FUNCTION_START_OFFSET, INNER_THAN,
5630         BREAKPOINT, DECR_PC_AFTER_BREAK): Removed.
5631         * i386-tdep.c (i386_skip_prologue): Adjust function signature to
5632         fit into multi-arch framework.
5633         (i386_breakpoint_from_pc): New function.
5634         (i386_gdbarch_init): Adjust for removal of the macros mentioned
5635         above.
5636
5637         * config/i386/tm-i386.h (FRAMELESS_FUNCTION_INVOCATION,
5638         FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS,
5639         FRAME_ARGS_SKIP, FRAME_INIT_SAVED_REGS): Remove defines.
5640         (i386_frameless_function_invocation, i386_frame_num_args,
5641         i386_frame_init_saved_regs): Remove prototypes.
5642         * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
5643         macros mentioned above.
5644
5645 2002-06-15  Andrew Cagney  <ac131313@redhat.com>
5646
5647         * cli/cli-decode.c (set_cmd_cfunc): Update.
5648         (set_cmd_sfunc): Update.
5649         * command.h (cmd_cfunc_ftype, cmd_sfunc_ftype): Declare.
5650         (set_cmd_sfunc, set_cmd_cfunc): Update.
5651         * cli/cli-decode.h: Update.
5652
5653 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
5654
5655         * i386-sol2-tdep.c (i386_sol2_osabi_sniffer): New function.
5656         (_initialize_i386_sol2_tdep): Register i386_sol2_osabi_sniffer.
5657
5658 2002-06-15  Andrew Cagney  <ac131313@redhat.com>
5659
5660         * defs.h (auto_boolean): Declare enum.
5661         * command.h (cmd_auto_boolean): Delete enum.
5662         * mips-tdep.c (mask_address_var): Update.
5663         (mips_mask_address_p): Update.
5664         (show_mask_address): Update.
5665         * remote.c (struct packet_config): Update.
5666         (update_packet_config): Update.
5667         (show_packet_config_cmd): Update.
5668         (packet_ok): Update.
5669         (add_packet_config_cmd): Update.
5670         (_initialize_remote): 
5671         * command.h: Update.
5672         * cli/cli-setshow.c (parse_auto_binary_operation): Update.
5673         (do_setshow_command): Update.
5674         * cli/cli-decode.c (add_set_auto_boolean_cmd): Update.
5675         * cli/cli-decode.h: Update.
5676
5677 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
5678
5679         * config/i386/tm-cygwin.h, config/i386/tm-fbsd.h,
5680         config/i386/tm-go32.h, config/i386/tm-i386gnu.h,
5681         config/i386/tm-i386sol2.h, config/i386/tm-i386v4.h,
5682         config/i386/tm-linux.h, config/i386/tm-nbsd.h,
5683         config/i386/tm-obsd.h (HAVE_I387_REGS): Remove define.
5684         * config/i386/tm-i386.h: Unconditionally define FLOAT_INFO.
5685
5686         * i386-tdep.c (i386_coff_osabi_sniffer): Add "coff-go32" to the
5687         list of DJGPP COFF targets.
5688
5689         * config/i386/tm-i386.h (REGISTER_SIZE): Remove define.
5690         (NUM_GREGS, NUM_FREGS, NUM_SSE_REGS): Remove defines.
5691         (FP_REGNUM, SP_REGNUM, PC_REGNUM, PS_REGNUM): Remove defines.
5692         (FP0_REGNUM): Remove define.
5693         (MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE,
5694         MAX_REGISTER_VIRTUAL_SIZE): Remove define.
5695         (i386_register_virtual_size): Remove protoype.
5696         * i386-tdep.c (i386_register_virtual_size): Removed.
5697         (i386_extract_return_value, i386_store_return_value): Use
5698         FP0_REGNUM instead of NUM_FREGS to determine whether the
5699         floating-point registers are available.
5700         (i386_gdbarch_init): Tweak FIXME about FPU registers.
5701         Adjust for removal of macros mentioned above.
5702
5703 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
5704
5705         * i386v4-nat.c: Include "i386-tdep.h".  Reformat and tweak various
5706         comments.
5707         (fill_gregset, supply_gregset, supply_fpregset, fill_fpregset):
5708         Remove prototypes.
5709         (supply_gregset, fill_gregset): Remove use of register keyword and
5710         remove declaration for regmap.  Use I386_NUM_GREGS instead of
5711         NUM_REGS and NUM_FREGS.
5712         (FPREGSET_FSAVE_OFFSET): Remove.
5713         (supply_fpregset, fill_fpregset): Use FPO_REGNUM instead of
5714         NUM_FREGS to determine whether the floating-point registers are
5715         available.
5716
5717         * i386gnu-nat.c (supply_gregset, gnu_fetch_registers,
5718         gnu_store_registers): Replace usage of NUM_GREGS with
5719         I386_NUM_GREGS.
5720
5721         * i386-linux-nat.c (OLD_CANNOT_FETCH_REGISTER,
5722         OLD_CANNOT_STORE_REGISTER, supply_gregset, fill_gregset): Replace
5723         usage of NUM_GREGS with I386_NUM_GREGS.
5724
5725         * i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
5726
5727         * i386bsd-nat.c: Include "i386-tdep.h".
5728         (supply_gregset, fill_gregset): Replace usage of NUM_GREGS with
5729         I386_NUM_GREGS.
5730
5731         * i386v-nat.c: Remove copnditional inclusion of <asm/debugreg.h>,
5732         and associated comment.  They no longer make any sense, since we
5733         don't use this file anymore on Linux.
5734
5735         * config/i386/tm-i386.h (MAX_NUM_REGS): Removed.
5736         * i386-tdep.c (i386_register_offset, i386_register_size): Use
5737         I386_SSE_NUM_REGS instead of MAX_NUM_REGS for the number of
5738         elements in these arrays.
5739         (_initialize_i386_tdep): Use I386_SSE_NUM_REGS instead of
5740         MAX_NUM_REGS.
5741
5742 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
5743
5744         * osabi.h (gdb_osabi): Add GDB_OSABI_LYNXOS.
5745         * osabi.c (gdb_osabi_names): Add entry for "LynxOS".
5746
5747 2002-06-14  Andrew Cagney  <cagney@redhat.com>
5748
5749         * gdbarch.sh (DEPRECATED_EXTRACT_RETURN_VALUE): Rename
5750         EXTRACT_RETURN_VALUE.
5751         (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Rename
5752         EXTRACT_STRUCT_VALUE_ADDRESS.
5753         * gdbarch.h, gdbarch.c: Regenerate.
5754         
5755         * values.c (value_being_returned): Handle
5756         DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
5757         (EXTRACT_RETURN_VALUE): Define as DEPRECATED_EXTRACT_RETURN_VALUE.
5758
5759         * arm-linux-tdep.c (arm_linux_init_abi): Update. 
5760         * arm-tdep.c (arm_gdbarch_init): Update.
5761         * avr-tdep.c (avr_gdbarch_init): Update.
5762         * cris-tdep.c (cris_gdbarch_init): Update.
5763         * d10v-tdep.c (d10v_gdbarch_init): Update.
5764         * ia64-tdep.c (ia64_gdbarch_init): Update.
5765         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
5766         * rs6000-tdep.c (rs6000_gdbarch_init): Update.
5767         * s390-tdep.c (s390_gdbarch_init): Update.
5768         * sh-tdep.c (sh_gdbarch_init): Update.
5769         * s390-tdep.c (s390_gdbarch_init): Update.
5770         * sparc-tdep.c (sparc_gdbarch_init): Update.
5771         * ns32k-tdep.c (ns32k_gdbarch_init): Update.
5772         * v850-tdep.c (v850_gdbarch_init): Update.
5773         * vax-tdep.c (vax_gdbarch_init): Update.
5774         * x86-64-tdep.c (x86_64_gdbarch_init): Update.
5775         * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
5776
5777         * config/arc/tm-arc.h: Update.
5778         * config/d30v/tm-d30v.h: Update.
5779         * config/fr30/tm-fr30.h: Update.
5780         * config/h8300/tm-h8300.h: Update.
5781         * config/h8500/tm-h8500.h: Update.
5782         * config/i386/tm-i386.h: Update.
5783         * config/i386/tm-ptx.h: Update.
5784         * config/i386/tm-symmetry.h: Update.
5785         * config/i960/tm-i960.h: Update.
5786         * config/m32r/tm-m32r.h: Update.
5787         * config/m68k/tm-delta68.h: Update.
5788         * config/m68k/tm-linux.h: Update.
5789         * config/m68k/tm-m68k.h: Update.
5790         * config/m88k/tm-m88k.h: Update.
5791         * config/mcore/tm-mcore.h: Update.
5792         * config/mips/tm-mips.h: Update.
5793         * config/mn10200/tm-mn10200.h: Update.
5794         * config/pa/tm-hppa.h: Update.
5795         * config/pa/tm-hppa64.h: Update.
5796         * config/sparc/tm-sp64.h: Update.
5797         * config/sparc/tm-sparc.h: Update.
5798         * config/sparc/tm-sparclet.h: Update.
5799         * config/z8k/tm-z8k.h: Update.
5800
5801 2002-06-14  Andrew Cagney  <cagney@redhat.com>
5802
5803         * Makefile.in (i386_linux_tdep_h): Define.
5804         (i386_tdep_h, i387_tdep_h): Define.
5805         (i386-linux-nat.o): Add $(i386_linux_tdep_h),
5806         $(i386_tdep_h) and $(i387_tdep_h).
5807         * i386-linux-nat.c: Include "i386-linux-tdep.h".
5808
5809 2002-06-14  Mark Kettenis  <kettenis@gnu.org>
5810
5811         * config/i386/tm-i386.h (START_INFERIOR_TRAPS_EXPECTED): Removed.
5812         Already covered by the default.
5813
5814         * config/i386/tm-i386.h (TARGET_LONG_DOUBLE_FORMAT,
5815         TARGET_LONG_DOUBLE_BIT): Remove.  * i386-tdep.c
5816         (i386_gdbarch_init): Initialize long_double_format and long_double
5817         bit.
5818
5819         * config/i386/i386sol2.mt (TDEPFILES): Add i386-sol2-tdep.o and
5820         i386bsd-tdep.o.  Remove solib.o, solib-svr4.o and solib-legacy.o.
5821         Move these to ...
5822         * config/i386/i386sol2.mh: ... here.
5823         * config/i386/tm-i386sol2.h (STAB_REG_TO_REGNUM): Remove define.
5824         (sigtramp_saved_pc, I386V4_SIGTRAMP_SAVED_PC): Don't #undef.
5825         (SIGCONTEXT_PC_OFFSET): Remove define.
5826         (IN_SIGTRAMP): Remove define.
5827         * i386-sol2-tdep.c: New file.
5828         
5829         * config/i386/i386nw.mt (TM_FILE): Change to tm-i386.h.
5830         * config/i386/tm-i386nw.h: Removed.
5831
5832         * config/i386/tm-fbsd.h (STAB_REG_TO_REGNUM,
5833         USE_STRUCT_CONVENTION): Remove defines.
5834         (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
5835         (get_longjmp_target): Remove prototype.
5836         (IN_SIGTRAMP): Remove define.
5837         (i386bsd_in_sigtramp): Remove prototype.
5838         (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
5839         function.  Update comment accordingly
5840         (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
5841         (FRAME_SAVED_PC): Remove define.
5842         (i386bsd_frame_saved_pc): Remove prototype.
5843         * config/i386/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC,
5844         GET_LONGJMP_TARGET): Remove defines.
5845         (get_longjmp_target): Remove prototype.
5846         (IN_SIGTRAMP): Remove define.
5847         (i386bsd_in_sigtramp): Remove prototype.
5848         (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
5849         function.  Update comment accordingly
5850         (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
5851         (FRAME_SAVED_PC): Remove define.
5852         (i386bsd_frame_saved_pc): Remove prototype.
5853         * config/i386/tm-nbsdaout.h (i386nbsd_aout_use_struct_convention):
5854         Remove prototype.
5855         (USE_STRUCT_CONVENTION): Remove prototype.
5856         * i386bsd-nat.c (i386bsd_sigcontext_pc_offset): Remove
5857         declaration.
5858         (_initialize_i386bsd_nat): Revise logic to determine some
5859         constants at compile time when compiling a native GDB.  Warn if
5860         things don't match up with what we expect.
5861         * i386bsd-tdep.c (i386bsd_sigtramp_start, i386bsd_sigtramp_end):
5862         Remove variables.
5863         (i386bsd_in_sigtramp): Rename tp i386bsd_pc_in_sigtramp.  Rewrite
5864         to use date stored in `struct gdbarch_tdep'.
5865         (i386bsd_sigcontext_offset): Remove varaible.
5866         (i386bsd_sigtramp_saved_pc): Make public.  Rewrite to use data
5867         stored in `struct gdbarch_tdep'.
5868         (i386bsd_frame_saved_pc): Make static.
5869         (i386bsd_sigtramp_start, i386bsd_sigtramp_end): New functions.
5870         (i386bsd_sc_pc_offset, i386nbsd_sc_pc_offset,
5871         i386fbsd_sigtramp_start, i386fbsd_sigtramp_end,
5872         i386fbsd4_sc_pc_offset): New variables.
5873         (i386bsd_init_abi, i386nbsd_init_abi, i386nbsdelf_init_abi,
5874         i386fbsdaout_init_abi, i386fbsd_init_abi, i386fbsd4_init_abi): New
5875         functions.
5876         (i386bsd_aout_osabi_sniffer, _initialize_i386bsd_tdep): New
5877         functions.
5878         * i386fbsd-nat.c (_initialize_i386fbsd_nat): Fix type in comment.
5879         Modify the value of i386fbsd_sigtramp_start and
5880         i386fbsd_sigtramp_end instead of i386bsd_sigtramp_start and
5881         i386fbsd_sigtramp_end.
5882         * i386nbsd-tdep.c: (i386nbsd_aout_use_struct_convention): Remove
5883         function.
5884
5885         * config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): Move
5886         define to i386-linux-tdep.h.
5887         (NUM_REGS, MAX_NUM_REGS, REGISTER_BYTES, REGISTER_NAME,
5888         REGISTER_BYTE, REGISTER_RAW_SIZE, STAB_REG_TO_REGNUM): Remove
5889         defines.
5890         (i386_linux_register_name, i386_linux_register_byte,
5891         i386_linux_register_raw_size): Remove prototypes.
5892         (i386_linux_svr4_fetch_link_map_offsets): Remove prototype.
5893         (SVR4_FETCH_LINK_MAP_OFFSETS): Remove define.
5894         (IN_SIGTRAMP, FRAME_CHAIN, FRAME_SAVED_PC, SAVED_PC_AFTER_CALL,
5895         TARGET_WRITE_PC): Remove defines.
5896         (i386_linux_in_sigtramp, i386_linux_frame_chain,
5897         i386_linux_frame_saved_pc, i386_linux_saved_pc_after_call,
5898         i386_linux_write_pc): Remove prototypes.
5899         (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
5900         (get_longjmp_target): Remove prototype.
5901         * i386-linux-tdep.h: New file.
5902         * i386-linux-nat.c: Include "i386-linux-tdep.h".
5903         * i386-linux-tdep.c: Include "i386-tdep.h" and
5904         "i386-linux-tdep.h".
5905         (i386_linux_register_name, i386_linux_register_byte,
5906         i386_linux_register_raw_size, i386_linux_in_sigtramp,
5907         i386_linux_write_pc, i386_linux_svr4_fetch_link_map_offsets):
5908         Make static.
5909         (i386_linux_init_abi): New function.
5910         (_initialize_i386_linux_tdep): New function.
5911
5912         * config/i386/tm-i386.h (SAVED_PC_AFTER_CALL): Remove define.
5913         (i386_saved_pc_after_call): Remove prototype.
5914         (MAX_NUM_REGS): Increase to deal with Linux's orig_eax "register".
5915         (REGISTER_NAME, STAB_REG_TO_REGNUM, SDB_REG_TO_REGNUM,
5916         DWARF_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM): Remove defines.
5917         (i386_register_name, i386_stab_reg_to_regnum,
5918         i386_dwarf_reg_to_regnum): Remove prototypes.
5919         (SIZEOF_GREGS, SIZEOF_FPU_REGS, SIZEOF_FPU_CTL_REGS,
5920         SIZEOF_SSE_REGS): Remove defines.
5921         (REGISTER_BYTES): Remove define.
5922         (REGISTER_BYTE, REGISTER_RAW_SIZE): Remove defines.
5923         (i386_register_byte, i386_register_raw_size): Remove prototypes.
5924         (FRAME_CHAIN, FRAME_SAVED_PC): Remove defines.
5925         (i386_frame_chain, i386_frame_saved_pc): Remove prototypes.
5926         * config/i386/tm-i386v4.h (FRAME_CHAIN_VALID): Remove define.
5927         (JB_ELEMENT_SIZE, JB_PC, JB_EBX, JB_ESI, JB_EDI, JB_EBP, JB_ESP,
5928         JB_EDX, GET_LONGJMP_TARGET): Remove defines.
5929         (get_longjmp_target): Remove prototype.
5930         (I386V4_SIGTRAMP_SAVED_PC, IN_SIGTRAMP): Remove defines.
5931         (sigtramp_saved_pc): Remove define.
5932         (i386v4_sigtramp_saved_pc): Remove prototype.
5933         * config/i386/tm-go32.h (FRAME_CHAIN,
5934         FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC): Remove defines.
5935         (i386go32_frame_saved_pc): Remove prototype.
5936         (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
5937         (get_longjmp_target): Remove prototype.
5938         * i386-tdep.h: Include "osabi.h".
5939         (enum i386_abi): Removed.
5940         (enum struct_return): New enum.
5941         (struct gdbarch_tdep): Remove abi member, add osabi, jb_pc_offset,
5942         struct_return, sigtramp_saved_pc, sigtramp_start, sigtramp_end and
5943         sc_pc_offset members.
5944         (i386_gdbarch_register_os_abi): Remove prototype.
5945         (I386_NUM_GREGS, I386_NUM_FREGS, I386_NUM_XREGS,
5946         I386_SSE_NUM_REGS): New defines.
5947         (I386_SIZEOF_GREGS, I386_SIZEOF_FREGS, I386_SIZEOF_XREGS,
5948         I386_SSE_SIZEOF_REGS): New defines.
5949         (i386_register_name, i386_register_byte, i386_register_raw_size):
5950         New prototypes.
5951         (i386_elf_init_abi, i386_svr4_init_abi): New prototypes.
5952         (i386bsd_sigtramp_saved_pc): New prototype.
5953         * i386-tdep.c: Don't include "elf-bfd.h".
5954         (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum,
5955         i386_frame_chain, i386_saved_pc_after_call): Make static.
5956         (i386_frame_saved_pc): Rewrite to call architecture dependent
5957         function to deal with signal handlers.  Make static.
5958         (i386go32_frame_saved_pc): Removed.
5959         [GET_LONGJMP_TARGET] (JB_PC, JB_ELEMENT_SIZE, get_longjmp_target):
5960         Removed.
5961         (i386_get_longjmp_target): New function.
5962         (default_struct_convention, pcc_struct_convention,
5963         reg_struct_convention, valid_conventions, struct_convention): New
5964         variables.
5965         (i386_use_struct_convention): New function.
5966         (i386v4_sigtramp_saved_pc): Renamed to
5967         i386_svr4_sigtramp_saved_pc.  Made static.  Moved.
5968         (i386_pc_in_sigtramp): New function.
5969         (i386_abi_names): Removed.
5970         (ABI_TAG_OS_GNU_LINUX, ABI_TAG_OS_GNU_HURD,
5971         ABI_TAG_OS_GNU_SOLARIS, ABI_TAG_OS_FREEBSD, ABI_TAG_OS_NETBSD):
5972         Removed.
5973         (process_note_sections, i386_elf_abi_from_note, i386_elf_abi,
5974         i386_gdbarch_register_os_abi): Removed.
5975         (struct i386_abi_handler): Removed.
5976         (i386_abi_handler_list): Removed.
5977         (i386_svr4_pc_in_sigtramp, i386_go32_pc_in_sigtramp): New
5978         functions.
5979         (i386_elf_init_abi, i386_svr4_init_abi, i386_go32_init_abi,
5980         i386_nw_init_abi): New functions.
5981         (i386_gdbarch_init): Rewritten to use generic OS ABI framework.
5982         Use set_gdbarch_xxx() calls instead of relying on macros for a
5983         number of calls.
5984         (i386_coff_osabi_sniffer, i386_nlm_osabi_sniffer): New functions.
5985         (_initialize_i386_tdep): Add new 'struct-convcention' command.
5986         Register the various architecture variants defined in this file.
5987
5988 2002-06-14  Daniel Jacobowitz  <drow@mvista.com>
5989
5990         * gdbtypes.h (TYPE_FLAG_VARARGS): Update comment.
5991         (struct main_type): Remove arg_types member.  Update comments for
5992         struct field.
5993         (TYPE_ARG_TYPES): Remove.
5994         (TYPE_FN_FIELD_ARGS): Update.
5995         (smash_to_method_type): Update prototype.
5996
5997         * c-typeprint.c (cp_type_print_method_args): Take method type
5998         instead of argument list.  Use new argument layout.  Simplify.
5999         (c_type_print_args): Use new argument layout.  Simplify.
6000         (c_type_print_base): Update call to cp_type_print_method_args.
6001         * dwarf2read.c (dwarf2_add_member_fn): Remove unneeded type
6002         argument; use die->type instead.  Update call to
6003         smash_to_method_type.
6004         (read_structure_scope): Update call to dwarf2_add_member_fn.
6005         * gdbtypes.c (allocate_stub_method): Update comment.
6006         (smash_to_method_type): Take new NARGS and VARARGS arguments.
6007         Use new argument layout.
6008         (check_stub_method): Use new argument layout.  Don't count
6009         void as an argument.
6010         (print_arg_types): Update comments.  Use new argument layout.
6011         (recursive_dump_type): Don't print arg_types member.
6012         * hpread.c (hpread_read_struct_type): Use new argument layout.
6013         (fixup_class_method_type): Likewise.
6014         (hpread_type_lookup): Likewise.
6015         * stabsread.c (read_type): Update calls to read_args and
6016         smash_to_method_type.
6017         (read_args): Use new argument layout.  Simplify.
6018         * valops.c (typecmp): Use new argument layout.  Update parameters
6019         and comments.  Simplify.
6020         (hand_function_call): Use new argument layout.
6021         (search_struct_method): Update call to typecmp.
6022         (find_overload_match): Use new argument layout.
6023
6024 2002-06-13  Daniel Jacobowitz  <drow@mvista.com>
6025
6026         * NEWS: Mention multithreaded debug support for gdbserver.
6027
6028 2002-06-13  Daniel Jacobowitz  <drow@mvista.com>
6029
6030         * MAINTAINERS: Mention NEWS.
6031
6032 2002-06-13  Daniel Jacobowitz  <drow@mvista.com>
6033
6034         * mips-tdep.c (PROC_SYMBOL): Add warning comment.
6035         (struct mips_objfile_private, compare_pdr_entries): New.
6036         (non_heuristic_proc_desc): Read the ".pdr" section if it
6037         is present.
6038
6039 2002-06-12  Andrew Cagney  <ac131313@redhat.com>
6040
6041         * arm-tdep.c (arm_push_arguments): Rewrite using a two-pass loop.
6042         (arm_debug): New static variable.
6043         (_initialize_arm_tdep): Add ``set debug arm'' command.
6044
6045 2002-06-12  Andrew Cagney  <ac131313@redhat.com>
6046
6047         * Makefile.in (sim_arm_h): Define.
6048         (arm-tdep.o): Add $(sim_arm_h) and $(gdb_assert_h).
6049         * arm-tdep.c: Include "gdb/sim-arm.h" and "gdb_assert.h".
6050         (arm_register_sim_regno): New function, map an internal REGNUM
6051         onto a simulator register number.
6052         (arm_gdbarch_init): Set register_sim_regno.
6053
6054 2002-06-09  Aldy Hernandez  <aldyh@redhat.com>
6055
6056         * MAINTAINERS: Add self.
6057
6058 2002-06-11  Jim Blandy  <jimb@redhat.com>
6059
6060         * source.c (source_info): Mention whether the symtab has
6061         information about preprocessor macros.
6062
6063         Call the command `info macro', not `show macro'.
6064         * macrocmd.c (info_macro_command): Renamed from `show_macro_command'.
6065         Fix error message.
6066         (_initialize_macrocmd): Register `info_macro_command' in
6067         `infolist', not `showlist'.
6068
6069 2002-06-11  Daniel Jacobowitz  <drow@mvista.com>
6070
6071         * mips-tdep.c (MIPS_FPU_TYPE, FP_REGISTER_DOUBLE, MIPS_EABI)
6072         (MIPS_LAST_FP_ARG_REGNUM, MIPS_LAST_ARG_REGNUM)
6073         (MIPS_DEFAULT_SAVED_REGSIZE, MIPS_REGS_HAVE_HOME_P)
6074         (MIPS_DEFAULT_STACK_ARGSIZE, GDB_TARGET_IS_MIPS64)
6075         (MIPS_DEFAULT_MASK_ADDRESS_P): Remove obsolete definitions.  Define
6076         unconditionally.
6077         (set_mipsfpu_single_command, set_mipsfpu_double_command)
6078         (set_mipsfpu_none_command): Remove if (GDB_MULTI_ARCH).
6079         (_initialize_mips_tdep): Remove dead code.
6080         * config/mips/tm-irix5.h (MIPS_LAST_ARG_REGNUM)
6081         (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
6082         * config/mips/tm-irix6.h (MIPS_LAST_ARG_REGNUM)
6083         (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
6084         * config/mips/tm-mips.h (MIPS_EABI, MIPS_LAST_ARG_REGNUM,
6085         MIPS_LAST_FP_ARG_REGNUM): Remove.
6086
6087 2002-06-11  Michal Ludvig  <mludvig@suse.cz>
6088
6089         * dwarf2cfi.c (unwind_tmp_obstack_init): New.
6090         (unwind_tmp_obstack_free, parse_frame_info)
6091         (update_context, cfi_read_fp, cfi_write_fp)
6092         (cfi_frame_chain, cfi_init_extra_frame_info)
6093         (cfi_virtual_frame_pointer): Use the above function.
6094         * dwarf2cfi.c: Reindented (using 'indent dwarf2cfi.c').
6095
6096 2002-06-11  Corinna Vinschen  <vinschen@redhat.com>
6097
6098         * v850-tdep.c (v850_type_is_scalar): New function.
6099         (v850_use_struct_convention): Match current gcc implementation
6100         as close as possible.
6101         (v850_push_arguments): Fix stack_offset handling.  Don't write
6102         struct_addr into register.  This is done by v850_store_struct_return.
6103         (v850_extract_return_value): Care for structs.
6104         (v850_store_return_value): Ditto.
6105         (v850_store_struct_return): Actually write address.
6106
6107 2002-06-11  Michal Ludvig  <mludvig@suse.cz>
6108
6109         * x86-64-tdep.c (x86_64_skip_prologue): Fix to work on functions
6110         without debug information too.
6111
6112 2002-06-10  Andrew Cagney  <ac131313@redhat.com>
6113
6114         * gdbarch.sh (PRINT_FLOAT_INFO): Add frame and ui_file parameters.
6115         Make multi-arch pure.
6116         * gdbarch.h, gdbarch.c: Re-generate.
6117         * arm-tdep.c (arm_print_float_info): Update.
6118         * arch-utils.h (default_print_float_info): Update.
6119         * arch-utils.c (default_print_float_info): Update.
6120         * infcmd.c (float_info): Update call.
6121
6122 2002-06-10  Andrew Cagney  <ac131313@redhat.com>
6123
6124         * Makefile.in (init.c): Move the call to _initialize_gdbtypes to
6125         the front of the initialize list.
6126
6127 2002-06-10  Andrew Cagney  <ac131313@redhat.com>
6128
6129         * infrun.c (struct inferior_status): Replace fields
6130         selected_frame_address and selected_level with field
6131         selected_frame_id.
6132         (save_inferior_status): Update.  Use get_frame_id.
6133         (struct restore_selected_frame_args): Delete.
6134         (restore_selected_frame): Update.  Use frame_find_by_id.
6135         (restore_inferior_status): Update.
6136
6137         * breakpoint.h (struct breakpoint): Change type of
6138         watchpoint_frame to frame_id.
6139         * breakpoint.c (insert_breakpoints): Use frame_find_by_id.  Remove
6140         call to get_current_frame.
6141         (do_enable_breakpoint): Use frame_find_by_id.  Remove call to
6142         get_current_frame.
6143         (watchpoint_check): Use frame_find_by_id.
6144
6145         * frame.h (record_selected_frame): Delete declaration.
6146         * stack.c (record_selected_frame): Delete function.
6147         
6148         * frame.h (struct frame_id): Define.
6149         (get_frame_id): Declare.
6150         (frame_find_by_id): Declare.
6151         * frame.c (frame_find_by_id): New function.
6152         (get_frame_id): New function.
6153
6154 2002-06-10  Andrey Volkov <avolkov@transas.com>
6155
6156         * ser-e7kpc.c: Fix duplicated define and call of 
6157         _initialize_ser_e7000pc
6158             
6159 2002-06-09  Daniel Jacobowitz  <drow@mvista.com>
6160
6161         * signals/signals.c (target_signal_from_host): Fix #ifdef
6162         SIGRTMIN case.
6163         (do_target_signal_to_host): Likewise.
6164
6165 2002-06-09  Daniel Jacobowitz  <drow@mvista.com>
6166
6167         * mips-tdep.c (mips_find_abi_section): New function.
6168         (mips_gdbarch_init): Call it.
6169
6170 2002-06-09  Mark Kettenis  <kettenis@gnu.org>
6171
6172         * solib-svr4.c (init_fetch_link_map_offsets): Simply return
6173         legacy_fetch_link_map_offsets.  Adjust comment to reflect reality
6174         after Andrew's 2002-06-08 gdbarch change.
6175
6176 2002-06-09  Mark Kettenis  <kettenis@gnu.org>
6177
6178         * i386-linux-nat.c (suppy_gregset): Don't supply
6179         I386_LINUX_ORIG_EAX_REGNUM if there isn't room for it in GDB's
6180         register cache.
6181         (fill_gregset): Don't fetch it under the same circumstances.
6182
6183 2002-06-09  Andrew Cagney  <cagney@redhat.com>
6184
6185         * Makefile.in (callback_h): Define.
6186         (remote_sim_h): Update path to remote-sim.h.
6187         (remote-rdp.o): Add $(callback_h).
6188         (remote-sim.o): Use $(callback_h).
6189         * remote-sim.c: Include "gdb/callback.h" and "gdb/remote-sim.h".
6190         * remote-rdp.c: Include "gdb/callback.h".
6191
6192 2002-06-09  Mark Kettenis  <kettenis@gnu.org>
6193
6194         * osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
6195         * osabi.c (gdb_osabi_names): Add "DJGPP" and "NetWare".
6196
6197 2002-06-08  Andrew Cagney  <ac131313@redhat.com>
6198
6199         * sparcl-tdep.c: Use __CYGWIN__ instead of __CYGWIN32__.
6200         * rdi-share/serpardr.c: Ditto.
6201         * rdi-share/unixcomm.c: Ditto.
6202         * rdi-share/serdrv.c: Ditto.
6203         * rdi-share/hostchan.h: Ditto.
6204         * rdi-share/hostchan.c: Ditto.
6205         * rdi-share/host.h: Ditto.
6206         * rdi-share/devsw.c: Ditto.
6207
6208         * objfiles.h: Change type of obj_private to void pointer.
6209         * pa64solib.c: Update copyright.  Don't include "assert.h", use
6210         strcmp instead of STREQ, use LONGEST, do not use PTR
6211         * somsolib.c: Ditto.
6212
6213         * config/djgpp/fnchange.lst: Fix problems with bfd/elf32-i386.c,
6214         bfd/elf32-i386qnx.c, bfd/elf32-sh.c, bfd/elf32-sh64-nbsd.c,
6215         bfd/elf64-sh64-nbsd.c bfd/elf64-sh64.c.
6216
6217 2002-06-08  Andrew Cagney  <ac131313@redhat.com>
6218
6219         * frame.c (GET_SAVED_REGISTER): Delete macro definition.
6220         (default_get_saved_register): Delete function.
6221         * gdbarch.sh (GET_SAVED_REGISTER): Set default to
6222         generic_unwind_get_saved_register.
6223         * gdbarch.h, gdbarch.c: Re-generate.
6224         
6225 2002-06-08  Andrew Cagney  <ac131313@redhat.com>
6226
6227         * gdbarch.sh (FRAME_CHAIN_VALID): Set default to
6228         generic_func_frame_chain_valid.
6229         * gdbarch.h, gdbarch.c: Re-generate.
6230         * blockframe.c (generic_func_frame_chain_valid): Only check
6231         PC_IN_CALL_DUMMY when generic dummy frames.  Don't worry about
6232         passing FP to PC_IN_CALL_DUMMY.
6233         Fix PR gdb/360.
6234
6235 2002-06-08  Andrew Cagney  <ac131313@redhat.com>
6236
6237         * gdbarch.sh (struct gdbarch_data): Add field init_p.
6238         (register_gdbarch_data): Initialize init_p.
6239         (gdbarch_data): Initialize data pointer using the init function.
6240         (init_gdbarch_data): Delete function.
6241         (gdbarch_update_p): Update.
6242         (initialize_non_multiarch): Update.
6243         (struct gdbarch): Add field initialized_p.
6244         * gdbarch.h, gdbarch.c: Re-generate.
6245
6246 2002-06-07  Michal Ludvig  <mludvig@suse.cz>
6247
6248         * x86-64-linux-nat.c (x86_64_fxsave_offset): New.
6249         (supply_fpregset, fill_fpregset): Don't call i387_*_fxsave,
6250         better do the things actually here.
6251         * x86-64-tdep.c (x86_64_register_name2nr): New.
6252         (x86_64_register_name): Renamed to x86_64_register_nr2name.
6253         (x86_64_gdbarch_init): Respect the above change.
6254         * x86-64-tdep.h (x86_64_register_name2nr)
6255         (x86_64_register_nr2name): Add prototypes.
6256         * config/i386/x86-64linux.mt (TDEPFILES): Remove i387-tdep.o.
6257
6258 2002-06-06  Michael Snyder  <msnyder@redhat.com>
6259
6260         * d10v-tdep.c (d10v_push_arguments): Handle struct_return.
6261         Delete extra braces and re-indent.
6262         (d10v_store_return_value): Char return values
6263         must be shifted over by one byte in R0.
6264         (d10v_extract_return_value): Delete extra braces, re-indent.
6265
6266 2002-06-06  Elena Zannoni  <ezannoni@redhat.com>
6267
6268         * d10v-tdep.c (d10v_read_sp, d10v_read_fp): Add prototype.
6269         (d10v_register_virtual_type): Make $fp and $sp be pointer to data.
6270         (d10v_integer_to_address): Rewrite.
6271         (d10v_frame_init_saved_regs): When reading fp and sp registers use
6272         the d10v specific functions which take care of converting to the
6273         correct space.
6274
6275 2002-06-06  Elena Zannoni  <ezannoni@redhat.com>
6276
6277         * config/djgpp/fnchange.lst: Add testsuite files altivec-abi.c,
6278         altivec-abi.exp, altivec-regs.c, altivec-regs.exp.
6279
6280 2002-06-02  Andrew Cagney  <ac131313@redhat.com>
6281
6282         * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm
6283         includes.
6284         * config/tm-linux.h: Ditto.
6285         * config/alpha/tm-alphalinux.h: Ditto.
6286         * config/arm/nm-linux.h, config/arm/tm-linux.h: Ditto.
6287         * config/arm/xm-nbsd.h, config/i386/nm-gnu.h: Ditto.
6288         * config/i386/nm-i386lynx.h, config/i386/nm-i386sol2.h: Ditto.
6289         * config/i386/nm-i386v4.h, config/i386/nm-i386v42mp.h: Ditto.
6290         * config/i386/nm-linux.h, config/i386/nm-m3.h: Ditto.
6291         * config/i386/nm-ptx4.h, config/i386/nm-x86-64.h: Ditto.
6292         * config/i386/tm-i386gnu.h, config/i386/tm-i386lynx.h: Ditto.
6293         * config/i386/tm-i386m3.h, config/i386/tm-i386sco5.h: Ditto.
6294         * config/i386/tm-i386v4.h, config/i386/tm-linux.h: Ditto.
6295         * config/i386/tm-ptx4.h, config/i386/tm-vxworks.h: Ditto.
6296         * config/i386/xm-i386v4.h, config/i386/xm-nbsd.h: Ditto.
6297         * config/i386/xm-ptx.h, config/i386/xm-ptx4.h: Ditto.
6298         * config/i960/tm-vx960.h, config/ia64/nm-aix.h: Ditto.
6299         * config/ia64/nm-linux.h, config/ia64/tm-aix.h: Ditto.
6300         * config/ia64/tm-linux.h, config/ia64/xm-aix.h: Ditto.
6301         * config/m68k/nm-linux.h, config/m68k/nm-m68klynx.h: Ditto.
6302         * config/m68k/nm-sysv4.h, config/m68k/tm-linux.h: Ditto.
6303         * config/m68k/tm-m68klynx.h, config/m68k/tm-m68kv4.h: Ditto.
6304         * config/m68k/tm-sun2os4.h, config/m68k/tm-sun3os4.h: Ditto.
6305         * config/m68k/tm-vx68.h, config/m68k/xm-m68kv4.h: Ditto.
6306         * config/m68k/xm-nbsd.h, config/m88k/nm-delta88v4.h: Ditto.
6307         * config/m88k/tm-delta88v4.h, config/m88k/xm-delta88v4.h: Ditto.
6308         * config/mips/nm-irix5.h, config/mips/nm-linux.h: Ditto.
6309         * config/mips/tm-linux.h, config/mips/tm-mips64.h: Ditto.
6310         * config/mips/tm-mipsm3.h, config/mips/tm-mipsv4.h: Ditto.
6311         * config/mips/tm-vxmips.h, config/mips/xm-irix5.h: Ditto.
6312         * config/mips/xm-mipsv4.h, config/ns32k/xm-nbsd.h: Ditto.
6313         * config/pa/nm-hppao.h, config/powerpc/nm-linux.h: Ditto.
6314         * config/powerpc/tm-linux.h, config/powerpc/tm-vxworks.h: Ditto.
6315         * config/powerpc/xm-aix.h, config/rs6000/nm-rs6000ly.h: Ditto.
6316         * config/rs6000/tm-rs6000ly.h, config/rs6000/xm-aix4.h: Ditto.
6317         * config/sh/tm-linux.h, config/sparc/nm-linux.h: Ditto.
6318         * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4sol2.h: Ditto.
6319         * config/sparc/tm-linux.h, config/sparc/tm-sp64linux.h: Ditto.
6320         * config/sparc/tm-sp64sim.h, config/sparc/tm-sparclynx.h: Ditto.
6321         * config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h: Ditto.
6322         * config/sparc/tm-vxsparc.h, config/sparc/xm-sun4sol2.h: Ditto.
6323
6324 2002-05-04  Aidan Skinner <aidan@velvet.net>
6325
6326         * ada-exp.tab.c: New file
6327         * ada-exp.y: New file
6328         * ada-lang.c: New file
6329         * ada-lang.h: New file
6330         * ada-lex.c: New file
6331         * ada-lex.l: New file
6332         * ada-tasks.c: New file
6333         * ada-typeprint.c: New file
6334         * ada-valprint.c: New file
6335         
6336 2002-06-02  Jason Thorpe  <thorpej@wasabisystems.com>
6337
6338         * ppcnbsd-tdep.c (ppcnbsd_init_abi): Don't set
6339         use_struct_convention to ppc_sysv_abi_broken_use_struct_convention.
6340
6341 2002-06-02  Jason Thorpe  <thorpej@wasabisystems.com>
6342
6343         * config/rs6000/aix4.mt (TDEPFILES): Use ppc-sysv-tdep.o
6344         insetead of ppc-linux-tdep.o.
6345         * config/rs6000/rs6000.mt (TDEPFILES): Likewise.
6346         * config/rs6000/rs6000lynx.mt (TDEPFILES): Likewise.
6347
6348 2002-06-02  Andrew Cagney  <ac131313@redhat.com>
6349
6350         2002-05-07 Christian Groessler <chris@groessler.org>
6351         * z8k-tdep.c (z8k_print_register_hook): Fix display of 32 and 64
6352         bit register contents for little endian hosts.
6353
6354 2002-06-01  Andrew Cagney  <ac131313@redhat.com>
6355
6356         * MAINTAINERS: Mention that any `HP/UX reader' can be changed by
6357         any maintainer.
6358
6359 2002-06-01  Andrew Cagney  <ac131313@redhat.com>
6360
6361         * gdbarch.h: Regenerate.
6362
6363 2002-06-01  Andrew Cagney  <ac131313@redhat.com>
6364
6365         * MAINTAINERS: Add everyone to write-after-approval list.
6366
6367 2002-06-01  Andrew Cagney  <ac131313@redhat.com>
6368
6369         * stack.c (frame_info): Use frame_register_unwind instead of
6370         saved_regs.  Mention when the SP is on the stack or in a register.
6371
6372         * frame.h (frame_register_unwind_ftype): Define.  Document.
6373         (struct frame_info): Add field register_unwind and
6374         register_unwind_cache.
6375         (frame_register_unwind): Declare.
6376         (generic_unwind_get_saved_register): Declare.
6377
6378         * frame.c (frame_register_unwind): New function.
6379         (generic_unwind_get_saved_register): New function.
6380
6381         * blockframe.c (generic_call_dummy_register_unwind): New function.
6382         (frame_saved_regs_register_unwind): New function.
6383         (set_unwind_by_pc): New function.
6384         (create_new_frame): New function.
6385         (get_prev_frame): New function.
6386
6387 2002-05-30  Andrew Cagney  <ac131313@redhat.com>
6388
6389         * a29k-share/: Delete directory.
6390         * remote-vx29k.c: Delete file.
6391
6392 2002-05-30  Jason Thorpe  <thorpej@wasabisystems.com>
6393
6394         * config/djgpp/fnchange.lst: Add ns32knbsd-nat.c, ns32knbsd-tdep.c,
6395         ppcnbsd-nat.c, ppcnbsd-tdep.c, sparcnbsd-nat.c, and sparcnbsd-tdep.c.
6396
6397 2002-05-30  Jason Thorpe  <thorpej@wasabisystems.com>
6398
6399         * Makefile.in (ALLDEPFILES): Add sparc64nbsd-nat.c,
6400         sparcnbsd-nat.c, and sparcnbsd-tdep.c.
6401         (sparc64nbsd-nat.o)
6402         (sparcnbsd-nat.o)
6403         (sparcnbsd-tdep.o): New dependency lists.
6404         * NEWS: Note new UltraSPARC NetBSD native configuration.
6405         * configure.host (sparc64-*-netbsd*): New host.
6406         * configure.tgt (sparc-*-netbsdelf*)
6407         (sparc-*-netbsd*): Set gdb_target to nbsd.
6408         (sparc64-*-netbsd*): New target.
6409         * sparc64nbsd-nat.c: New file.
6410         * sparcnbsd-nat.c: New file.
6411         * sparcnbsd-tdep.c: New file.
6412         * sparcnbsd-tdep.h: New file.
6413         * config/sparc/nbsd.mt: New file.
6414         * config/sparc/nbsd64.mh: New file.
6415         * config/sparc/nbsd64.mt: New file.
6416         * config/sparc/nbsdaout.mh (NATDEPFILES): Remove corelow.o,
6417         sparc-nat.o, and solib.o.  Add sparcnbsd-nat.o.
6418         (HOST_IPC): Remove.
6419         * config/sparc/nbsdaout.mt: Remove.
6420         * config/sparc/nbsdelf.mh (NATDEPFILES): Remove corelow.o,
6421         sparc-nat.o, and solib.o.  Add sparcnbsd-nat.o.
6422         (HOST_IPC): Remove.
6423         * config/sparc/nbsdelf.mt: Remove.
6424         * config/sparc/nm-nbsd.h: Update copyright years.  Remove all
6425         sparc-nat.c compatiblity defines.
6426         * config/sparc/tm-nbsd.h: Update copyright years.  Include solib.h.
6427         (GDB_MULTI_ARCH): Set to GDB_MULTI_ARCH_PARTIAL.
6428         * config/sparc/tm-nbsd64.h: New file.
6429         * config/sparc/tm-nbsdaout.h: Remove.
6430         * config/sparc/xm-nbsd.h: Remove.
6431
6432 2002-05-30  Jason Thorpe  <thorpej@wasabisystems.com>
6433
6434         * Makefile.in (sparc-tdep.o): Add osabi.h to dependency list.
6435         * sparc-tdep.c: Include osabi.h.
6436         (gdbarch_tdep): Add osabi member.
6437         (_initialize_sparc_tdep): Use gdbarch_register.
6438         (sparc_gdbarch_init): Use generic OS ABI framework.
6439         (sparc_dump_tdep): New function.
6440
6441 2002-05-30  Kevin Buettner  <kevinb@redhat.com>
6442
6443         * corefile.c (do_captured_read_memory_integer): Return non-zero
6444         result.
6445         (safe_read_memory_integer): Copy result of memory read when
6446         status is non-zero.  Also, add comments.
6447
6448 2002-05-20  Jason Thorpe  <thorpej@wasabisystems.com>
6449
6450         * Makefile.in (ppc_tdep_h): Define.
6451         (ppc-linux-nat.o)
6452         (ppc-linux-tdep.o)
6453         (rs6000-tdep.o): Use $(ppc_tdep_h).
6454         (ppc-sysv-tdep.o)
6455         (ppcnbsd-nat.o)
6456         (ppcnbsd-tdep.o): New dependency lists.
6457         * ppc-tdep.h: Use generic OS ABI framework.
6458         * ppc-linux-tdep.c (_initialize_ppc_linux_tdep)
6459         (ppc_linux_init_abi): New functions.
6460         (ppc_sysv_abi_broken_use_struct_convention)
6461         (ppc_sysv_abi_use_struct_convention)
6462         (ppc_sysv_abi_push_arguments): Move to...
6463         * ppc-sysv-tdep.c: ...here.
6464         * ppcnbsd-nat.c: Don't include gdbcore.h and regcache.h.
6465         * rs6000-tdep.c (process_note_abi_tag_sections)
6466         (get_elfosabi): Remove.
6467         (rs6000_gdbarch_init): Use generic OS ABI framework.
6468         (rs6000_dump_tdep): New function.
6469         (_initialize_rs6000_tdep): Use gdbarch_register.
6470         * config/powerpc/linux.mt (TDEPFILES): Add ppc-sysv-tdep.o.
6471         * config/powerpc/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
6472         * config/powerpc/aix.mt (TDEPFILES): Use ppc-sysv-tdep.o instead
6473         of ppc-linux-tdep.o.
6474         * config/powerpc/nbsd.mt (TDEPFILES): Likewise.
6475         * config/powerpc/ppc-eabi.mt (TDEPFILES): Likewise.
6476         * config/powerpc/ppc-sim.mt (TDEPFILES): Likewise.
6477         * config/powerpc/ppcle-eabi.mt (TDEPFILES): Likewise.
6478         * config/powerpc/ppcle-sim.mt (TDEPFILES): Likewise.
6479         * config/powerpc/vxworks.mt (TDEPFILES): Likewise.
6480
6481 2002-05-29  Jim Blandy  <jimb@redhat.com>
6482
6483         * macroscope.c (default_macro_scope): Put `void' in empty argument
6484         list.
6485
6486 2002-05-29  Andrew Cagney  <ac131313@redhat.com>
6487
6488         * Makefile.in (arch-utils.o): Add $(sim_regno_h).
6489         * arch-utils.c: Include "sim-regno.h".
6490         * gdbarch.sh: Don't include "sim-regno.h".
6491         * gdbarch.h, gdbarch.c: Regenerate.
6492         * sim-regno.h (legacy_register_sim_regno): Move declaration from
6493         here.
6494         * arch-utils.h (legacy_register_sim_regno): To here.
6495         * remote-sim.c (legacy_register_sim_regno): Move function from
6496         here.
6497         * arch-utils.c (legacy_register_sim_regno): To here.
6498
6499 2002-05-28  Andrew Cagney  <ac131313@redhat.com>
6500
6501         * sim-regno.h: New file.
6502         * Makefile.in (sim_regno_h): Define.
6503         (d10v-tdep.o, remote-sim.o): Add dependency on $(sim_regno_h).
6504         * remote-sim.c: Include "sim-regno.h" and "gdb_assert.h".
6505         (legacy_register_sim_regno): New function.
6506         (one2one_register_sim_regno): New function.
6507         (gdbsim_fetch_register): Rewrite.
6508         (gdbsim_store_register): Only store a register when
6509         REGISTER_SIM_REGNO is valid.
6510         * d10v-tdep.c: Include "sim-regno.h".
6511         (d10v_ts2_register_sim_regno): Add legacy_regiter_sim_regno check.
6512         (d10v_ts3_register_sim_regno): Ditto.
6513         * gdbarch.sh: Include "sim-regno.h".
6514         (REGISTER_SIM_REGNO): Set default to legacy_register_sim_regno.
6515         * gdbarch.h, gdbarch.c: Regenerate.
6516         * arch-utils.h (default_register_sim_regno): Delete declaration.
6517         * arch-utils.c (default_register_sim_regno): Delete function.
6518
6519 2002-05-28  Jason Thorpe  <thorpej@wasabisystems.com>
6520
6521         * ppcnbsd-nat.c: Rewrite.
6522         * ppcnbsd-tdep.c: New file.
6523         * ppcnbsd-tdep.h: New file.
6524         * config/powerpc/nbsd.mh (NATDEPFILES): Remove corelow.o,
6525         solib.o, and solib-svr4.o.
6526         * config/powerpc/nbsd.mt (TDEPFILES): Add ppcnbsd-tdep.o,
6527         nbsd-tdep.o, and corelow.o.
6528
6529 2002-05-28  Andrew Cagney  <ac131313@redhat.com>
6530
6531         * MAINTAINERS (--enable-gdb-build-warnings): Rewrite script to use
6532         `tr' and `sed'.  Mention that `broken' targets are not expected to
6533         build.
6534
6535 2002-05-27  Michal Ludvig  <mludvig@suse.cz>
6536
6537         * x86-64-tdep.c (x86_64_skip_prologue): Remove obsolete note.
6538         Let PC point right after the prologue before looking up symbols.
6539         
6540 2002-05-27  Martin M. Hunt  <hunt@redhat.com>
6541
6542         * i386-tdep.c (i386_register_virtual_type): Return 
6543         builtin_type_vec128i for SSE registers.
6544
6545         * gdbtypes.h (builtin_type_vec128i): Declare.
6546
6547         * gdbtypes.c (build_builtin_type_vec128i): New function.
6548         (builtin_type_v2_double, builtin_type_v4_int64): New types.
6549         (builtin_type_vec128i): New type for SSE2 128-bit registers.
6550         (build_gdbtypes): Initialize new builtin vector types.
6551         (_initialize_gdbtypes): Register new vector types with gdbarch.
6552
6553 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
6554
6555         * MAINTAINERS: ns32k is not longer an obsolete candidate,
6556         since it has been multi-arch'd.
6557         * NEWS: Note that ns32k-*-* is now partial multi-arch.
6558         Move Alpha and VAX multi-arch news entries to same section
6559         as other multi-arch news.
6560
6561 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
6562
6563         * ns32k-tdep.c: include gdbtypes.h, inferior.h, regcache.h,
6564         target.s, arch-utils.h, ns32k-tdep.h.  Make many functions
6565         static.  Rename some register numbers to put them in ns32k-tdep
6566         private namespace.
6567         (ns32k_get_saved_register, ns32k_gdbarch_init_32082,
6568         ns32k_gdbarch_init_32382, ns32k_gdbarch_init, ns32k_dump_tdep): New
6569         functions.
6570         (_initialize_ns32k_tdep): Use gdbarch_register.
6571         * ns32k-tdep.h: New file.
6572         * ns32knbsd-tdep.c: New file.
6573         * config/ns32k/nbsdaout.mt (TDEPFILES): Add ns32knbsd-tdep.o.
6574         * config/ns32k/tm-nbsd.h: Include "ns32k/tm-ns32k.h".
6575         (IN_SOLIB_CALL_TRAMPOLINE, REGISTER_NAME, NUM_REGS,
6576         REGISTER_BYTES, REGISTER_BYTE): Remove.
6577         * config/ns32k/tm-ns32k.h: New file.
6578         * config/ns32k/tm-umax.h: Remove.
6579
6580 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
6581
6582         * ns32k-tdep.c (ns32k_saved_pc_after_call,
6583         ns32k_store_struct_return, ns32k_extract_return_value,
6584         ns32k_store_return_value, ns32k_extract_struct_value_address): New
6585         functions.
6586         * config/ns32k/tm-umax.h (SAVED_PC_AFTER_CALL): Define as
6587         ns32k_saved_pc_after_call.
6588         (STORE_STRUCT_RETURN): Define as ns32k_store_struct_return.
6589         (EXTRACT_RETURN_VALUE): Define as ns32k_extract_return_value.
6590         (STORE_RETURN_VALUE): Define as ns32k_store_return_value.
6591         (EXTRACT_STRUCT_VALUE_ADDRESS): Define as
6592         ns32k_extract_struct_value_address.
6593
6594 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
6595
6596         * ns32k-tdep.c (ns32k_call_dummy_words, sizeof_ns32k_call_dummy_words,
6597         ns32k_fix_call_dummy): New.
6598         * config/ns32k/tm-umax.h (CALL_DUMMY_WORDS): Define as
6599         ns32k_call_dummy_words.
6600         (SIZEOF_CALL_DUMMY_WORDS): Define as sizeof_ns32k_call_dummy_words.
6601         (CALL_DUMMY, CALL_DUMMY_LENGTH, CALL_DUMMY_ADDR,
6602         CALL_DUMMY_NARGS): Remove.
6603         (FIX_CALL_DUMMY): Define as ns32k_fix_call_dummy.
6604
6605 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
6606
6607         * ns32k-tdep.c (ns32k_breakpoint_from_pc, ns32k_frame_chain,
6608         ns32k_frame_saved_pc, ns32k_frame_args_address,
6609         ns32k_frame_locals_address, ns32k_frame_init_saved_regs,
6610         ns32k_push_dummy_frame, ns32k_pop_frame): New functions.
6611         * config/ns32k/tm-nbsd.h (FRAME_SAVED_PC): Remove.
6612         * config/ns32k/tm-umax.h (INNER_THAN): Define as core_addr_lessthan.
6613         (BREAKPOINT_FROM_PC): Define as ns32k_breakpoint_from_pc.
6614         (BREAKPOINT): Remove..
6615         (FRAME_CHAIN): Define as ns32k_frame_chain.
6616         (FRAME_SAVED_PC): Define as ns32k_frame_saved_pc.
6617         (FRAME_ARGS_ADDRESS): Define as ns32k_frame_args_address.
6618         (FRAME_LOCALS_ADDRESS): Define as ns32k_frame_locals_address.
6619         (FRAME_FIND_SAVED_REGS): Remove.
6620         (FRAME_INIT_SAVED_REGS): Define as ns32k_frame_init_saved_regs.
6621         (PUSH_DUMMY_FRAME): Define as ns32k_push_dummy_frame.
6622         (POP_FRAME): Define as ns32k_pop_frame.
6623
6624 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
6625
6626         * ns32k-tdep.c (ns32k_register_byte_32082,
6627         ns32k_register_byte_32382, ns32k_register_raw_size,
6628         ns32k_register_virtual_size, ns32k_register_virtual_type): New
6629         functions.
6630         * config/ns32k/tm-nbsd.h (REGISTER_BYTE): Define as
6631         ns32k_register_byte_32382.
6632         * config/ns32k/tm-umax.h: Update copyright years.
6633         (REGISTER_BYTE): Define as ns32k_register_byte_32082.
6634         (REGISTER_RAW_SIZE): Define as ns32k_register_raw_size.
6635         (REGISTER_VIRTUAL_SIZE): Define as ns32k_register_virtual_size.
6636         (REGISTER_VIRTUAL_TYPE): Define as ns32k_register_virtual_type.
6637         (ns32k_get_enter_addr): Fix prototype.
6638
6639 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
6640
6641         * ns32k-tdep.c: Update copyright years.
6642         (ns32k_register_name_32082): New function.
6643         (ns32k_register_name_32382): Ditto.
6644         * config/ns32k/tm-nbsd.h (REGISTER_NAMES): Remove.
6645         (REGISTER_NAME): Define as ns32k_register_name_32382.
6646         * config/ns32k/tm-umax.h (REGISTER_NAMES): Remove.
6647         (REGISTER_NAME): Define as ns32k_register_name_32082.
6648
6649 2002-05-24  Jim Blandy  <jimb@redhat.com>
6650
6651         * dwarf2read.c (free_line_header): Use xfree, not free.
6652
6653 2002-05-24  Jason Thorpe  <thorpej@wasabisystems.com>
6654
6655         * config/djgpp/fnchange.lst: Add alphabsd-nat.c,
6656         alphabsd-tdep.c, mipsnbsd-nat.c, and mipsnbsd-tdep.c
6657
6658 2002-05-23  Andrew Cagney  <ac131313@redhat.com>
6659
6660         * PROBLEMS: Mention s390 and FreeBSD 4.4 build problems.
6661
6662 2002-05-23  Andrew Cagney  <ac131313@redhat.com>
6663
6664         From Ross Alexander at NEC Europe:
6665         * config/pa/hpux11w.mh (NATDEPFILES): Add solib.o.
6666
6667 2002-05-23  Michael Snyder  <msnyder@redhat.com>
6668
6669         * cli/cli-dump.c (restore_command): Use parse_and_eval_long
6670         for input, rather than parse_and_eval_address.  
6671
6672 2002-05-23  Andrew Cagney  <ac131313@redhat.com>
6673
6674         * d10v-tdep.c: Include "gdb/sim-d10v.h" instead of "sim-d10v.h".
6675         * Makefile.in (sim_d10v_h): Update definition.
6676
6677 2002-05-24  Andrew Cagney  <cagney@redhat.com>
6678
6679         * d10v-tdep.c (d10v_gdbarch_init): Revert old code included in
6680         change `2002-05-22 Michael Snyder' below.
6681         (d10v_push_arguments): Ditto.
6682         (d10v_extract_return_value): Ditto.
6683
6684 2002-05-23  Jim Blandy  <jimb@redhat.com>
6685
6686         * macrotab.c (check_for_redefinition): Don't complain if the new
6687         definition is the same as the previous one.  Take more arguments
6688         to allow the comparison.
6689         (macro_define_object, macro_define_function): Pass more arguments
6690         to check_for_redefinition.
6691
6692 2002-05-22  Michael Snyder  <msnyder@redhat.com>
6693
6694         * d10v-tdep.c: Change a few macros to enums for ease of debugging.
6695         (d10v_frame_chain_valid): Add PC_IN_CALL_DUMMY clause.
6696         (d10v_frame_saved_pc): Add PC_IN_CALL_DUMMY clause.
6697         (d10v_frame_chain): Bail immediately if PC_IN_CALL_DUMMY.
6698         Don't bail if return_pc is PC_IN_CALL_DUMMY.
6699         Add a temp variable to save a call (and a memory read).
6700         (d10v_init_extra_frame_info): Get fi->pc from callee's return_pc
6701         if possible (so that PC_IN_CALL_DUMMY will work).
6702
6703 2002-05-22  Corinna Vinschen  <vinschen@redhat.com>
6704
6705         * MAINTAINERS: Remove status `OBSOLETE' from v850.
6706
6707 2002-05-22  Michal Ludvig  <mludvig@suse.cz>
6708
6709         * dwarf2cfi.c (frame_state_for): Added safety check for a valid
6710         fde->cie_ptr.
6711         (dwarf2_build_frame_info): Corrected handling of eh_frame.
6712         (dwarf2_build_frame_info): Add offset to fde->initial_location 
6713         so that frames of shared libraries are mapped correctly.
6714         (execute_stack_op): Change type of 'result' from ULONGEST to
6715         CORE_ADDR.
6716         
6717 2002-05-22  Jason Thorpe  <thorpej@wasabisystems.com>
6718
6719         * config/alpha/tm-nbsd.h: Include solib.h.
6720
6721 2002-05-22  Jason Thorpe  <thorpej@wasabisystems.com>
6722
6723         * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Don't make
6724         assumptions about the host's byte order.
6725
6726 2002-05-22  Jason Thorpe  <thorpej@wasabisystems.com>
6727
6728         * Makefile.in (alphanbsd-tdep.o, shnbsd-tdep.o): Add solib-svr4.h
6729         to dependency list.
6730         * alphanbsd-tdep.c: Include solib-svr4.h.
6731         * shnbsd-tdep.c: Ditto.
6732
6733 2002-05-22  Jason Thorpe  <thorpej@wasabisystems.com>
6734
6735         * Makefile.in (armnbsd-tdep.o): Add solib-svr4.h and
6736         nbsd-tdep.h to dependency list.
6737         * configure.host (arm*-*-netbsdelf*, arm*-*-netbsd*,
6738         i[3456]86-*-netbsdaout*, i[3456]86-*-netbsd*, m68*-*-netbsd*,
6739         ns32k-*-netbsd*, sparc-*-netbsdaout*, sparc-*-netbsd*): Use
6740         nbsdaout.mh and nbsdelf.mh consistently.
6741         * configure.tgt (i[3456]86-*-netbsd*, m68*-*-netbsd*,
6742         ns32k-*-netbsd*, sparc-*-netbsdelf*, sparc-*-netbsd*) Use
6743         nbsdaout.mt and nbsdelf.mh consistently.
6744         * armnbsd-tdep.c: Include nbsd-tdep.h and solib-svr4.h. 
6745         (arm_netbsd_elf_init_abi): Use set_solib_svr4_fetch_link_map_offsets
6746         to set nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
6747         * config/nm-nbsd.h: Garbage-collect SVR4_SHARED_LIBS.  Move
6748         a.out shared library stuff from here...
6749         * config/nm-nbsdaout.h: ...to here.
6750         * config/tm-nbsd.h: Remove.
6751         * config/alpha/nm-nbsd.h (SVR4_SHARED_LIBS): Remove.
6752         * config/arm/nbsd.mh: Remove.
6753         * config/arm/nbsd.mt (TDEPFILES): Remove solib-sunos.o, add
6754         nbsd-tdep.o.
6755         * config/arm/nbsdaout.mh: New file. 
6756         * config/arm/nbsdelf.mh: New file.
6757         * config/arm/nm-nbsdaout.h: New file.
6758         * config/i386/nbsd.mh: Remove.
6759         * config/i386/nbsd.mt: Remove.
6760         * config/i386/nbsdaout.mh: New file.
6761         * config/i386/nbsdaout.mt: New file.
6762         * config/i386/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
6763         * config/i386/nbsdelf.mt (TM_FILE): Use tm-nbsd.h.
6764         * config/i386/nm-nbsd.h (REGISTER_U_ADDR, 
6765         i386_register_u_addr): Remove.
6766         * config/i386/nm-nbsdaout.h: New file.
6767         * config/i386/nm-nbsdelf.h: Remove.
6768         * config/i386/tm-nbsd.h: Don't include config/tm-nbsd.h.
6769         (USE_STRUCT_CONVENTION): Remove.
6770         * config/i386/tm-nbsdaout.h: New file.
6771         * config/i386/tm-nbsdelf.h: Remove.
6772         * config/m68k/nbsd.mh: Remove.
6773         * config/m68k/nbsd.mt: Remove.
6774         * config/m68k/nbsdaout.mh: New file.
6775         * config/m68k/nbsdaout.mt: New file. 
6776         * config/m68k/nm-nbsd.h: Use config/nm-nbsd.h.
6777         * config/m68k/nm-nbsdaout.h: New file.
6778         * config/m68k/tm-nbsd.h: Don't include config/tm-nbsd.h.
6779         (IN_SOLIB_CALL_TRAMPOLINE): Define.
6780         * config/ns32k/nbsd.mh: Remove.
6781         * config/ns32k/nbsd.mt: Remove. 
6782         * config/ns32k/nbsdaout.mh: New file.
6783         * config/ns32k/nbsdaout.mt: New file.
6784         * config/ns32k/nm-nbsd.h: Include config/nm-nbsd.h. 
6785         * config/ns32k/nm-nbsdaout.h: New file.
6786         * config/ns32k/tm-nbsd.h: Don't include config/tm-nbsd.h.  
6787         (IN_SOLIB_CALL_TRAMPOLINE): Define.
6788         * config/powerpc/nm-nbsd.h: Include config/nm-nbsd.h.
6789         (SVR4_SHARED_LIBS): Remove.
6790         * config/powerpc/tm-nbsd.h: Dont' include config/tm-nbsd.h.
6791         * config/sparc/nbsd.mh: Remove.
6792         * config/sparc/nbsd.mt: Remove.
6793         * config/sparc/nbsdaout.mh: New file.
6794         * config/sparc/nbsdaout.mt: New file.
6795         * config/sparc/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
6796         * config/sparc/nbsdelf.mt: New file.
6797         * config/sparc/nm-nbsdaout.h: New file.   
6798         * config/sparc/nm-nbsdelf.h: Remove.
6799         * config/sparc/tm-nbsd.h: Don't include config/tm-nbsd.h.
6800         * config/sparc/tm-nbsdaout.h: New file.
6801
6802 2002-05-21  Jason Thorpe  <thorpej@wasabisystems.com>
6803
6804         * Makefile.in (ALLDEPFILES): Add mipsnbsd-nat.c and
6805         mipsnbsd-tdep.c
6806         (mipsnbsd-nat.o, mipsnbsd-tdep.o): New dependency lists.
6807
6808 2002-05-21  Jason Thorpe  <thorpej@wasabisystems.com>
6809
6810         * Makefile.in (ALLDEPFILES): Add shnbsd-tdep.c and
6811         shnbsd-nat.c.
6812         (shnbsd-tdep.o, shnbsd-nat.o): New dependency lists.
6813
6814 2002-05-21  Jason Thorpe  <thorpej@wasabisystems.com>
6815
6816         * NEWS: Note new MIPS NetBSD native configuration. 
6817         * configure.host (mips*-*-netbsd*): New host. 
6818         * configure.tgt (mips*-*-netbsd*): New target. 
6819         * mipsnbsd-nat.c: New file.
6820         * mipsnbsd-tdep.c: New file.
6821         * mipsnbsd-tdep.h: New file.
6822         * config/mips/nbsd.mh: New file.
6823         * config/mips/nbsd.mt: New file.
6824         * config/mips/nm-nbsd.h: New file.
6825         * config/mips/tm-nbsd.h: New file.
6826
6827 2002-05-21  Jason Thorpe  <thorpej@wasabisystems.com>
6828
6829         * Makefile.in (SFILES): Add osabi.c.
6830         (COMMON_OBS): Add osabi.o.
6831         (osabi.o): New dependency list.
6832         * osabi.c: New file.
6833         * osabi.h: New file.
6834         * doc/gdbint.texinfo: Document new generic OS ABI framework.
6835
6836         * Makefile.in (alpha_tdep_h): Define and use instead of
6837         alpha-tdep.h.
6838         * alpha-tdep.c (alpha_abi_names, process_note_abi_tag_sections,
6839         get_elfosabi, alpha_abi_handler_list, alpha_gdbarch_register_os_abi):
6840         Remove.
6841         (alpha_gdbarch_init, alpha_dump_tdep): Use generic OS ABI framework.
6842         * alpha-tdep.h: Include osabi.h.
6843         (alpha_abi): Remove.
6844         (gdbarch_tdep): Use generic OS ABI framework.
6845         * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Use
6846         gdbarch_register_osabi.
6847         * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Likewise.
6848         * alphafbsd-tdep.c (_initialize_alphafbsd_tdep): Likewise.
6849         * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Likewise.
6850
6851         * Makefile.in (sh_tdep_h): Add osabi.h.
6852         * sh-tdep.h (sh_osabi): Remove.
6853         (gdbarch_tdep): Use generic OS ABI framework.
6854         * sh-tdep.c (sh_osabi_names, process_note_abi_tag_sections,
6855         sh_osabi_handler_list, sh_gdbarch_register_os_abi): Remove.
6856         (sh_gdbarch_init, sh_dump_tdep): Use generic OS ABI framework.
6857         * shnbsd-tdep.c (_initialize_shnbsd_tdep): Use gdbarch_register_osabi.
6858
6859         * Makefile.in (arm_tdep_h): Define and use instead of arm-tdep.h.
6860         * arm-linux-tdep.c (_initialize_arm_linux_tdep): Use
6861         gdbarch_register_osabi.
6862         * arm-tdep.c (arm_abi_names, process_note_abi_tag_sections,
6863         arm_abi_handler_list, arm_gdbarch_register_os_abi): Remove.
6864         (get_elfosabi): Rename to...
6865         (arm_elf_osabi_sniffer): ...this.  Adjust to use generic OS
6866         ABI framework support routines.
6867         (arm_gdbarch_init): Use generic OS ABI framework.
6868         (arm_dump_tdep): Likewise.
6869         (_initialize_arm_tdep): Likewise.
6870         * arm-tdep.h: Include osabi.h.
6871         (arm_abi): Remove.
6872         (gdbarch_tdep): Remove arm_abi and abi_name members.  Add
6873         osabi member.
6874         (arm_gdbarch_register_os_abi): Remove prototype.
6875         * armnbsd-tdep.c (arm_netbsd_aout_osabi_sniffer): New function.
6876         (_initialize_arm_netbsd_tdep): Use gdbarch_register_osabi.
6877
6878         * Makefile.in (mips-tdep.o): Add osabi.h to dependency list.
6879         * mips-tdep.c: Include osabi.h.
6880         (gdbarch_tdep, mips_gdbarch_init, mips_dump_tdep): Use generic
6881         OS ABI framework.
6882
6883 2002-05-20  Kazu Hirata  <kazu@cs.umass.edu>
6884
6885         * h8300-tdep.c: Fix formatting.
6886
6887 2002-05-20  Elena Zannoni  <ezannoni@redhat.com>
6888
6889         * rs6000-tdep.c (rs6000_do_registers_info): Simplify code for
6890         printing vector registers.
6891
6892 2002-05-19  Andrew Cagney  <ac131313@redhat.com>
6893
6894         From Fernando Nasser:
6895         * remote.c (remote_async_open_1): Re-throw the exception when the
6896         connection fails.
6897         (remote_cisco_open): Ditto.
6898         (remote_open_1): Ditto.
6899
6900 2002-05-19  Andrew Cagney  <ac131313@redhat.com>
6901
6902         * remote.c (remote_start_remote_dummy): Add uiout parameter.
6903         (remote_start_remote): Add uiout parameter.  Pass through to
6904         remote_start_remote_dummy.
6905         (remote_open_1): Use catch_exception instead of catch_errors.
6906         (remote_async_open_1): Ditto.
6907         (remote_cisco_open): Ditto.
6908
6909 2002-05-19  Andrew Cagney  <ac131313@redhat.com>
6910
6911         * remote.c (remote_start_remote): Replace PTR with void pointer.
6912         (sigint_remote_twice_token, sigint_remote_token): Ditto.  Make
6913         static.
6914
6915 2002-05-18  Andrew Cagney  <ac131313@redhat.com>
6916
6917         * gdb_indent.sh: Allow the script to be run in the sim directory.
6918
6919 2002-05-18  Mark Kettenis  <kettenis@gnu.org>
6920
6921         * config/i386/nm-cygwin.h (NO_PTRACE_H): Remove define.
6922         * config/i386/nm-go32.h (NO_PTRACE_H): Remove define.
6923
6924         * corelow.c (core_open): Only call set_gdbarch_from_file if
6925         exec_bfd is NULL.
6926
6927 2002-05-17  Andrey Volkov <avolkov@transas.com>
6928
6929         * h8300-tdep.c: Add support of EXR register
6930         * config/h8300/tm-h8300.h: Ditto. 
6931         
6932 2002-05-17  Andrey Volkov <avolkov@transas.com>
6933
6934         * h8300-tdep.c: Add additional CCR flags (I,UI,H,U) 
6935         
6936 2002-05-17  Andrey Volkov <avolkov@transas.com>
6937
6938         * h8300-tdep.c: Change literal regnums to REGNO.
6939         
6940 2002-05-17  Jim Blandy  <jimb@redhat.com>
6941
6942         * NEWS: Note addition of macro support.
6943
6944         Expand preprocessor macros in C expressions.
6945         * c-lang.h: #include "macroexp.h", for macro_lookup_ftype.
6946         (scan_macro_expansion, scanning_macro_expansion,
6947         finished_macro_expansion): New function declarations.
6948         (expression_macro_lookup_func, expression_macro_lookup_baton): New
6949         variable declarations.
6950         * parser-defs.h (expression_context_pc): New declaration.
6951         * parse.c (expression_context_pc): New variable.
6952         (parse_exp_1): Set expression_context_pc, as well as
6953         expression_context_block.
6954         * c-exp.y (yylex): If we're not already reading the result of a
6955         macro expansion, try to macro-expand the next token.  When we're
6956         done scanning a macro expansion, switch back to the mainline text.
6957         Commas and `if's in a macro's expansion don't terminate the input.
6958         * c-lang.c: #include "macroscope.h" and "gdb_assert.h".
6959         (macro_original_text, macro_expanded_text,
6960         expression_macro_lookup_func, expression_macro_lookup_baton): New
6961         variables.
6962         (scan_macro_expansion, scanning_macro_expansion,
6963         finished_macro_expansion, scan_macro_cleanup, null_macro_lookup,
6964         c_preprocess_and_parse): New functions.
6965         (c_language_defn, cplus_language_defn, asm_language_defn): Call
6966         c_preprocess_and_parse, instead of c_parse.
6967         * Makefile.in (c_lang_h): Note that this #includes macroexp.h.
6968         (c-lang.o): Note dependency on macroscope.h and gdb_assert.h.
6969
6970 Fri May 17 14:26:19 2002  J"orn Rennecke <joern.rennecke@superh.com>
6971
6972         * sh-tdep.c (gdb_print_insn_sh64): Delete.
6973         (gdb_print_insn_sh): Just set info->endian and use print_insn_sh.
6974         (sh_gdbarch_init): Always use gdb_print_insn_sh.
6975
6976 2002-05-17  Corinna Vinschen  <vinschen@redhat.com>
6977
6978         * NEWS: Add section for multi-arched targets.  Add v850 to that section.
6979
6980 2002-05-17  Jason Thorpe  <thorpej@wasabisystems.com>
6981
6982         * Makefile.in (sh_tdep_h): Define and use.
6983         * config/sh/tm-sh.h (sh_osabi, sh_abi, gdbarch_tdep,
6984         register enum): Move to...
6985         * * sh-tdep.h: ...here.
6986         * sh-tdep.c: Include sh-tdep.h.
6987         * sh3-rom.c: Likewise.
6988         * shnbsd-tdep.c: Likewise.
6989
6990 2002-05-16  Michael Snyder  <msnyder@redhat.com>
6991
6992         * arm-tdep.c: Spelling fix in comment.
6993
6994 2002-05-16  Jim Blandy  <jimb@redhat.com>
6995
6996         Add commands for manually expanding macros and showing their
6997         definitions.
6998         * macrocmd.c, macroscope.c, macroscope.h: New files.
6999         * Makefile.in (SFILES): Add macrocmd.c, macroscope.c.
7000         (macroscope_h): New variable.
7001         (HFILES_NO_SRCDIR): Add macroscope.h.
7002         (COMMON_OBS): Add macrocmd.o, macroscope.o.
7003         (macroscope.o, macrocmd.o): New rules.
7004
7005         Teach the Dwarf 2 reader to read macro information.
7006         * dwarf2read.c: #include "macrotab.h".
7007         (dwarf_macinfo_buffer): New variable.
7008         (struct dwarf2_pinfo): New members: dwarf_macinfo_buffer, and
7009         dwarf_macinfo_size.
7010         (DWARF_MACINFO_BUFFER, DWARF_MACINFO_SIZE): New macros.
7011         (dwarf2_missing_macinfo_section, dwarf2_macros_too_long,
7012         dwarf2_macros_not_terminated, dwarf2_macro_outside_file,
7013         dwarf2_macro_unmatched_end_file, dwarf2_macro_malformed_definition,
7014         dwarf2_macro_spaces_in_definition): New complaints.
7015         (dwarf2_has_info): Initialize dwarf_macinfo_offset.
7016         (dwarf2_build_psymtabs): Read the .dwarf_macinfo section.
7017         (dwarf2_build_psymtabs_hard): Record the buffer and its size in
7018         the partial symbol table.
7019         (psymtab_to_symtab_1): Set the macinfo buffer and size globals
7020         from what's recorded in the partial symbol table.
7021         (read_file_scope): If the compilation unit has a
7022         `DW_AT_macro_info' attribute, read its macro information.
7023         * Makefile.in (dwarf2read.o): Depend on macrotab.h.
7024
7025 2002-05-16  Daniel Jacobowitz  <drow@mvista.com>
7026
7027         Fix PR gdb/546
7028         * ser-tcp.c: Don't include <netinet/udp.h>.
7029
7030 2002-05-16  Stephane Carrez  <stcarrez@nerim.fr>
7031
7032         * MAINTAINERS: Update my email address.
7033
7034 2002-05-16  Richard Earnshaw  <rearnsha@arm.com>
7035
7036         * config/arm/nm-nbsd.h: Use "config/nm-nbsd.h" to include generic
7037         include file of the same name.
7038
7039 2002-05-16  Corinna Vinschen  <vinschen@redhat.com>
7040
7041         * configure.tgt: Mark v850 as multi-arched.
7042         * config/v850/tm-v850.h: Remove file.
7043         * config/v850/v850.mt: Eliminate TM_FILE.
7044
7045 2002-05-16  Corinna Vinschen  <vinschen@redhat.com>
7046
7047         * v850-tdep.c: Full multi-arch.
7048         * config/v850/tm-v850.h: Eliminate or move to v850-tdep.c everything.
7049         Define GDB_MULTI_ARCH to 2.
7050
7051 2002-05-16  Pierre Muller  <muller@ics.u-strasbg.fr>
7052
7053         * p-exp.y (current_type): New static variable.
7054         Carries the type of the expression at the position that is parsed.
7055         (push_current_type, pop_current_type): Two new functions. Used
7056         to store/restore current_type in expression on specific tokens.
7057         (search_field): New static variable. Set to one after parsing a point
7058         as at that point only a FIELDNAME token should be searched.
7059         (FIELDNAME): New token. After a point only a token belonging to 
7060         current_type type definition is allowed.
7061         (all over token rules): reset and change current_type according
7062         to rules.
7063         (exp '[' rule): insert implicit array index field if
7064         exp is a pascal string type.
7065
7066 2002-05-16  Corinna Vinschen  <vinschen@redhat.com>
7067
7068         * v850-tdep.c: Fix comment for v850_scan_prologue.  Remove extra
7069         frame info.  Use frame_info's saved_regs instead of matching member
7070         in extra_frame_info throughout.
7071         (v850_frame_init_saved_regs): New function.
7072         (v850_init_extra_frame_info): Move most functionality into
7073         v850_frame_init_saved_regs().
7074         * config/v850/tm-v850.h (EXTRA_FRAME_INFO): Remove definition.
7075         (v850_frame_find_saved_regs): Remove declaration.
7076         (FRAME_FIND_SAVED_REGS): Remove definition.
7077         (v850_frame_init_saved_regs): Add declaration.
7078         (FRAME_INIT_SAVED_REGS): Add definition.
7079
7080 2002-05-16  Corinna Vinschen  <vinschen@redhat.com>
7081
7082         * v850-tdep.c: Begin multi-arch'ing v850.
7083         (v850_target_architecture_hook): Remove function.
7084         (v850_gdbarch_init): New function.  Add code previously in
7085         v850_target_architecture_hook().
7086         (_initialize_v850_tdep): Don't  set target_architecture_hook.
7087         Call register_gdbarch_init() instead.
7088
7089 2002-05-16 Daniel Jacobowitz  <drow@mvista.com>
7090
7091         * gdbtypes.h (struct cplus_struct_type): Remove args field.
7092         * hpread.c (hpread_read_struct_type): Remove assignments to args.
7093         (fixup_class_method_type): Likewise.
7094
7095 2002-05-15  Jim Blandy  <jimb@redhat.com>
7096
7097         Add macro structures to GDB's symbol tables.  Nobody puts anything
7098         in them yet.
7099         * symtab.h (struct symtab): New member: `macro_table'.
7100         * buildsym.h (pending_macros): New global variable.
7101         * buildsym.c: #include "macrotab.h".
7102         (buildsym_init): Initialize `pending_macros'.
7103         (end_symtab): If we found macro information while reading a CU's
7104         debugging info, do build a symtab structure for it.  Make the
7105         symtab point to the macro information, and clear the
7106         `pending_macros' pointer which held it while we were reading the
7107         debug info.
7108         (really_free_pendings): Free any pending macro table.
7109         * objfiles.h (struct objfile): New member: `macro_cache'.
7110         * objfiles.c (allocate_objfile): Set allocate and free functions
7111         for the macro cache's objstack.
7112         (free_objfile): Empty the macro cache's obstack.
7113         * symfile.c (reread_symbols): Empty the macro cache's obstack, and
7114         set new allocate and free functions for it.
7115         * solib-sunos.c (allocate_rt_common_objfile): Set allocate and
7116         free functions for the macro cache's objstack.  (Why is this
7117         function building its own objfile?)
7118         * symmisc.c (print_objfile_statistics): Print statistics on the
7119         macro bcache.
7120         * Makefile.in: Note that buildsym.o depends on macrotab.h.
7121
7122 2002-05-15  Richard Earnshaw  <rearnsha@arm.com>
7123
7124         * config/arm/nm-nbsd.h: Use <> for include of config/nm-nbsd.h.
7125         (REGISTER_U_ADDR): Delete definition.
7126         (arm_register_u_addr): Delete declaration.
7127
7128 2002-05-15  Richard Earnshaw  <rearnsha@arm.com>
7129
7130         * arm-linux-tdep.c (ARM_LINUX_JB_PC): Renamed from JB_PC.
7131         (ARM_LINUX_JB_ELEMENT_SIZE): Likewise.
7132
7133 2002-05-14  Andrew Cagney  <ac131313@redhat.com>
7134
7135         * regcache.c (register_valid): Revise comments refering to "Not
7136         available" and "unavailable".
7137         * frame.c (frame_register_read): Ditto.
7138         * findvar.c (value_of_register): Ditto.
7139
7140 2002-05-15  Andrew Cagney  <cagney@redhat.com>
7141
7142         * Makefile.in (remote_sim_h): Replace remote-sim_h.
7143         (remote-sim.o): Update dependencies.
7144         (d10v-tdep.o): Specify dependencies.
7145         (sim_d10v_h): Define.
7146
7147 2002-05-14  Jim Blandy  <jimb@redhat.com>
7148
7149         * macroexp.c (init_buffer, gather_arguments, expand): Use NULL, not 0.
7150         * macrotab.c (macro_lookup_inclusion, find_definition,
7151         new_macro_table): Same.
7152         
7153         * macroexp.c (currently_rescanning, expand): Use `strcmp () == 0',
7154         not `! strcmp ()'.  This is a dubious improvement.
7155         * macrotab.c (macro_lookup_inclusion, find_definition): Same.
7156
7157         * macrotab.c (macro_lookup_inclusion): Initialize `best_depth',
7158         although it's not necessary, to avoid a warning.
7159
7160 2002-05-14  Daniel Jacobowitz  <drow@mvista.com>
7161
7162         * gdbtypes.h: Update accessor macros to use TYPE_MAIN_TYPE.
7163         (TYPE_CONST, TYPE_VOLATILE, TYPE_CODE_SPACE, TYPE_DATA_SPACE): Use
7164         TYPE_INSTANCE_FLAGS.
7165         (struct main_type): New.
7166         (struct type): Move most members to struct main_type.  Change
7167         cv_type and as_type to new type_chain member.  Add instance_flags.
7168         (TYPE_MAIN_TYPE, TYPE_CHAIN, TYPE_INSTANCE_FLAGS): New macros.
7169         (TYPE_CV_TYPE, TYPE_AS_TYPE): Remove.
7170         (finish_cv_type): Remove prototype.
7171         * gdbtypes.c (alloc_type): Update comment.  Allocate TYPE_MAIN_TYPE.
7172         Set TYPE_CHAIN.
7173         (alloc_type_instance): New function.
7174         (smash_type): New function.
7175         (make_pointer_type, make_reference_type, make_function_type)
7176         (smash_to_member_type, smash_to_method_type): Call smash_type.
7177         (make_qualified_type): New function.
7178         (make_type_with_address_space): Call make_qualified_type.
7179         (make_cv_type): Likewise.
7180         (finish_cv_type): Remove unnecessary function.
7181         (replace_type): Update comment.  Copy TYPE_MAIN_TYPE.
7182         (recursive_dump_type): Dump TYPE_CHAIN and TYPE_INSTANCE_FLAGS;
7183         remove TYPE_CV_TYPE and TYPE_AS_TYPE.
7184         * c-typeprint.c (c_type_print_modifier): Use TYPE_INSTANCE_FLAGS.
7185         * dwarf2read.c (read_structure_scope): Don't call finish_cv_type.
7186         * hpread.c (hpread_read_struct_type): Likewise.
7187         * stabsread.c (read_struct_type): Likewise.
7188
7189 2002-05-14  Elena Zannoni  <ezannoni@redhat.com>
7190
7191         * configure.tgt: Add a catch all sh* target, for cases like
7192         sh[2,3,4]-elf and sh-hms.
7193
7194 2002-05-14  Keith Seitz  <keiths@redhat.com>
7195
7196         * event-loop.c (create_file_handler): Don't do anything but
7197         update data when we are given a fd which we are already
7198         monitoring.
7199
7200 2002-05-14  Michal Ludvig  <mludvig@suse.cz>
7201
7202         * dwarf2cfi.c (context_cpy): Copy registers correctly.
7203         (update_context): Use __func__ in warnings.
7204         
7205 2002-05-14  Daniel Jacobowitz  <drow@mvista.com>
7206
7207         * ser-tcp.c: Include <netinet/udp.h>.  Rename tcp_open
7208         and tcp_close to net_open and net_close.
7209         (net_open): Accept "udp:" and "tcp:" specifications.  Connect
7210         using UDP if requested.  Don't try to disable Nagle on UDP
7211         sockets.
7212         * remote.c (remote_serial_open): New function.  Warn about UDP.
7213         (remote_open_1, remote_async_open_1, remote_cisco_open): Call it.
7214
7215 2002-05-13  Elena Zannoni  <ezannoni@redhat.com>
7216
7217         * MAINTAINERS: List sh-elf as buildable with ,-Werror.
7218
7219 2002-05-13  Elena Zannoni  <ezannoni@redhat.com>
7220
7221         * configure.tgt: Remove sh-hms target.
7222         * MAINTAINERS: Don't list sh-hms as a separate target.
7223
7224 2002-05-13  Jim Blandy  <jimb@redhat.com>
7225
7226         Add first preprocessor macro-expansion files.
7227         * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
7228         * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
7229         (splay_tree_h, macroexp_h, macrotab_h): New variable.
7230         (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
7231         (COMMON_OBS): Add macrotab.o, macroexp.o.
7232         (macroexp.o, macrotab.o): New rules.
7233
7234 2002-05-13  Andrew Cagney  <ac131313@redhat.com>
7235
7236         * config/m88k/tm-m88k.h: Update copyright.
7237         (m88k_target_write_pc): Declare
7238         (TARGET_WRITE_PC): Redefine using m88k_target_write_pc.
7239         (M88K_NNPC_REGNUM): Rename NNPC_REGNUM.
7240         (SHIFT_INST_REGS): Update definition.
7241         * m88k-tdep.c (m88k_target_write_pc): New function.  Implement
7242         using old definition of TARGET_WRITE_PC.
7243         * regcache.c (generic_target_write_pc): Delete code handling
7244         NNPC_REGNUM.
7245         * gdbarch.sh (NNPC_REGNUM): Delete.
7246         * gdbarch.h, gdbarch.c: Regenerate.
7247
7248 2002-05-13  Richard Earnshaw  <rearnsha@arm.com>
7249
7250         * builtin-regs.c (value_of_builtin_reg): Correctly calculate the
7251         builtin reg number.
7252
7253 2002-05-13  Daniel Jacobowitz  <drow@mvista.com>
7254
7255         * ax-gdb.c (gen_sign_extend, gen_fetch, gen_usual_unary)
7256         (gen_cast, gen_scale, gen_add, gen_sub, gen_binop, gen_deref)
7257         (gen_address_of, gen_struct_ref, gen_repeat): Use type
7258         access macros.
7259         * c-typeprint.c (cp_type_print_method_args): Likewise.
7260         (c_type_print_args): Likewise.
7261         * d10v-tdep.c (d10v_push_arguments): Likewise.
7262         (d10v_extract_return_value): Likewise.
7263         * expprint.c (print_subexp): Likewise.
7264         * gdbtypes.c (lookup_primitive_typename): Likewise.
7265         (lookup_template_type, add_mangled_type, print_arg_types): Likewise.
7266         * gdbtypes.h (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB)
7267         (TYPE_TARGET_STUB, TYPE_STATIC, TYPE_CONST, TYPE_VOLATILE)
7268         (TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_CODE_SPACE, TYPE_VARARGS)
7269         (TYPE_VECTOR): Likewise.
7270         * hpread.c (hpread_read_struct_type)
7271         (fix_static_member_physnames, fixup_class_method_type)
7272         (hpread_type_lookup): Likewise.
7273         * mdebugread.c (parse_symbol, parse_type): Likewise.
7274         * p-lang.c (is_pascal_string_type): Likewise.
7275         * valops.c (hand_function_call): Likewise.
7276         * x86-64-tdep.c (classify_argument): Likewise.
7277
7278         * hpread.c (hpread_read_function_type)
7279         (hpread_read_doc_function_type): Call replace_type.
7280         * dstread.c (create_new_type): Delete.
7281         (decode_dst_structure, process_dst_function): Call alloc_type.
7282         Use type access macros.
7283
7284 2002-05-12  Mark Kettenis  <kettenis@gnu.org>
7285
7286         * i387-tdep.c (i387_supply_fxsave): Skip the SSE registers if
7287         the're not supported by the current architecture.
7288         (i387_fill_fxsave): Likewise.
7289
7290 2002-05-12  Fred Fish  <fnf@redhat.com>
7291
7292         * symfile.c (default_symfile_offsets): Arrange for uninitialized
7293         sect_index_xxx members to index the first slot in section_offsets
7294         if all of the section_offsets are zero.
7295
7296 2002-05-12  Mark Kettenis  <kettenis@gnu.org>
7297
7298         * configure.tgt (sparc-*openbsd): Remove entry accidentially
7299         checked in with last change.
7300
7301 2002-05-12  Mark Kettenis  <kettenis@gnu.org>
7302
7303         * configure.tgt (i[3456]86-*-unixware*, i[3456]86-*-unixware2*):
7304         Remove targets.  These are canonicalized to i386-*-sysv4.2uw by
7305         config.sub.
7306
7307 2002-05-12  Daniel Jacobowitz  <drow@mvista.com>
7308
7309         * Makefile.in: Update dependencies.
7310
7311 2002-05-11  Andrew Cagney  <ac131313@redhat.com>
7312
7313         * language.c (local_hex_string_custom): Simplify.  Do not depend
7314         on PRINTF_HAS_LONG_LONG or CC_HAS_LONG_LONG.
7315
7316         * memattr.c (mem_info_command): Replace calls to
7317         longest_local_hex_string and longest_local_hex_string_custom.
7318         * buildsym.c (make_blockvector): Ditto.
7319         * solib.c (info_sharedlibrary_command): Ditto.
7320         * tracepoint.c (tracepoints_info): Ditto.
7321         * symtab.c (print_msymbol_info): Ditto.
7322
7323         * language.c (local_hex_string): Delete.
7324         (local_hex_string_custom): Delete.
7325         (longest_local_hex_string): Rename to local_hex_string.
7326         (longest_local_hex_string_custom): Rename to
7327         local_hex_string_custom.
7328         * language.h (local_hex_string): Change parameter type to LONGEST.
7329         (local_hex_string_custom): Ditto.
7330         (longest_local_hex_string): Delete declaration.
7331         (longest_local_hex_string_custom): Ditto.
7332
7333         * solib.c: Update copyright.
7334         * memattr.c: Update copyright.
7335         
7336 2002-05-11  Andrew Cagney  <ac131313@redhat.com>
7337
7338         * arch-utils.h (legacy_register_to_value): Declare.
7339         (legacy_value_to_register): Declare.
7340         (legacy_convert_register_p): Declare.
7341         * arch-utils.c (legacy_register_to_value): New function.
7342         (legacy_value_to_register): New function.
7343         (legacy_convert_register_p): New function.
7344
7345         * gdbarch.sh (REGISTER_TO_VALUE): Define.
7346         (VALUE_TO_REGISTER): Define.
7347         (CONVERT_REGISTER_P): Define.
7348         * gdbarch.h, gdbarch.c: Regenerate.
7349
7350         * valops.c (value_assign): Use CONVERT_REGISTER_P and
7351         VALUE_TO_REGISTER.
7352         * findvar.c (value_from_register): Use REGISTER_TO_VALUE and
7353         CONVERT_REGISTER_P.
7354
7355 2005-05-11  Daniel Jacobowitz  <drow@mvista.com>
7356             Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
7357
7358         * Makefile.in: Update dependencies for valops.c.
7359         * valops.c: Include "gdb_assert.h".
7360         (typecmp): Skip THIS parameter to methods.
7361         (find_method_list): Remove static_memfuncp argument,
7362         update callers.  Check for stub methods.
7363         (find_value_oload_method_list): Don't set *static_memfuncp.
7364         (find_overload_match): Don't check for stub methods.  Assert
7365         that methods are not stubbed.  Handle static methods.
7366         (value_find_oload_method_list): Remove static_memfuncp argument.
7367         * gdbtypes.c (check_stub_method): Do not add THIS pointer
7368         to the argument list for static stub methods.
7369         * value.h (value_find_oload_method_list): Update prototype.
7370
7371 2002-05-11  Andrew Cagney  <ac131313@redhat.com>
7372
7373         * arch-utils.h (generic_register_size): Declare.
7374         (generic_register_raw_size, generic_register_virtual_size): Delete
7375         declarations.
7376         * arch-utils.c (generic_register_raw_size): Delete.
7377         (generic_register_size): New function.
7378         (generic_register_virtual_size): Delete.
7379
7380         * gdbarch.sh (REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE): Make
7381         default generic_register_size.
7382         * gdbarch.h, gdbarch.c: Re-generate.
7383         
7384         * d10v-tdep.c (d10v_gdbarch_init): Use generic_register_size for
7385         register_virtual_size.
7386         * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
7387         * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
7388
7389 2002-05-11  Andrew Cagney  <ac131313@redhat.com>
7390
7391         * gdbarch.sh (gdbarch_data): Add gdbarch parameter.
7392         * gdbarch.h, gdbarch.c: Regenerate.
7393         * gnu-v3-abi.c: Update copyright.
7394         (vtable_address_point_offset): Update.
7395         (gnuv3_rtti_type): Update.
7396         (gnuv3_baseclass_offset): Update.
7397         * solib-svr4.c (svr4_fetch_link_map_offsets): Update.
7398         (init_fetch_link_map_offsets): Update.
7399         * remote.c (get_remote_state): Update.
7400         
7401 2002-05-11  Daniel Jacobowitz  <drow@mvista.com>
7402
7403         * TODO: Remove value_headof/value_from_vtable_info comment.
7404         * printcmd.c (print_command_1): Don't call value_from_vtable_info.
7405         * values.c (value_headof, value_from_vtable_info): Delete.
7406         * value.h (value_from_vtable_info): Delete prototype.
7407
7408 2002-05-11  Andrew Cagney  <ac131313@redhat.com>
7409
7410         * Makefile.in: Replace gdb_assert.h with $(gdb_assert_h),
7411         gdb_string.h with $(gdb_string_h) and gdb_regex.h with
7412         $(gdb_regex_h).
7413         (gdb_assert_h): Define.
7414         (gdb_wait_h): Define.
7415         (gdb_regex_h): Define.
7416
7417 2002-05-11 Daniel Jacobowitz  <drow@mvista.com>
7418
7419         From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
7420         * linespec.c (find_methods): Handle GCC 3.x template constructors.
7421
7422 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
7423
7424         * nbsd-tdep.c: Fix comment.
7425
7426 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
7427
7428         * Makefile.in (ALLDEPFILES): Add nbsd-tdep.c.
7429         (alphanbsd-tdep.o): Add nbsd-tdep.h to dependency list.
7430         (nbsd-tdep.o): New dependency list.
7431         * alphanbsd-tdep.c: Don't include solib-svr4.h.  Include
7432         nbsd-tdep.h.
7433         (alphanbsd_solib_svr4_fetch_link_map_offsets): Remove.
7434         (alphanbsd_init_abi): Use nbsd_lp64_solib_svr4_fetch_link_map_offsets.
7435         * nbsd-tdep.c: New file.
7436         * nbsd-tdep.h: New file.
7437         * shnbsd-tdep.c: Don't include solib-svr4.h.  Include
7438         nbsd-tdep.h.
7439         (shnbsd_solib_svr4_fetch_link_map_offsets): Remove.
7440         (shnbsd_init_abi): Use nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
7441         * config/alpha/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
7442         * config/sh/nbsd.mt (TDEPFILES): Ditto.
7443
7444 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
7445
7446         * config/alpha/nbsd.mh (NATDEPFILES): Remove corelow.o.
7447         * config/alpha/nbsd.mt (TDEPFILES): Add corelow.o.
7448         * config/i386/nbsd.mh (NATDEPFILES): Remove corelow.o.
7449         * config/i386/nbsd.mt (TDEPFILES): Add corelow.o.
7450         * config/i386/nbsdelf.mh (NATDEPFILES): Remove corelow.o.
7451         * config/i386/nbsdelf.mt (TDEPFILES): Add corelow.o.
7452
7453 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
7454
7455         * config/i386/nbsd.mh (NATDEPFILES): Use line continuations.
7456         * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
7457         * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
7458         * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
7459         * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
7460         * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
7461         * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
7462
7463 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
7464
7465         * i386nbsd-nat.c: Delete file.  Move fetch_core_registers and
7466         fetch_elfcore_registers to...
7467         * i386nbsd-tdep.c: ...here.
7468         (i386nbsd_use_struct_convention): Rename to...
7469         (i386nbsd_aout_use_struct_convention): ...this.
7470         (i386nbsd_supply_reg): New function.
7471         (i386nbsd_fill_reg): New function.
7472         (fetch_core_registers): Use i386nbsd_supply_reg.
7473         (fetch_elfcore_registers): Likewise.
7474         (_initialize_i386nbsd_tdep): New function.
7475         * config/i386/nbsd.mh (NATDEPFILES): Remove i386nbsd-nat.o.
7476         * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
7477         * config/i386/nbsdelf.mt (TDEPFILES): Add i386nbsd-tdep.o.
7478         * config/i386/tm-nbsd.h (i386nbsd_use_struct_convention): Rename to...
7479         (i386nbsd_aout_use_struct_convention): ...this.
7480
7481 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
7482
7483         * shnbsd-nat.c (fetch_inferior_registers): Use shnbsd_supply_reg.
7484         (store_inferior_registers): Use shnbsd_fill_reg.
7485         * shnbsd-tdep.c (sh_nbsd_supply_registers, 
7486         sh_nbsd_supply_register): Collapse into...
7487         (shnbsd_supply_reg): ...this.
7488         (sh_nbsd_fill_registers, sh_nbsd_fill_register): Collapse into...
7489         (shnbsd_fill_reg): ...this.
7490         (sh_nbsd_solib_svr4_fetch_link_map_offsets): Rename to...
7491         (shnbsd_solib_svr4_fetch_link_map_offsets): ...this.
7492         (fetch_core_registers): Use shnbsd_supply_reg.
7493         (fetch_elfcore_registers): Use shnbsd_supply_reg.
7494         (sh_nbsd_core_fns): Rename to...
7495         (shnbsd_core_fns): ...this.
7496         (sh_nbsd_elfcore_fns): Rename to...
7497         (shnbsd_elfcore_fns): ...this.
7498         (sh_nbsd_init_abi): Rename to...
7499         (shnbsd_init_abi): ...this.
7500         (_initialize_sh_nbsd_tdep): Rename to...
7501         (_initialize_shnbsd_tdep): ...this.
7502         * shnbsd-tdep.h (sh_nbsd_supply_registers,
7503         sh_nbsd_supply_register, sh_nbsd_fill_registers,
7504         sh_nbsd_fill_register): Remove prototypes.
7505         (shnbsd_supply_reg, shnbsd_fill_reg): Add prototypes.
7506
7507 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
7508
7509         * Makefile.in (ALLDEPFILES): Remove i387-nat.c.
7510         (i387-nat.o): Delete dependency list.
7511         (go32-nat.o): Change i387-nat.h to i387-tdep.h.
7512         (x86-64-linux-nat.o): Likewise.
7513         * i387-nat.c: Delete file, moving contents to...
7514         * i387-tdep.c: ...here.
7515         * i387-nat.h: Rename...
7516         * i387-tdep.h: ...to this.
7517         * go32-nat.c: Include i387-tdep.h instead of i387-nat.h.
7518         * i386-linux-nat.c: Likewise.
7519         * i386bsd-nat.c: Likewise.
7520         * i386gnu-nat.c: Likewise.
7521         * i386nbsd-nat.c: Likewise.
7522         * i386v4-nat.c: Likewise.
7523         * x86-64-linux-nat.c: Likewise.
7524         * config/i386/fbsd.mh (NATDEPFILES): Remove i387-nat.o.
7525         * config/i386/go32.mh (NATDEPFILES): Likewise.
7526         * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
7527         * config/i386/i386sol2.mh (NATDEPFILES): Likewise.
7528         * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
7529         * config/i386/linux.mh (NATDEPFILES): Likewise.
7530         * config/i386/nbsd.mh (NATDEPFILES): Likewise.
7531         * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
7532         * config/i386/obsd.mh (NATDEPFILES): Likewise.
7533         * config/i386/x86-64linux.mh (NATDEPFILES): Likewise.
7534
7535 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
7536
7537         * Makefile.in (ALLDEPFILES): Remove alphanbsd-nat.c.
7538         (alphanbsd-nat.o): Remove dependency list.
7539         (alphanbsd-tdep.o): Add $(regcache_h) to dependency list.
7540         * alphanbsd-nat.c: Delete.  Contents moved to...
7541         * alphanbsd-tdep.c: ...here.
7542         (_initialize_alphanbsd_tdep): Register core functions.
7543         * config/alpha/nbsd.mh (NATDEPFILES): Remove alphanbsd-nat.o.
7544
7545 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
7546
7547         * Makefile.in (ALLDEPFILES): Add alphabsd-tdep.c.
7548         (alphabsd-nat.o): Depend on alphabsd-tdep.h.
7549         (alphanbsd-nat.o): Likewise.
7550         (alphabsd-tdep.o): New dependency list.
7551         * alphabsd-nat.c (supply_gregset): Use alphabsd_supply_reg.
7552         (fill_gregset): Use alphabsd_fill_reg.
7553         (supply_fpregset): Use alphabsd_supply_fpreg.
7554         (fill_fpregset): Use alphabsd_fill_fpreg.
7555         (fetch_inferior_registers): Use struct reg and struct fpreg
7556         rather than gregset_t and fpregset_t.  Use alphabsd_supply_reg
7557         and alphabsd_supply_fpreg.
7558         (store_inferior_registers): Use struct reg and struct fpreg
7559         rather than gregset_t and fpregset_t.  Use alphabsd_fill_reg
7560         and alphabsd_fill_fpreg.
7561         * alphabsd-tdep.c: New file.
7562         * alphabsd-tdep.h: New file.
7563         * alphanbsd-nat.c (fetch_core_registers): Use alphabsd_supply_fpreg.
7564         (fetch_elfcore_registers): Use alphabsd_supply_reg and
7565         alphabsd_supply_fpreg.
7566         * config/alpha/fbsd.mt (TDEPFILES): Add alphabsd-tdep.o.
7567         * config/alpha/nbsd.mt (TDEPFILES): Likewise.
7568
7569 2002-05-11  Eric Christopher  <echristo@redhat.com>
7570
7571         * mips-tdep.c (mips_double_register_type): Fix thinko.
7572         (mips_single_register_type): Ditto.
7573         * MAINTAINERS: Add self.
7574
7575 2002-05-11  Mark Kettenis  <kettenis@gnu.org>
7576
7577         * i387-nat.c (i387_supply_register, i387_fill_fsave,
7578         i387_supply_fxsave, i387_fill_fxsave): Rewrite in order to do the
7579         right thing on architectures with different endianness and/or
7580         integer sizes.
7581
7582 2002-05-10  Jason Thorpe  <thorpej@wasabisystems.com>
7583
7584         From Christian Limpach <chris@Pin.LU>
7585         * configure.in: Change sed expression which comments out
7586         NATDEPFILES to also comment out continuation lines.
7587         * configure: Regenerate.
7588
7589 2002-05-10  Elena Zannoni  <ezannoni@redhat.com>
7590
7591         * sh-tdep.c: Clean up code erroneously reintroduced by previous
7592         big patch.
7593
7594 2002-05-10  Elena Zannoni  <ezannoni@redhat.com>
7595
7596         * sh-tdep.c: Include correct file.
7597
7598 2002-05-10  Elena Zannoni  <ezannoni@redhat.com>
7599
7600         New support for sh64-elf (sh5) target.
7601
7602         * configure.tgt: For sh64-elf target, default to sh-elf.
7603
7604         * config/sh/tm-sh.h (enum sh-abi): Possible ABI's.
7605         (struct gdbarch_tdep): Add new fields for new registers and ABI
7606         info.
7607
7608         * sh-tdep.c: Include elf-bfd.h, elf/sh.h, gdb/sim-sh.h.
7609         (NUM_PSEUDO_REGS_SH_MEDIA, NUM_PSEUDO_REGS_SH_COMPACT,
7610         MSYMBOL_IS_SPECIAL, IS_ISA32_ADDR, MAKE_ISA32_ADDR,
7611         UNMAKE_ISA32_ADDR, IS_PTABSL_R18, IS_STS_R0, IS_STS_PR,
7612         IS_MOV_TO_R15, IS_MOV_R14, IS_STQ_R18_R14, IS_STQ_R18_R15,
7613         IS_STL_R18_R15, IS_STQ_R14_R15, IS_STL_R14_R15, IS_ADDIL_SP_MEDIA,
7614         IS_ADDI_SP_MEDIA, IS_ADDL_SP_FP_MEDIA, IS_ADD_SP_FP_MEDIA,
7615         IS_MOV_SP_FP_MEDIA, IS_MOV_R0, IS_MOVL_R0, IS_ADD_SP_R0,
7616         IS_MOV_R14_R0, IS_MEDIA_IND_ARG_MOV, IS_MEDIA_ARG_MOV,
7617         IS_MEDIA_MOV_TO_R14, IS_COMPACT_IND_ARG_MOV, IS_COMPACT_ARG_MOV,
7618         IS_COMPACT_MOV_TO_R14, IS_JSR_R0, IS_NOP): New macros.
7619         (sh_sh64_register_name, sh64_elf_make_msymbol_special,
7620         pc_is_isa32, sh_sh64_breakpoint_from_pc, look_for_args_moves,
7621         sh64_skip_prologue_hard_way, sh64_use_struct_convention,
7622         gdb_print_insn_sh64, translate_insn_rn, sh64_frame_chain,
7623         sh64_get_saved_pr, fpp_reg_base_num, is_media_pseudo,
7624         sh64_get_gdb_regnum, sh64_media_reg_base_num,
7625         sh64_compact_reg_base_num, translate_rn_to_arch_reg_num,
7626         sign_extend, sh64_nofp_frame_init_saved_regs,
7627         sh64_init_extra_frame_info, sh64_get_saved_register,
7628         sh64_extract_struct_value_address, sh64_pop_frame,
7629         sh64_push_arguments, sh64_extract_return_value,
7630         sh64_store_return_value, sh64_show_media_regs,
7631         sh64_show_compact_regs, sh64_show_regs, sh_sh64_register_byte,
7632         sh_sh64_register_raw_size, sh_sh64_register_virtual_size,
7633         sh_sh64_register_virtual_type,
7634         sh_sh64_register_convert_to_virtual,
7635         sh_sh64_register_convert_to_raw, sh64_pseudo_register_read,
7636         sh64_register_read, sh64_pseudo_register_write,
7637         sh64_register_write, do_fv_c_register_info, do_dr_c_register_info,
7638         do_r_c_register_info, do_fpp_register_info, do_cr_c_register_info,
7639         sh64_do_pseudo_register, sh_compact_do_registers_info,
7640         sh64_do_registers_info, sh_gdbarch_init): New functions.
7641
7642 2002-05-10  Elena Zannoni  <ezannoni@redhat.com>
7643
7644         * sh-tdep.c (sh_breakpoint_from_pc): Add 'const' to return type.
7645
7646 2002-05-10 Daniel Jacobowitz  <drow@mvista.com>
7647
7648         * linespec.c (decode_line_1): Check for a double quote after
7649         a filename correctly.
7650
7651 2002-05-10  Jim Blandy  <jimb@redhat.com>
7652
7653         Properly track the size of the current objfile's .debug_line section.
7654         * dwarf2read.c (struct dwarf2_pinfo): New member: dwarf_line_size.
7655         (DWARF_LINE_SIZE): New macro.
7656         (dwarf2_build_psymtabs_hard): Record the line section's size in
7657         the partial symbol table.
7658         (psymtab_to_symtab_1): Restore dwarf_line_size from the partial
7659         symbol table.
7660
7661 2002-05-10  Petr Sorfa  <petrs@caldera.com>
7662
7663         * ia64-tdep.c: Handle breakpoints on L instruction type
7664         in MLX instruction bundle by moving the breakpoint to
7665         the third slot (X instruction type) as L holds only data.
7666
7667 2002-05-10  Kevin Buettner  <kevinb@redhat.com>
7668
7669         * dbxread.c (discarding_local_symbols_complaint): New complaint.
7670         (process_one_symbol): Complain about discarding local symbols
7671         due to a misplaced N_LBRAC entry.
7672
7673 2002-05-09  Elena Zannoni  <ezannoni@redhat.com>
7674
7675         From Daniel Berlin <dan@cgsoftware.com>
7676         * linespec.c (find_toplevel_char): '<' and '>' also increase and
7677         decrease the depth we are at, in the case of templates.
7678
7679 2002-05-09  Daniel Jacobowitz  <drow@mvista.com>
7680
7681         * mips-tdep.c (mips_float_register_type): New function.
7682         (mips_double_register_type): New function.
7683         (mips_print_register): Use them.
7684         (do_fp_register_row): Likewise.
7685
7686 2002-05-09  Daniel Jacobowitz  <drow@mvista.com>
7687
7688         * signals/signals.c (signals): Remove conditional compilation around
7689         Mach-specific signals.  Move them to after TARGET_SIGNAL_DEFAULT.
7690         (target_signal_from_name): Loop until TARGET_SIGNAL_LAST.
7691
7692 2002-05-09  Michael Snyder  <msnyder@redhat.com>
7693
7694         * remote-rdp.c (remote_rdp_can_run): Remove.
7695
7696 2002-05-09  Tom Tromey  <tromey@redhat.com>
7697
7698         * jv-valprint.c (java_val_print): Handle `char' as a special case
7699         of TYPE_CODE_INT.
7700
7701 2002-05-09  Michael Snyder  <msnyder@redhat.com>
7702
7703         * arm-tdep.c (arm_scan_prologue): Accept strb r(0123),[r11,#-nn],
7704         strh r(0123),[r11,#-nn], str r(0123),[r11,#-nn], as well as
7705         strb r(0123),[sp,#nn], strh r(0123),[sp,#nn] and
7706         str r(0123),[sp,#nn].
7707         (arm_skip_prologue): Ditto.  Also make disassembly
7708         order-independent by placing it in a loop.
7709
7710 2002-05-06  Michael Snyder  <msnyder@redhat.com>
7711
7712         * stabsread.c (read_type): Add recognition for new attribute:
7713         "@V;" means that an array type is actually a vector.
7714         This is analogous to the vector flag that's been added to dwarf2.
7715
7716 2002-05-09  Mark Kettenis  <kettenis@gnu.org>
7717
7718         * i386-tdep.h (i386_abi): New enum.
7719         (struct gdbarch_tdep): Replace os_ident member with abi.
7720         (i386_gdbarch_register_os_abi): New prototype.
7721         * i386-tdep.c (i386_abi_names): New array.
7722         (process_note_abi_tag_sections): Removed.
7723         (process_note_sections): New function.
7724         (i386_elf_abi_from_note, i386_elf_abi): New functions.
7725         (struct i386_abi_handler): New struct.
7726         (i386_abi_handler_list): New variable.
7727         (i386_gdbarch_register_os_abi): New function.
7728         (i386_gdbarch_init): Adapt for the changes given above.
7729
7730 2002-05-08  Daniel Jacobowitz  <drow@mvista.com>
7731
7732         * gregset.h: Say "GNU/Linux".
7733
7734 2002-05-08  Elena Zannoni  <ezannoni@redhat.com>
7735
7736         * gdbtypes.c : Add new builtin type for 64 bit vectors.
7737         (build_gdbtypes): Build builtin_type_v2_float.
7738         (_initialize_gdbtypes): Register new builtin type.
7739
7740 2002-05-08  Andrew Cagney  <ac131313@redhat.com>
7741
7742         * gdbarch.sh (init_gdbarch_swap): Do not clear the swap section.
7743         (clear_gdbarch_swap): New function.
7744         (initialize_non_multiarch): Call.
7745         (gdbarch_update_p): Before calling init(), swap out and clear the
7746         existing architecture.
7747         * gdbarch.c: Regenerate.
7748
7749 2002-05-08  Jason Thorpe  <thorpej@wasabisystems.com>
7750
7751         * config/djgpp/fnchange.lst: Add alphanbsd-nat.c and
7752         alphanbsd-tdep.c.
7753
7754 2002-05-08  Jason Thorpe  <thorpej@wasabisystems.com>
7755
7756         * sh-nbsd-nat.c: Rename to...
7757         * shnbsd-nat.c: ...this.
7758         * sh-nbsd-tdep.c: Rename to...
7759         * shnbsd-tdep.c: ...this.
7760         * sh-nbsd-tdep.h: Rename to...
7761         * shnbsd-tdep.h: ...this.
7762         * config/sh/nbsd.mh: Use shnbsd-nat.o.
7763         * config/sh/nbsd.mt: Use shnbsd-tdep.o.
7764
7765 2002-05-08  Richard Earnshaw  <rearnsha@arm.com>
7766
7767         * remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
7768         concatenation for command help messages.
7769
7770 2002-05-08  Jason Thorpe  <thorpej@wasabisystems.com>
7771
7772         * NEWS: Note new sh*-*-netbsdelf* configuration.
7773         * configure.host: Set gdb_host_cpu to sh for all sh*.
7774         (sh*-*-netbsdelf*): New host.
7775         * configure.tgt: Set gdb_target_cpu to sh for all sh*.
7776         (sh*-*-netbsdelf*): New target.
7777         * sh-nbsd-nat.c: New file.
7778         * sh-nbsd-tdep.c: New file.
7779         * sh-nbsd-tdep.h: New file.
7780         * config/sh/nbsd.mh: New file.
7781         * config/sh/nbsd.mt: New file.
7782         * config/sh/nm-nbsd.h: New file.
7783         * config/sh/tm-nbsd.h: New file.
7784
7785 2002-05-08  Jason Thorpe  <thorpej@wasabisystems.com>
7786
7787         * sh-tdep.c (sh_osabi_names): Declare.
7788         (process_note_abi_tag_sections): New function.
7789         (get_elfosabi): Ditto.
7790         (sh_gdbarch_register_os_abi): Ditto.
7791         (sh_dump_tdep): Ditto.
7792         _initialize_sh_tdep): Use gdbarch_register to register
7793         sh_gdbarch_init and sh_dump_tdep.
7794         * config/sh/tm-sh.h (sh_osabi): Declare.
7795         (gdbarch_tdep): Add sh_osabi and osabi_name members.
7796
7797 2002-05-07  Andrew Cagney  <ac131313@redhat.com>
7798
7799         * arm-tdep.c (arm_skip_prologue): Handle generic dummy frames.
7800         (thumb_scan_prologue): Ditto.
7801         (arm_find_callers_reg): Ditto.
7802         (arm_frame_chain): Ditto.
7803         (arm_init_extra_frame_info): Ditto.
7804         (arm_frame_saved_pc): Ditto.
7805         (arm_pop_frame): Ditto.
7806         (arm_push_return_address): New function.
7807         (arm_gdbarch_init): Initialize use_generic_dummy_frames,
7808         call_dummy_location, call_dummy_breakpoint_offset_p,
7809         call_dummy_breakpoint_offset, call_dummy_p,
7810         call_dummy_stack_adjust_p, call_dummy_words,
7811         sizeof_call_dummy_words, call_dummy_start_offset,
7812         call_dummy_length, fix_call_dummy, pc_in_call_dummy,
7813         call_dummy_address, push_return_address and push_dummy_frame for
7814         generic dummy frames.
7815
7816 2002-05-07  Jason Thorpe  <thorpej@wasabisystems.com>
7817
7818         * sh-tdep.c (sh_nofp_frame_init_saved_regs): Fix error in
7819         size computation for alloca.
7820         (sh_fp_frame_init_saved_regs): Likewise.
7821
7822 2002-05-07  Richard Earnshaw  <rearnsha@arm.com>
7823
7824         * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE): Define.
7825         (ARM_MAX_REGISTER_VIRTUAL_SIZE): Define.
7826         * arm-tdep.c (arm_store_return_value): Use them.
7827         Use FP_REGISTER_RAW_SIZE when setting the FPA return value.
7828         * remote-rdp.c (remote_rdp_fetch_register): Use
7829         ARM_MAX_REGISTER_RAW_SIZE.
7830         (remote_rdp_store_register): Likewise.
7831
7832 2002-05-07  Michal Ludvig  <mludvig@suse.cz>
7833
7834         * dwarf2cfi.c: Code cleanup, removed unused variables,
7835         added default labels to switch {} statements.
7836         * x86-64-tdep.c: Ditto.
7837         * x86-64-linux-nat.c: Ditto.
7838
7839 2002-05-07  Jason Thorpe  <thorpej@wasabisystems.com>
7840
7841         * solib.h: Protect against multiple inclusion.
7842
7843 2002-05-06  Jim Blandy  <jimb@redhat.com>
7844
7845         Add first preprocessor macro-expansion files.
7846         * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
7847         * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
7848         (splay_tree_h, macroexp_h, macrotab_h): New variable.
7849         (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
7850         (COMMON_OBS): Add macrotab.o, macroexp.o.
7851         (macroexp.o, macrotab.o): New rules.
7852
7853         Separate the job of reading the line number info statement program
7854         header (...expialidocious) out into its own function.
7855         * dwarf2read.c (struct line_head, struct filenames, struct
7856         directories): Replace with...
7857         (struct line_header): New structure, containing the full
7858         contents of the statement program header, including the
7859         include directory and file name tables.
7860         (read_file_scope): If we have line number info, instead of just
7861         calling dwarf_decode_lines to do all the work, call
7862         dwarf_decode_line_header first to get a `struct line_header'
7863         containing the data in the statement program header, and then
7864         pass that to dwarf_decode_lines, which will pick up where that
7865         left off.  Be sure to clean up the `struct line_header' object.
7866         (dwarf_decode_line_header, free_line_header, add_include_dir,
7867         add_file_name): New functions.
7868         (dwarf_decode_lines): Move all the code to read the statement
7869         program header into dwarf_decode_line_header.  Take the line
7870         header it built as the first argument, instead of the offset to
7871         the compilation unit's line number info.  Use the new `struct
7872         line_header' type instead of the old structures.  No need to do
7873         cleanups here now, since we don't allocate anything.
7874         (dwarf2_statement_list_fits_in_line_number_section,
7875         dwarf2_line_header_too_long): New complaints.
7876
7877 2002-05-06  Elena Zannoni  <ezannoni@redhat.com>
7878
7879         * gdbtypes.c (init_vector_type): New function.
7880         (build_builtin_type_vec128): Simplify the representation of SIMD
7881         registers.
7882         (build_gdbtypes): Initialize new builtin vector types.
7883         (_initialize_gdbtypes): Register new vector types with gdbarch.
7884         (builtin_type_v4_float, builtin_type_v4_int32,
7885         builtin_type_v8_int16, builtin_type_v16_int8,
7886         builtin_type_v2_int32, builtin_type_v4_int16,
7887         builtin_type_v8_int8): New (renamed) SIMD types.
7888
7889 2002-05-06  Mark Kettenis  <kettenis@gnu.org>
7890
7891         * i387-nat.c (i387_fill_fsave): Use regcache_collect.
7892         (i387_fill_fxsave): Likewise.
7893
7894 2002-05-05  Alexandre Oliva  <aoliva@redhat.com>
7895
7896         * alpha-tdep.c (alpha_extract_return_value): Don't use
7897         non-constant array size in prototype.
7898
7899 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
7900
7901         From Brian Taylor <briant at model dot com>:
7902         * ui-out.c (ui_out_field_core_addr): Use the function
7903         longest_local_hex_string_custom'to format addresses > 32 bits
7904         wide.
7905
7906         * ui-out.c (ui_out_field_core_addr): Update comment.
7907
7908 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
7909
7910         * stack.c (select_and_print_frame): Make static.  Delete the
7911         parameter `level'.
7912         (func_command): Update call.
7913         (select_frame_command): Delete code computing the frame level.
7914         * frame.h (select_and_print_frame): Delete declaration.
7915
7916 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
7917
7918         * sparc-tdep.c (sparc_get_saved_register): Comment why
7919         get_prev_frame call is safe.
7920
7921 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
7922
7923         * frame.h (select_frame): Delete level parameter.
7924         * stack.c (select_frame): Update.  Use frame_relative_level to
7925         obtain the frame's level.
7926         (select_and_print_frame): Update call.
7927         (select_frame_command): Ditto.
7928         (up_silently_base): Ditto.
7929         (down_silently_base): Ditto.
7930         * ocd.c (ocd_start_remote): Ditto.
7931         * remote-rdp.c (remote_rdp_open): Ditto.
7932         * remote-mips.c (mips_initialize): Ditto.
7933         (common_open): Ditto.
7934         * remote-e7000.c (e7000_start_remote): Ditto.
7935         * m3-nat.c (select_thread): Ditto.
7936         * hppa-tdep.c (child_get_current_exception_event): Ditto.
7937         (child_get_current_exception_event): Ditto.
7938         * varobj.c (varobj_create): Ditto.
7939         (varobj_update): Ditto.
7940         (c_value_of_root): Ditto.
7941         * tracepoint.c (finish_tfind_command): Ditto.
7942         * corelow.c (core_open): Ditto.
7943         * arch-utils.c (generic_prepare_to_proceed): Ditto.
7944         * thread.c (info_threads_command): Ditto.
7945         (switch_to_thread): Ditto.
7946         * infrun.c (normal_stop): Ditto.
7947         (restore_selected_frame): Ditto.
7948         (restore_inferior_status): Ditto.
7949         * breakpoint.c (insert_breakpoints): Ditto.
7950         (watchpoint_check): Ditto.
7951         (bpstat_stop_status): Ditto.
7952         (do_enable_breakpoint): Ditto.
7953         * blockframe.c (flush_cached_frames): Ditto.
7954         (reinit_frame_cache): Ditto.
7955
7956 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
7957
7958         * MAINTAINERS (Host/Native): Add Jason Thorpe as NetBSD
7959         maintainer.
7960
7961 2002-05-04  Jim Blandy  <jimb@redhat.com>
7962
7963         * gdbtypes.c (replace_type): Doc fix.
7964
7965 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
7966
7967         * valprint.c (strcat_longest): Delete commented out function.
7968         Update copyright.
7969
7970 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
7971
7972         * MAINTAINERS: Mark a29k as deleted.
7973         * NEWS: Mention that a29k was removed.  Add OBSOLETE section.
7974         Move new configurations to the top.
7975         * configure.tgt: Remove a29k.
7976         * config/a29k/tm-vx29k.h: Delete.
7977         * config/a29k/vx29k.mt: Delete.
7978         * config/a29k/tm-a29k.h: Delete.
7979         * config/a29k/a29k-udi.mt: Delete.
7980         * config/a29k/a29k.mt: Delete.
7981         * a29k-tdep.c: Delete.
7982         * remote-udi.c: Delete.
7983         * remote-mm.c: Delete.
7984         * remote-eb.c: Delete.
7985         * remote-adapt.c: Delete.
7986         * Makefile.in: Remove obsolete code.
7987         * config/s390/s390x.mt: Ditto.
7988         * config/s390/s390.mt: Ditto.
7989         * config/sparc/sparclynx.mh: Ditto.
7990         * config/sparc/linux.mh: Ditto.
7991         * config/pa/hppaosf.mh: Ditto.
7992         * config/pa/hppabsd.mh: Ditto.
7993         * config/ns32k/nbsd.mt: Ditto.
7994         * config/mips/vr5000.mt: Ditto.
7995         * config/m68k/sun3os4.mh: Ditto.
7996         * config/m68k/nbsd.mt: Ditto.
7997         * config/m68k/m68klynx.mh: Ditto.
7998         * config/m32r/m32r.mt: Ditto.
7999         * config/i386/x86-64linux.mt: Ditto.
8000         * config/i386/nbsdelf.mt: Ditto.
8001         * config/i386/nbsd.mt: Ditto.
8002         * config/i386/i386lynx.mh: Ditto.
8003
8004 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
8005
8006         * target.c (debug_print_register): New function.  Handle oversize
8007         registers.
8008         (debug_to_fetch_registers): Call.
8009         (debug_to_store_registers): Call.
8010
8011 2002-05-03  Jim Blandy  <jimb@redhat.com>
8012
8013         * stabsread.c (cleanup_undefined_types): Use replace_type, not memcpy.
8014         (read_type): Doc fix.
8015         * gdbtypes.c (replace_type): Doc fix.
8016
8017         * stabsread.c (multiply_defined_struct): New complaint.
8018         (read_struct_type): If the type we were passed isn't empty, or
8019         incomplete, don't read the new struct type into it; complain,
8020         and return the original type unchanged.  Take a new `type_code'
8021         argument, which is the type code for the new type.
8022         (read_type): Rather than storing the type's type code here, pass
8023         it as an argument to read_struct_type, and let that take care of
8024         storing it.  That way, we don't overwrite the original type code,
8025         so read_struct_type can use it to decide whether we're overwriting
8026         something we shouldn't.
8027         (complain_about_struct_wipeout): New function.
8028
8029 2002-05-03  Andrew Cagney  <ac131313@redhat.com>
8030
8031         * gdbarch.sh: Assert that gdbarch is non-NULL.
8032         * gdbarch.c: Regenerate.
8033
8034 2002-05-03  Jason Merrill  <jason@redhat.com>
8035
8036         * gnu-v3-abi.c (gnuv3_rtti_type): If we get confused, just warn
8037         and return NULL.
8038
8039 2002-05-03  Michal Ludvig  <mludvig@suse.cz>
8040
8041         * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map),
8042         (x86_64_dwarf2gdb_regno_map_length),
8043         (x86_64_dwarf2_reg_to_regnum): Added.
8044         (x86_64_gdbarch_init): Added registration of x86_64_dwarf2_reg_to_regnum.
8045         (x86_64_gdbarch_init): Renamed from i386_gdbarch_init.
8046         (_initialize_x86_64_tdep): Synced with the change above.
8047         (x86_64_skip_prologue): Reformulated message.
8048
8049 2002-05-03  Pierre Muller  <muller@ics.u-strasbg.fr>
8050
8051         * f-exp.y: Also use new prev_lexptr variable
8052         to improve error reporting. Based on Michael Snyder
8053         2002-04-24 dated patch to c-exp.y.
8054         * jv-exp.y: Likewise.
8055         * m2-exp.y: Likewise.
8056
8057 2002-05-02  Elena Zannoni  <ezannoni@redhat.com>
8058
8059         * valops.c (value_arg_coerce): Don't coerce arrays to pointers if
8060         we are dealing with vectors.
8061
8062 2002-05-02  Pierre Muller  <muller@ics.u-strasbg.fr>
8063
8064         * config/m68k/tm-nbsd.h: Obvious fix,
8065         correct machine name.
8066
8067 2002-05-02  Pierre Muller  <muller@ics.u-strasbg.fr>
8068
8069         * p-typeprint.c (pascal_type_print_base): Add support
8070         for TYPE_CODE_STRING and TYPE_CODE_BITSTRING.
8071
8072 2002-05-02  Pierre Muller  <muller@ics.u-strasbg.fr>
8073
8074         * p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
8075         for fondamental pascal 'char' type.
8076
8077 2002-05-02  Pierre Muller  <muller@ics.u-strasbg.fr>
8078
8079         * p-lang.h (is_pascal_string_type): Declaration changed,
8080         new sixth argument of type char ** added.
8081         * p-lang.c (is_pascal_string_type): Implementation
8082         changed. Args length_pos, length_size, string_pos, char_size
8083         can now be NULL. New argument arrayname set to the field
8084         name of the char array. Return value set to char array
8085         field index plus one.
8086         * p-valprint.c (pascal_val_print): Adapt to new declaration of
8087         is_pascal_string_type function.
8088
8089 2002-05-02  Andrew Cagney  <cagney@redhat.com>
8090
8091         * gdbarch.sh (gdbarch_update_p): Revert 2002-05-02 Andrew Cagney
8092         <cagney@redhat.com> change.
8093         * gdbarch.c: Regenerate.
8094
8095 2002-05-02  Andrew Cagney  <cagney@redhat.com>
8096
8097         * gdbarch.sh (gdbarch_update_p): Swap out the old architecture
8098         before probing for a new one.  Detect errorenous gdbarch_init
8099         functions.
8100         * gdbarch.c: Regenerate.
8101
8102 2002-05-01  Andrew Cagney  <cagney@redhat.com>
8103
8104         * config/mn10200/tm-mn10200.h: Include "symfile.h" and "symtab.h".
8105         * config/mcore/tm-mcore.h: Ditto.  Update copyright.
8106         * config/v850/tm-v850.h: Ditto.  Update copyright.
8107
8108 2002-04-30  Andrew Cagney  <ac131313@redhat.com>
8109
8110         * cris-tdep.c (cris_gdbarch_init): Use arches instead of
8111         current_gdbarch.
8112
8113 2002-04-30  Michael Snyder  <msnyder@redhat.com>
8114
8115         * arm-tdep.c: Whitespace clean-ups.
8116         (arm_skip_prologue): Fix thinko; two lines
8117         should have been removed as part of 4/24 change.
8118
8119 2002-04-30  Kevin Buettner  <kevinb@redhat.com>
8120
8121         * rs6000-tdep.c: Added comment describing how fpscr register
8122         numbers were chosen.
8123
8124 2002-04-30  Michael Snyder  <msnyder@redhat.com>
8125
8126         * gnu-nat.c (gnu_find_memory_regions): Fix merge botch.
8127
8128 2002-04-29  Elena Zannoni  <ezannoni@redhat.com>
8129
8130         * hpread.c (DNTT_TYPE_VECTOR): Rename from TYPE_VECTOR.
8131         (DNTT_TYPE_VECTOR_LENGTH): Rename from TYPE_VECTOR_LENGTH.
8132         (hpread_symfile_init, hpread_lookup_type): Substitute throughout.
8133
8134 2002-04-29  Kevin Buettner  <kevinb@redhat.com>
8135
8136         From Louis Hamilton <hamilton@redhat.com>:
8137         * rs6000-tdep.c (coff/xcoff.h, libxcoff.h): Include.
8138         * xcoffread.c (coff/xcoff.h, libxcoff.h): Likewise.
8139         * rs6000-tdep.c (rs6000_gdbarch_init): Use bfd_xcoff_is_xcoff64(),
8140         not bfd-private xcoff data, to determine wordsize.
8141         * xcoffread.c (read_xcoff_xymtab, read_symbol_lineno): Likewise.
8142
8143 2002-04-29  Andrew Cagney  <ac131313@redhat.com>
8144
8145         GDB 5.2 released from 5.2 branch.
8146
8147 2002-04-29  Michal Ludvig  <mludvig@suse.cz>
8148
8149         * x86-64-linux-nat.c (fill_gregset): Explicit cast to avoid warning.
8150         * x86-64-tdep.c (i386_gdbarch_init): Ditto.
8151         (x86_64_register_info_table): Added comments with register numbers.
8152
8153 2002-04-29  Elena Zannoni  <ezannoni@redhat.com>
8154
8155         * rs6000-tdep.c (rs6000_extract_return_value,
8156         rs6000_store_return_value): Handle returning vectors.
8157         (rs6000_gdbarch_init): Use
8158         ppc_sysv_abi_broken_use_struct_convention for native sysv cases.
8159         * ppc-linux-tdep.c (ppc_sysv_abi_broken_use_struct_convention):
8160         New function.
8161         (ppc_sysv_abi_use_struct_convention): Deal with functions returning
8162         vectors.
8163         (ppc_sysv_abi_push_arguments): Handle vector parameters.
8164         * ppc-tdep.h (ppc_sysv_abi_broken_use_struct_convention): Export.
8165
8166 2002-04-24  Pierre Muller  <ics.u-strasbg.fr>
8167
8168         * hpread.c (hpread_psymtab_to_symtab_1,
8169         hpread_psymtab_to_symtab): Replace fprintf tab_to_s...)
8170         with fprintf_unfiltered (gdb_stderr,...).
8171
8172 2002-04-24  Pierre Muller  <ics.u-strasbg.fr>
8173
8174         * remote-array.c (printf_monitor, write_monitor,
8175         array_insert_breakpoint, array_remove_breakpoint ):
8176         Replace fprintf (stderr,...
8177         with fprintf_unfiltered (gdb_stderr,....
8178         * remote-es.c: Likewise.
8179         * remote-os9k.c: Likewise.
8180         * remote-st.c: Likewise.
8181
8182 2002-04-28  Andreas Schwab  <schwab@suse.de>
8183
8184         * config/s390/s390.mh (NATDEPFILES): Remove solib.o, add
8185         linux-proc.o and gcore.o.
8186
8187 2002-04-26  Michal Ludvig  <mludvig@suse.cz>
8188
8189         * x86-64-tdep.c (x86_64_skip_prologue): Print note when debugging
8190         code without frame pointers.
8191
8192 2002-04-26  Andrew Cagney  <ac131313@redhat.com>
8193
8194         * sparc-tdep.c (sparc_gdbarch_init): Add comment explaining why
8195         ON_STACK is needed.
8196
8197 2002-04-26  Ben Elliston  <bje@redhat.com>
8198
8199         * target.c (do_xfer_memory): Correct reference to the new option
8200         "trust-readonly-sections".
8201
8202 2002-04-26  Elena Zannoni  <ezannoni@redhat.com>
8203
8204         * gdbtypes.h (TYPE_FLAG_VECTOR, TYPE_VECTOR): Define.
8205         * gdbtypes.c (recursive_dump_type): Output the vector flag.
8206         * dwarf2read.c (dwarf_attr_name): Handle new attribute for
8207         vectors.
8208         (read_array_type): Record the fact that this array type is really a
8209         vector (i.e. are passed in by value).
8210
8211 2002-04-26  Jason Thorpe  <thorpej@wasabisystems.com>
8212
8213         * alpha-tdep.h (gdbarch_tdep): Add sigcontext_addr member.
8214         * alpha-tdep.c (alpha_sigcontext_addr): New function.
8215         (alpha_find_saved_regs): Use alpha_sigcontext_addr.
8216         (alpha_gdbarch_init): Initialize tdep->sigcontext_addr.
8217         * alpha-linux-tdep.c: Include frame.h.
8218         (alpha_linux_sigcontext_addr): New function.
8219         (alpha_linux_init_abi): Set tdep->sigcontext_addr to
8220         alpha_linux_sigcontext_addr.
8221         * alpha-osf1-tdep.c: Include gdbcore.h.
8222         (alpha_osf1_sigcontext_addr): New function.
8223         (alpha_osf1_init_abi): Set tdep->sigcontext_addr to
8224         alpha_osf1_sigcontext_addr.
8225         * config/alpha/tm-alpha.h (SIGCONTEXT_ADDR): Remove.
8226         * config/alpha/tm-alphalinux.h (SIGCONTEXT_ADDR): Remove.
8227
8228 2002-04-26  Andrew Cagney  <ac131313@redhat.com>
8229
8230         * stack.c (selected_frame_level):
8231         (select_frame): Do not set selected_frame_level.
8232         * frame.h (selected_frame_level): Delete declaration.
8233
8234 2002-04-26  Andrew Cagney  <ac131313@redhat.com>
8235
8236         * rs6000-tdep.c (rs6000_gdbarch_init): Only set
8237         convert_from_func_ptr-addr when AIX / PowerOpen.
8238
8239 2002-04-25  Andrew Cagney  <ac131313@redhat.com>
8240
8241         * valops.c (hand_function_call): Call
8242         generic_save_call_dummy_addr.
8243         * frame.h (generic_save_call_dummy_addr): Declare.
8244         * blockframe.c (struct dummy_frame): Add fields call_lo and
8245         call_hi.
8246         (generic_find_dummy_frame): Check for PC in range call_lo to
8247         call_hi instead of entry_point_address.
8248         (generic_pc_in_call_dummy): Search the dummy frames for a PC in
8249         the call_lo to call_hi range.  Allow for DECR_PC_AFTER_BREAK.
8250         (generic_save_call_dummy_addr): New function.
8251
8252 2002-04-24  David S. Miller  <davem@redhat.com>
8253
8254         * sparc-tdep.c (sparc_gdbarch_skip_prologue): Kill, duplicates
8255         sparc_skip_prologue.
8256         (sparc_skip_prologue): Kill frameless_p arg, and use line number
8257         information to find prologue when possible.
8258         (sparc_prologue_frameless_p): Call examine_prologue directly.
8259         (sparc_gdbarch_init): Update set_gdbarch_skip_prologue call.
8260         * config/sparc/tm-sparc.h (sparc_skip_prologue): Update for killed
8261         second argument.
8262         (SKIP_PROLOGUE): Likewise.
8263
8264 2002-04-25  Jason Thorpe  <thorpej@wasabisystems.com>
8265
8266         * alpha-tdep.c (alpha_skip_prologue_internal): Remove
8267         GDB_TARGET_HAS_SHARED_LIBS #ifdef and update comment to
8268         indicate that the condition it was testing is always true.
8269         * config/alpha/nm-linux.h (GDB_TARGET_HAS_SHARED_LIBS): Remove.
8270         * config/alpha/nm-nbsd.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
8271         * config/alpha/nm-osf.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
8272
8273 2002-04-25  Jason Thorpe  <thorpej@wasabisystems.com>
8274
8275         * alpha-tdep.h (gdbarch_tdep): Add jb_pc and jb_elt_size members.
8276         * alpha-linux-tdep.c (alpha_linux_init_abi): Initialize
8277         tdep->jb_pc and tdep->jb_elt_size.
8278         * alpha-osf1-tdep.c (alpha_osf1_init_abi): Likewise.
8279         * alphafbsd-tdep.c (alphafbsd_init_abi): Likewise.
8280         * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
8281         * alpha-nat.c (get_longjmp_target): Remove.
8282         (JB_ELEMENT_SIZE): Ditto.
8283         (JB_PC): Ditto.
8284         * alpha-tdep.c (alpha_get_longjmp_target): New function.
8285         (alpha_gdbarch_init): Default tdep->jb_pc to -1.  If the
8286         OS ABI sets jb_pc to a valid value, set gdbarch_get_longjmp_target
8287         to alpha_get_longjmp_target.
8288         (alpha_dump_tdep): Report tdep->jb_pc and tdep->jb_elt_size.
8289         * config/alpha/nm-linux.h (GET_LONGJMP_TARGET): Remove.
8290         * config/alpha/nm-osf.h (GET_LONGJMP_TARGET): Remove.
8291
8292 2002-04-25  Andrew Cagney  <ac131313@redhat.com>
8293
8294         * README: Update to GDB 5.2.
8295
8296 2002-04-25  Andrew Cagney  <ac131313@redhat.com>
8297
8298         * gdbarch.sh (LC_ALL): Set to `c'.
8299
8300 2002-04-25  Theodore A. Roth  <troth@verinet.com>
8301
8302         * avr-tdep.c: Ran through gdb_indent.sh.
8303
8304 2002-04-25  Theodore A. Roth  <troth@verinet.com>
8305
8306         * MAINTAINERS: Add myself as AVR maintainer.
8307         * NEWS: Note new target avr.
8308
8309 2002-04-25  Theodore A. Roth  <troth@verinet.com>
8310
8311         * Makefile.in: Add support for AVR target.
8312         * configure.tgt: Add support for AVR target.
8313         * avr-tdep.c: New file
8314         * config/avr/avr.mt: New file.
8315
8316 2002-04-25  Theodore A. Roth  <troth@verinet.com>
8317
8318         * MAINTAINERS: Add myself to write-after-approval.
8319
8320 2002-04-24  Pierre Muller  <ics.u-strasbg.fr>
8321
8322         * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,...
8323         with fprintf_unfiltered (gdb_stderr,....
8324
8325 2002-04-25  Pierre Muller  <muller@ics.u-strasbg.fr>
8326
8327         Fix PR gdb/508.
8328         * symfile.c (add_filename_language): Fix wrong xrealloc size argument.
8329
8330 2002-04-25  Pierre Muller  <muller@ics.u-strasbg.fr>
8331
8332         * p-exp.y: Also use new prev_lexptr variable
8333         to improve error reporting. Based on Michael Snyder
8334         2002-04-24 dated patch to c-exp.y.
8335
8336 2002-04-25  Jason Thorpe  <thorpej@wasabisystems.com>
8337
8338         * alpha-tdep.c (alpha_breakpoint_from_pc): New function.
8339         (alpha_gdbarch_init): Set gdbarch_breakpoint_from_pc to
8340         alpha_breakpoint_from_pc.  Set gdbarch_function_start_offset
8341         to 0.
8342         * config/alpha/tm-alpha.h: Remove forward decls of struct type
8343         and struct value.
8344         (FUNCTION_START_OFFSET): Remove.
8345         (BREAKPOINT): Ditto.
8346
8347 2002-04-25  Jason Thorpe  <thorpej@wasabisystems.com>
8348
8349         * MAINTAINERS: Reflect that multi-arch is enabled for VAX.
8350         * NEWS: Ditto.
8351
8352 2002-04-24  Jason Thorpe  <thorpej@wasabisystems.com>
8353
8354         * alpha-linux-tdep.c (alpha_linux_pc_in_sigtramp): New function.
8355         (alpha_linux_init_abi): Set gdbarch_pc_in_sigtramp to
8356         alpha_linux_pc_in_sigtramp.
8357         * alpha-osf1-tdep.c (alpha_osf1_pc_in_sigtramp): New function.
8358         (alpha_osf1_init_abi): Set gdbarch_pc_in_sigtramp to
8359         alpha_osf1_pc_in_sigtramp.
8360         * alpha-tdep.c (alpha_osf_in_sigtramp): Remove.
8361         * alphafbsd-tdep.c (alphafbsd_pc_in_sigtramp): New function.
8362         (alphafbsd_init_abi): Set gdbarch_pc_in_sigtramp to
8363         alphafbsd_pc_in_sigtramp.
8364         * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): New function.
8365         (alphanbsd_init_abi): Set gdbarch_pc_in_sigtramp to
8366         alphanbsd_pc_in_sigtramp.
8367         * config/alpha/tm-alpha.h (IN_SIGTRAMP): Remove.
8368         * config/alpha/tm-alphalinux.h (IN_SIGTRAMP): Remove.
8369
8370 2002-04-24  Jason Thorpe  <thorpej@wasabisystems.com>
8371
8372         * config/alpha/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
8373
8374 2002-04-24  Jason Thorpe  <thorpej@wasabisystems.com>
8375
8376         * Makefile.in (ALLDEPFILES): Add alphanbsd-nat.c and
8377         alphanbsd-tdep.c.
8378         (alphanbsd-nat.o): New dependency list.
8379         (alphanbsd-tdep.o): Ditto.
8380         * NEWS: Note new native NetBSD/alpha configuration.
8381         * alphanbsd-nat.c: New file.
8382         * alphanbsd-tdep.c: Ditto.
8383         * configure.host (alpha*-*-netbsd*): New host.
8384         * configure.tgt (alpha*-*-netbsd*): New target.
8385         * config/alpha/nbsd.mh: New file.
8386         * config/alpha/nbsd.mt: Ditto.
8387         * config/alpha/nm-nbsd.h: Ditto.
8388         * config/alpha/tm-nbsd.h: Ditto.
8389
8390 2002-04-24  Jason Thorpe  <thorpej@wasabisystems.com>
8391
8392         * Makefile.in (ALLDEPFILES): Add alpha-osf1-tdep.c.
8393         (alpha-osf1-tdep.o): New dependency list.
8394         * alpha-tdep.h (gdbarch_tdep): Add dynamic_sigtramp_offset
8395         and skip_sigtramp_frame members.
8396         * alpha-linux-tdep.c: Include gdbcore.h.
8397         (alpha_linux_sigtramp_offset): Change return type to LONGEST.
8398         (alpha_linux_init_abi): Initialize tdep->dynamic_sigtramp_offset.
8399         * alpha-osf1-tdep.c: New file.
8400         * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Moved to
8401         alpha-osf1-dep.c.
8402         (alpha_frame_past_sigtramp_frame): New function.
8403         (alpha_dynamic_sigtramp_offset): Ditto.
8404         (alpha_proc_desc_is_dyn_sigtramp): Ditto.
8405         (alpha_set_proc_desc_is_dyn_sigtramp): Ditto.
8406         (ALPHA_PROC_SIGTRAMP_MAGIC): Define.
8407         (push_sigtramp_desc): Use alpha_set_proc_desc_is_dyn_sigtramp.
8408         (after_prologue): Use alpha_proc_desc_is_dyn_sigtramp.
8409         (find_proc_desc): Use alpha_dynamic_sigtramp_offset.
8410         (alpha_frame_chain): Use alpha_frame_past_sigtramp_frame.
8411         (alpha_init_extra_frame_info): Use alpha_proc_desc_is_dyn_sigtramp.
8412         (alpha_pop_frame): Use alpha_proc_desc_is_dyn_sigtramp.
8413         (alpha_gdbarch_init): Initialize tdep->dynamic_sigtramp_offset
8414         and tdep->skip_sigtramp_frame.  Set gdbarch_skip_trampoline_code
8415         to find_solib_trampoline_target.
8416         * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-osf1-tdep.o.
8417         * config/alpha/tm-alpha.h: Remove inclusion of regcache.h.
8418         (SKIP_TRAMPOLINE_CODE): Remove.
8419         (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8420         (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8421         (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
8422         (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
8423         * config/alpha/tm-alphalinux.h (PROC_DESC_IS_DYN_SIGTRAMP): Remove.
8424         (PROC_SIGTRAMP_MAGIC): Ditto.
8425         (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8426         (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8427         (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
8428         (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
8429         (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
8430
8431 2002-04-24  Jason Thorpe  <thorpej@wasabisystems.com>
8432
8433         * NEWS: Note that Alpha targets are now multi-arch.
8434
8435 2002-04-24  Michael Snyder  <msnyder@redhat.com>
8436
8437         * parser-defs.h (prev_lexptr): New external variable.
8438         * parse.c (parse_exp_1): Set prev_lexptr to null before
8439         calling the language-specific parser.
8440         * c-exp.y (yylex): Set prev_lexptr to start of current token.
8441         (yyerror): Use prev_lexptr in error reporting.
8442
8443 2002-04-24  Daniel Jacobowitz  <drow@mvista.com>
8444
8445         * config/i386/tm-linux.h: Define FILL_FPXREGSET.
8446         * gregset.h: If FILL_FPXREGSET is defined, provide
8447         gdb_fpxregset_t, supply_fpxregset, and fill_fpxregset.
8448         * linux-proc.c (linux_do_thread_registers): If FILL_FPXREGSET
8449         is defined, call fill_fpxregset.
8450
8451 2002-04-24  Roland McGrath  <roland@frob.com>
8452
8453         * config/i386/i386gnu.mh (NATDEPFILES): Add core-regset.o here.
8454         * i386gnu-nat.c [HAVE_SYS_PROCFS_H]
8455         (supply_gregset, supply_fpregset): New functions.
8456
8457         * gnu-nat.c (gnu_find_memory_regions): New function.
8458         (init_gnu_ops): Set `to_find_memory_regions' hook to that.
8459         (gnu_xfer_memory): Add a cast.
8460
8461 2002-04-24  Michael Snyder  <msnyder@redhat.com>
8462
8463         * arm-tdep.c (arm_scan_prologue): Move "mov ip, sp" into the
8464         loop.  Add handling for "str lr, [sp, #-4]!" and for saves
8465         of argument regs ("str r(0123), [r11, #-nn"]).
8466         (arm_skip_prologue): Better handling for frameless functions.
8467         Treat "mov ip, sp" as optional.  Recognize "str lr, [sp, #-4]".
8468         (arm_skip_prologue): Recognize str r(0123), [r11, #-nn].
8469
8470 Wed Apr 24 14:22:21 2002  Andrew Cagney  <cagney@redhat.com>
8471
8472         * arm-tdep.c (arm_gdbarch_init): Add comment that NUM_REGS nor
8473         NUM_PSEUDO_REGS can be used.
8474
8475 2002-04-24  Andrew Cagney  <ac131313@redhat.com>
8476
8477         * arch-utils.h: Update copyright.
8478
8479         * gdbarch.sh (PC_IN_SIGTRAMP): Add.
8480         * gdbarch.h, gdbarch.c: Re-generate.
8481
8482         * inferior.h (IN_SIGTRAMP): Delete definition.
8483         * arch-utils.c (legacy_pc_in_sigtramp): New function.
8484         * arch-utils.h (legacy_pc_in_sigtramp): Declare.
8485
8486         * mips-tdep.c (mips_init_extra_frame_info): Use PC_IN_SIGTRAMP.
8487         (mips_dump_tdep): Do not print value of IN_SIGTRAMP.
8488         * hppa-tdep.c (pc_in_interrupt_handler):  Use PC_IN_SIGTRAMP.
8489         (find_proc_framesize): Ditto.
8490         * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Ditto.
8491         (alpha_init_extra_frame_info): Ditto.
8492         * infrun.c (handle_inferior_event): Ditto.
8493         (handle_inferior_event): Ditto.
8494         (check_sigtramp2): Ditto.
8495         * blockframe.c (create_new_frame): Ditto.
8496         (get_prev_frame): Ditto.
8497         * ppc-linux-tdep.c: Update comments.
8498         * i386-linux-tdep.c: Update comments.
8499         * breakpoint.c (bpstat_what): Update comment.
8500
8501 2002-04-24  David S. Miller  <davem@redhat.com>
8502
8503         * i960-tdep.c (register_in_window_p): New function.
8504         (i960_find_saved_register): Use it instead of
8505         REGISTER_IN_WINDOW_P.
8506         * config/i960/tm-i960.h (REGISTER_IN_WINDOW): Delete.
8507
8508         * symtab.h (find_stab_function_addr): Kill extern.
8509         * minsyms.c (find_stab_function_addr): Remove from here...
8510         * dbxread.c: ... to here, and mark it static.
8511
8512 2002-04-20  David S. Miller  <davem@redhat.com>
8513
8514         * sparc-tdep.c (sparc_pop_frame): Only need to allocate
8515         SPARC_INTREG_SIZE * 16 bytes for reg_temp.
8516
8517 2002-04-21  David S. Miller  <davem@redhat.com>
8518
8519         * remote-vxsparc.c (vx_read_register): Fix typo, we want
8520         REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
8521         (vx_write_register): Likewise.
8522
8523 2002-04-23  J. Brobecker  <brobecker@gnat.com>
8524
8525         * source.c (is_regular_file): New function.
8526         (openp): Check wether file to open is a regular file
8527         to avoid opening directories.
8528
8529 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
8530
8531         * findvar.c (extract_signed_integer): Cast printf argument
8532         to suppress format warning.
8533         (extract_unsigned_integer): Likewise.
8534         * infcmd.c (registers_info): Likewise.
8535         * top.c (get_prompt_1): Likewise.
8536         * valops.c (value_assign): Likewise.
8537         * valprint.c (print_decimal): Likewise.
8538
8539 2002-04-22  H.J. Lu  (hjl@gnu.org)
8540
8541         * c-exp.y (typebase): Support
8542
8543         [long|long long|short] [signed|unsigned] [int|]
8544
8545         and
8546
8547         signed [long|long long|short] int
8548
8549 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
8550
8551         * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
8552         and vax-tdep.h.
8553         * vax-tdep.h: New file.
8554         * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
8555         Make several routines static.
8556         (vax_get_saved_register): New function.
8557         (vax_gdbarch_init): New function.
8558         (_initialize_vax_tdep): Register vax_gdbarch_init.
8559         * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
8560         Remove macros now under the control of gdbarch.
8561
8562 2002-04-22  Michael Snyder  <msnyder@redhat.com>
8563
8564         * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
8565         Some whitespace and coding standards tweaks.
8566
8567 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
8568
8569         * vax-tdep.c: Include regcache.h.
8570         (vax_call_dummy_words): New.
8571         (sizeof_vax_call_dummy_words): New.
8572         (vax_fix_call_dummy): New function.
8573         (vax_saved_pc_after_call): Ditto.
8574         * config/vax/tm-vax.h: Don't include regcache.h.
8575         (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
8576         (CALL_DUMMY): Remove.
8577         (CALL_DUMMY_WORDS): Define.
8578         (SIZEOF_CALL_DUMMY_WORDS): Define.
8579         (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
8580
8581 2002-04-18  Michael Snyder  <msnyder@redhat.com>
8582
8583         * arm-tdep.h: Change regnum defines to enums for ease of debugging.
8584
8585 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
8586
8587         * vax-tdep.c (vax_frame_chain): New function.
8588         (vax_push_dummy_frame): Ditto.
8589         (vax_pop_frame): Ditto.
8590         * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
8591         (FRAMELESS_FUNCTION_INVOCATION): Use
8592         generic_frameless_function_invocation_not.
8593         (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
8594         (POP_FRAME): Use vax_pop_frame.
8595
8596 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
8597
8598         * vax-tdep.c (vax_store_struct_return): New function.
8599         (vax_extract_return_value): Ditto.
8600         (vax_store_return_value): Ditto.
8601         (vax_extract_struct_value_address): Ditto.
8602         * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
8603         vax_store_struct_return.
8604         (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
8605         (STORE_RETURN_VALUE): Use vax_store_return_value.
8606         (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
8607
8608 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
8609
8610         * vax-tdep.c (vax_frame_saved_pc): New function.
8611         (vax_frame_args_address_correct): Ditto.
8612         (vax_frame_args_address): Ditto.
8613         (vax_frame_locals_address): Ditto.
8614         (vax_frame_num_args): Move code to be in proximity to
8615         other frame-related functions.
8616         * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
8617         (FRAME_SAVED_PC): Use vax_frame_saved_pc.
8618         (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
8619         (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
8620         (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
8621
8622 2002-04-22  H.J. Lu  (hjl@gnu.org)
8623
8624         * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
8625         includedir.
8626
8627 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
8628
8629         * vax-tdep.c (vax_frame_init_saved_regs): New function.
8630         * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
8631         (FRAME_INIT_SAVED_REGS): New macro.
8632
8633 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
8634
8635         * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
8636
8637 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
8638
8639         * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
8640         where needed.
8641         (fetch_osf_core_registers): Likewise.
8642         (supply_gregset): Likewise.
8643
8644 2002-04-22  J. Brobecker  <brobecker@gnat.com>
8645
8646         * symfile.h (get_section_index): Define.
8647         * symfile.c (get_section_index): New function.
8648         * mdebugread.c (SC_IS_SBSS): New macro.
8649         (SC_IS_BSS): Return true for the scBss storage class only, as
8650         the scSBss storage class refers to the .sbss section.
8651         (parse_partial_symbols): Discard the symbols which associated
8652         section does not exist.
8653         Make sure to use the .sbss section index for symbols which
8654         storage class is scBss, rather than using the .bss section index.
8655
8656 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
8657
8658         * vax-tdep.c: Update copyright years.
8659         (vax_register_name): New function.
8660         (vax_register_byte): Ditto.
8661         (vax_register_raw_size): Ditto.
8662         (vax_register_virtual_size): Ditto.
8663         (vax_register_virtual_type): Ditto.
8664         * config/vax/tm-vax.h: Update copyright years.
8665         (REGISTER_NAMES): Remove.
8666         (REGISTER_NAME): Define.
8667         (REGISTER_BYTE): Use vax_register_byte.
8668         (REGISTER_RAW_SIZE): Use vax_register_raw_size.
8669         (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
8670         (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
8671
8672 2002-04-21  Andrew Cagney  <ac131313@redhat.com>
8673
8674         * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
8675         declaration
8676         * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
8677
8678 2002-04-21  David S. Miller  <davem@redhat.com>
8679
8680         * arch-utils.c (generic_prologue_frameless_p): Kill
8681         SKIP_PROLOGUE_FRAMELESS_P code.
8682         * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
8683         references.
8684         (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
8685         * arc-tdep.c (arc_prologue_frameless_p): Implement.
8686         * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
8687         references.
8688         (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
8689         * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
8690         (sparc_gdbarch_init): Pass it to
8691         set_gdbarch_prologue_frameless_p.
8692
8693 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
8694
8695         * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
8696         (alphabsd-nat.o): New dependency list.
8697
8698 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
8699
8700         * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
8701         alphafbsd-tdep.c.
8702         (alpha-linux-tdep.o): New dependency list.
8703         (alphafbsd-tdep.o): Likewise.
8704
8705 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
8706
8707         * alpha-linux-tdep.c: New file.  Move alpha_linux_sigtramp_offset
8708         to here...
8709         * alpha-tdep.c: ...from here.
8710         * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
8711
8712 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
8713
8714         * config/alpha/tm-alpha.h: Move alpha_software_single_step
8715         prototype from here...
8716         * alpha-tdep.h: ...to here.
8717
8718 2002-04-21  Andrew Cagney  <ac131313@redhat.com>
8719
8720         * frame.h (selected_frame_level): Document as deprecated.
8721         (frame_relative_level): Declare.
8722         * stack.c (frame_relative_level): New function.
8723         (selected_frame_level): Document as deprecated.
8724         (select_frame): Do not set the selected_frame_level.
8725
8726         * stack.c (frame_info, record_selected_frame): Update.
8727         (frame_command, current_frame_command): Update.
8728         (up_silently_base, up_command, down_silently_base): Update.
8729         (down_command): Update.
8730         * inflow.c (kill_command): Update.
8731         * tracepoint.c (finish_tfind_command): Update.
8732         * corelow.c (core_open): Update.
8733         * thread.c (info_threads_command): Update.
8734         (do_captured_thread_select): Update.
8735         * infcmd.c (finish_command): Update.
8736         * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
8737
8738 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
8739
8740         * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
8741
8742 2002-04-21  Andrew Cagney  <ac131313@redhat.com>
8743
8744         * arm-tdep.c (arm_breakpoint_from_pc): Make static.  Make return
8745         type const.
8746
8747 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
8748
8749         * alphafbsd-tdep.c: Update copyright years.  Include
8750         alpha-tdep.h.
8751         (alphafbsd_use_struct_convention): Make static.
8752         (alphafbsd_init_abi): New function.
8753         (_initialize_alphafbsd_tdep): New function.
8754         * config/alpha/tm-fbsd.h: Update copyright years.
8755         (USE_STRUCT_CONVENTION): Remove.
8756
8757 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
8758
8759         * alpha-tdep.c (alpha_abi_handler): New structure to describe
8760         an Alpha ABI variant.
8761         (alpha_abi_handler_list): Declare.
8762         (alpha_gdbarch_register_os_abi): New function.
8763         (alpha_gdbarch_init): Give registered ABI variant handlers a
8764         chance to tweak the gdbarch once we have set up defaults.
8765         * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
8766
8767 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
8768
8769         * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
8770         to standard_coerce_float_to_double.
8771         * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
8772
8773 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
8774
8775         * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
8776         * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
8777         from gdbarch_tdep rather than a constant.
8778         (alpha_gdbarch_init): Initialize tdep->vm_min_address to
8779         the default text address for all Alpha Unix ABIs.
8780         (alpha_dump_tdep): Report the value of tdep->vm_min_address.
8781         * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
8782
8783 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
8784
8785         * alpha-tdep.h: New file.  Includes several Alpha target constants
8786         taken from...
8787         * config/alpha/tm-alpha.h: ...here.  Remove macros that we now
8788         let gdbarch deal with.
8789         (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
8790         * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
8791         to dependency list.
8792         * alpha-nat.c: Include alpha-tdep.h.  Update for adjusted
8793         Alpha target register names.
8794         * alphabsd-nat.c: Likewise.
8795         * alpha-tdep.c: Include alpha-tdep.h.  Update for adjusted
8796         Alpha target register names.  Make serveral routines static.
8797         (alpha_get_saved_register): New function.
8798         (alpha_abi_names): New.
8799         (process_note_abi_tag_sections): New function.
8800         (get_elfosabi): New function.
8801         (alpha_gdbarch_init): New function.
8802         (alpha_dump_tdep): New function.
8803         (_initialize_alpha_tdep): Register alpha_gdbarch_init.
8804
8805 2002-04-21  Andrew Cagney  <ac131313@redhat.com>
8806
8807         * frame.c (find_saved_register): Delete #ifdef
8808         HAVE_REGISTER_WINDOWS code.
8809         * config/sparc/tm-sparc.h: Update comments.
8810         * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
8811
8812 2002-04-21  Andrew Cagney  <ac131313@redhat.com>
8813
8814         * i960-tdep.c (i960_find_saved_register): New function.
8815         (i960_get_saved_register): New function.
8816         * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
8817         (i960_get_saved_register): Declare.
8818         * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
8819
8820 2002-04-20  David S. Miller  <davem@redhat.com>
8821
8822         * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
8823
8824 2002-04-20  Andrew Cagney  <ac131313@redhat.com>
8825
8826         * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
8827         instead of NUM_PSEUDO_REGS.
8828
8829 2002-04-20  David S. Miller  <davem@redhat.com>
8830
8831         * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
8832         GDB_MULTI_ARCH_PARTIAL
8833         * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
8834         define, let tm-sp64.h do it.
8835
8836 2002-04-20  Jason Thorpe  <thorpej@wasabisystems.com>
8837
8838         * frame.c (find_saved_register): Avoid a NULL pointer
8839         dereference and actually walk the frame list.
8840
8841 2002-04-20  Andrew Cagney  <ac131313@redhat.com>
8842
8843         * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
8844         sorted in most most-recent-used order.  Document.
8845         * gdbarch.h, gdbarch.c: Regenerate.
8846
8847 2002-04-19  Andrew Cagney  <ac131313@redhat.com>
8848
8849         * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
8850         instead of ->prev.
8851         * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
8852         * s390-tdep.c (s390_frame_chain): Do not use ->prev.
8853         * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
8854         instead of ->prev.
8855
8856 2002-04-19  Elena Zannoni  <ezannoni@redhat.com>
8857
8858         Fix PR gdb/471.
8859         * gdbtypes.c (init_simd_type): Rewrite using new functions.
8860         (build_builtin_type_vec128): Ditto.
8861         (append_composite_type_field): Fix calculation of type length in
8862         union case.
8863
8864 2002-04-19  Eli Zaretskii  <eliz@is.elta.co.il>
8865
8866         * config/djgpp/README: Update.
8867
8868         * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
8869         compiler warnings.
8870
8871 2002-04-19  Jason Thorpe  <thorpej@wasabisystems.com>
8872
8873         * alpha-tdep.c (setup_arbitrary_frame): Rename...
8874         (alpha_setup_arbitrary_frame): ...to this.
8875         * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
8876         for alpha_setup_arbitrary_frame.
8877
8878 2002-04-18  Andrew Cagney  <cagney@redhat.com>
8879
8880         * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
8881         * gdbarch.h, gdbarch.c: Regenerate.
8882
8883         * defs.h (breakpoint_from_pc_fn): Delete type definition.
8884         * target.h (memory_breakpoint_from_pc): Update declaration.
8885         * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
8886
8887         * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
8888         * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
8889         * mem-break.c (memory_breakpoint_from_pc): Ditto.
8890         * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
8891         * s390-tdep.c (s390_breakpoint_from_pc): Ditto
8892         * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
8893         * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
8894         * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
8895         * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
8896         * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
8897         * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
8898         * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
8899
8900         * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
8901         const pointer.
8902         * monitor.c (monitor_insert_breakpoint): Ditto.
8903         * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
8904
8905         * config/mcore/tm-mcore.h: Update copyright.
8906         * mem-break.c: Ditto.
8907         * xstormy16-tdep.c: Ditto.
8908
8909 2002-04-18  Pierre Muller  <muller@ics.u-strasbg.fr>
8910
8911         * p-exp.y: Add precedence rule for '^' token.
8912         This removes the shift/reduce conflicts.
8913         Remove the comment concerning these shift/reduce conflicts.
8914
8915 2002-04-18  Elena Zannoni  <ezannoni@redhat.com>
8916
8917         * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
8918         (registers_powerpc_nofp): New register set for processors
8919         without floating point unit.
8920
8921 2002-04-18  David S. Miller  <davem@redhat.com>
8922
8923         * MAINTAINERS: Add myself to write-after-approval.
8924
8925 2002-04-17  Michael Snyder  <msnyder@redhat.com>
8926
8927         * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
8928
8929 2002-04-17  Andrew Cagney  <ac131313@redhat.com>
8930
8931         * rs6000-tdep.c (frame_initial_stack_address): Use
8932         frame_register_read to read the alloca_reg.
8933
8934 2002-04-17  Andrew Cagney  <ac131313@redhat.com>
8935
8936         * frame.c (find_saved_register): Find saved registers in the next
8937         not prev frame.
8938         Fix PR gdb/365.
8939
8940 2002-04-17  Andrew Cagney  <ac131313@redhat.com>
8941
8942         * gdbarch.sh (LANG): Set to ``c''.
8943
8944 2002-04-15  Andrew Cagney  <ac131313@redhat.com>
8945
8946         * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
8947
8948 2002-04-15  Andrew Cagney  <ac131313@redhat.com>
8949
8950         * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
8951         Update copyright.
8952
8953         * hpread.c (hpread_get_lntt): Add declaration.
8954         Also fix PR gdb/391.
8955
8956 2002-04-14  Andrew Cagney  <ac131313@redhat.com>
8957
8958         * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
8959         * aclocal.m4, configure: Re-generate.
8960         Fix PR gdb/391.
8961
8962 2002-04-14  Elena Zannoni  <ezannoni@redhat.com>
8963
8964         * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
8965         instead of tm_print_insn.
8966
8967 2002-04-14  Elena Zannoni  <ezannoni@redhat.com>
8968
8969         * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
8970
8971 2002-04-14  Andrew Cagney  <ac131313@redhat.com>
8972
8973         * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
8974         * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
8975         (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
8976
8977 2002-04-12  Don Howard  <dhoward@redhat.com>
8978
8979         * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
8980         max_user_call_depth.
8981         (init_cmd_lists): Initialize the new value;
8982         * cli/cli-script.c (execute_user_command): Limit the call depth of
8983         user defined commands.  This avoids a core-dump when user commands
8984         are infinitly recursive.
8985
8986 2002-04-12  Kevin Buettner  <kevinb@redhat.com>
8987
8988         * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
8989         * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
8990         from tdep struct instead of DEFAULT_LR_SAVE.
8991         (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
8992         * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
8993         * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
8994
8995 2002-04-12  Michael Snyder  <msnyder@redhat.com>
8996
8997         * Remote.c: Spelling fix.
8998         * gcore.c (default_derive_heap_segment): Use bfd_section_name.
8999         If no symbol found for "sbrk", try "_sbrk".
9000         (make_output_phdrs): Use bfd_section_name.
9001         (gcore_copy_callback): Use bfd_section_name.
9002         * eval.c: Indentation fix-ups.
9003         * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
9004         in case it gets applied to an address that is already
9005         in the instruction space.
9006         * cli/cli-decode.c (help_list): Allow long lines to wrap.
9007         * symfile.c: Fix indentation, long lines.
9008         * source.c: White space fix-up.
9009
9010 2002-04-12  Andrew Cagney  <cagney@redhat.com>
9011
9012         * defs.h (read_relative_register_raw_bytes): Delete declaration.
9013         * frame.c (frame_register_read): New function.  Return non-zero on
9014         success.
9015         (read_relative_register_raw_bytes_for_frame): Delete.
9016         (read_relative_register_raw_bytes): Delete.
9017         * frame.h (frame_register_read): Declare.
9018         * d30v-tdep.c: Update Copyright.  Use frame_register_read.
9019         * sh-tdep.c: Ditto.
9020         * infcmd.c (do_registers_info): Ditto.
9021         * hppa-tdep.c: Ditto.
9022         * rs6000-tdep.c: Ditto.
9023         * h8500-tdep.c: Ditto.
9024         * mips-tdep.c: Ditto.
9025         * h8300-tdep.c: Ditto.
9026         * z8k-tdep.c: Ditto.
9027
9028 2002-04-12  Kevin Buettner  <kevinb@redhat.com>
9029
9030         From Jimi X <jimix@watson.ibm.com>:
9031         * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
9032         64-bit SysV ABI.
9033
9034 2002-04-12  Kevin Buettner  <kevinb@redhat.com>
9035
9036         From Jimi X <jimix@watson.ibm.com>:
9037         * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
9038         bfd info.
9039
9040 2002-04-12  Kevin Buettner  <kevinb@redhat.com>
9041
9042         From Jimi X <jimix@watson.ibm.com>:
9043         * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
9044         register sets for these processor variants.
9045
9046 2002-04-11  Daniel Jacobowitz  <drow@mvista.com>
9047
9048         * regformats/reg-ppc.dat: Support FPSCR.
9049
9050 2002-04-11  Kevin Buettner  <kevinb@redhat.com>
9051
9052         * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
9053         * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
9054         Add fpscr as an invalid/unfetchable register.
9055         * ppc-linux-nat.c (ppc_register_u_addr, store_register)
9056         (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
9057         (fill_fpregset): Add support for register fpscr.
9058         (fetch_ppc_registers, store_ppc_registers, supply_gregset)
9059         (fill_gregset): Account for the fact that register ``mq'' might
9060         not exist.
9061         * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
9062         (registers_power): Add fpscr to register set at slot 71.
9063         (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
9064         exist on most PPC architectures.  Initialize ppc_fpscr_regnum.
9065
9066 2002-04-11  Michael Snyder  <msnyder@redhat.com>
9067
9068         * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
9069         * configure: Regenerate.
9070         * config.in: Regenerate.
9071         * acconfig.h: Add define for _SYSCALL32.
9072         * core-sol2.c: Remove #define _SYSCALL32.
9073         * solib-legacy.c: Remove #define _SYSCALL32.
9074
9075 2002-04-10  Andrew Cagney  <ac131313@redhat.com>
9076
9077         * stack.c (select_frame): Cleanup internal error message, do not
9078         use %p.
9079
9080 2002-04-10  Andrew Cagney  <ac131313@redhat.com>
9081
9082         * stack.c (select_frame): Check that selected_frame and the
9083         specified level are as expected.
9084         * blockframe.c (get_prev_frame): Set the `level' from next_frame.
9085         Update copyright.
9086         * frame.h (struct frame_info): Add field `level'.  Update
9087         copyright.
9088         Work-in-progress PR gdb/464.
9089
9090 2002-04-10  Andrew Cagney  <ac131313@redhat.com>
9091
9092         * maint.c (maint_print_section_info): Rename print_section_info.
9093         (print_bfd_section_info, print_objfile_section_info): Update.
9094         * inferior.h (struct gdbarch): Add opaque declaration.
9095         * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
9096         * gdbarch.h: Regenerate.
9097
9098 2002-04-10  Michal Ludvig  <mludvig@suse.cz>
9099
9100         * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
9101         (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
9102         (kernel_u_size): Added.
9103         * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
9104         (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
9105
9106 2002-04-04  Jim Ingham  <jingham@apple.com>
9107
9108        * valarith.c (find_size_for_pointer_math): New function, either returns
9109        the size for a pointer's target, returns 1 for void *, or errors for
9110        incomplete types.
9111        (value_add, value_sub): use find_size_for_pointer_math.
9112
9113 2002-04-09  Daniel Jacobowitz  <drow@mvista.com>
9114
9115         * linux-low.c (linux_look_up_symbols): New hook.
9116         (linux_target_ops): Add linux_look_up_symbols.
9117         * remote-utils.c (decode_address): New function.
9118         (look_up_one_symbol): New function.
9119         * server.c (handle_query): Call target look_up_symbols hook.
9120         * server.h (look_up_one_symbol): Add prototype.
9121         * target.h (struct target_ops): Add look_up_symbols hook.
9122
9123 2002-04-09  Andrew Cagney  <ac131313@redhat.com>
9124
9125         * frame.c (read_relative_register_raw_bytes_for_frame): Do not
9126         override FP_REGNUM with frame->fp.  Update copyright.
9127         * parse.c (num_std_regs, std_regs): Delete.
9128         (target_map_name_to_register): Do not search std_regs.  Update
9129         function description.
9130         * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
9131         declarations.  Update copyright.
9132         Fix PR gdb/251.
9133
9134 2002-04-09  Daniel Jacobowitz  <drow@mvista.com>
9135
9136         * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
9137         after the last symbol in a block.
9138
9139 2002-04-09  Pierre Muller  <muller@ics.u-strasbg.fr>
9140
9141         * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
9142         is non zero as a found symbol.
9143
9144 2002-04-08  Andrew Cagney  <ac131313@redhat.com>
9145
9146         * findvar.c: Include "builtin-regs.h".
9147         (value_of_register): Call value_of_builtin_reg when applicable.
9148         * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
9149         (target_map_name_to_register): Call
9150         builtin_reg_map_name_to_regnum.
9151         * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
9152         (COMMON_OBS): Add builtin-regs.o and std-regs.o.
9153         (builtin_regs_h): Define.
9154         (builtin-regs.o): New target.
9155         (findvar.o): Add $(builtin_regs_h).
9156         * builtin-regs.c, builtin-regs.h: New files.
9157         * std-regs.c: New file.
9158         Partial fix for PR gdb/251.
9159
9160 2002-04-08  Kevin Buettner  <kevinb@redhat.com>
9161
9162         * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
9163         it's no longer required.
9164
9165 2002-04-08  Andrew Cagney  <ac131313@redhat.com>
9166
9167         * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
9168
9169 2002-04-08  Kevin Buettner  <kevinb@redhat.com>
9170
9171         From Jimi X <jimix@watson.ibm.com>:
9172         * rs6000-tdep.c (rs6000_software_single_step): Use
9173         rs6000_breakpoint_from_pc() to fetch breakpoint instruction
9174         and size.  Use target_insert_breakpoint() and
9175         target_remove_breakpoint() to insert and remove breakpoints
9176         instead of explicit memory reads and writes.
9177
9178 2002-04-08  Kevin Buettner  <kevinb@redhat.com>
9179
9180         * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
9181         * rs6000-tdep.c (rs6000_push_arguments): Eliminate
9182         ELF_OBJECT_FORMAT ifdef.
9183
9184 2002-04-08  Kevin Buettner  <kevinb@redhat.com>
9185
9186         From Jimi X <jimix@watson.ibm.com>:
9187         * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
9188
9189 2002-04-08  Kevin Buettner  <kevinb@redhat.com>
9190
9191         From Jimi X <jimix@watson.ibm.com>:
9192         * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
9193         definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
9194
9195 2002-04-07  Mark Kettenis  <kettenis@gnu.org>
9196
9197         * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
9198         s/asprintf/xasprintf/.
9199         (fbsd_make_corefile_notes): s/strdup/xstrdup/.
9200
9201 2002-04-07  Andrew Cagney  <ac131313@redhat.com>
9202
9203         I believe Jeff Law denies responsability for this one:
9204         * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
9205         * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
9206         * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
9207         Work-around for PR gdb/366.
9208
9209 2002-04-07  Elena Zannoni  <ezannoni@redhat.com>
9210
9211         * remote-e7000.c (write_small, e7000_read_inferior_memory,
9212         e7000_read_inferior_memory_large, e7000_insert_breakpoint,
9213         e7000_remove_breakpoint): Use paddr_nz() to print addresses.
9214
9215 2002-04-07  Elena Zannoni  <ezannoni@redhat.com>
9216
9217         * sh-tdep.c (sh_fp_frame_init_saved_regs,
9218         sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
9219         information.
9220
9221 2002-04-07  Andrew Cagney  <ac131313@redhat.com>
9222
9223         * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
9224         maintainer.
9225
9226 2002-04-07  Andrew Cagney  <ac131313@redhat.com>
9227
9228         * README (Reporting Bugs in GDB): Document the bug web page as the
9229         prefered way of submitting bugs.
9230         Fix PR gdb/402.
9231
9232 2002-04-06  Andrew Cagney  <ac131313@redhat.com>
9233
9234         * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
9235         -1.  Update comment.
9236         * gdbarch.h, gdbarch.c: Re-generate.
9237
9238 2002-04-07  Andreas Schwab  <schwab@suse.de>
9239
9240         * m68klinux-nat.c (fill_fpregset): Properly pass address of
9241         buffer to regcache_collect.
9242
9243 2002-04-06  Andrew Cagney  <ac131313@redhat.com>
9244
9245         * gdbarch.sh (PS_REGNUM): Add.  Document.  Default to -1.
9246         * gdbarch.c, gdbarch.h: Re-generate.
9247
9248 2002-04-06  Andrew Cagney  <ac131313@redhat.com>
9249
9250         * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
9251         declaration.  Fix -Werror.
9252
9253 2002-04-05  Daniel Jacobowitz  <drow@mvista.com>
9254
9255         * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
9256         * gdbarch.c: Regenerate.
9257
9258 2002-04-05  Michael Snyder  <msnyder@redhat.com>
9259
9260         * breakpoint.c (clear_command): Rewrite middle section to
9261         combine two loops with identical control conditions.
9262         Add a cleanup to eliminate a memory leak.
9263         * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
9264
9265 2002-04-05  H.J. Lu  (hjl@gnu.org)
9266
9267         * solib-svr4.c (bkpt_names): Add "__start".
9268
9269 2002-04-04  Andrew Cagney  <ac131313@redhat.com>
9270
9271         * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
9272         as test for 64 bit target.
9273
9274 2002-04-05  Andrew Cagney  <ac131313@redhat.com>
9275
9276         * h8500-tdep.c (h8500_write_fp): Delete function.
9277         * dwarf2cfi.c (cfi_write_fp): Document as not used.
9278         * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
9279         * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
9280         * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
9281         * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
9282         * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
9283         (s390_write_fp):
9284         * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
9285         * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
9286         * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
9287         (d10v_write_fp): Delete function.
9288         * inferior.h (write_fp, generic_target_write_fp): Delete
9289         declarations.
9290         * regcache.c (generic_target_write_fp): Delete function.
9291         (write_fp): Delete function.
9292         * gdbarch.sh (TARGET_WRITE_FP): Delete.
9293         * gdbarch.h, gdbarch.c: Regenerate.
9294         * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
9295         * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
9296         (sparc64_write_fp): Delete declaration.
9297         * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
9298         (h8500_write_fp): Delete declaration.
9299
9300 2002-04-04  Andrew Cagney  <ac131313@redhat.com>
9301
9302         * sparc-tdep.c (sparc64_write_fp): Delete.
9303         (sparc_push_dummy_frame): Replace write_fp call with code to store
9304         the FP directly.
9305         (sparc_gdbarch_init): Do not initialize write_fp.
9306
9307 2002-04-05  Kevin Buettner  <kevinb@redhat.com>
9308
9309         * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
9310         clause.
9311
9312 2002-03-29  Jim Blandy  <jimb@redhat.com>
9313
9314         * stack.c (get_selected_block): Add new argument `addr_in_block',
9315         used to return the exact code address we used to select the block,
9316         not just the block.
9317         * blockframe.c (get_frame_block, get_current_block): Same.
9318         * frame.h (get_frame_block, get_current_block,
9319         get_selected_block): Update declarations.
9320         * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
9321         linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
9322
9323 2002-04-05  Michael Snyder  <msnyder@redhat.com>
9324
9325         * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
9326         warning message.
9327
9328 2002-04-05  J. Brobecker  <brobecker@gnat.com>
9329
9330         * utils.c (xfullpath): New function.
9331         * defs.h (xfullpath): Add declaration.
9332         * source.c (openp): Use xfullpath in place of gdb_realpath to
9333         avoid resolving the basename part of filenames when the
9334         associated file is a symbolic link. This fixes a potential
9335         inconsistency between the filenames known to GDB and the
9336         filenames it prints in the annotations.
9337         * symtab.c (lookup_symtab): Use the new xfullpath function, in order
9338         to be able to match a filename with either the real filename, or
9339         the name of any symbolic link to this file.
9340         (lookup_partial_symtab): Ditto.
9341
9342 2002-04-04  Michael Snyder  <msnyder@redhat.com>
9343
9344         * breakpoint.c: Add support for hardware breakpoints in overlays.
9345         (overlay_events_enabled): New state variable.
9346         (insert_breakpoints): Use overlay_events_enabled to decide
9347         whether to attempt to set a breakpoint at the overlay load addr.
9348         Handle bp_hardware_breakpoint as well as bp_breakpoint.
9349         (remove_breakpoint): Use overlay_events_enabled to decide
9350         whether breakpoints need to be removed from overlay load addr.
9351         Handle bp_hardware_breakpoint as well as bp_breakpoint.
9352         (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
9353         (create_overlay_event_breakpoint, enable_overlay_breakpoints,
9354         disable_overlay_breakpoints): Update overlay_events_enabled.
9355
9356 2002-04-04  Daniel Jacobowitz  <drow@mvista.com>
9357
9358         * dwarf2read.c (struct function_range): New.
9359         (cu_first_fn, cu_last_fn, cu_cached_fn): New.
9360         (check_cu_functions): New.
9361         (read_file_scope): Initialize global function lists.
9362         Call dwarf_decode_line after processing children.
9363         (read_func_scope): Add to global function list.
9364         (dwarf_decode_lines): Call check_cu_functions everywhere
9365         record_line is called.  Call record_line with a linenumber
9366         of 0 to mark sequence ends.
9367
9368 2002-04-04  Michal Ludvig  <mludvig@suse.cz>
9369
9370         * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
9371         change sync with glibc.
9372
9373 2002-04-03  Jim Blandy  <jimb@redhat.com>
9374
9375         * configure.in: Call AC_C_INLINE.
9376         * configure: Regenerated.
9377
9378 2002-04-01  Daniel Jacobowitz  <drow@mvista.com>
9379
9380         * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
9381         and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
9382
9383 2002-03-31  Mark Kettenis  <kettenis@gnu.org>
9384
9385         * NEWS: Mention gcore support on FreeBSD/i386.
9386
9387         * fbsd-proc.c: New file.
9388         * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
9389         * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
9390
9391         * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
9392         while statement.
9393
9394 2002-03-29  Jim Blandy  <jimb@redhat.com>
9395
9396         * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
9397         unescaped newlines in string literals, but newer ones don't.  So
9398         escape them.
9399
9400 2002-03-26  Michael Snyder  <msnyder@redhat.com>
9401             Andrew Cagney <cagney@redhat.com>
9402
9403         * cli/cli-dump.c: New file.  Dump memory to file,
9404         restore file to memory.
9405         * cli/cli-dump.h: New file.
9406         * Makefile.in: Add rules, dependencies for cli-dump.o.
9407         * NEWS: Mention new commands.
9408
9409 2002-03-28  Michael Snyder  <msnyder@redhat.com>
9410
9411         * symfile.c (symbol_file_add): Move test for null symbols to later.
9412
9413 2002-03-27  Andrew Cagney  <ac131313@redhat.com>
9414
9415         From veksler at il.ibm.com:
9416         * utils.c (gdb_realpath): If canonicalize_file_name fails, return
9417         the xstrduped original path.
9418         Fix PR gdb/417.
9419
9420 2002-03-27  Michael Snyder  <msnyder@redhat.com>
9421
9422         * breakpoint.c (_initialize_breakpoint): Clean up help string.
9423         * infcmd.c (_initialize_infcmd): Ditto.
9424         * language.c (_initialize_language): Ditto.
9425         * symfile.c (_initialize_symfile): Ditto.
9426         * top.c (_init_main): Ditto.
9427         * cli/cli-cmds.c (init_cli_cmds): Ditto.
9428
9429 2002-03-27  Elena Zannoni  <ezannoni@redhat.com>
9430
9431         * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
9432         vector registers handling.
9433         (skip_prologue): Handle new AltiVec instructions.  Fill in new
9434         fields of frame data.
9435         (frame_get_saved_regs): Fill in information for AltiVec registers.
9436
9437 2002-03-27  Jim Blandy  <jimb@redhat.com>
9438
9439         * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
9440         a function; leave this macro here to invoke that function.
9441         (symbol_init_mangled_name): Declaration for that function.
9442         * symtab.c (symbol_init_mangled_name): New function.
9443
9444 2002-03-27  Andrew Cagney  <ac131313@redhat.com>
9445
9446         * valarith.c: Replace strerror with safe_strerror.
9447         * tracepoint.c: Ditto.
9448         * lin-lwp.c: Ditto.
9449         * go32-nat.c: Ditto.
9450         * inflow.c: Ditto.
9451         * gnu-nat.c: Ditto.
9452
9453 2002-03-27  Andreas Schwab  <schwab@suse.de>
9454
9455         * event-top.c (command_line_handler): Remove useless if.
9456
9457 2002-03-27  Andreas Jaeger  <aj@suse.de>
9458
9459         * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
9460         comment.
9461
9462 2002-03-27  Michal Ludvig  <mludvig@suse.cz>
9463
9464         * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
9465         (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
9466         * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
9467         (x86_64_linux_dr_get_status, supply_gregset),
9468         (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
9469         * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
9470         (x86_64_register_info_table): Add.
9471         (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
9472         (x86_64_register_raw_size, x86_64_register_virtual_type),
9473         (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
9474         general x86_64_register_info_table.
9475         (i386_gdbarch_init): gdbarch_register_bytes is now set
9476         dynamicaly during initialization.
9477         * regformats/reg-x86-64.dat: Synced with changes to registers above.
9478         * gdbserver/linux-x86-64-low.c: Ditto.
9479
9480 2002-03-27  Daniel Jacobowitz  <drow@mvista.com>
9481
9482         * gdbserver/server.c (main): Call target_signal_to_host_p
9483         and target_signal_to_host on signals received from the remote.
9484         * gdbserver/remote-utils.c (prepare_resume_reply): Call
9485         target_signal_from_host on signals sent to the remote.
9486         * gdbserver/server.h: Add prototypes.  Include "gdb/signals.h".
9487         * gdbserver/Makefile.in: Add signals.o.  Add -I${INCLUDE_DIR}.
9488
9489 2002-03-27  Daniel Jacobowitz  <drow@mvista.com>
9490
9491         * signals/signals.c: Include "server.h" in gdbserver build.
9492         (target_signal_from_name): Don't use STREQ.
9493         (_initialize_signals): Likewise.  Don't include function in
9494         gdbserver build.
9495
9496 2002-03-27  Daniel Jacobowitz  <drow@mvista.com>
9497
9498         * signals.c: Moved to...
9499         * signals/signals.c: Here.
9500         * Makefile (signals.o): Update.
9501
9502 2002-03-26  Jeff Law (law@redhat.com)
9503
9504         * somread.c (som_symtab_read): Remove some commented out code and
9505         updated related comments.  Do not set the minimal symbol table to
9506         mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
9507         in a dynamic executable.
9508         * hppa-tdep.c (find_proc_framesize): Sanely handle the case
9509         where we are unable to find the minimal symbol for the given
9510         PC value.
9511
9512 2002-03-25  Jeff Law (law@redhat.com)
9513
9514         * linux-proc.c (read_mapping): Scan up to end of line for filename.
9515
9516 2002-03-25  Michal Ludvig  <mludvig@suse.cz>
9517
9518         * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
9519
9520 2002-03-23  Andrew Cagney  <ac131313@redhat.com>
9521
9522         * command.h: Update copyright.
9523         (struct cmd_list_element): Replace definition with opaque
9524         declaration.
9525         (enum cmd_types): Document that it will eventually be moved to
9526         cli/cli-decode.h
9527         (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
9528         (MALLOCED_REPLACEMENT): Delete macro.
9529         * Makefile.in (cli_decode_h): Add $(command_h).
9530         (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
9531         * top.c: Include "cli/cli-decode.h".
9532         * completer.c: Include "cli/cli-decode.h".
9533         * maint.c: Include "cli/cli-decode.h".
9534         * cli/cli-decode.h: Include "command.h".
9535         (enum command_class): Delete.
9536         (enum cmd_types): Comment out.
9537         (enum cmd_auto_boolean): Delete.
9538         (enum var_types): Delete.
9539
9540 2002-03-23  Andrew Cagney  <ac131313@redhat.com>
9541
9542         * cli/cli-decode.c: Include "gdb_assert.h".
9543         (add_set_or_show_cmd): New static function.
9544         (add_set_cmd): Rewrite.  Use add_set_or_show_cmd.
9545         (add_show_from_set): Rewrite. Use add_set_or_show_cmd.  Don't copy
9546         all fields, such as func, from the set command.
9547
9548 2002-03-23  Andrew Cagney  <ac131313@redhat.com>
9549
9550         * MAINTAINERS (sh-elf): Change warning flag to -w.
9551
9552 2002-03-23  Andrew Cagney  <cagney@redhat.com>
9553
9554         * defs.h (error): Add printf format attribute.
9555         * thread-db.c (thread_from_lwp): Fix error format string.
9556         * stack.c (parse_frame_specification): Ditto.
9557         * cli/cli-decode.c (undef_cmd_error): Ditto.
9558         * scm-lang.c (scm_lookup_name): Ditto.
9559         * tracepoint.c (trace_error): Ditto.
9560         * remote-utils.c (usage): Ditto.
9561         * remote.c (compare_sections_command): Ditto.
9562         Fix PR gdb/328.
9563
9564 2002-03-22  Andrew Cagney  <ac131313@redhat.com>
9565
9566         * gdbtypes.c (append_composite_type_field): New function.
9567         (init_composite_type): New function.
9568         * gdbtypes.h (append_composite_type_field): Declare.
9569         (init_composite_type): Ditto.
9570
9571 2002-03-22  Elena Zannoni  <ezannoni@redhat.com>
9572
9573         * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
9574         function.
9575         * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
9576         * rs6000-tdep.c (rs6000_gdbarch_init): Use different
9577         structure returning convention for SYSV ABI case, but not
9578         for GNU/Linux, FreeBSD, or NetBSD.
9579
9580 2002-03-22  Daniel Jacobowitz  <drow@mvista.com>
9581
9582         * symtab.h (lookup_block_symbol): Add mangled_name argument
9583         to prototype.
9584
9585         * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
9586         with new mangled_name argument.
9587         * linespec.c (decode_line_1): Likewise.
9588         * valops (value_of_this): Likewise.
9589         * symtab.c (lookup_transparent_type): Likewise.
9590         (lookup_symbol_aux): Likewise.  Accept new mangled_name argument.
9591         (lookup_symbol): If we are given a mangled name, pass it down
9592         to lookup_symbol_aux.
9593         (lookup_block_symbol): If we are given a mangled name to check
9594         against, only return symbols which match it.
9595
9596 2002-03-22  Christopher Faylor  <cgf@redhat.com>
9597
9598         * win32-nat.c (child_create_inferior): Check for proper shell to use
9599         here, in case the user changes it on the fly.
9600         (_initialize_inftarg): Remove shell path considerations.
9601
9602 2002-03-21  Elena Zannoni  <ezannoni@redhat.com>
9603
9604         * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
9605         for gdbarch_max_register_raw_size and max_register_virtual_size.
9606         Adjust copyright year.
9607
9608 2002-03-21  Daniel Jacobowitz  <drow@mvista.com>
9609
9610          * dbxread.c (process_one_symbol): Extend the first N_SLINE
9611          in a function to cover the entire beginning of the function
9612          as well if it does not already.
9613
9614 2002-03-21  Tom Rix  <trix@redhat.com>
9615
9616         * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
9617         (rs6000_ptrace64): Renamed from ptrace64.
9618
9619 2002-03-20  Martin M. Hunt  <hunt@redhat.com>
9620
9621         * gdbserver/remote-utils.c (remote_open): Don't call
9622         getprotobyname, we're all using TCP here so just use
9623         IPPROTO_TCP.
9624         * gdbserver/gdbreplay.c (remote_open): Ditto.
9625
9626 2002-03-20  Martin M. Hunt  <hunt@redhat.com>
9627
9628         * regcache.c (_initialize_regcache): No need to call
9629         build_regcache() at this time; it gets called whenever
9630         the gdbarch changes.
9631
9632 2002-03-20  David O'Brien  <obrien@FreeBSD.org>
9633
9634         * sparc-nat.c:  Include sys/param.h where possible.
9635
9636 2002-03-20  Daniel Jacobowitz  <drow@mvista.com>
9637
9638         Fix PR gdb/422.
9639         * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
9640         FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
9641         * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
9642         complex types.
9643         * stabsread.c (rs6000_builtin_type): Likewise.
9644         (read_sun_floating_type): Likewise.
9645
9646 2002-03-19  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
9647
9648         * stabsread.c (read_member_functions): Remove skip code for duplicate
9649         constructor/destructor methods.  Use standard parsing for these
9650         methods and just do not chain them to the list of methods after
9651         parsing.
9652
9653 2002-03-19  Alexandre Oliva  <aoliva@redhat.com>
9654
9655         * coffread.c: Remove redundant static declarations.  Replace
9656         occurrences of `PTR' with `void *'.
9657         * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
9658         * top.h (quit_cover): Likewise.
9659         * defs.h (catch_errors): Likewise.
9660
9661 2002-03-18  Andrew Cagney  <ac131313@redhat.com>
9662
9663         * defs.h (XMALLOC): Define.
9664         * gdb-events.sh (XMALLOC): Delete macro.
9665         * gdb-events.c, gdb-events.h: Regenerate.
9666         * gdbarch.sh (XMALLOC): Delete macro.
9667         * gdbarch.c: Regenerate.
9668         * serial.c (XMALLOC): Delete macro.
9669         * ui-file.c (XMALLOC): Ditto.
9670         * ser-unix.h (XMALLOC): Ditto.
9671         * sh-tdep.c (XMALLOC): Ditto.
9672         * ui-out.c (XMALLOC): Ditto.
9673         * utils.c (XMALLOC): Ditto.
9674         * i386-tdep.c (XMALLOC): Ditto.
9675         * gdb-events.c (XMALLOC): Ditto.
9676         * d10v-tdep.c (XMALLOC): Ditto.
9677         * cli-out.c (XMALLOC): Ditto.
9678
9679         * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
9680         * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
9681         * ui-file.c, ui-out.c: Ditto.
9682
9683 2002-03-18  Andrew Cagney  <ac131313@redhat.com>
9684
9685         * command.h (struct cmd_list_element): Add field context.
9686         (set_cmd_context, get_cmd_context): Declare.
9687         * cli/cli-decode.h: Ditto.
9688         * cli/cli-decode.c (get_cmd_context): New function.
9689         (set_cmd_context): New function.
9690         (add_cmd): Initialize context.
9691         Part of fixing PR gdb/145 and PR gdb/146.
9692
9693 2002-03-17  Andrew Cagney  <ac131313@redhat.com>
9694
9695         * cli/cli-decode.c (cmd_type): New function.
9696         * command.h (cmd_type): Declare.
9697         * infrun.c (set_schedlock_func): Call function cmd_type.
9698         * kod.c (kod_set_os): Call cmd_type.
9699         * cris-tdep.c (cris_version_update): Use function cmd_type.
9700         (cris_mode_update, cris_abi_update): Ditto.
9701
9702         * command.h: (execute_cmd_post_hook): Declare.
9703         (execute_cmd_pre_hook): Declare.
9704         * cli/cli-script.c (clear_hook_in_cleanup): New function.
9705         (execute_cmd_post_hook, execute_cmd_pre_hook): New
9706         functions. Execute pre/post hook while ensuring that afterwords
9707         hook_in is cleared.
9708         * top.c (execute_command): Use execute_cmd_post_hook, and
9709         execute_cmd_pre_hook to execute pre/post commands.
9710         * infrun.c (normal_stop): Pass stop_command and not pre_hook to
9711         hook_stop_stub.
9712         (hook_stop_stub): Call execute_cmd_pre_hook.
9713
9714 2002-03-17  Andrew Cagney  <ac131313@redhat.com>
9715
9716         * kod.c (kod_set_os): Revert previous change.  Is called by ``info
9717         set'' and this leads to a core dump.  Move xstrdup of
9718         operating_system to after check that it is not NULL.
9719
9720 2002-03-17  Andrew Cagney  <ac131313@redhat.com>
9721
9722         * kod.c (kod_set_os): Remove unnecessary check that
9723         ``command->type'' is set_cmd.
9724
9725         * valprint.c (set_input_radix): Use input_radix.
9726         (set_output_radix): Use output_radix.
9727         (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
9728         isn't reverted.
9729
9730 2002-03-16  Andrew Cagney  <ac131313@redhat.com>
9731
9732         * value.h (struct value): Delete field ``substring_addr''.  Change
9733         aligner fields to force_doublest_align, force_longest_align,
9734         force_core_addr_align and force_pointer_aligh.
9735
9736         * value.h (struct value): Fix typo in above change.
9737
9738 2002-03-16  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
9739
9740         * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
9741         to fix internal_error from ``maintenance print architecture''.
9742
9743 2002-03-16  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
9744
9745         * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
9746         for gcc versions after gcc-2.8.1.
9747
9748 2002-03-16  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
9749
9750         * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
9751         for method resolution.  Restore adjustment of ``this'' pointer after
9752         calling value_struct_elt, which was accidentally removed during the
9753         HP merge.
9754
9755 2002-03-15  Andrew Cagney  <ac131313@redhat.com>
9756
9757         * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
9758         value_of_register.
9759         * findvar.c (value_of_register): Add ``frame'' parameter.  Pass to
9760         get_saved_register.
9761         * value.h (value_of_register): Update.
9762
9763 2002-03-14  Richard Henderson  <rth@redhat.com>
9764
9765         * configure.in: Detect declaration for canonicalize_file_name.
9766         * utils.c (canonicalize_file_name): Declare, if needed.
9767         (gdb_realpath): Prefer realpath if available and usable.
9768         * config.in, configure: Rebuild.
9769
9770 2002-03-14  Richard Henderson  <rth@redhat.com>
9771
9772         * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
9773         a constant array bound.
9774
9775         * MAINTAINERS: Add myself to write-after-approval.
9776
9777 2002-03-14  Michael Snyder  <msnyder@redhat.com>
9778
9779         * symfile.c (syms_from_objfile): Return immediately if no syms.
9780         (symbol_file_add): Return immediately if no syms.
9781         (find_sym_fns): Return immediately if no syms.
9782
9783 2002-03-13  Michal Ludvig  <mludvig@suse.cz>
9784
9785         * gdbserver/remote-util.c (remote_open): Print remote-side's
9786         IP address when remote debugging over the network.
9787
9788 2002-03-12  David O'Brien  <obrien@FreeBSD.org>
9789
9790         * config/sparc/fbsd.mh: Fix copyright.
9791         * config/sparc/fbsd.mt: Likewise.
9792
9793 2002-03-11  Richard Earnshaw  <rearnsha@arm.com>
9794
9795         * MAINTAINERS: Fix typo in name of gdb warnings option.
9796         (x86-64): Fix formating so that this can be parsed by awk.
9797
9798 2002-03-10  Daniel Jacobowitz  <drow@mvista.com>
9799
9800         * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
9801         * defs.h: Include "gdb/signals.h".
9802         (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
9803
9804 2002-03-10  Michal Ludvig  <mludvig@suse.cz>
9805
9806         * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
9807         * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
9808         from x86-64-tdep.h
9809
9810 2002-03-10  Daniel Jacobowitz  <drow@mvista.com>
9811             Don Howard <dhoward@redhat.com>
9812
9813         * mips-tdep.c (ST0_FR): Define.
9814         (mips2_fp_compat): New function, temporarily disabled.
9815         (mips_read_fp_register_single): New function.
9816         (mips_read_fp_register_double): New function.
9817         (mips_print_register): Use them.
9818         (do_fp_register_row): Likewise.
9819
9820 2002-03-09  Andrew Cagney  <ac131313@redhat.com>
9821
9822         * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
9823         approval''.
9824
9825 2002-03-08  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
9826
9827         * stabsread.c (read_member_functions): Fix is_stub test for
9828         static member functions, improve comment.
9829
9830 2002-03-07  Richard Earnshaw  <rearnsha@arm.com>
9831
9832         * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
9833         (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
9834         (_initialize_remote_rdi): Use add_set_boolean_cmd to register
9835         commands that set boolean values.
9836         (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
9837         (arm_rdi_resume): Always initialize PC.
9838         (arm_rdi_open): Don't use rslt as a boolean.
9839         (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
9840         (arm_rdi_fetch_registers, arm_rdi_store_registers)
9841         (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
9842         (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
9843
9844 2002-03-06  Alexandre Oliva  <aoliva@redhat.com>
9845
9846         * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
9847         * configure: Rebuilt.
9848
9849 2002-03-06  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
9850
9851         * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
9852         (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
9853
9854 2002-03-06  Andrew Cagney  <ac131313@redhat.com>
9855
9856         * cli/cli-decode.c (set_cmd_completer): New function.
9857         * command.h (set_cmd_completer): Declare.
9858         * cli/cli-decode.h (set_cmd_completer): Ditto.
9859
9860         * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
9861         * cli/cli-cmds.c (init_cli_cmds): Ditto.
9862         * win32-nat.c (_initialize_inftarg): Ditto.
9863         * remote-rdi.c (_initialize_remote_rdi): Ditto.
9864         * proc-api.c (_initialize_proc_api): Ditto.
9865         * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
9866         * source.c (_initialize_source): Ditto.
9867         * exec.c (_initialize_exec): Ditto.
9868         * solib.c (_initialize_solib): Ditto.
9869         * top.c (init_main): Ditto.
9870         * tracepoint.c (_initialize_tracepoint): Ditto.
9871         * symfile.c (_initialize_symfile): Ditto.
9872         * printcmd.c (_initialize_printcmd): Ditto.
9873         * infcmd.c (_initialize_infcmd): Ditto.
9874         * corefile.c (_initialize_core): Ditto.
9875
9876 2002-03-05  Andrew Cagney  <ac131313@redhat.com>
9877
9878         * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
9879
9880 2002-03-05  Andrew Cagney  <ac131313@redhat.com>
9881
9882         * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
9883
9884 2002-03-05  Andrew Cagney  <ac131313@redhat.com>
9885
9886         * NEWS: Update headings, 5.2 has branched.
9887
9888 2002-03-04  Daniel Jacobowitz  <drow@mvista.com>
9889
9890         * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
9891         (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
9892         (register_addr, REGISTER_RAW_SIZE): Likewise.
9893         (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
9894         * gdbserver/linux-x86-64-low.c: Remove extra #endif.
9895
9896 2002-03-03  Michal Ludvig <mludvig@suse.cz>
9897
9898         * MAINTAINERS (x86-64): Add myself.
9899         * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
9900         changed value_ptr -> struct value *
9901
9902 2002-03-01  David O'Brien  <obrien@FreeBSD.org>
9903
9904         * configure.host (sparc64-*-freebsd): Add.
9905         * configure.tgt: Likewise.
9906         * config/sparc/fbsd.mh: New file.
9907         * config/sparc/fbsd.mt: Likewise.
9908         * config/sparc/nm-fbsd.h: Likewise.
9909         * config/sparc/tm-fbsd.h: Likewise.
9910
9911 2002-03-01  Daniel Jacobowitz  <drow@mvista.com>
9912
9913         * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
9914         regformats/reg-s390x.dat.
9915
9916 2002-03-01  Andrew Cagney  <ac131313@redhat.com>
9917
9918         * utils.c: Add FIXME explaining true/false problem.
9919
9920 2002-02-28  Andrew Cagney  <ac131313@redhat.com>
9921
9922         * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
9923
9924 2002-02-28  Michael Chastain  <mec@shout.net>
9925
9926         * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
9927
9928 2002-02-28  Daniel Jacobowitz  <drow@mvista.com>
9929
9930         * gdbserver/linux-s390-low.c: New file.
9931         * regformats/reg-s390.dat: New file.
9932         * regformats/reg-s390x.dat: New file.
9933         * gdbserver/configure.srv: Add S/390.
9934         * gdbserver/Makefile.in: Add S/390.
9935         * configure.tgt: Enable gdbserver for S/390.
9936
9937 2002-02-28  Eli Zaretskii  <eliz@is.elta.co.il>
9938
9939         * go32-nat.c (_initialize_go32_nat): Don't use periods in the
9940         first line of the doc string for "info dos", except at the end of
9941         the sentence, since the short help stops at the first period.
9942
9943 2002-02-28  Jason Merrill  <jason@redhat.com>
9944
9945         * dwarf2read.c (dwarf_cfi_name): Add new codes.
9946
9947 2002-02-27  Fred Fish  <fnf@redhat.com>
9948
9949         * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
9950         comment (dumy -> dummy).
9951
9952 2002-02-27  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
9953
9954         * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
9955
9956 2002-02-27  Rodney Brown  <rbrown64@csc.com.au>
9957
9958       * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
9959
9960 2002-02-27  Daniel Jacobowitz  <drow@mvista.com>
9961
9962         * gdbserver/acconfig.h: New file.
9963         * gdbserver/i387-fp.c: New file.
9964         * gdbserver/i387-fp.h: New file.
9965         * gdbserver/linux-x86-64.c: New file.
9966         * regformats/reg-x86-64.dat: New file.
9967         * configure.tgt: Add x86_64-*-linux* gdbserver support.
9968         * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
9969         * gdbserver/configure.in: Add support for regsets.
9970         * gdbserver/config.in: Regenerate.
9971         * gdbserver/configure: Regenerate.
9972         * gdbserver/Makefile.in: Likewise.  Add $(linux_low_h).
9973         * gdbserver/linux-low.h: New file.
9974         * gdbserver/linux-low.c: Include "linux-low.h".  Add support
9975         for regsets.
9976         * gdbserver/linux-arm-low.c: Include "linux-low.h".
9977         * gdbserver/linux-ia64-low.c: Include "linux-low.h".
9978         * gdbserver/linux-m68k-low.c: Include "linux-low.h".
9979         * gdbserver/linux-mips-low.c: Include "linux-low.h".
9980         * gdbserver/linux-ppc-low.c: Include "linux-low.h".
9981         * gdbserver/linux-sh-low.c: Include "linux-low.h".
9982         * gdbserver/linux-i386-low.c: Include "linux-low.h".  Include
9983         "i387-fp.h".  Add PTRACE_GETREGS and friends.
9984         * gdbserver/regcache.c (supply_register): New function.
9985         (supply_register_by_name): New function.
9986         (collect_register): New function.
9987         (collect_register_by_name): New function.
9988
9989 2002-02-27  Daniel Jacobowitz  <drow@mvista.com>
9990
9991         * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
9992         (config.status): Add configure.srv dependency.
9993         (server_h): Add config.h dependency.
9994
9995 2002-02-27  Daniel Jacobowitz  <drow@mvista.com>
9996
9997         * regformats/reg-i386-linux.dat: New file, with $orig_eax.
9998         * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
9999         * gdbserver/configure.srv: Change i386-*-linux* to use
10000         reg-i386-linux.o.
10001
10002 2002-02-26  Andrew Cagney  <ac131313@redhat.com>
10003
10004         * x86-64-tdep.c: Re-indent.  Update copyright date.
10005
10006 2002-02-26  Andrew Cagney  <ac131313@redhat.com>
10007
10008         From Michal Ludvig <mludvig@suse.cz>:
10009         * x86-64-tdep.c (value.h): Delete.
10010         (gdb_assert.h): Include.
10011         (x86_64_register_convert_to_virtual,
10012         x86_64_register_convert_to_raw ): Add check which lets only
10013         floating-point values to be converted.
10014         (value_push): Delete.
10015         (x86_64_push_arguments): Order of arguments pushed on stack fixed.
10016         (i386_gdbarch_init): Number of register_bytes fixed.
10017
10018 2002-02-26  Andrew Cagney  <ac131313@redhat.com>
10019
10020         * MAINTAINERS: Add x86-64 target.
10021
10022 2002-02-26  Andrew Cagney  <ac131313@redhat.com>
10023
10024         * memattr.c (mem_command): Eliminate ``true'' and ``false''.
10025         * osfsolib.c (solib_map_sections): Ditto.
10026         * irix5-nat.c (solib_map_sections): Ditto.
10027         * corelow.c (gdb_check_format): Ditto.
10028         * symfile.c (symfile_bfd_open): Ditto.
10029         * solib.c (solib_map_sections): Ditto.
10030         Fix PR gdb/354.
10031
10032 2002-02-26  Andrew Cagney  <ac131313@redhat.com>
10033
10034         * remote.c (_initialize_remote): By default, disable ``e'' and
10035         ``E'' step out-of-range packets.
10036
10037 2002-02-26  Andreas Schwab  <schwab@suse.de>
10038
10039         * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
10040         m68k_linux_frame_saved_pc.
10041         (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
10042         in_sigtramp.
10043         (SIGCONTEXT_PC_OFFSET): Remove.
10044         * m68klinux-nat.c (m68k_linux_frame_saved_pc,
10045         m68k_linux_sigtramp_saved_pc): New functions.
10046         (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
10047         (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
10048         (UCONTEXT_PC_OFFSET): Define.
10049         (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
10050         non-RT and RT signal trampolines.
10051
10052 2002-02-26  Richard Earnshaw  <rearnsha@arm.com>
10053
10054         * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
10055         (TARGET_NBPG, STACK_END_ADDR): Delete
10056         (VARIABLES_INSIDE_BLOCK): Delete.
10057
10058 2002-02-25  Andrew Cagney  <ac131313@redhat.com>
10059
10060         * utils.c (perror_with_name): Make string parameter constant.
10061         (print_sys_errmsg): Ditto.
10062         (query): Ditto.
10063         * defs.h (perror_with_name): Update.
10064         (print_sys_errmsg): Update.
10065         (query): Update.
10066
10067 2002-02-25  Daniel Jacobowitz  <drow@mvista.com>
10068
10069         From Eliot Dresselhaus <eliot@ayrnetworks.com>:
10070         * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
10071
10072 2002-02-25  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
10073
10074         * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
10075         if it already matches the current architecture from the exec file.
10076         Include arch-utils.h for gdbarch_info_init prototype.
10077         * Makefile.in (rs6000-nat.o): Update dependencies.
10078
10079 2002-02-25  Eli Zaretskii  <eliz@is.elta.co.il>
10080
10081         * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
10082          list of exported variables.
10083
10084 2002-02-24  Daniel Jacobowitz  <drow@mvista.com>
10085
10086         * gdbserver/configure.srv: New file.
10087         * gdbserver/configure.in: Use configure.srv instead
10088         of the host/target makefile fragments.  Set GDBSERVER_DEPFILES
10089         from it.
10090         * gdbserver/configure: Regenerated.
10091         * gdbserver/terminal.h: New file.
10092         * gdbserver/Makefile.in: Update for configure changes.  Remove
10093         more unneeded include paths.
10094
10095 2002-02-24  Andrew Cagney  <ac131313@redhat.com>
10096
10097         From wiz at danbala:
10098         * config/sparc/tm-sp64.h: Fix grammar and typos.
10099         Fix PR gdb/287.
10100
10101 2002-02-24  Andrew Cagney  <ac131313@redhat.com>
10102
10103         * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
10104         with either ``GNU/Linux'' or ``Linux kernel''.  Update copyright.
10105         * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
10106         * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
10107         * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
10108         * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
10109         * s390-tdep.c: Ditto.
10110         * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
10111         * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
10112         * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
10113         * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
10114         * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
10115         * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
10116         * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
10117         * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
10118         * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
10119         * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
10120         Fix PR gdb/378.
10121
10122 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
10123
10124         * lin-thread.c: Delete file.
10125         * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
10126         to gdb_proc_service.h.
10127         * configure: Re-generate.
10128
10129         * ocd.c (ocd_open): Do not try to open the "ocd" device.
10130         * serial.c (serial_open): Delete check for "ocd".
10131         Fix PR gdb/349.
10132
10133         * Makefile.in (linux-thread.o): Delete target.
10134         * linux-thread.c: Delete file.
10135
10136         * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c.  Tweak other
10137         renamed SH files to be consistent.
10138
10139         * symtab.c (sort_search_symbols): Use xfree.
10140
10141 2002-02-23  Richard Earnshaw  <rearnsha@arm.com>
10142
10143         * arm-linux-tdep.c (arm_linux_init_abi): Register
10144         IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
10145         * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
10146         definition with undef, since we don't want the sysvr4 definition.
10147         (SKIP_TRAMPOLINE_CODE): Likewise.
10148
10149 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
10150
10151         From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
10152
10153         * configure.in: (AC_CHECK_FUNCS) Added test for
10154         canonicalize_file_name Regenerated.
10155         * config.in, configure: Regenerated.
10156         * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
10157         defined use canonicalize_file_name.
10158
10159 2002-02-23  Michael Chastain  <mec@shout.net>
10160
10161         * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
10162
10163 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
10164
10165         * README: Remove references to cygnus.com.
10166         * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
10167         dot com'' form.  Remove references to cygnus.com and sourceware.
10168
10169 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
10170
10171         From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
10172         * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
10173         1003.1-2001 no longer allows "head -1".
10174         * gdb/Makefile.in (version.c): Likewise.
10175         * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
10176         * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
10177         equivalent.  POSIX 1003.1-2001 no longer allows "diff -c3".
10178
10179 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
10180
10181         * cli/cli-decode.c (cmd_cfunc_eq): New function.
10182         * command.h (cmd_cfunc_eq): Declare.
10183         * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
10184
10185         * cli/cli-cmds.h (is_complete_command): Change parameter to a
10186         ``struct cmd_list_element *''.
10187         * cli/cli-cmds.c (is_complete_command): Update.  Use
10188         cmd_cfunc_eq.
10189         * top.c (execute_command): Pass the command to
10190         is_complete_command.
10191         * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
10192
10193 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
10194
10195         From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
10196         * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
10197         architecture defines.
10198         * s390-tdep.c (s390_gdbarch_init): Likewise.
10199
10200 2002-02-23  Richard Earnshaw  <rearnsha@arm.com>
10201
10202         * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
10203         (arm_linux_push_arguments): Likewise.
10204         (arm_linux_init_abi): Register them.  Also register linux-specific
10205         call_dummy_words.
10206         (find_minsym_and_objfile): Use strcmp, not STREQ.
10207         * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
10208         (arm_linux_call_dummy_words): Delete declaration.
10209         (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
10210         (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
10211         declarations.
10212         (LOWEST_PC): Delete.
10213
10214 2002-02-23  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
10215
10216         * maint.c (print_section_info): Do not prepend `0x' to filepos
10217         output, it will be handled by local_hex_string_custom.
10218
10219 2002-02-23  Richard Earnshaw  <rearnsha@arm.com>
10220
10221         * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
10222         (store_newfpe_double, store_newfpe_extended, store_fpregister)
10223         (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
10224
10225 2002-02-22  Jim Blandy  <jimb@redhat.com>
10226
10227         Indicate that the bcache functions don't change the strings
10228         they're passed.
10229         * bcache.h (bcache, hash): Add `const' keywords to declarations.
10230         * bcache.c (bcache, hash): Add `const' keywords to definitions.
10231
10232 2002-02-22  Pierre Muller  <muller@ics.u-strasbg.fr>
10233
10234         * win32-nat.c (child_create_inferior): Fix create flags setting bug.
10235
10236 2002-02-21  Christopher Faylor  <cgf@redhat.com>
10237
10238         * win32-nat.c (register_loaded_dll): Just use raw name when we can't
10239         find the complete path to a loaded DLL.
10240
10241 2002-02-21  Fred Fish  <fnf@redhat.com>
10242
10243         * dbxread.c (process_one_symbol): When finding an N_FUN symbol
10244         that marks the end of the range of a function, enter a line number
10245         entry that has a line number of zero and a PC offset that matches
10246         the end of the function.  This starts a range of PC's for which no
10247         line number information is known.
10248         * symtab.c (find_pc_sect_line): If our best fit is in a range of
10249         PC's for which no line number info is found (line number is zero)
10250         then we didn't find any valid line information.
10251         * symtab.h: Document use of zero line number entry.
10252
10253 2002-02-21  Elena Zannoni  <ezannoni@redhat.com>
10254
10255         * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
10256         (have_ptrace_getvrregs): Define for run time checks.
10257         (gdb_vrregset_t): New type for Altivec register handling.
10258         (fetch_register, store_register): Fetch/store altivec register
10259         when needed.
10260         (fetch_altivec_register, store_altivec_register): New functions.
10261         (supply_vrregset, fill_vrregset): New functions.
10262         (fetch_altivec_registers, store_altivec_registers): New functions.
10263         (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
10264         registers as well.
10265
10266 2002-02-21  Jiri Smid  <smid@suse.cz>
10267
10268         * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
10269
10270 2002-02-21  Richard Earnshaw  <rearnsha@arm.com>
10271
10272         * Makefile.in (armnbsd-nat.o): Update dependencies.
10273         * armnbsd-nat.c (supply_gregset): New function.  Common code to
10274         supply the integer register set.
10275         (supply_fparegset): New function.  Similar for FPA registers.
10276         (fetch_regs, fetch_fp_regs): Use them.
10277         (fetch_core_registers): Likewise.
10278         (fetch_elfcore_registers): New function.
10279         (arm_netbsd_elfcore_fns): New core-file type specification.
10280         (_initialize_arm_netbsd_nat): Register it.
10281
10282 2002-02-21  Richard Earnshaw  <rearnsha@arm.com>
10283
10284         * armnbsd-nat.c: Include gdbcore.h.
10285         (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
10286         (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
10287         'void' to declaration, to shut up ARI.
10288         (fetch_core_registers): Make static.  Rewrite using supply_register.
10289         (arm_netbsd_core_fns): New core-file type specification.
10290         (_initialize_arm_netbsd_nat): New function.
10291
10292 2002-02-21  Christopher Faylor  <cgf@redhat.com>
10293
10294         * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
10295         value.
10296
10297 2002-02-20  Christopher Faylor  <cgf@redhat.com>
10298
10299         * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
10300         fails.
10301
10302 2002-02-20  Daniel Jacobowitz  <drow@mvista.com>
10303
10304         * jv-exp.y (parse_number): Change type of implicit longs
10305         to builtin_type_uint64.
10306
10307 2002-02-20  Daniel Jacobowitz  <drow@mvista.com>
10308
10309         * gdbserver/linux-low.c (mywait): Change argument to waitpid
10310         to be an integer instead of a `union wait'.
10311
10312 2002-02-20  Daniel Jacobowitz  <drow@mvista.com>
10313
10314         * mips-linux-nat.c: Call the operating system GNU/Linux.
10315         * mips-linux-tdep.c: Likewise.
10316         * mips-tdep.c: Likewise.
10317
10318 2002-02-20  Daniel Jacobowitz  <drow@mvista.com>
10319
10320         Fix PR gdb/265.
10321         * jv-exp.y (parse_number): Handle 64-bit integers.
10322
10323 2002-02-20  Daniel Jacobowitz  <drow@mvista.com>
10324
10325         * gdbserver/configure.in: Remove AM_PROC_CC_STDC.  Change
10326         AC_STDC_HEADERS to AC_HEADER_STDC.
10327         * gdbserver/configure: Regenerated.
10328
10329 2002-02-20  Richard Earnshaw  <rearnsha@arm.com>
10330
10331         * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
10332         is defined.
10333         * sparc-tdep.c (get_longjmp_target): Likewise.
10334
10335 2002-02-20  Richard Earnshaw  <rearnsha@arm.com>
10336
10337         * News: Add news about ARM and Multi-arch.  Mention the new target
10338         arm*-*-netbsd*.
10339
10340 2002-02-19  Jim Blandy  <jimb@redhat.com>
10341
10342         * stabsread.c (error_type_complaint): Improve error message.
10343
10344 2002-02-19  Daniel Jacobowitz  <drow@mvista.com>
10345
10346         * gdbserver/README: Update documentation.
10347         * gdbserver/configure.in: Update configury to match documentation.
10348         * gdbserver/Makefile.in: Likewise.
10349         * gdbserver/configure: Regenerated.
10350         * gdbserver/aclocal.m4: New file, generated by aclocal.
10351         * gdbserver/config.in: New file, generated by autoheader.
10352
10353 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
10354
10355         * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
10356         armnbsd-nat.c.
10357
10358 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
10359
10360         * arm-tdep.h (enum arm_float_model): New enum.
10361         (struct gdbarch_tdep): Add fp_model.
10362         * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep.  Defer setting
10363         up floating-point conversions until we know the floating-point model
10364         in use by the inferior.  Don't complain about being unable to
10365         determine the ABI of the inferior when we don't have one.
10366         (arm_extract_return_value): Support different floating-point models.
10367         (arm_store_return_value): Likewise.
10368         * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
10369         ARM_FLOAT_SOFT.
10370         (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
10371
10372 2002-02-19  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
10373
10374         * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
10375         of ``current_gdbarch''.
10376
10377 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
10378
10379         * armnbsd-nat.c : ANSIfy all function declarations.
10380         (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
10381         (fetch_inferior_registers): Re-implement in terms of above.
10382         (store_register, store_regs, store_fp_register, store_fp_regs): New.
10383         (store_inferior_registers): Re-implement in terms of above.
10384
10385 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
10386
10387         * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
10388         kernel.
10389         * arm-linux-tdep.c: Likewise.
10390         * config/arm/tm-linux.h: Likewise.
10391
10392 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
10393
10394         * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
10395         * config/arm/nbsd.mt (TM_FILE): Delete.
10396         * config/arm/tm-nbsd.h: Delete.
10397
10398 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
10399
10400         * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
10401         Initialize CALL_DUMMY_LENGTH.
10402
10403 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
10404
10405         * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
10406         function.
10407         (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
10408         * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
10409         defines one thing and that is incorrect for this port.
10410         (IN_SOLIB_CALL_TRAMPOLINE): Delete.
10411
10412 2002-02-18  Pierre Muller  <muller@ics.u-strasbg.fr>
10413
10414         * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
10415
10416 2002-02-18  Pierre Muller  <muller@ics.u-strasbg.fr>
10417
10418         * win32-nat.c (display_selector): New function. Displays information
10419         about the information returned by GetThreadSelectorEntry API function.
10420         (display_selectors): New function. Displays the infomation of
10421         the selector given as argument, or of CS, DS ans FS selectors
10422         if no argument is given.
10423         ( _initialize_inftarg): Add "w32" as info prefix command.
10424         Add "info w32 selector" as command calling display_selectors.
10425
10426 2002-02-19  Pierre Muller  <muller@ics.u-strasbg.fr>
10427
10428         * i386-tdep.c (get_longjmp_target): Fix compilation failure
10429         by setting dummy values to JB_PC and JB_ELEMENT_SIZE
10430         if not defined.
10431
10432 2002-02-18  Richard Earnshaw  <rearnsha@arm.com>
10433
10434         * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
10435
10436 2002-02-18  Richard Earnshaw  <rearnsha@arm.com>
10437
10438         * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
10439         (arm_fix_call_dummy): Call it.
10440         (arm_call_dummy_breakpoint_offset): Delete.
10441         (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
10442         * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
10443
10444 2002-02-18  Andrew Cagney  <ac131313@redhat.com>
10445
10446         * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
10447         Default to func_frame_chain_valid.
10448         * gdbarch.h, gdbarch.c: Re-generate.
10449         * frame.h (FRAME_CHAIN_VALID): Delete definition.
10450
10451 2002-02-18  Elena Zannoni  <ezannoni@redhat.com>
10452
10453         * ppc-linux-nat.c: Update copyright.
10454         (fetch_register, store_register): Add tid parameter, don't compute
10455         tid here.
10456         (fetch_ppc_registers, store_ppc_registers): Add tid
10457         parameter. Pass it along to callees.
10458         (fetch_inferior_registers, store_inferior_registers): Compute tid
10459         here, and pass it to calleed functions.
10460         (fill_gregset, supply_fpregset): Clean up formatting.
10461
10462 2002-02-18  Richard Earnshaw  <rearnsha@arm.com>
10463
10464         * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
10465         * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
10466
10467 2002-02-18  Richard Earnshaw  <rearnsha@arm.com>
10468
10469         * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
10470         * gdbarch.c gdbarch.h: Regenerate.
10471         * breakpoint.c (create_longjmp_breakpoint): Always compile this
10472         function.
10473         (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
10474         * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
10475         (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
10476
10477         * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
10478         * arm-tdep.c (arm_get_longjmp_target): New function.
10479         (arm_gdbarch_init): Initialize jb_pc to -1.  If ABI handler changes
10480         this to a positive value register arm_get_longjmp_target as the
10481         longjmp handler.
10482         * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
10483         (arm_linux_init_abi): Set up longjmp description in tdep.
10484         * armnbsd-nat.c (get_longjmp_target): Delete.
10485         * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
10486         description in tdep.
10487         * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
10488         (get_longjmp_target): Delete declaration.
10489         (GET_LONGJMP_TARGET): Delete.
10490         * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
10491         (GET_LONGJMP_TARGET): Delete.
10492
10493 2002-02-17  Kevin Buettner  <kevinb@redhat.com>
10494
10495         From Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>:
10496         * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
10497         of ``current_gdbarch''.
10498
10499 2002-02-17  Tom Tromey  <tromey@redhat.com>
10500
10501         * cli/cli-cmds.c (compare_strings): New function.
10502         (complete_command): Only print each unique item once.
10503         * completer.h (complete_line): Declare.
10504         * completer.c (complete_line): New function.
10505         (line_completion_function): Use it.
10506
10507 2002-02-16  Andrew Cagney  <ac131313@redhat.com>
10508
10509         * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
10510         * gdbarch.h, gdbarch.c: Re-generate.
10511
10512 2002-02-16  Daniel Jacobowitz  <drow@mvista.com>
10513
10514         * valarith.c (value_x_unop): Fix decrement; support post-decrement.
10515
10516 2002-02-16  Daniel Jacobowitz  <drow@mvista.com>
10517
10518         From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
10519         * valops.c (value_arg_coerce): Don't take the address of a reference
10520         to convert an argument to a reference.
10521
10522 2002-02-15  Christopher Faylor  <cgf@redhat.com>
10523
10524         * win32-nat.c (get_image_name): New function.
10525         (handle_load_dll): Use get_image_name function.
10526         (get_child_debug_event): Avoid registering debug events until possibly
10527         execed process is started.
10528         (child_create_inferior): Allow invocation via shell so that command
10529         line redirection, etc.  works ok.
10530         (_initialize_inftarg): Add new command: "set shell" to control whether
10531         a shell is used to start a process.
10532
10533 2002-02-15  Daniel Jacobowitz  <drow@mvista.com>
10534
10535         * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
10536         instead of find_register_by_number.
10537         (cannot_store_register): Likewise.
10538
10539 2002-02-14  Pierre Muller  <muller@ics.u-strasbg.fr>
10540
10541         * dwarf2read.c: Replace fprintf (stderr, ...) by
10542         fprintf_unfiltered (gdb_stderr, ...).
10543
10544 2002-02-15  Daniel Jacobowitz  <drow@mvista.com>
10545
10546         * gdbserver/gdbserver.1: Document --attach.
10547
10548 2002-02-15  Richard Earnshaw  <rearnsha@arm.com>
10549
10550         * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
10551         descriptions.
10552         * arm-tdep.c (arm_default_arm_le_breakpoint)
10553         (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
10554         (arm_default_thumb_be_breakpoint): New.  Initialize them from
10555         traditional breakpoint defines.
10556         (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
10557         (arm_gdbarch_init): Initialize new breakpoint variables.
10558         * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
10559         (arm_linux_init_abi): Initialize linux-specific breakpoint.
10560         * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
10561         (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
10562         code out to ...
10563         (arm_netbsd_init_abi_common): ... here; new function.
10564         * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
10565         (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
10566         * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
10567         * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
10568
10569 2002-02-15  Richard Earnshaw  <rearnsha@arm.com>
10570
10571         * arm-tdep.h (enum arm_abi): New enum.
10572         (struct gdbarch_tdep): New structure.
10573         (LOWEST_PC): Provide a default.
10574         (arm_gdbarch_register_os_abi): Declare new function.
10575         * arm-tdep.c (arm_abi_names): New array.
10576         (process_note_abi_tag_sections): New function.
10577         (get_elfosabi): New function.
10578         (arm_gdbarch_register_os_abi): New function.
10579         (arm_gdbarch_init): Try to determine the ABI of the inferior.  If
10580         support for that ABI has been built in, then call the appropriate
10581         configuration routine.  Use gdbarch_num_regs() to get the number
10582         of registers.
10583         (arm_dump_tdep): New function.
10584         (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
10585         place-holder functions.
10586         (_initialize_arm_tdep): Register them.
10587         * config/arm/tm-arm.h (LOWEST_PC): Delete.
10588
10589         * armnbsd-tdep.c: New file.
10590         * Makefile.in (armnbsd-tdep.o): Add dependencies.
10591         * config/arm/nbsd.mt (TDEPFILES): Add it.
10592         * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
10593
10594         * armnbsd-nat.c: Include regcache.h.
10595         * Makefile.in (armnbsd-nat.o): Update dependency list.
10596
10597         * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
10598
10599 2002-02-14  Daniel Jacobowitz  <drow@mvista.com>
10600
10601         * gdbserver/Makefile.in: Fix typos in target rules.
10602
10603 2002-02-14  Daniel Jacobowitz  <drow@mvista.com>
10604
10605         Fix part of PR gdb/267.
10606         * linespec.c (find_methods): Handle constructors specially for now.
10607
10608 2002-02-14  Corinna Vinschen  <vinschen@redhat.com>
10609
10610         * arm-tdep.c (arm_push_arguments): Eliminate special float type
10611         handling.
10612         * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
10613         standard_coerce_float_to_double().
10614
10615 2002-02-14  Christopher Faylor  <cgf@redhat.com>
10616
10617         * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
10618         GDBINIT_FILENAME.
10619
10620 2002-02-14  Elena Zannoni  <ezannoni@redhat.com>
10621
10622         * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
10623         find_variant_by_name, because it confuses the multiarch
10624         framework. Return NULL if there isn't an architecture with the
10625         user supplied name, instead of forcing a different one without
10626         recording the change with the multiarch machinery.
10627         (find_variant_by_name): Delete.
10628
10629 2002-02-14  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
10630
10631         * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
10632         i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
10633
10634 2002-02-13  Martin M. Hunt  <hunt@redhat.com>
10635
10636         * stack.c (print_frame_info_base): When calling
10637         print_frame_info_listing_hook, set current_source_symtab.
10638
10639 2002-02-14  Daniel Jacobowitz  <drow@mvista.com>
10640
10641         * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
10642         and remove unused $(INCLUDE_DIR).
10643         Add regcache.c to OBS.
10644         Add generated register protocol files to clean target.
10645         Update dependencies for new objects, obsolete old target code.
10646
10647         * gdbserver/linux-low.c: Remove all platform-specific code to
10648         new files.  Remove various dead code.  Update to use regcache
10649         functionality.
10650         * gdbserver/remote-utils.c (fromhex): Add return statement
10651         to quiet warning.
10652         (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
10653         constant.
10654         (input_interrupt): Add integer parameter to match prototype
10655         of a signal handler.
10656         (outreg): Use register_data ().
10657         (prepare_resume_reply): Use gdbserver_expedite_regs.
10658         * gdbserver/server.c (main): Dynamically allocate own_buf because
10659         PBUFSIZ is no longer constant.  Use registers_to_string () and
10660         registers_from_string ().
10661         * gdbserver/server.h: No longer include "defs.h".  Add prototypes
10662         for error (), fatal (), and warning ().  Update definition of
10663         PBUFSIZ to use regcache functionality.  Add include guard.
10664         * gdbserver/utils.c (fatal): Add missing ``const''.
10665         (warning): New function.
10666
10667         * regformats/regdat.sh: Include "regcache.h" in generated files.
10668         Provide init_registers () function.
10669         * regformats/regdef.h: Add prototype for set_register_cache ().
10670         Add include guard.
10671
10672         * gdbserver/linux-arm-low.c: New file.
10673         * gdbserver/linux-i386-low.c: New file.
10674         * gdbserver/linux-ia64-low.c: New file.
10675         * gdbserver/linux-m68k-low.c: New file.
10676         * gdbserver/linux-mips-low.c: New file.
10677         * gdbserver/linux-ppc-low.c: New file.
10678         * gdbserver/linux-sh-low.c: New file.
10679
10680         * gdbserver/regcache.c: New file.
10681         * gdbserver/regcache.h: New file.
10682
10683         * gdbserver/low-linux.c: Removed obsolete file.
10684
10685 2002-02-14  Daniel Jacobowitz  <drow@mvista.com>
10686
10687         * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
10688         * config/i386/linux.mt: Likewise.
10689         * config/ia64/linux.mt: Likewise.
10690         * config/m68k/linux.mh: Likewise.
10691         * config/powerpc/linux.mh: Likewise.
10692         * config/mips/linux.mt: Likewise.
10693
10694         * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
10695
10696         * config/i386/i386lynx.mh: Mark gdbserver variables
10697         as (currently) obsolete for this target.
10698         * config/i386/nbsd.mt: Likewise.
10699         * config/i386/nbsdelf.mt: Likewise.
10700         * config/m32r/m32r.mt: Likewise.
10701         * config/m68k/m68klynx.mh: Likewise.
10702         * config/m68k/nbsd.mt: Likewise.
10703         * config/m68k/sun3os4.mh: Likewise.
10704         * config/mips/vr5000.mt: Likewise.
10705         * config/ns32k/nbsd.mt: Likewise.
10706         * config/pa/hppabsd.mh: Likewise.
10707         * config/pa/hppaosf.mh: Likewise.
10708         * config/powerpc/nbsd.mt: Likewise.
10709         * config/rs6000/rs6000lynx.mh: Likewise.
10710         * config/s390/s390.mt: Likewise.
10711         * config/s390/s390x.mt: Likewise.
10712         * config/sparc/sparclynx.mh: Likewise.
10713         * config/sparc/sun4os4.mh: Likewise.
10714         * config/i386/x86-64linux.mt: Likewise.
10715         * config/sparc/linux.mh: Likewise.
10716
10717 2002-02-14  Daniel Jacobowitz  <drow@mvista.com>
10718
10719         * configure.tgt: Configure gdbserver only for known working
10720         targets.  Set ${build_gdbserver} instead of modifying ${configdirs}.
10721         * configure.in: Check ${build_gdbserver}.  Put gdbserver/ into
10722         SUBDIRS if it is configured.  Update comment for ${nativefile}.
10723         * configure: Regenerated.
10724
10725 2002-02-13  Michael Snyder  <msnyder@redhat.com>
10726
10727         * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
10728
10729         * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
10730         (default_gcore_mach): Just return 0, work around a problem in bfd.
10731         (default_gcore_target): OK to return NULL if exec_bfd is null.
10732         (make_mem_sec): Use a cast, avoid a warning.
10733
10734         * procfs.c (find_memory_regions_callback): Use a cast instead of
10735         calling host_pointer_to_address (which complains if
10736         sizeof (host pointer) != sizeof (target pointer)).
10737         (procfs_make_note_section): Avoid overflow in psargs string.
10738
10739         * procfs.c (procfs_make_note_section): Make the default
10740         implementation return an error.
10741
10742 2002-02-13  Rodney Brown  <rbrown64@csc.com.au>
10743
10744         * procfs.c (procfs_make_note_section): Provide a default definition
10745         (for alpha-dec-osf4.0f). Fix typos.
10746
10747 2002-02-13  Elena Zannoni  <ezannoni@redhat.com>
10748
10749         * linux-proc.c: Add include of regcache.h.
10750         * Makefile.in (linux-proc.o): Add dependency on regcache.h.
10751
10752 2002-02-13  Andrew Cagney  <ac131313@redhat.com>
10753
10754         From 2002-01-18 Greg McGary <greg@mcgary.org>:
10755         * memattr.c (create_mem_region): Disallow useless empty region.
10756         Regions are half-open intervals, so allow [A..B) [B..C) as
10757         non-overlapping.
10758
10759 2002-02-13  Michael Chastain <mec@shout.net>
10760
10761         * defs.h: Kill CONST_PTR.
10762         * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
10763         * c-lang.c (c_builtin_types): Likewise.
10764         * ch-lang.c (ch_builtin_types): Likewise.
10765         * f-lang.c (f_builtin_types): Likewise.
10766         * language.c (unknown_builtin_types): Likewise.
10767         * m2-lang.c (m2_builtin_types): Likewise.
10768         * p-lang.c (pascal_builtin_types): Likewise.
10769         * scm-lang.c (c_builtin_types): Likewise.
10770
10771 2002-02-13  Keith Seitz  <keiths@redhat.com>
10772
10773         * arm-tdep.h (arm_get_next_pc): Add declaration.
10774
10775 2002-02-13  Richard Earnshaw  <rearnsha@arm.com>
10776
10777         * arm-tdep.c (arm_use_struct_convention): Make static.  Move to be
10778         with other related struct-returning functions.
10779         (arm_extract_struct_value_address): New function.
10780         (arm_gdbarch_init): Initialize the above in multi-arch vector.  Also
10781         initialize float_format, double_format and long_double_format as
10782         appropriate to the endianness of the target.
10783         * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
10784         (arm_use_struct_convention): Delete declaration.
10785         (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
10786
10787 2002-02-13  Keith Seitz  <keiths@redhat.com>
10788
10789         * defs.h (core_addr_to_string_nz): New function.
10790
10791 2002-02-13  Mark Kettenis  <kettenis@gnu.org>
10792
10793         Apply missing bits of 2002-01-15 patch.
10794         * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
10795         (fill_fpregset): Use i387_fill_fsave.
10796
10797 2002-02-12  Keith Seitz  <keiths@redhat.com>
10798
10799         * utils.c (core_addr_to_string): Use phex instead of phex_nz.
10800         (core_addr_to_string_nz): New function.
10801
10802 2002-02-11  Richard Earnshaw  <rearnsha@arm.com>
10803
10804         * arm-linux-nat.c: Really include arm-tdep.h.
10805         * config/arm/tm-linux.h (struct type, struct value): Declare.
10806
10807 2002-02-11  Michael Snyder  <msnyder@redhat.com>
10808
10809         * procfs.c: Include elf-bfd.h (for elfcore_write functions).
10810         (gcore section): Ifdef for Solaris and Unixware only.
10811         (procfs_do_thread_registers): Unixware needs one lwpstatus
10812         per thread (not one prstatus or pstatus).
10813         (procfs_make_note_section): Iterate only over kernel threads (lwps),
10814         not over all gdb threads.  For unixware, call elfcore_write_pstatus
10815         once before iterating over threads.
10816
10817 2002-02-11  Richard Earnshaw  <rearnsha@arm.com>
10818
10819         * arm-tdep.h: New file.
10820         * arm-tdep.c: Include arm-tdep.h.
10821         (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
10822         (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
10823         (arm_print_float_info, arm_register_type, convert_to_extended)
10824         (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
10825         (arm_extract_return_value, arm_register_name): Make static.
10826         (arm_software_single_step): Similarly.  Fix types in declaration.
10827         (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
10828         (arm_store_return_value, arm_store_struct_return): New functions.
10829         (arm_gdbarch_init): Register the above functions.  Also register
10830         call_dummy_start_offset, sizeof_call_dummy_words,
10831         function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
10832         sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
10833         max_register_virtual_size, register_size.  Set up
10834         prologue_cache.saved_regs here, rather than ...
10835         (_initialize_arm_tdep): ... here.
10836         * config/arm/tm-arm.h (struct type, struct value): Delete forward
10837         declarations.
10838         (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
10839         (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
10840         (arm_print_float_info, arm_register_type, convert_to_extended)
10841         (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
10842         (arm_extract_return_value, arm_register_name): Delete declarations.
10843         (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
10844         (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
10845         (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
10846         (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
10847         (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
10848         (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
10849         (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
10850         (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
10851         (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
10852         (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
10853         (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
10854         (arm_get_next_pc): No-longer static -- these are needed by the RDI
10855         interface.
10856         * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
10857         * remote-rdi.c remote-rdp.c: Likewise.
10858         * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
10859         (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
10860         * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
10861         definition.
10862
10863         * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
10864         (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
10865         (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
10866         from non-ARM_ prefixed definitions.
10867         * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
10868         all uses of above.
10869         * remote-rdi.c remote-rdp.c: Likewise.
10870         * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
10871
10872 2002-02-11  Richard Earnshaw  <rearnsha@arm.com>
10873
10874         * arm-tdep.c (arm_frameless_function_invocation)
10875         (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
10876         (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
10877         (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
10878         (arm_pop_frame, arm_get_next_pc): Make static.
10879         (arm_gdbarch_init): Register above in gdbarch structure.
10880         (arm_read_fp): Renamed from arm_target_read_fp.
10881         (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
10882         * config/arm/tm-arm.h (arm_frameless_function_invocation)
10883         (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
10884         (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
10885         (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
10886         (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
10887         (arm_pc_is_thumb_dummy): Delete declarations.
10888         (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
10889         (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
10890         (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
10891         (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
10892
10893 2002-02-10  Daniel Jacobowitz  <drow@mvista.com>
10894
10895         * symtab.c (compare_search_syms): New function.
10896         (sort_search_symbols): New function.
10897         (search_symbols): Sort symbols after searching rather than
10898         before.
10899
10900 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
10901
10902         * NEWS: Linux -> GNU/Linux.
10903
10904 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
10905
10906         * gdbarch.sh: For for level one methods, disallow a definition
10907         when partially multi-arched.  Add comments explaining rationale.
10908         * gdbarch.h: Re-generate.
10909
10910 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
10911
10912         * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
10913         multi-arch partial.
10914
10915 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
10916
10917         * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL.  Exit on bad
10918         field.  Use diff -u.
10919         * gdbarch.c: Re-generate.
10920
10921 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
10922
10923         * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
10924         * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
10925         partial.
10926
10927 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
10928
10929         * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
10930         multi-arch partial.
10931         (PUSH_ARGUMENTS): Switch to using predefault.
10932         * gdbarch.c: Regenerate.
10933
10934 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
10935
10936         * valops.c (PUSH_ARGUMENTS): Delete definition.
10937         * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
10938         partial.  Default to default_push_arguments.
10939         * gdbarch.h, gdbarch.c: Regenerate.
10940
10941 2002-02-09  Andrew Cagney  <ac131313@redhat.com>
10942
10943         * defs.h (throw_exception): Rename return_to_top_level.  Update
10944         comments.
10945         * utils.c (error_stream, internal_verror, quit): Ditto.
10946         * top.c (throw_exception, catcher): Ditto.
10947         * sparclet-rom.c (sparclet_load): Ditto.
10948         * remote.c (interrupt_query, minitelnet): Ditto.
10949         * remote-sds.c (interrupt_query): Ditto.
10950         * remote-mips.c (mips_error, mips_kill): Ditto.
10951         * ocd.c (interrupt_query): Ditto.
10952         * monitor.c (monitor_interrupt_query): Ditto.
10953         * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
10954         * target.h: Update comment.
10955
10956         * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
10957
10958 2002-02-09  Andrew Cagney  <ac131313@redhat.com>
10959
10960         * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
10961         default_double_format.
10962         * gdbarch.h, gdbarch.c: Re-generate.
10963         * findvar.c (floatformat_unknown): Delete variable definition.
10964         * doublest.h (floatformat_unknown): Delete variable declaration.
10965
10966 2002-02-09  Jim Blandy  <jimb@redhat.com>
10967
10968         * stabsread.c (read_type): Add code to parse Sun's syntax for
10969         prototyped function types.
10970
10971 2002-02-09  Andrew Cagney  <ac131313@redhat.com>
10972
10973         * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
10974         (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
10975
10976 2002-02-09  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
10977
10978         * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
10979         _initialize_solib.  Fixes name clash with solib.c:_initialize_solib,
10980         now _initialize_xcoffsolib gets called again and overrides the
10981         commands from solib.c in a native configuration.
10982
10983 2002-02-09  Mark Kettenis  <kettenis@gnu.org>
10984
10985         * doublest.c (store_typed_floating): Don't try to return a value.
10986         Fixes PR gdb/290.
10987
10988 2002-02-08  Jim Blandy  <jimb@redhat.com>
10989
10990         * c-typeprint.c (c_type_print_varspec_suffix): If a function type
10991         is prototyped and has no arguments, print its argument list as
10992         `(void)'.
10993
10994 2002-02-08  Chris Demetriou  <cgd@broadcom.com>
10995
10996         * MAINTAINERS (write-after-approval): Add myself.
10997         (paper-trail): I've escaped!
10998
10999 2002-02-08  Christopher Faylor  <cgf@redhat.com>
11000
11001         * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
11002         changes.
11003         (_initialize_check_for_gdb_ini): Ditto.
11004
11005 2002-02-08  Martin M. Hunt  <hunt@redhat.com>
11006
11007         * win32-nat.c (cygwin_pid_to_str): Fix typo.
11008         xaprintf -> xasprintf.
11009
11010 2002-02-08  Pierre Muller  <muller@ics.u-strasbg.fr>
11011
11012         * win32-nat.c: Remove use of printf and sprintf functions.
11013
11014 2002-02-08  Richard Earnshaw  <rearnsha@arm.com>
11015
11016         * arm-tdep.c (arm_frame_chain_valid): Make static.
11017         (arm_push_arguments): Likewise.
11018         (arm_gdbarch_init): New function.
11019         (_initialize_arm_tdep): Call it.
11020         * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
11021         (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
11022         (FRAME_CHAIN_VALID): Delete.
11023         (arm_frame_chain_valid): Delete declaration.
11024         (PUSH_ARGUMENTS): Delete.
11025         (arm_push_arguments): Delete declaration.
11026         (CALL_DUMMY_P): Delete.
11027
11028 2002-02-08  Andrew Cagney  <ac131313@redhat.com>
11029             Corinna Vinschen  <vinschen@redhat.com>
11030
11031         * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
11032         on builtin float types.
11033
11034 2002-02-08  Daniel Jacobowitz  <drow@mvista.com>
11035
11036         * utils.c: Include <curses.h> before "bfd.h".
11037         * tui/tui-hooks.c: Likewise.
11038         * tui/tui.c: Likewise.
11039         * tui/tuiCommand.c: Likewise.
11040         * tui/tuiData.c: Likewise.
11041         * tui/tuiDataWin.c: Likewise.
11042         * tui/tuiDisassem.c: Likewise.
11043         * tui/tuiGeneralWin.c: Likewise.
11044         * tui/tuiIO.c: Likewise.
11045         * tui/tuiLayout.c: Likewise.
11046         * tui/tuiRegs.c: Likewise.
11047         * tui/tuiSource.c: Likewise.
11048         * tui/tuiSourceWin.c: Likewise.
11049         * tui/tuiStack.c: Likewise.
11050         * tui/tuiWin.c: Likewise.
11051
11052 2002-02-07  Elena Zannoni  <ezannoni@redhat.com>
11053
11054         * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
11055         to include space for pseudoregs as well. Update loops accordingly.
11056         (sh_fp_frame_init_saved_regs): Ditto.
11057         (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
11058
11059 2002-02-07  Andrew Cagney  <ac131313@redhat.com>
11060
11061         * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
11062         Add Richard Earnshaw to Arm maintainers.
11063
11064 2002-02-07  Andrew Cagney  <ac131313@redhat.com>
11065
11066         * defs.h (warning_begin): Delete declaration.
11067
11068         * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
11069         Delete macro.
11070
11071 2002-02-07  Michael Snyder  <msnyder@redhat.com>
11072
11073         * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
11074         Logic bug, remove misplaced else.
11075
11076 2002-02-07  Klee Dienes  <klee@apple.com>
11077
11078         * fork-inferior.c (fork_inferior): Add '!' to the list of
11079         characters that need to be quoted when building a string for the
11080         shell.  Quote '!' specifically with a backslash, since CSH chokes
11081         when trying to evaluate "str!str".
11082
11083 2002-02-06  Nick Clifton  <nickc@cambridge.redhat.com>
11084
11085         * rdi-share/host.h: Only provide a typedef for bool if it is not
11086         defined.
11087
11088 2002-02-04  Michael Snyder  <msnyder@redhat.com>
11089
11090         * breakpoint.h (enum bptype): Add new overlay event bp type.
11091         (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
11092
11093         * breakpoint.c (create_internal_breakpoint): New function.
11094         (internal_breakpoint_number): Moved into create_internal_breakpoint.
11095         (create_longjmp_breakpoint): Use create_internal_breakpoint.
11096         (create_thread_event_breakpoint): Ditto.
11097         (create_solib_event_breakpoint): Ditto.
11098         (create_overlay_event_breakpoint): New function.
11099         (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
11100         (update_breakpoints_after_exec): Delete and re-initialize
11101         overlay event breakpoints after an exec.  Add FIXME comment
11102         about longjmp breakpoint.
11103         (print_it_typical): Ignore overlay event breakpoints.
11104         (print_one_breakpoint): Ditto.
11105         (mention): Ditto.
11106         (bpstat_what): Do not stop for overlay event breakpoints.
11107         (delete_breakpoint): Don't delete overlay event breakpoints.
11108         (breakpoint_re_set_one): Delete the overlay event breakpoint.
11109         (breakpoint_re_set): Re-create overlay event breakpoint.
11110
11111         * symfile.c (overlay_auto_command): Enable overlay breakpoints.
11112         (overlay_manual_command): Disable overlay breakpoints.
11113         (overlay_off_command): Disable overlay breakpoints.
11114
11115 2002-02-06  Richard Earnshaw  <rearnsha@arm.com>
11116
11117         * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
11118         (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
11119         to here from config/tm-arm.h.
11120         (coff_sym_is_thumb): Make static.
11121         (arm_elf_make_msymbol_special): New function.
11122         (arm_coff_make_msymbol_special): New function.
11123         * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
11124         (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
11125         (coff_sym_is_thumb): Delete declaration.
11126         (arm_elf_make_msymbol_special): Declare.
11127         (arm_coff_make_msymbol_special): Declare.
11128         (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
11129         (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
11130
11131 2002-02-06  Richard Earnshaw  <rearnsha@arm.com>
11132
11133         * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
11134
11135 2002-02-06  Richard Earnshaw  <rearnsha@arm.com>
11136
11137         * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
11138         * gdbarch.c gdbarch.h: Regenerate.
11139         * arch-utils.c (default_print_float_info): New function.
11140         * arch-utils.h (default_print_float_info): Prototype it.
11141         * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
11142         * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
11143         (PRINT_FLOAT_INFO): Document it.
11144
11145         * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
11146         * config/arm/tm-arm.h (FLOAT_INFO): Delete.
11147         (PRINT_FLOAT_INFO): Define.
11148
11149 2002-02-06  Pierre Muller  <muller@ics.u-strasbg.fr>
11150
11151         * win32-nat.c (_initialize_check_for_gdb_ini):
11152         Add typecast to sprintf argument to suppress a warning.
11153
11154 2002-02-05  Pierre Muller  <muller@ics.u-strasbg.fr>
11155
11156         * win32-nat.c (last_sig): Changed type of variable to target_signal,
11157         to allow easier handling of pass state.
11158         (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
11159         that gives exception name and address.
11160         (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
11161         and set last_sig value to ourstatus->value.sig. Some missing
11162         exceptions added.
11163         (child_continue): Correctly report continue_status.
11164         (get_child_debug_event,do_initial_child_stuff): Set last_sig to
11165         TARGET_SIGNAL_0 (new default value).
11166         (child_resume): consider sig argument passed to decide if
11167         the exception should be passed to debuggee or not.
11168
11169 2002-02-05  Michael Snyder  <msnyder@redhat.com>
11170
11171         * regcache.c (fetch_register): Call target_fetch_register
11172         only if we don't call FETCH_PSEUDO_REGISTER.
11173         (store_register): Call target_store_register only if we
11174         don't call STORE_PSEUDO_REGISTER.
11175
11176 2002-02-05  Elena Zannoni  <ezannoni@redhat.com>
11177
11178         * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
11179         ELF_MAKE_MSYMBOL_SPECIAL.
11180         * gdbarch.c, gdbarch.h: Regenerate.
11181         * arch-utils.c (default_make_msymbol_special): New function.
11182         * arch-utils.h (default_make_msymbol_special): Export.
11183         * elfread.c (elf_symtab_read): Compile use of
11184         ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
11185         multiarched.
11186         * coffread.c (coff_symtab_read): Ditto, for
11187         COFF_MAKE_MSYMBOL_SPECIAL.
11188
11189 2002-02-05  Jim Blandy  <jimb@redhat.com>
11190
11191         * solib-svr4.c (svr4_truncate_ptr): New function.
11192         (svr4_relocate_section_addresses): Do the address arithmetic with
11193         the appropriate truncation for target addresses, even when
11194         CORE_ADDR is larger than a target address.
11195
11196 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
11197
11198         * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
11199         to (int *).
11200
11201 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
11202
11203         * gdbserver/linux-low.c (kill_inferior): Remove commented out
11204         code.
11205
11206 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
11207
11208         * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
11209
11210 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
11211
11212         * gdbserver/linux-low.c: Remove unused include files.
11213
11214 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
11215
11216         * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
11217         (read_inferior_memory): Use it.
11218         (write_inferior_memory): Likewise.
11219
11220 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
11221
11222         * gdbserver/linux-low.c (create_inferior): Call strerror instead of
11223         grubbing through sys_errlist.
11224
11225 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
11226
11227         * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
11228
11229 2002-02-04  Pierre Muller  <muller@ics.u-strasbg.fr>
11230         * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
11231
11232 2002-02-04  Andrew Cagney  <ac131313@redhat.com>
11233
11234         * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
11235         (do_sfunc, set_cmd_sfunc): New functions.
11236
11237         * command.h (struct cmd_list_element): Add field func.
11238         * cli/cli-decode.h (struct cmd_list_element): Ditto.
11239         * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
11240         * cli/cli-decode.h: Ditto.
11241
11242         * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
11243         (help_all, help_cmd_list): Ditto.
11244         (find_cmd, complete_on_cmdlist): Ditto.
11245         * top.c (execute_command): Ditto.
11246
11247         * cli/cli-setshow.c (do_setshow_command): Call func instead of
11248         function.sfunc.
11249
11250         * infcmd.c (notice_args_read): Fix function signature.
11251
11252         * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
11253         * cli/cli-decode.c (add_set_cmd): Ditto.
11254         * utils.c (initialize_utils): Ditto.
11255         * maint.c (_initialize_maint_cmds): Ditto.
11256         * infrun.c (_initialize_infrun): Ditto.
11257         * demangle.c (_initialize_demangler): Ditto.
11258         * remote.c (add_packet_config_cmd): Ditto.
11259         * mips-tdep.c (_initialize_mips_tdep): Ditto.
11260         * cris-tdep.c (_initialize_cris_tdep): Ditto.
11261         * proc-api.c (_initialize_proc_api): Ditto.
11262         * kod.c (_initialize_kod): Ditto.
11263         * valprint.c (_initialize_valprint): Ditto.
11264         * top.c (init_main): Ditto.
11265         * infcmd.c (_initialize_infcmd): Ditto.
11266         * corefile.c (_initialize_core): Ditto.
11267         * arm-tdep.c (_initialize_arm_tdep): Ditto.
11268         * arch-utils.c (initialize_current_architecture): Ditto.
11269         (_initialize_gdbarch_utils): Ditto.
11270         * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
11271
11272         * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
11273         * wince.c (_initialize_inftarg): Ditto.
11274         * symfile.c (_initialize_symfile): Ditto.
11275         * mips-tdep.c (_initialize_mips_tdep): Ditto.
11276         * language.c (_initialize_language): Ditto.
11277         * arc-tdep.c (_initialize_arc_tdep): Ditto.
11278
11279 2002-02-04  Michael Snyder  <msnyder@redhat.com>
11280
11281         * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
11282
11283 2002-02-04  Daniel Jacobowitz  <drow@mvista.com>
11284
11285         * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
11286         Add rules for building the register data files.
11287
11288 2002-02-04  Daniel Jacobowitz  <drow@mvista.com>
11289
11290         * regformats/regdat.sh: Add braces to the definition of
11291         expedite_regs_${arch}.
11292
11293 2002-02-04  Daniel Jacobowitz  <drow@mvista.com>
11294
11295         * regformats/regdef.h (struct reg): Add comment describing the
11296         requirements for offset and size fields.
11297
11298 2002-02-04  Andreas Schwab  <schwab@suse.de>
11299
11300         * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
11301         * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
11302
11303 2002-02-04  Richard Earnshaw  <rearnsha@arm.com>
11304
11305         * gdbarch.sh (copyright): Update years in generated header.
11306         (SMASH_TEXT_ADDRESS): Add rule.
11307         * gdbarch.h, gdbarch.c: Re-generate.
11308         * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
11309         * dbxread.c: Likewise.
11310         * dwarfread.c: Likewise.
11311         * elfread.c: Likewise.
11312         * somread.c: Likewise.
11313
11314         * arm-tdep.c (arm_smash_text_address): New function.
11315         * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
11316
11317 2002-02-04  Pierre Muller  <muller@ics.u-strasbg.fr>
11318
11319         Add support for hardware watchpoints on win32 native.
11320         * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
11321         CONTEXT_DEBUG_REGISTERS.
11322         (dr variable): New variable. Static array containing a local copy
11323         of debug registers.
11324         (debug_registers_changed): New variable.  Reflects when debug registers
11325         are changed and need to be written to inferior.
11326         (debug_registers_used): New variable. Reflects when any debug register
11327         was set, used when new threads are created.
11328         (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
11329         i386-nat code.
11330         (thread_rec): Set dr array if id is the thread of current_event .
11331         (child_continue, child_resume): Change the debug registers for all
11332         threads if debug_registers_changed.
11333         (child_add_thread): Change the debug registers if debug_registers_used.
11334         * config/i386/cygwin.mh: Add use of i386-nat.o file.
11335         Link nm.h to new nm-cygwin.h file.
11336         + config/i386/nm-cygwin.h: New file. Contains the macros used for use
11337         of hardware registers.
11338
11339 2002-02-03  Andrew Cagney  <ac131313@redhat.com>
11340
11341         * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
11342         Restore behavour broken by 2002-01-20 Andrew Cagney
11343         <ac131313@redhat.com> IEEE_FLOAT removal.
11344
11345 2002-02-03  Daniel Jacobowitz  <drow@mvista.com>
11346
11347         * c-valprint.c (c_val_print): Pass a proper valaddr to
11348         cp_print_class_method.
11349         * valops.c (search_struct_method): If there is only one method
11350         and args is NULL, return that method.
11351
11352 2002-02-03  Daniel Jacobowitz  <drow@mvista.com>
11353
11354         * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
11355         accessing tag_name directly.
11356
11357 2002-02-03  Daniel Jacobowitz  <drow@mvista.com>
11358
11359         * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
11360         of accessing tag_name directly.
11361
11362 2002-02-03  Daniel Jacobowitz  <drow@mvista.com>
11363
11364         PR gdb/280
11365         * gdbtypes.c (replace_type): New function.
11366         * gdbtypes.h (replace_type): Add prototype.
11367         * stabsread.c (read_type): Use replace_type.
11368
11369 2002-02-03  Richard Earnshaw  <rearnsha@arm.com>
11370
11371         * Makefile.in (memattr.o): Add missing dependencies rule.
11372
11373 2002-02-03  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
11374
11375         * breakpoint.c (break_at_finish_command): Really export.
11376         (break_at_finish_at_depth_command): Ditto.
11377         (tbreak_at_finish_command): Ditto.
11378         * hppa-tdep.c: Include completer.h.
11379         * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
11380         (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
11381
11382 2002-02-01  Andrew Cagney  <ac131313@redhat.com>
11383
11384         * utils.c (do_write): New function.
11385         (error_stream): Rewrite combining the code from error_begin and
11386         verror.
11387         (verror): Rewrite using error_stream.
11388         (error_begin): Delete function.
11389
11390 2002-02-01  Andrew Cagney  <ac131313@redhat.com>
11391
11392         * utils.c (error_begin): Make static.
11393         * defs.h (error_begin): Delete declaration.
11394
11395         * linespec.c (cplusplus_error): Replace cplusplus_hint.
11396         (decode_line_1): Use cplusplus_error instead of error_begin,
11397         cplusplus_hint and return_to_top_level.
11398         * coffread.c (coff_symfile_read): Use error instead of error_begin
11399         and return_to_top_level.
11400         * infrun.c (default_skip_permanent_breakpoint): Ditto.
11401
11402 2002-02-01  Andrew Cagney  <ac131313@redhat.com>
11403
11404         * language.h (type_error, range_error): Make string parameter
11405         constant.
11406         * language.c (warning_pre_print): Delete extern declaration.
11407         * dwarfread.c (warning_pre_print): Ditto.
11408         * language.c (type_error, range_error): Rewrite to use verror and
11409         vwarning instead of warning_begin.
11410
11411 2002-02-01  Michael Snyder  <msnyder@redhat.com>
11412
11413         * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
11414         (set_ignore_count): Move misplaced comment back where it belongs.
11415
11416 2002-02-01  Andrew Cagney  <ac131313@redhat.com>
11417
11418         * command.h (NO_FUNCTION): Delete macro.
11419         * cli/cli-decode.h (NO_FUNCTION): Ditto.
11420         * top.c (execute_command): Replace NO_FUNCTION with NULL.
11421         * tracepoint.c (_initialize_tracepoint): Ditto.
11422         * cli/cli-decode.c (add_set_cmd): Ditto.
11423         * cli/cli-cmds.c (init_cli_cmds): Ditto.
11424
11425 2002-02-01  Daniel Jacobowitz  <drow@mvista.com>
11426
11427         * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
11428         Update ``this'' pointer when calling virtual functions.
11429
11430 2002-02-01  Michael Snyder  <msnyder@redhat.com>
11431
11432         * breakpoint.c (create_temp_exception_breakpoint): Delete.
11433         * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
11434
11435 2002-02-01  Daniel Jacobowitz  <drow@mvista.com>
11436
11437         * regformats/reg-arm.dat: New file.
11438         * regformats/reg-i386.dat: New file.
11439         * regformats/reg-ia64.dat: New file.
11440         * regformats/reg-m68k.dat: New file.
11441         * regformats/reg-mips.dat: New file.
11442         * regformats/reg-ppc.dat: New file.
11443         * regformats/reg-sh.dat: New file.
11444         * regformats/regdef.h: New file.
11445         * regformats/regdat.sh: New file.
11446
11447 2002-02-01  Richard Earnshaw  <reanrsha@arm.com>
11448
11449         * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
11450         (arm_frame_args_address, arm_frame_locals_address): New functions.
11451         (arm_frame_num_args): New function.
11452         * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
11453         (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
11454         (FRMA_NUM_ARGS): Call arm_frame_num_args.
11455
11456 2002-01-31  Michael Snyder  <msnyder@redhat.com>
11457
11458         * breakpoint.c (break_at_finish_command): Export.
11459         (break_at_finish_at_depth_command): Export.
11460         (tbreak_at_finish_command): Export.
11461         (_initialize_breakpoint): Delete "xbreak" and "txbreak" commands.
11462         * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
11463         "txbreak" commands, which are HPPA specific.
11464
11465         * printcmd.c (disassemble_command): Remove an ancient
11466         artifact of an old merge.
11467
11468         * symfile.h (enum overlay_debugging_state):
11469         Define enum constant values for overlay mode.
11470         * symfile.c (overlay_debugging): Use enums instead of literals.
11471         (overlay_is_mapped, overlay_auto_command,
11472         overlay_manual_command): Ditto.
11473
11474         * breakpoint.c (insert_breakpoints, remove_breakpoint,
11475         breakpoint_here_p, breakpoint_inserted_here_p,
11476         breakpoint_thread_match, bpstat_stop_status,
11477         describe_other_breakpoints, check_duplicates, clear_command):
11478         Coding standard fixes.
11479
11480         * target.c (target_xfer_memory): Add spaces, coding standard.
11481         (do_xfer_memory): Add missing line to trust-readonly
11482         code: check bfd SEC_READONLY flag for section.
11483
11484 2002-01-31  Andrew Cagney  <ac131313@redhat.com>
11485
11486         * PROBLEMS: Fix typo, 5.1->5.1.1.
11487
11488 2002-01-30  Daniel Jacobowitz  <drow@mvista.com>
11489
11490         * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
11491         data symbols, since we search based on textlow and texthigh.
11492         (find_pc_sect_symtab): Likewise.
11493
11494 2002-01-30  Andrew Cagney  <ac131313@redhat.com>
11495
11496         * defs.h (vwarning): Declare.
11497         * utils.c (vwarning): New function.
11498         (warning): Call vwarning.
11499         (warning_begin): Delete function.
11500
11501         * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
11502         the warning message.
11503         * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
11504         warning_begin.
11505
11506 2002-01-30  Michael Snyder  <msnyder@redhat.com>
11507
11508         * NEWS: Mention "set trust-readonly-sections" command.
11509         Mention generate-core-file command.
11510
11511 2002-01-15  Michael Snyder  <msnyder@redhat.com>
11512
11513         * target.c: New command, "set trust-readonly-sections on".
11514         (do_xfer_memory): Honor the suggestion to trust readonly sections
11515         by reading them from the object file instead of from the target.
11516         (initialize_targets): Register command "set trust-readonly-sections".
11517
11518 2002-01-29  Andrew Cagney  <ac131313@redhat.com>
11519
11520         * parse.c (target_map_name_to_register): Simplify, search regs and
11521         pseudo-regs using a single loop.
11522
11523 2002-01-30  Andrew Cagney  <ac131313@redhat.com>
11524
11525         * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
11526
11527 2002-01-15  Rodney Brown  <rbrown64@csc.com.au>
11528
11529         * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
11530         * config/i386/i386v42mp.mh: Add i387-nat.o .
11531         * i386v4-nat.c: Include i387-nat.h.
11532         (supply_fpregset): Use i387_supply_fsave.
11533         (fill_fpregset): Use i387_fill_fsave.
11534
11535 2002-01-30  Richard Earnshaw  <rearnsha@arm.com>
11536
11537         * arm-tdep.c (arm_call_dummy_words): Define.
11538         * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
11539         * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
11540         (CALL_DUMMY_WORDS): Define.
11541         (arm_call_dummy_words): Declare.
11542         * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
11543         (arm_linux_call_dummy_words): Declare.
11544
11545 2002-01-30  Andreas Schwab  <schwab@suse.de>
11546
11547         * m68klinux-nat.c: Fix last change to use regcache_collect
11548         instead of referencing registers[] directly.
11549
11550 2002-01-29  Andrew Cagney  <ac131313@redhat.com>
11551
11552         * parse.c (target_map_name_to_register): Delete code wrapped in
11553         #ifdef REGISTER_NAME_ALIAS_HOOK.
11554
11555 2002-01-28  Michael Snyder  <msnyder@redhat.com>
11556
11557         * regcache.c (legacy_read_register_gen): Need to be able to
11558         read pseudo-register as well as real register.
11559         (legacy_write_register_gen): Ditto.
11560
11561 2002-01-28  Andrew Cagney  <ac131313@redhat.com>
11562
11563         * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
11564         * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
11565         * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
11566         * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
11567         * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
11568         * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
11569         * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
11570         * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
11571         * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
11572         * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
11573         * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
11574         * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
11575         * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
11576         * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
11577         * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
11578         * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
11579         * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
11580         * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
11581         * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
11582         * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
11583
11584 2002-01-28  Andrew Cagney  <ac131313@redhat.com>
11585
11586         * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
11587         (target_byte_order): Initialize to BFD_ENDIAN_BIG.
11588         (initialize_current_architecture): Update target_byte_order using
11589         information from BFD.
11590         * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
11591         * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
11592
11593 2002-01-28  Andrew Cagney  <ac131313@redhat.com>
11594
11595         * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
11596         * vax-tdep.c (INVALID_FLOAT): To here.  Document why it is broken.
11597
11598         * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
11599         #ifdef INVALID_FLOAT.
11600         * infcmd.c (do_registers_info): Ditto.
11601         * values.c (unpack_double): Ditto.  Add comment.
11602
11603         * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
11604         already commented out.
11605
11606 2002-01-26  Andreas Schwab  <schwab@suse.de>
11607
11608         * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
11609         * m68klinux-nat.c: Update ptrace interface for fetching/storing
11610         registers and add support for PTRACE_GETREGS.
11611
11612 2002-01-24  Andrew Cagney  <ac131313@redhat.com>
11613
11614         GDB 5.1.1 released from 5.1 branch.
11615         * NEWS: Add 5.1.1 news.
11616         * README: Sync with 5.1 branch.
11617
11618 2002-01-23  Fred Fish  <fnf@redhat.com>
11619
11620         * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
11621         stabstring on initial malloc.  Reallocing will copy it for us,
11622         if necessary.
11623
11624 2002-01-23  Elena Zannoni  <ezannoni@redhat.com>
11625
11626         * Makefile.in (hpread_h): Delete.
11627         (HFILES_NO_SRCDIR): Remove hpread.h.
11628         (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
11629         (hpread.o): Update dependencies.
11630         (hp-psymtab-read.o, hp-symtab-read.o): Remove.
11631
11632         * hp-psymtab-read.c: Remove file.
11633         * hp-symtab-read.c: Remove file.
11634         * hpread.h: Remove file.
11635
11636         * hpread.c: Merge all contents of hp-psymtab-read.c,
11637         hp-symtab-read.c and hpread.h into this file, as it was prior to
11638         January 1999.
11639
11640         * config/pa/hpux11w.mh, config/pa/hpux11.mh,
11641         config/pa/hpux1020.mh, config/pa/hppaosf.mh,
11642         config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
11643         Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
11644
11645 2002-01-23  Elena Zannoni  <ezannoni@redhat.com>
11646
11647         * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
11648         fill_gregset): Call gdbarch_tdep() just once, assign result to
11649         variable and use that, instead of calling the function several
11650         times.
11651
11652 2002-01-24  Alexandre Oliva  <aoliva@redhat.com>
11653
11654         * configure.host: Accept sparcv9 as alias for sparc64.
11655         * configure.tgt: Likewise.
11656
11657 2002-01-22  Kevin Buettner  <kevinb@redhat.com>
11658
11659         * solib-aix5.c (build_so_list_from_mapfile)
11660         (aix5_relocate_main_executable): Fix xcalloc() calls so order of
11661         arguments is not reversed.
11662         * solib-sunos.c (sunos_relocate_main_executable): Likewise.
11663         * solib-svr4.c (svr4_relocate_main_executable): Likewise.
11664
11665 2002-01-22  Elena Zannoni  <ezannoni@redhat.com>
11666
11667         * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
11668         modified version of obsolete sh_fetch_pseudo_register.
11669         (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
11670         (sh4_register_read): New function.
11671         (sh_pseudo_register_write): New function. Renamed and modified
11672         version of obsolete sh_store_pseudo_register.
11673         (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
11674         (sh4_register_write): New function.
11675         (sh_gdbarch_init): Remove setting of gdbarch function
11676         fetch_pseudo_register and store_pseudo_register. Remove setting of
11677         register_convert_to_raw, register_convert_to_virtual,
11678         register_convertible.
11679         (sh_sh4_register_convertible): Delete. No longer needed. All is
11680         taken care by architecture specific functions
11681         register_read/register_write.
11682         (sh_sh4_register_convert_to_virtual): Make static.
11683         (sh_sh4_register_convert_to_raw): Ditto.
11684
11685 2002-01-22  Andrew Cagney  <ac131313@redhat.com>
11686
11687         * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
11688         (floatformat_is_nan, floatformat_mantissa): Ditto.
11689
11690         * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
11691         for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
11692         builtin_type_ieee_double_little,
11693         builtin_type_ieee_double_littlebyte_bigword,
11694         builtin_type_m68881_ext, builtin_type_i960_ext,
11695         builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
11696         builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
11697         builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
11698         builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
11699
11700 2002-01-22  Corinna Vinschen  <vinschen@redhat.com>
11701
11702         * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
11703         parameter.  Set frameless flag if it exists and depended of
11704         whether the scanned function is frameless or not.
11705         (xstormy16_skip_prologue): If function is frameless, return
11706         result of xstormy16_scan_prologue().
11707         (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
11708         call.
11709
11710 2002-01-21  Elena Zannoni  <ezannoni@redhat.com>
11711
11712         * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
11713         sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
11714         sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
11715         sh_sh4_register_byte, sh_sh4_register_raw_size,
11716         sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
11717         sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
11718         sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
11719         sh_store_pseudo_register, sh_do_pseudo_register): Call
11720         gdbarch_tdep() just once, assign result to variable and use that,
11721         instead of calling the function several times.
11722
11723 2002-01-20  Mark Kettenis  <kettenis@gnu.org>
11724
11725         * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
11726         macros instead of LAST_FPU_CTRL_REGNUM.
11727         (store_register): Likewise.
11728
11729 2002-01-21  Jim Blandy  <jimb@redhat.com>
11730
11731         * infcmd.c (run_command): Check that the `exec' target layer's BFD
11732         is up-to-date before running the program, not just when a program
11733         exits.
11734
11735 2002-01-21  Fred Fish  <fnf@redhat.com>
11736
11737         * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
11738         when we have found all instructions we are looking for.
11739
11740 2002-01-21  Richard Earnshaw  <rearnsha@arm.com>
11741
11742         * arm-tdep.c (arm_register_name): New function.
11743         (arm_registers_names): Make static.
11744         * config/arm/tm-arm.h (arm_register_names): Delete declaration.
11745         (arm_register_name): Declare.
11746         (REGISTER_NAME): Use it.
11747
11748 2002-01-21  Richard Earnshaw  <rearnsha@arm.com>
11749             Kevin Buettner  <kevinb@redhat.com>
11750
11751         Convert arm targets to new FRAME interface.
11752         * arm-tdep.c (struct frame_extra_info): Remove fsr.
11753         (arm_frame_find_save_regs): Delete.
11754         (arm_frame_init_saved_regs): New.
11755         (arm_init_extra_frame_info): Alloacte saved_regs as required.
11756         Allocate extra_info as required.  Convert all uses of fsr.regs
11757         to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
11758         to use extra_info.
11759         (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
11760         (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
11761         (check_prologue_cache, save_prologue_cache): Likewise.
11762         (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
11763         * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
11764         (FRAME_FIND_SAVED_REGS): Delete.
11765         (arm_frame_find_saved_regs): Delete prototype.
11766         (arm_frame_init_saved_regs): New prototype.
11767         (FRAME_INIT_SAVED_REGS): Define.
11768
11769 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
11770
11771         * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
11772
11773 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
11774
11775         From Jeff Law <law@redhat.com>:
11776         * infttrace.c: Include <sys/pstat.h>.
11777         (child_pid_to_exec_file): Revamp.  Use pstat call to get the
11778         exec file if the ttrace equivalent fails.
11779
11780 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
11781
11782         * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
11783         (closeLogFile): Ditto.
11784
11785 2002-01-20  Michael Chastain  <mec@shout.net>
11786
11787         * top.c (print_gdb_version): Bump copyright year to 2002.
11788
11789 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
11790
11791         * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
11792         Zannoni and Eli Zaretskii.
11793
11794 2002-01-20  Daniel Jacobowitz  <drow@mvista.com>
11795
11796         * buildsym.c: Update copyright years.
11797         * c-typeprint.c: Likewise.
11798         * dwarf2read.c: Likewise.
11799         * f-typeprint.c: Likewise.
11800         * gdbtypes.c: Likewise.
11801         * gdbtypes.h: Likewise.
11802         * hp-symtab-read.c: Likewise.
11803         * hpread.c: Likewise.
11804         * mdebugread.c: Likewise.
11805         * p-typeprint.c: Likewise.
11806
11807 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
11808
11809         * remote-sim.c (gdbsim_open): Simplify code testing the macro
11810         TARGET_BYTE_ORDER_SELECTABLE_P.  Assume the target is always
11811         byte-order selectable.
11812         * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
11813         * arch-utils.c: Ditto.
11814         (set_endian): Ditto.
11815         (set_endian_from_file): Ditto.
11816         * gdbserver/low-sim.c (create_inferior): Ditto.
11817         * gdbarch.sh: Ditto.
11818         * gdbarch.h: Re-generate.
11819         * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
11820         * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
11821         * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
11822         * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
11823         * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
11824         * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
11825         * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
11826         * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
11827         macro definition.
11828         * config/mips/tm-wince.h: Remove #undef of macro
11829         TARGET_BYTE_ORDER_SELECTABLE.
11830         * config/sh/tm-wince.h: Ditto.
11831
11832 2002-01-20  Daniel Jacobowitz  <drow@mvista.com>
11833
11834         * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
11835         member function fields.  Add accessor macro
11836         TYPE_FN_FIELD_ARTIFICIAL.
11837         * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
11838         * c-typeprint.c (c_type_print_base): Skip artificial member
11839         functions.
11840
11841 2002-01-20  Daniel Jacobowitz  <drow@mvista.com>
11842
11843         * f-typeprint.c: Delete unused function f_type_print_args.
11844         * p-typeprint.c: Delete unused function pascal_type_print_args.
11845
11846 2002-01-20  Daniel Jacobowitz  <drow@mvista.com>
11847
11848         * gdbtypes.h (struct type): Fix whitespace.  Remove obsolete
11849         comment.  Add ``artificial'' to ``union field_location''.
11850
11851         * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
11852
11853         * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
11854         * mdebugread.c (parse_symbol): Likewise.
11855         * stabsread.c (define_symbol): Likewise.
11856         * hp-symtab-read.c (hpread_function_type): Likewise, instead of
11857         initializing TYPE_FIELD_BITPOS to n (obsolete).
11858         (hpread_doc_function_type): Likewise.
11859         * hpread.c (hpread_function_type): Likewise.
11860
11861 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
11862
11863         * configure.in (host_makefile_frag): Only require a host makefile
11864         fragment when a native build.
11865         * configure: Re-generate.
11866
11867 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
11868
11869         * doublest.h (floatformat_from_type): Declare.
11870         * doublest.c (floatformat_from_type): New function.
11871         (convert_typed_floating): Use.
11872
11873         * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
11874         call to function floatformat_from_type.
11875
11876         * gdbarch.sh (IEEE_FLOAT): Delete.
11877         * gdbarch.h, gdbarch.c: Re-generate.
11878         * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
11879         * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
11880         * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
11881         * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
11882         * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
11883         * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
11884         * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
11885         * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
11886         * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
11887         * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
11888         * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
11889         * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
11890
11891         * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
11892         * x86-64-tdep.c (i386_gdbarch_init): Ditto.
11893         * sparc-tdep.c (sparc_gdbarch_init): Ditto.
11894         * sh-tdep.c (sh_gdbarch_init): Ditto.
11895         * mips-tdep.c (mips_gdbarch_init): Ditto.
11896         * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
11897         * cris-tdep.c (cris_gdbarch_init): Ditto.
11898
11899 2002-01-20  Jiri Smid  <smid@suse.cz>
11900
11901         * configure.host, configure.tgt: Support x86-64.
11902         * NEWS: Note new target x86-64.
11903
11904         * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
11905         * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
11906         * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
11907         * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
11908         x86-64-linux-nat.o): Fix dependencies.
11909
11910 2002-01-19  Andrew Cagney  <ac131313@redhat.com>
11911
11912         * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
11913         * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
11914         * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
11915         * config/sparc/xm-sun4os4.h: Delete file.
11916         * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
11917
11918 2002-01-19  Andrew Cagney  <ac131313@redhat.com>
11919
11920         * config/sparc/sparclynx.mh (XM_FILE): Delete.
11921         * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
11922         * config/m68k/m68klynx.mh (XM_FILE): Delete.
11923         * config/i386/i386lynx.mh (XM_FILE): Delete.
11924         * config/rs6000/xm-rs6000ly.h: Delete file.
11925         * config/sparc/xm-sparclynx.h: Delete file.
11926         * config/m68k/xm-m68klynx.h: Delete file.
11927         * config/i386/xm-i386lynx.h: Delete file.
11928         * config/xm-lynx.h: Delete file.
11929         * config/djgpp/fnchange.lst: Update.
11930
11931 2002-01-19  Jason Thorpe  <thorpej@wasabisystems.com>
11932
11933         * alpha-tdep.c (alpha_register_byte): New function.
11934         (alpha_register_raw_size): Ditto.
11935         (alpha_register_virtual_size): Ditto.
11936         (alpha_skip_prologue_internal): Renamed from
11937         alpha_skip_prologue.
11938         (alpha_skip_prologue): New version that calls
11939         alpha_skip_prologue_internal.
11940         (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
11941         * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
11942         second argument from alpha_skip_prologue.
11943         (REGISTER_BYTE): Use alpha_register_byte.
11944         (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
11945         (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
11946         (FRAMELESS_FUNCTION_INVOCATION): Use
11947         generic_frameless_function_invocation_not.
11948         (FRAME_NUM_ARGS): Use frame_num_args_unknown.
11949         (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
11950
11951 2002-01-19  Andrew Cagney  <ac131313@redhat.com>
11952
11953         * config/mips/xm-news-mips.h: Delete file.
11954         * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
11955
11956         * config/m88k/xm-m88k.h: Delete file.
11957         * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
11958         * config/m88k/xm-delta88v4.h: Ditto.
11959         * config/m88k/xm-delta88.h: Ditto.
11960
11961         * config/alpha/xm-fbsd.h: Delete file.
11962         * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
11963
11964         * config/sparc/xm-sparc.h: Delete file.
11965         * Makefile.in (xm-sun4os4.h): Delete dependency.
11966         * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
11967         * config/sparc/xm-sun4os4.h: Ditto.
11968         * config/sparc/xm-linux.h: Ditto.
11969
11970         * config/i386/xm-windows.h: Delete file.
11971
11972 2002-01-19  Andrew Cagney  <ac131313@redhat.com>
11973
11974         * utils.c: Include <sys/param.h> for MAXPATHLEN.
11975         (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
11976
11977 2002-01-19  Jason Thorpe  <thorpej@wasabisystems.com>
11978
11979         * alpha-tdep.c (alpha_call_dummy_words): New.
11980         * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
11981         (CALL_DUMMY_P): Define.
11982         (CALL_DUMMY_WORDS): Define.
11983         (SIZEOF_CALL_DUMMY_WORDS): Define.
11984
11985 2002-01-19  Per Bothner  <per@bothner.com>
11986
11987         * gnu-v3-abi.c (gnuv3_rtti_type):  Guard that vtable_symbol_name
11988         isn't NULL, which can happen with some gcj-3.x-produced code.
11989
11990 2002-01-19  Jason Thorpe  <thorpej@wasabisystems.com>
11991
11992         * alpha-tdep.c (alpha_register_virtual_type): New function.
11993         (alpha_init_frame_pc_first): Ditto.
11994         (alpha_fix_call_dummy): Ditto.
11995         (alpha_store_struct_return): Ditto.
11996         (alpha_extract_struct_value_address): Ditto.
11997         * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
11998         alpha_register_virtual_type.
11999         (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
12000         (EXTRACT_STRUCT_VALUE_ADDRESS): Use
12001         alpha_extract_struct_value_address.
12002         (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
12003         (INIT_FRAME_PC): Use init_frame_pc_noop.
12004         (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
12005
12006 2002-01-19  Mark Kettenis  <kettenis@gnu.org>
12007
12008         * i386gnu-nat.c: Include "i386-tdep.h".
12009         (fetch_fpregs): Simplify code dealing with uninitialized floating
12010         point states such that it doesn't require FP7_REGNUM.
12011
12012 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
12013
12014         * alpha-tdep.c (frame_extra_info): New.
12015         (alpha_find_saved_regs): Make static.  Use
12016         frame->extra_info.
12017         (alpha_frame_init_saved_regs): New function.
12018         (alpha_frame_saved_pc): Use frame->extra_info.
12019         (temp_saved_regs): Don't declare as struct frame_saved_regs.
12020         (heuristic_proc_desc): Adjust for temp_saved_regs changes.
12021         (init_extra_frame_info): Rename to...
12022         (alpha_init_extra_frame_info): ...this.  Use frame->extra_info.
12023         (alpha_print_extra_frame_info): New function.
12024         (alpha_frame_locals_address): Ditto.
12025         (alpha_frame_args_address): Ditto.
12026         (alpha_pop_frame): Use frame->extra_info.
12027         * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
12028         alpha_frame_args_address.
12029         (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
12030         (alpha_find_saved_regs): Remove prototype.
12031         (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
12032         (EXTRA_FRAME_INFO): Remove.
12033         (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
12034         (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
12035
12036 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
12037
12038         * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
12039         (alpha_cannot_fetch_register): Ditto.
12040         (alpha_cannot_store_register): Ditto.
12041         (alpha_register_convertible): Ditto.
12042         (alpha_use_struct_convention): Ditto.
12043         * config/alpha/tm-alpha.h: Update copyright years.
12044         (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
12045         (INNER_THAN): Use core_addr_lessthan.
12046         (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
12047         (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
12048         (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
12049         (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
12050         (FRAME_CHAIN): Remove unnecessary cast.
12051
12052 2002-01-18  Andrew Cagney  <ac131313@redhat.com>
12053
12054         * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
12055         obsolete.
12056
12057 2002-01-18  Andrew Cagney  <ac131313@redhat.com>
12058
12059         * infptrace.c: Remove ATTRIBUTE_UNUSED.  Update copyright.
12060         * monitor.c, remote-array.c, remote-bug.c: Ditto.
12061         * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
12062         * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
12063         * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
12064         * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
12065         * x86-64-linux-nat.c: Ditto.
12066
12067 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
12068
12069         * alpha-tdep.c (alpha_register_name): New function.
12070         * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
12071         (REGISTER_NAME): Define.
12072
12073 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
12074
12075         * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
12076
12077 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
12078
12079         * alpha-tdep.c: Update copyright years.
12080         (alpha_next_pc): New function.
12081         (alpha_software_single_step): Ditto.
12082         * config/alpha/tm-alpha.h: Add prototype for
12083         alpha_software_single_step.
12084
12085 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
12086
12087         * alphabsd-nat.c: Update copyright years.
12088         (fill_gregset): Use regcache_collect.
12089         (fill_fpregset): Likewise.
12090         (fetch_inferior_registers): Only fetch integer registers
12091         if requested to do so.
12092         (store_inferior_registers): Only store integer registers
12093         if requested to do so.
12094
12095 2002-01-17  Andrew Cagney  <ac131313@redhat.com>
12096
12097         * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
12098         * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
12099         * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
12100         * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
12101         * config/alpha/fbsd.mh (XDEPFILES): Delete.
12102         * config/arm/linux.mh (XDEPFILES): Delete.
12103         * config/arm/nbsd.mh (XDEPFILES): Delete.
12104         * config/i386/i386dgux.mh (XDEPFILES): Delete.
12105         * config/i386/i386sol2.mh (XDEPFILES): Delete.
12106         * config/i386/i386m3.mh (XDEPFILES): Delete.
12107         (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
12108         * config/i386/i386gnu.mh (XDEPFILES): Delete.
12109         * config/i386/fbsd.mh (XDEPFILES): Delete.
12110         * config/i386/i386bsd.mh (XDEPFILES): Delete.
12111         * config/i386/i386sco5.mh (XDEPFILES): Delete.
12112         * config/i386/i386v4.mh (XDEPFILES): Delete.
12113         * config/i386/i386v42mp.mh (XDEPFILES): Delete.
12114         * config/i386/i386sco4.mh (XDEPFILES): Delete.
12115         * config/i386/i386aix.mh (XDEPFILES): Delete.
12116         * config/i386/go32.mh (XDEPFILES): Delete.
12117         * config/i386/cygwin.mh (XDEPFILES): Delete.
12118         * config/i386/i386lynx.mh (XDEPFILES): Delete.
12119         * config/i386/i386mach.mh (XDEPFILES): Delete.
12120         * config/i386/i386v32.mh (XDEPFILES): Delete.
12121         * config/i386/linux.mh (XDEPFILES): Delete.
12122         * config/i386/nbsdelf.mh (XDEPFILES): Delete.
12123         * config/i386/ncr3000.mh (XDEPFILES): Delete.
12124         * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
12125         * config/i386/i386sco.mh (XDEPFILES): Delete.
12126         * config/i386/i386v.mh (XDEPFILES): Delete.
12127         * config/i386/nbsd.mh (XDEPFILES): Delete.
12128         * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
12129         * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
12130         * config/i386/symmetry.mh (XDEPFILES): Delete.
12131         * config/i386/obsd.mh (XDEPFILES): Delete.
12132         * config/i386/x86-64linux.mh (XDEPFILES): Delete.
12133         * config/ia64/linux.mh (XDEPFILES): Delete.
12134         * config/ia64/aix.mh (XDEPFILES): Delete.
12135         * config/m68k/apollo68b.mh (XDEPFILES): Delete.
12136         * config/m68k/dpx2.mh (XDEPFILES): Delete.
12137         * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
12138         * config/m68k/apollo68v.mh (XDEPFILES): Delete.
12139         * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
12140         * config/m68k/linux.mh (XDEPFILES): Delete.
12141         * config/m68k/m68klynx.mh (XDEPFILES): Delete.
12142         * config/m68k/m68kv4.mh (XDEPFILES): Delete.
12143         * config/m68k/nbsd.mh (XDEPFILES): Delete.
12144         * config/m68k/sun2os3.mh (XDEPFILES): Delete.
12145         * config/m68k/sun2os4.mh (XDEPFILES): Delete.
12146         * config/m68k/sun3os3.mh (XDEPFILES): Delete.
12147         * config/m68k/sun3os4.mh (XDEPFILES): Delete.
12148         * config/m88k/delta88.mh (XDEPFILES): Delete.
12149         * config/m88k/delta88v4.mh (XDEPFILES): Delete.
12150         * config/m88k/m88k.mh (XDEPFILES): Delete.
12151         * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
12152         * config/mips/linux.mh (XDEPFILES): Delete.
12153         * config/mips/irix6.mh (XDEPFILES): Delete.
12154         * config/mips/irix5.mh (XDEPFILES): Delete.
12155         * config/mips/irix4.mh (XDEPFILES): Delete.
12156         * config/mips/irix3.mh (XDEPFILES): Delete.
12157         * config/mips/decstation.mh (XDEPFILES): Delete.
12158         * config/mips/mipsm3.mh (XDEPFILES): Delete.
12159         (NATDEPFILES): Move core-aout.o to here.
12160         * config/ns32k/nbsd.mh (XDEPFILES): Delete.
12161         * config/pa/hpux1020.mh (XDEPFILES): Delete.
12162         * config/pa/hppabsd.mh (XDEPFILES): Delete.
12163         * config/pa/hppahpux.mh (XDEPFILES): Delete.
12164         * config/pa/hpux11w.mh (XDEPFILES): Delete.
12165         * config/pa/hppaosf.mh (XDEPFILES): Delete.
12166         * config/pa/hpux11.mh (XDEPFILES): Delete.
12167         * config/powerpc/aix.mh (XDEPFILES): Delete.
12168         * config/powerpc/nbsd.mh (XDEPFILES): Delete.
12169         * config/powerpc/linux.mh (XDEPFILES): Delete.
12170         * config/romp/rtbsd.mh: Rename XDEPFILES.
12171         * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
12172         * config/rs6000/aix4.mh (XDEPFILES): Delete.
12173         * config/rs6000/rs6000.mh (XDEPFILES): Delete.
12174         * config/s390/s390.mh (XDEPFILES): Delete.
12175         * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
12176         * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
12177         * config/sparc/sun4os4.mh (XDEPFILES): Delete.
12178         * config/sparc/sparclynx.mh (XDEPFILES): Delete.
12179         * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
12180         * config/sparc/nbsd.mh (XDEPFILES): Delete.
12181         * config/sparc/linux.mh (XDEPFILES): Delete.
12182         * config/vax/vaxult.mh (XDEPFILES): Delete.
12183         * config/vax/vaxult2.mh (XDEPFILES): Delete.
12184         * Makefile.in (DEPFILES): Remove XDEPFILES.
12185
12186 2002-01-17  Andrew Cagney  <ac131313@redhat.com>
12187
12188         * utils.c (internal_verror): Fix comments, default is yes not no.
12189         Update queries to match.  Default to quit and dump core.
12190
12191 2002-01-17  Andrew Cagney  <ac131313@redhat.com>
12192
12193         * breakpoint.c: Update assuming #if UI_OUT is always true.  Update
12194         copyright.
12195         * defs.h, event-top.c, gdbcmd.h: Ditto.
12196         * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
12197         * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
12198         * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
12199         * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
12200         * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
12201         * mi/mi-main.c:Ditto.
12202
12203         * stack.c, symfile.c: Update copyright.
12204
12205 2002-01-17  Daniel Jacobowitz  <drow@mvista.com>
12206
12207         * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
12208         gdbserver/low-nbsd.c, gdbserver/low-sim.c,
12209         gdbserver/low-sparc.c, gdbserver/low-sun3.c,
12210         gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
12211
12212 2002-01-17  Daniel Jacobowitz  <drow@mvista.com>
12213
12214         * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
12215         * gdbserver/low-lynx.c (myattach): Likewise.
12216         * gdbserver/low-nbsd.c (myattach): Likewise.
12217         * gdbserver/low-sim.c (myattach): Likewise.
12218         * gdbserver/low-sparc.c (myattach): Likewise.
12219         * gdbserver/low-sun3.c (myattach): Likewise.
12220
12221         * gdbserver/low-linux.c (myattach): New function.
12222
12223         * gdbserver/server.c (attach_inferior): New function.
12224         (main): Handle "--attach".
12225
12226 2002-01-16  Andrew Cagney  <ac131313@redhat.com>
12227
12228         * MAINTAINERS (language support): Daniel Jacobwitz is C++
12229         maintainer.
12230
12231 2002-01-15  Daniel Jacobowitz  <drow@mvista.com>
12232
12233         * c-typeprint.c (is_type_conversion_operator): Add additional
12234         check for non-conversion operators.
12235
12236 2002-01-15  Michael Snyder  <msnyder@redhat.com>
12237
12238         * linux-proc.c: Add "info proc" command, a la procfs.c.
12239         (read_mapping): New function, abstract and re-use code.
12240         (linux_find_memory_regions): Use new func read_mapping.
12241         (linux_info_proc_cmd): New function, implement "info proc".
12242         (_initialize_linux_proc): Add new command "info proc".
12243
12244 2002-01-15  Michael Snyder  <msnyder@redhat.com>
12245
12246         * symfile.c (generic_load): Use bfd_map_over_sections method
12247         instead of manipulating bfd structure members directly.
12248         (add_section_size_callback): New function, bfd sections callback
12249         used by generic_load.
12250         (load_sections_callback): New function, bfd sections callback
12251         used by generic_load.
12252
12253 2002-01-15  Elena Zannoni  <ezannoni@redhat.com>
12254
12255         [Based on work by Jim Blandy]
12256         * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
12257         (builtin_type_vec128): Export.
12258         * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
12259         types.
12260         (builtin_type_vec128): New builtin type for 128 bit vector
12261         registers.
12262         (build_gdbtypes): Initialize builtin_type_v16qi and
12263         builtin_type_v8hi. Create the vec128 register builtin type
12264         structure.
12265         (build_builtin_type_vec128): New function.
12266         (_initialize_gdbtypes): Register builtin_type_v16qi and
12267         builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
12268         * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
12269         AltiVec register to new builtin type.
12270
12271 2001-01-15  Daniel Jacobowitz  <drow@mvista.com>
12272
12273         * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
12274         to make_cv_type.
12275
12276 2002-01-14  Andrew Cagney  <ac131313@redhat.com>
12277
12278         * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
12279         CLEAN_UP_REGISTER_VALUE.
12280         * regcache.c (supply_register): Update only call.
12281
12282 2002-01-14  Andrew Cagney  <ac131313@redhat.com>
12283
12284         * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
12285         a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
12286         a29k-*-vxworks* targets as obsolete.
12287
12288 2002-01-14  Michael Snyder  <msnyder@redhat.com>
12289
12290         * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
12291         until we can resolve portability issues.
12292         * gregset.h: Remove references to fpxregs.
12293         * gcore.c (gcore_command): Initialize note_sec to NULL.
12294
12295 2002-01-13  Andrew Cagney  <ac131313@redhat.com>
12296
12297         * signals.c (target_signal_to_name): Rewrite.  Only use
12298         signals[].name when in bounds and non-NULL.
12299
12300 2002-01-13  Andrew Cagney  <ac131313@redhat.com>
12301
12302         From Petr Ledvina <ledvinap@kae.zcu.cz>:
12303         * signals.c (target_signal_to_name): Verify that SIG is within the
12304         bounds of the signals array.
12305
12306 2002-01-13  Andrew Cagney  <ac131313@redhat.com>
12307
12308         * MAINTAINERS: Remove arm-coff and arm-pe from target list.
12309
12310 2002-01-13  Keith Seitz  <keiths@redhat.com>
12311
12312         * stack.c (print_frame_info_base): Print the frame's pc
12313         only if when print_frame_info_listing_hook is not defined.
12314
12315 2002-01-13  Keith Seitz  <keiths@redhat.com>
12316
12317         * varobj.c (varobj_set_value): Make sure that there were no
12318         errors evaluating the object before attempting to set its
12319         value.
12320         value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
12321         so this offset adjustment is no longer necessary.
12322         (create_child): Don't set the error flag if the child is
12323         a CPLUS_FAKE_CHILD.
12324         (value_of_child): If value_fetch_lazy fails, return NULL
12325         so that callers will be notified that an error occurred.
12326         (c_value_of_variable): Delay check of variable's validity
12327         until later. We actually want all structs and unions to have
12328         the value "{...}".
12329         Do not return "???" for variables which could not be evaluated.
12330         This error condition must be returned to the caller so that it
12331         can get the error condition from gdb.
12332         (cplus_name_of_child): Adjust index for vptr before figuring
12333         out the name of the child.
12334         (cplus_value_of_child): If a child's (real) parent is not valid,
12335         don't even bother trying to give a value for it. Just return
12336         an error. Change all instances in this function.
12337         (cplus_type_of_child): If our parent is one of the "fake"
12338         parents, we need to get at the type of the real parent, and
12339         derive the child's true type using this information.
12340
12341 2002-01-13  Andrew Cagney  <ac131313@redhat.com>
12342
12343         From 2002-01-09 John Marshall <johnm@falch.net>:
12344         * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
12345         sources.redhat.com, and tweak some related URLs which had
12346         suffered from linkrot.
12347
12348 2002-01-13  Andrew Cagney  <ac131313@redhat.com>
12349
12350         From Jeff law:
12351         * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
12352         structures passed in registers.
12353
12354 2002-01-13  Eli Zaretskii  <eliz@is.elta.co.il>
12355
12356         * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
12357         white space which prevented compilation.  Reported by DSK
12358         <dsk@student.unsw.edu.au>.
12359
12360 2002-01-11  Michael Snyder  <msnyder@redhat.com>
12361
12362         * symfile.c (build_section_addr_info_from_section_tab):
12363         Use bfd access method instead of manipulating bfd directly.
12364         (syms_from_objfile): Ditto.
12365         (simple_overlay_update_1): Ditto.
12366         (simple_overlay_update): Ditto.
12367         (generic_load): Ditto.
12368         (overlay_unmapped_address): FIXME comment, bfd access methods.
12369         (sections_overlap): FIXME comment, bfd access methods.
12370         (pc_in_mapped_range): FIXME comment, bfd access methods.
12371         (pc_in_unmapped_range): FIXME comment, bfd access methods.
12372         (section_is_mapped): FIXME comment, bfd access methods.
12373         (section_is_overlay): FIXME comment, bfd access methods.
12374
12375         * symfile.c (generic_load): Whitespace and long line cleanups.
12376         Remove duplicate variable, change several local variables to
12377         more appropriate data types.
12378         (print_transfer_performance): Use %lu instead of %ld for ulongs.
12379
12380 2002-01-12  Andrew Cagney  <ac131313@redhat.com>
12381
12382         From Peter Schauer:
12383         * language.c (longest_local_hex_string_custom): Use phex_nz to
12384         convert NUM to a hex string.
12385
12386 2002-01-12  Elena Zannoni  <ezannoni@redhat.com>
12387
12388         * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
12389         the function.
12390         Update Copyright year.
12391
12392 2002-01-12  Andrew Cagney  <ac131313@redhat.com>
12393
12394         * language.c (longest_raw_hex_string): Delete unused function.
12395
12396 2002-01-11  Petr Sorfa  <petrs@caldera.com>
12397
12398         * MAINTAINERS (write-after-approval): Add myself.
12399         * dwarf2read.c (read_tag_string_type): Handling of
12400         DW_AT_byte_size.
12401         (read_tag_string_type): FORTRAN fix to prevent propagation of
12402         first string size.
12403         (set_cu_language): Handling of DW_LANG_Fortran95
12404
12405 2002-01-11  Richard Earnshaw  <rearnsha@arm.com>
12406
12407         * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
12408         GETPID(inferior_ptid).
12409         (store_inferior_registers): Likewise.
12410
12411 2002-01-10  Jason Merrill  <jason@redhat.com>
12412
12413         * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
12414         Fix DW_OP_minus.
12415
12416 2002-01-10  Andrew Cagney  <ac131313@redhat.com>
12417
12418         * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
12419         and bfd/elf32-sh-nbsd.c.
12420
12421 2002-01-10  Michael Snyder  <msnyder@redhat.com>
12422
12423         * NEWS: Mention --pid and corefile/proc-id behavior change.
12424
12425         * Makefile.in: Add rules for gcore.o and linux-proc.o.
12426         * gcore.c: Include cli/cli-decode.h instead of command.h.
12427
12428         * main.c (captured_main): Add new command line option "--pid".
12429         If the second command line argument (following the symbol-file)
12430         begins with a digit, try to attach to it before trying to open
12431         it as a corefile.
12432         (print_gdb_help): Document the "--pid" argument.
12433
12434 2002-01-10  Eli Zaretskii  <eliz@is.elta.co.il>
12435
12436         * completer.c (command_completer): New function.
12437
12438         * completer.h <command_completer>: Add prototype.
12439
12440         * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
12441         completer for the "help" command.
12442
12443 2002-01-09  Jason Merrill  <jason@redhat.com>
12444
12445         * c-typeprint.c (is_type_conversion_operator): Fix thinko.
12446
12447 2002-01-09  Michael Snyder  <msnyder@redhat.com>
12448
12449         * i386-linux-nat.c (fill_fpxregset): Make global.
12450         (store_fpxregset): Ditto.
12451
12452         * gregset.h (gdb_fpxregset_t): Define.
12453         (supply_fpxregset): Prototype.
12454         (fill_fpxregset): Prototype.
12455
12456         * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
12457
12458 2002-01-09  Richard Earnshaw  <rearnsha@arm.com>
12459
12460         * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
12461         * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
12462         * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
12463
12464 2002-01-09  Andrew Cagney  <ac131313@redhat.com>
12465
12466         * MAINTAINERS: Update target maintainer rules so that any
12467         Maintainer can approve a tested patch for a maintenance-only
12468         target.
12469
12470 2002-01-09  Richard Earnshaw  <rearnsha@arm.com>
12471
12472         * MAINTAINERS (write-after-approval): Add myself.
12473
12474         * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
12475         IN_SIGTRAMP.
12476
12477 2002-01-08  Michael Snyder  <msnyder@redhat.com>
12478
12479         * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
12480         real name of the executable, rather than the /proc name.
12481
12482 2002-01-03  Michael Snyder  <msnyder@redhat.com>
12483
12484         Implement a "generate-core-file" command in gdb, save target state.
12485         * gcore.c: New file.  Implement new command 'generate-core-file'.
12486         Save a corefile image of the current state of the inferior.
12487         * linux-proc.c: Add linux-specific code for saving corefiles.
12488         * target.h (struct target_ops): Add new target vectors for saving
12489         corefiles; to_find_memory_regions and to_make_corefile_notes.
12490         (target_find_memory_regions): New macro.
12491         (target_make_corefile_notes): New macro.
12492         * target.c (update_current_target): Inherit new target methods.
12493         (dummy_find_memory_regions): New place-holder method.
12494         (dummy_make_corefile_notes): New place-holder method.
12495         (init_dummy_target): Initialize new dummy target vectors.
12496         * exec.c (exec_set_find_memory_regions): New function.
12497         Allow the exec_ops vector for memory regions to be taken over.
12498         (exec_make_note_section): New function, target vector method.
12499         * defs.h (exec_set_find_memory_regions): Export prototype.
12500         * procfs.c (proc_find_memory_regions): New function, corefile method.
12501         (procfs_make_note_section): New function, corefile method.
12502         (init_procfs_ops): Set new target vector pointers.
12503         (find_memory_regions_callback): New function.
12504         (procfs_do_thread_registers): New function.
12505         (procfs_corefile_thread_callback): New function.
12506         * sol-thread.c (sol_find_memory_regions): New function.
12507         (sol_make_note_section): New function.
12508         (init_sol_thread_ops): Initialize new target vectors.
12509         * inftarg.c (inftarg_set_find_memory_regions): New function.
12510         Allow to_find_memory_regions vector to be taken over.
12511         (inftarg_set_make_corefile_notes): New function.
12512         Allow to_make_corefile_notes vector to be taken over.
12513         * thread-db.c (thread_db_new_objfile): Don't activate thread-db
12514         interface layer if not target_has_execution (may be a corefile).
12515         * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
12516         * config/sparc/sun4sol2.mh: Ditto.
12517         * config/alpha/alpha-linux.mh: Ditto.
12518         * config/arm/linux.mh: Ditto.
12519         * config/i386/x86-64linux.mh: Ditto.
12520         * config/ia64/linux.mh: Ditto.
12521         * config/m68k/linux.mh: Ditto.
12522         * config/mips/linux.mh: Ditto.
12523         * config/powerpc/linux.mh: Ditto.
12524         * config/sparc/linux.mh: Ditto.
12525
12526 2002-01-07  Michael Snyder  <msnyder@redhat.com>
12527
12528         * arm-linux-nat.c: Remove references to regcache.c internal data
12529         (registers[] and register_valid[]).
12530
12531 2002-01-07  Michael Snyder  <msnyder@redhat.com>
12532
12533         * linux-proc.c: New file.  Implement child_pid_to_exec_file,
12534         so that attaching to a pid will automatically read the process's
12535         symbol file and shlibs.
12536         * Makefile.in: Add rule for linux-proc.o.
12537         * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
12538         * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
12539         * config/arm/linux.mh: Ditto.
12540         * config/i386/linux.mh: Ditto.
12541         * config/i386/x86-64linux.mh: Ditto.
12542         * config/ia64/linux.mh: Ditto.
12543         * config/m68k/linux.mh: Ditto.
12544         * config/mips/linux.mh: Ditto.
12545         * config/powerpc/linux.mh: Ditto.
12546         * config/sparc/linux.mh: Ditto.
12547
12548 2002-01-06  Pierre Muller  <muller@ics.u-strasbg.fr>
12549
12550         * win32-nat.c: Add i386-tdep.h dependency.
12551
12552 2002-01-07  Michael Snyder  <msnyder@redhat.com>
12553
12554         * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
12555         instead of bfd_get_arch_size.  Don't bail out just because
12556         there's no exec_bfd.
12557
12558         * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
12559         * p-valprint.c (pascal_object_print_value): Ditto.
12560         * somread.c (som_symtab_read): Ditto.
12561         * symfile.c (simple_free_overlay_region_table): Ditto.
12562         * valops.c (value_assign): Ditto.
12563
12564         * tracepoint.c (tracepoint_save_command): From Klee Dienes --
12565         use tilde_expand and strerror for opening save-tracepoints file.
12566
12567         * thread-db.c (thread_db_new_objfile): Indendation fix.
12568
12569         * infptrace.c (GDB_MAX_ALLOCA): New define.
12570         (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
12571         size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
12572         can be overridden with whatever value is appropriate to the host).
12573         * infttrace.c (child_xfer_memory): Add FIXME warning about use of
12574         alloca to allocate potentially large buffer.
12575         * rs6000-nat.c (child_xfer_memory): Ditto.
12576         * symm-nat.c (child_xfer_memory): Ditto.
12577         * x86-64-linux-nat.c (child_xfer_memory): Ditto.
12578
12579 2002-01-07  Jackie Smith Cashion  <jsmith@redhat.com>
12580
12581         From Nick Clifton  <nickc@redhat.com>
12582         * d10v-tdep.c: Set STACK_START to 0x200bffe.
12583
12584 2002-01-07  Michael Snyder  <msnyder@redhat.com>
12585
12586         * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
12587         Don't use exec_bfd if it's NULL.
12588
12589 2002-01-06  Mark Kettenis  <kettenis@gnu.org>
12590
12591         * valops.c (value_arg_coerce): Fix formatting.
12592
12593 2002-01-06  Andrew Cagney  <ac131313@redhat.com>
12594
12595         * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
12596         * gnu-nat.c: Ditto.
12597
12598 2002-01-06  Andrew Cagney  <ac131313@redhat.com>
12599
12600         * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
12601         arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
12602         i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
12603         ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
12604         z8k-coff have not been multi-arched.  Update z8k-coff build
12605         status.
12606
12607 2002-01-06  Andrew Cagney  <ac131313@redhat.com>
12608
12609         * MAINTAINERS: Mark a29k target as obsolete.
12610         * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
12611         (remote-mm.o, remote-udi.o): Obsolete.  Remove references in
12612         comments.
12613         * NEWS: Note that a29k targets are obsolete.
12614         * a29k-tdep.c: Mark as obsolete.
12615         * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
12616         a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
12617         a29k-*-vxworks* targets as obsolete.
12618         * remote-adapt.c: Obsolete.
12619         * remote-eb.c: Obsolete.
12620         * remote-mm.c: Obsolete.
12621         * remote-udi.c: Obsolete.
12622         * config/a29k/a29k-udi.mt: Obsolete.
12623         * config/a29k/a29k.mt: Obsolete.
12624         * config/a29k/tm-a29k.h: Obsolete.
12625         * config/a29k/tm-vx29k.h: Obsolete.
12626         * config/a29k/vx29k.mt: Obsolete.
12627
12628 2002-01-05  Andrew Cagney  <ac131313@redhat.com>
12629
12630         * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
12631         with BFD_ENDIAN_BIG.
12632
12633 2002-01-05  Andrew Cagney  <ac131313@redhat.com>
12634
12635         * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
12636         * configure, config.in: Re-generate.
12637         * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
12638         * defs.h: Do not include <endian.h>.
12639
12640 2002-01-05  Jason Thorpe  <thorpej@wasabisystems.com>
12641
12642         * acconfig.h (HAVE_PT_GETXMMREGS): New.
12643         * config.in: Regenerate.
12644         * configure.in: Update copyright years.
12645         Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
12646         * configure: Regenerate.
12647         * i386bsd-nat.c: Update copyright years.
12648         (fill_gregset): Use regcache_collect.
12649         (fetch_inferior_registers): Only fetch integer registers
12650         if requested to do so.  Add support for XMM registers
12651         using PT_GETXMMREGS.
12652         (store_inferior_registers): Only store integer registers
12653         if requested to do so.  Add support for XMM registers
12654         using PT_SETXMMREGS.
12655         * i386nbsd-nat.c (fetch_inferior_registers): Remove.
12656         (store_inferior_registers): Remove.
12657         (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
12658         (fetch_elfcore_registers): New function.
12659         (i386nbsd_elfcore_fns): New.
12660         (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
12661         * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
12662         i386bsd-nat.o.
12663         * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
12664         * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
12665         * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
12666         * config/i386/tm-nbsd.h: Update copyright years.
12667         (HAVE_SSE_REGS): Define.
12668         (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
12669         (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
12670         (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
12671         (SIGCONTEXT_PC_OFFSET): Remove.
12672         (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
12673
12674 2002-01-05  Andrew Cagney  <ac131313@redhat.com>
12675
12676         * configure.tgt: Remove powerpc-*-macos* target.
12677         * config/m68k/xm-mpw.h: Delete file.
12678         * config/xm-mpw.h: Delete file.
12679         * ser-mac.c: Delete file.
12680         * mpw-make.sed: Delete file.
12681         * mpw-config.in: Delete file.
12682         * mac-xdep.c: Delete file.
12683         * mac-gdb.r: Delete file.
12684         * mac-defs.h: Delete file.
12685         * mac-nat.c: Delete file.
12686         * config/powerpc/macos.mh: Delete file.
12687         * config/powerpc/macos.mt: Delete file.
12688         * config/powerpc/nm-macos.h: Delete file.
12689         * config/powerpc/tm-macos.h: Delete file.
12690         * source.c (openp, open_source_file): Remove obsolete code.
12691         * top.c (gdb_readline): Ditto.
12692         * utils.c (query): Ditto.
12693         * event-top.c (display_gdb_prompt): Ditto.
12694         * Makefile.in (ser-mac.o): Delete obsolete target.
12695         * NEWS: Update.
12696
12697 2002-01-04  Andrew Cagney  <ac131313@redhat.com>
12698
12699         * defs.h (BIG_ENDIAN): Delete macro definition.
12700         * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
12701         coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
12702         findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
12703         printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
12704         remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
12705         stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
12706         config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
12707         config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
12708         config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
12709         config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
12710         config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
12711         config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
12712         mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
12713         * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
12714         * gdbarch.c: Re-generate.
12715
12716 2002-01-04  Daniel Jacobowitz  <drow@mvista.com>
12717
12718         * thread-db.c (thread_db_new_objfile): Do not enable thread_db
12719         for core files.
12720
12721 2002-01-04  Jason Thorpe  <thorpej@wasabisystems.com>
12722
12723         * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
12724
12725 2002-01-04  Andrew Cagney  <ac131313@redhat.com>
12726
12727         * value.h (value_ptr): Delete typedef.
12728
12729 2002-01-04  Jason Thorpe  <thorpej@wasabisystems.com>
12730
12731         * i386nbsd-nat.c: Update copyright years.
12732         Include i386-tdep.h.
12733
12734 2002-01-04  Elena Zannoni  <ezannoni@redhat.com>
12735
12736         * stabsread.c: Update copyright years.
12737
12738         From Debashis Mahata <debashis.mahata@wipro.com>:
12739         (read_struct_fields): Deal with Sun C compiler erroneous stab
12740         output for structs and unions.
12741         Fix PR gdb/269.
12742
12743 2002-01-04  Daniel Jacobowitz  <drow@mvista.com>
12744
12745         * p-valprint.c: Include "cp-abi.h" for baseclass_offset
12746         prototype.
12747
12748 2002-01-04  Daniel Jacobowitz  <drow@mvista.com>
12749
12750         * cp-abi.c: Fix whitespace.
12751         (baseclass_offset): New wrapper function.
12752         * cp-abi.h (baseclass_offset): Add prototype.
12753         (struct cp_abi_ops): Add baseclass_offset pointer.
12754
12755         * valops.c (vb_match): Move to...
12756         * gnu-v2-abi.c (vb_match): here.
12757         * valops.c (baseclass_offset): Move to...
12758         * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
12759
12760         * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
12761
12762         * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
12763         * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
12764         * hpacc-abi.c (init_hpacc_ops): Likewise.
12765
12766 2002-01-04  Daniel Jacobowitz  <drow@mvista.com>
12767
12768         * valops.c (find_overload_match): Accept obj as a
12769         reference parameter.  Update it before returning.
12770         * value.h (find_overload_match): Update prototype.
12771         * eval.c (evaluate_subexp_standard): Pass object to
12772         find_overload_match by reference.
12773
12774 2002-01-03  Andrew Cagney  <ac131313@redhat.com>
12775
12776         * valarith.c: Replace value_ptr with struct value pointer.  Remove
12777         register attribute from value declarations.
12778         * valops.c: Ditto.
12779         * value.h: Ditto.
12780         * scm-lang.c (scm_lookup_name): Ditto.
12781
12782 2002-01-03  Michael Snyder  <msnyder@redhat.com>
12783
12784         Abstract the functionality of iterating over mapped memory
12785         regions into a general purpose iterator function.
12786         * procfs.c (iterate_over_mappings): New function, general purpose
12787         iterator for memory sections.
12788         (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
12789         (solib_mappings_callback): New function, callback for above.
12790         (info_proc_mappings): Reimpliment using iterate_over_mappings.
12791         (info_mappings_callback): New function, callback for above.
12792
12793         * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
12794
12795 2002-01-01  Mark Kettenis  <kettenis@gnu.org>
12796
12797         * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
12798         * i386-tdep.c: Include "elf-bfd.h".
12799         (process_note_abi_tag_sections): New function.
12800         (i386_gdbarch_init): Add code to recognize various OS/ABI
12801         combinations.
12802
12803         * maint.c (_initialize_maint_cmds): Add missing \ in
12804         string-literal.
12805
12806 For older changes see ChangeLog-2001
12807 \f
12808 Local Variables:
12809 mode: change-log
12810 left-margin: 8
12811 fill-column: 74
12812 version-control: never
12813 End: