* source.c: Make global variables current_source_symtab and
[platform/upstream/binutils.git] / gdb / ChangeLog
1 2002-09-13  Fernando Nasser  <fnasser@redhat.com>
2
3         * source.c: Make global variables current_source_symtab and
4         current_source_line static.
5         (list_command): Moved to cli/cli-cmds.c.
6         (ambiguous_line_spec): Moved to cli/cli-cmds.c.
7         (get_first_line_listed): New accessor function.
8         (get_lines_to_list): New accessor function.
9         (get_current_source_symtab_and_line): New function. Retrieves the
10         position in the source code that we consider current.
11         (get_current_or_default_source_symtab_and_line): New function.
12         Like the above but attempts to determine a default position if one
13         is not currently defined.
14         (set_current_source_symtab_and_line): New function. Sets the source
15         code position considered current and returns the previously set one.
16         (clear_current_source_symtab_and_line): Reset stored information about
17         a current source line.
18         (_initialize_source): Remove registration for the "list" command and
19         its alias.
20         * source.h: Add declarations for the new functions above.
21         * symtab.h: Remove declarations for the global variables mentioned
22         above.
23         * breakpoint.c (parse_breakpoint_sals): Use accessor functions to
24         obtain current source line.
25         * linespec.c (decode_line_1): Ditto.
26         * macroscope.c (default_macro_scope): Ditto.
27         * scm-lang.c (scm_unpac): Ditto.
28         * stack.c (print_frame_info_base): Ditto.
29         * symfile.c (clear_symtab_users): Ditto.
30         * symtab.c (decode_line_spec): Ditto.
31         * cli/cli-cmds.c (list_command): Moved here from source.c.
32         (ambiguous_line_spec): Moved here from source.c.
33         (_init_cli_cmds): Add definition for "list" and its alias.
34         * Makefile.in: Update dependencies.
35
36 2002-09-20  Corinna Vinschen  <vinschen@redhat.com>
37
38         * h8300-tdep.c (h8300_examine_prologue): Match saved regs location
39         with what gcc thinks is correct.
40
41 2002-09-20  Corinna Vinschen  <vinschen@redhat.com>
42
43         * h8300-tdep.c (h8300_examine_prologue): Fix loop for saved regs in
44         multiple register push instruction.
45
46 2002-09-19  Jim Blandy  <jimb@redhat.com>
47
48         Add support for distinct host and target character sets.
49         * charset.c, charset.h: New files.
50         * c-exp.y: #include "charset.h".
51         (yylex): Convert character and string literals to the target
52         character set, before returning them as the semantic value of the
53         token.
54         * c-lang.c: #include "charset.h".
55         (c_emit_char): Use charset-specific methods to recognize
56         characters with backslash escape forms, to decide which characters
57         to print literally and which to print using numeric escape
58         sequences, and to convert target characters to host characters
59         before printing.
60         * utils.c: #include "charset.h".
61         (no_control_char_error): New function.
62         (parse_escape): Use charset-specific methods to recognize
63         backslash escapes, parse `control character' notation, and convert
64         characters from the host character set to the target character set.
65         * configure.in: Set the default host character set.
66         Check where to find iconv, and what its argument types might be.
67         * acinclude.m4 (AM_ICONV): New macro, borrowed from GCC.
68         * Makefile.in (SFILES): List charset.c.
69         (COMMON_OBS): List charset.o.   
70         (charset.o): New rule.
71         (charset_h): New header dependency variable.
72         (c-lang.o, utils.o, c-exp.tab.o): Note dependency on $(charset_h).
73         (LIBICONV): New variable, set by configure.
74         (CLIBS): Include $(LIBICONV) here.
75         * aclocal.m4, config.in, configure: Regenerated.
76
77 2002-09-19  Joel Brobecker  <brobecker@gnat.com>
78
79         * ada-exp.y: Add missing semicolons to end rules. Fixes a
80         bison 1.35 warning.
81
82 2002-09-19  Richard Earnshaw  <rearnsha@arm.com>
83
84         * gdb_mbuild.sh: New file.
85
86 2002-09-19  Andrew Cagney  <ac131313@redhat.com>
87
88         * objc-exp.y, objc-lang.h, objc-lang.c: Fix copyright notice.
89
90 2002-09-18  Andrew Cagney  <ac131313@redhat.com>
91
92         * breakpoint.c, c-exp.y, defs.h, elfread.c, expression.h,
93         jv-exp.y, language.c, language.h, p-exp.y, parse.c, parser-defs.h,
94         printcmd.c, source.c, stabsread.c, symfile.c, symtab.h, utils.c,
95         valops.c, value.h: Revert previous change.
96         
97 2002-09-18  Michael Snyder  <msnyder@redhat.com>
98
99         Preliminary support for Objective-C:
100         * defs.h (language_objc): New enum value.
101         (puts_filtered_tabular): Declaration only, exported from utils.c.
102         (skip_quoted): Delete, declared in completer.h.
103         * c-exp.y: Include completer.h.
104         * p-exp.y: Ditto.
105         * jv-exp.y: Ditto.
106         * expression.h (OP_MSGCALL, OP_SELECTOR, OP_SELF, OP_NSSTRING): 
107         New operator enum values.
108         * language.h (CAST_IS_CONVERSION): Test for language_objc.
109         * language.c (binop_result_type): Handle language_objc case.
110         (integral_type, character_type, string_type, boolean_type,
111         structured_type, binop_type_check): Ditto.
112         * symtab.h (SYMBOL_OBJC_DEMANGLED_NAME): Define.
113         (struct objc_specific): Add to general_symbol_info.
114         (SYMBOL_INIT_LANGUAGE_SPECIFIC): Add objc initialization.
115         (SYMBOL_DEMANGLED_NAME): Handle objc case.
116         * parser-defs.h (struct objc_class_str): New struct type.
117         (start_msglist, end_msglist, add_msglist): Declaration only,
118         exported from objc-lang.c.
119         * value.h (value_of_local, value_nsstring, 
120         call_function_by_hand_expecting_type): Exported from valops.c.
121         * valops.c (find_function_addr): Export.
122         (call_function_by_hand_expecting_type): New function.
123         (value_of_local): New function.
124         * symfile.c (init_filename_language_table): Add ".m" extension
125         for Objective-C.
126         * utils.c (puts_filtered_tabular): New function.
127         (fprintf_symbol_filtered): Add objc demangling support (disabled).
128         (set/show demangle): Extend help-string to refer to ObjC.
129         * elfread.c (elf_symtab_read): Skip Objective-C special symbols.
130         * stabsread.c (symbol_reference_defined): Objective-C symbols
131         may contain colons: make allowances when scanning stabs strings
132         for colons.
133         (objc_find_colon): New function.
134         * printcmd.c (address_info): If language == objc then print
135         "self" instead of "this".
136         * parse.c (length_of_subexp): Handle new operators OP_MSGCALL,
137         OP_NSSTRING, and OP_SELF.
138         (prefixify_subexp): Ditto.
139         * source.c (print_source_lines): Mention objc in comment.
140         * breakpoint.c (parse_breakpoint_sals): Recognize Objective-C
141         method names.
142
143 2002-09-18  Andrew Cagney  <ac131313@redhat.com>
144
145         * complaints.h: Update copyright.
146         (struct complaints): Declare.
147         (struct complaint): Make `message' constant.
148         (internal_complaint): Declare.
149         (complaint): Declare.
150         (complaint_root): Delete declaration.
151         (symfile_complaints): Delete declaration.
152         (struct complaints): Add opaque declaration.
153         (clear_complaints): Add a complaints parameter.
154         * complaints.c: Update copyright.
155         (enum complaint_series): Define.
156         (complaint_root): Delete.
157         (struct complaints): Define.
158         (complaint_sentinel, symfile_complaint_book): New variables.
159         (symfile_explanations, symfile_complaints): New variables.
160         New variables.
161         (get_complaints): New function.
162         (vcomplaint): New function.
163         (complaint): New function.
164         (internal_complaint): New function.
165         (complain): Call vcomplain with symfile_complaint.
166         (clear_complaints): Rewrite.
167         (_initialize_complaints): Use add_setshow_command.
168         * Makefile.in (complaints.o): Update dependencies.
169         * symfile.c (syms_from_objfile): Add symfile_complaints parameter
170         to call to clear_complaints.
171         (new_symfile_objfile, reread_symbols): Ditto.
172         (oldsyms_complaint): Delete.
173         (empty_symtab_complaint, unknown_option_complaint): Delete.
174         (free_named_symtabs): Use complaint instead of complain.
175
176 2002-09-18  Michael Snyder  <msnyder@redhat.com>
177
178         Contributed by Apple Computer, Inc.  Merged with current sources
179         by Adam Fedor <fedor@doc.com> [cagney].
180         
181         * objc-lang.c: First clean-up round: comments, indentation.
182         * objc-lang.h: Ditto.
183         * objc-lang.y: Ditto.
184
185 2002-09-18  Andrew Cagney  <ac131313@redhat.com>
186
187         * maint.c (maintenance_internal_error): Print the parameter as the
188         error message.
189         (maintenance_internal_warning): New function.
190         (_initialize_maint_cmds): Add command `maint internal-warning'.
191
192         * defs.h (internal_warning, internal_vwarning): Declare.
193         * utils.c (struct internal_problem): Define.
194         (internal_vproblem): New function.
195         (internal_warning): New function.
196         (internal_vwarning): New function.
197         (internal_warning_problem, internal_error_problem): New variables.
198         (internal_verror): Just call internal_vproblem.
199
200 2002-09-18  Michael Snyder  <msnyder@redhat.com>
201
202         * objc-lang.c: New file, support for Objective-C.
203         Preliminary check-in, not yet integrated into gdb.
204         * objc-lang.h: New file.
205         * objc-exp.y:  New file.
206
207 2002-09-18  Andrew Cagney  <ac131313@redhat.com>
208
209         * infrun.c (signal_stop_update): Convert definition to ISO C.
210         (signal_print_update): Ditto.
211         (signal_pass_update): Ditto.
212         * inflow.c (terminal_save_ours): Ditto.
213
214         * h8300-tdep.c (h8300_gdbarch_init): Use C instead of C++
215         comments.
216         
217         * config/djgpp/fnchange.lst: Handle name clashes between
218         bfd/coff-tic30.c, bfd/coff-tic4x.c, bfd/coff-tic54x.c and
219         bfd/coff-tic80.c.
220
221         * i386-linux-tdep.h: Fix tipo.
222
223 2002-09-18  Adam Fedor  <fedor@gnu.org>
224
225         * MAINTAINERS: Add myself to the Write After Approval list.
226
227 2002-09-18  Jim Blandy  <jimb@redhat.com>
228
229         * dbxread.c, mdebugread.c: Revert my change of 2001-10-23.  Moving
230         texthigh and textlow to reader-specific structs caused
231         objfile_relocate to miss them.  This is fixable, but the work that
232         the change was supposed to prepare GDB for never got done anyway.
233
234 2002-09-18  David Carlton  <carlton@math.stanford.edu>
235
236         * MAINTAINERS: Alphabetize Write After Approval list.
237
238 2002-09-18  Daniel Jacobowitz  <drow@mvista.com>
239
240         Fix PR gdb/709
241         * values.c (value_static_field): Call read_var_value.
242
243 2002-09-18  Andrew Cagney  <ac131313@redhat.com>
244
245         * valops.c (hand_function_call): Align the initial stack pointer
246         and STRUCT_ADDR using frame_align.  When STRUCT_RETURN and
247         FRAME_ALIGN_P, use STRUCT_ADDR to obtain the called function's
248         return value.
249         * mips-tdep.c (mips_frame_align): New function.
250         (mips_gdbarch_init): Set frame_align.
251         * gdbarch.sh (FRAME_ALIGN): New method.
252         * gdbarch.h, gdbarch.c: Re-generate.
253
254 2002-09-18  Michal Ludvig  <mludvig@suse.cz>
255
256         * x86-64-linux-nat.c (x86_64_regmap): Added CS and SS
257         registers.
258
259 2002-09-17  Andrew Cagney  <ac131313@redhat.com>
260
261         * NEWS: Mention that MIPS $fp behavior changed.
262         * mipsnbsd-tdep.c (mipsnbsd_cannot_fetch_register): Delete
263         reference to FP_REGNUM.
264         (mipsnbsd_cannot_store_register): Ditto.
265         * mips-linux-nat.c: Update copyright.
266         (mips_linux_cannot_fetch_register): Delete reference to FP_REGNUM.
267         (mips_linux_cannot_store_register): Ditto.
268         * mips-linux-tdep.c (supply_gregset): Ditto.  Update copyright.
269         * config/mips/tm-mips.h: Update copyright.
270         (FP_REGNUM): Delete macro.
271         (MIPS_REGISTER_NAMES): Replace "fp" with "".
272         * config/mips/tm-irix6.h (FP_REGNUM): Delete macro.
273         * mips-tdep.c (mips_gdbarch_init): Set read_fp to mips_read_sp.
274         (mips_r3041_reg_names, mips_r3051_reg_names)
275         (mips_r3081_reg_names): Replace "fp" with "".
276         Fix PR gdb/480.
277
278 2002-09-17  Theodore A. Roth  <troth@verinet.com>
279
280         * gdb/avr-tdep.c(avr_scan_prologue): Fix bad call to 
281         generic_read_register_dummy() (PR gdb/703).
282         (avr_push_return_address): #if 0 out unused vars.
283         (avr_gdbarch_init): Enable use of avr_push_return_address().
284
285 2002-09-17  Michael Snyder  <msnyder@redhat.com>
286
287         * m32r-stub.c (restore_and_return): Postpone restoring of PSW.
288         RTE will take care of it.
289
290 2002-09-17  Andrew Cagney  <ac131313@redhat.com>
291
292         * arch-utils.c (legacy_virtual_frame_pointer): If FP_REGNUM is
293         invalid, return SP_REGNUM.
294
295 2002-09-17  Michael Snyder  <msnyder@redhat.com>
296
297         * mips-tdep.c (mips_pop_frame): Read saved values of floating
298         point registers without sign extension.
299
300 2002-09-17  Andrew Cagney  <cagney@redhat.com>
301
302         * blockframe.c (deprecated_read_register_dummy): Rename
303         generic_read_register_dummy.
304         * frame.c (frame_unwind_signed_register): New function.
305         (frame_unwind_unsigned_register): New function.
306         * frame.h (frame_unwind_signed_register): Declare.
307         (frame_unwind_unsigned_register): Declare.
308         (deprecated_read_register_dummy): Rename
309         generic_read_register_dummy.
310
311         * h8300-tdep.c (h8300_frame_chain): Update.
312         (h8300_frame_saved_pc): Update.
313         * xstormy16-tdep.c (xstormy16_frame_saved_pc): Update.
314         * rs6000-tdep.c (rs6000_frame_saved_pc): Update.
315         * s390-tdep.c (s390_frame_saved_pc_nofix): Update.
316         (s390_frame_chain): Update.
317         * v850-tdep.c (v850_find_callers_reg): Update.
318         (v850_frame_saved_pc): Update.
319         * m32r-tdep.c (m32r_init_extra_frame_info): Update.
320         (m32r_find_callers_reg): Update.
321         (m32r_frame_saved_pc): Update.
322         * sh-tdep.c (sh_find_callers_reg): Update.
323         (sh64_get_saved_pr): Update.
324         (sh_init_extra_frame_info): Update.
325         (sh_init_extra_frame_info): Update.
326         (sh64_init_extra_frame_info): Update.
327         (sh64_init_extra_frame_info): Update.
328         * mcore-tdep.c (mcore_find_callers_reg): Update.
329         (mcore_frame_saved_pc): Update.
330         (mcore_init_extra_frame_info): Update.
331         * i386-tdep.c (i386_frame_saved_pc): Update.
332         * ia64-tdep.c (ia64_frame_saved_pc): Update.
333         (ia64_init_extra_frame_info): Update.
334         (ia64_init_extra_frame_info): Update.
335         * d10v-tdep.c (d10v_frame_saved_pc): Update.
336         * cris-tdep.c (cris_init_extra_frame_info): Update.
337         * avr-tdep.c (avr_frame_chain): Update.
338         (avr_init_extra_frame_info): Update.
339         (avr_frame_saved_pc): Update.
340         * arm-tdep.c (arm_find_callers_reg): Update.
341         (arm_init_extra_frame_info): Update.
342         (arm_frame_saved_pc): Update.
343
344 2002-09-17  Tom Tromey  <tromey@redhat.com>
345
346         * c-lang.c (c_emit_char): Don't treat \0 specially unless quoter
347         is "'".
348
349 2002-09-17  Corinna Vinschen  <vinschen@redhat.com>
350
351         * MAINTAINERS: Remove "non multi-arched" text from h8300.
352         * h8300-tdep.c (h8300_next_prologue_insn) Renamed from
353         NEXT_PROLOGUE_INSN.
354         (h8300_examine_prologue): Call h8300_next_prologue_insn instead of
355         NEXT_PROLOGUE_INSN.
356
357 2002-09-16  Joel Brobecker  <brobecker@gnat.com>
358
359         * osfsolib.c: Remove file, replaced by solib-osf.c.
360         * Makefile.in: Remove compilation rules for osfsolib.c.
361
362 2002-09-16  David Carlton  <carlton@math.stanford.edu>
363
364         * cp-valprint.c (cp_print_class_method): Correct args to
365         check_stub_method_group.
366
367 2002-09-16  Corinna Vinschen  <vinschen@redhat.com>
368
369         * h8300-tdep.c: Multiarch.  Drop `set machine' command in favor of
370         `set architecture'.  Unify naming convention of functions.
371         (h8300_skip_prologue): Improve prologue analysis.
372         (h8300_push_arguments): Rewritten to more closely match GCC's
373         bizarre argument-passing behavior, along with the comment describing
374         said behavior.
375         * remote-hms.c (hms_regnames): Don't use NUM_REGS in definition.
376         * config/h8300/tm-h8300.h: Multiarch.  Just keep stuff needed by
377         sim, remote-e7000.c, remote-hms.c and remote.c
378
379 2002-09-15  Mark Kettenis  <kettenis@gnu.org>
380
381         * i386-tdep.c (gdb_print_insn_i386): Removed.
382         (i386_print_insn): New function.
383         (i386_gdbarch_init): Set print_insn to i386_print_insns.
384         (_initialize_i386_tdep): Don't initialize tm_print_insn and
385         tm_print_insn_info.
386
387 2002-09-14  Mark Kettenis  <kettenis@gnu.org>
388
389         * gdbtypes.c (check_stub_method_group): Initialize found_stub to
390         zero.
391
392 2002-09-14  Corinna Vinschen  <vinschen@redhat.com>
393
394         * arch-utils.c (legacy_pc_in_sigtramp): Move preprocessor expression
395         for IN_SIGTRAMP to here.  Use IN_SIGTRAMP only if it's defined. 
396         Guard usage of SIGTRAMP_START() by using SIGTRAMP_START_P.
397
398 2002-09-13  Christopher Faylor  <cgf@redhat.com>
399
400         * win32-nat.c (child_create_inferior): Honor 'tty' command.
401
402 2002-09-13  Daniel Jacobowitz  <drow@mvista.com>
403
404         * gdbtypes.c (check_stub_method): Make static.
405         (check_stub_method_group): New function.
406         * gdbtypes.h: Update prototypes.
407         * cp-support.c: New file.
408         * cp-support.h: New file.
409
410         * stabsread.c: Include "cp-abi.h" and "cp-support.h".
411         (update_method_name_from_physname): New function.
412         (read_member_functions): Correct method names for operators
413         and v3 constructors/destructors.  Separate v2 constructors and
414         destructors.
415         * Makefile.in (stabsread.o): Update dependencies.
416         (SFILES): Add cp-support.c.
417         (COMMON_OBS): Add cp-support.o.
418         (cp_support_h, cp-support.o): Add.
419
420         * cp-valprint.c (cp_print_class_method): Call
421         check_stub_method_group instead of check_stub_method.  Remove
422         extraneous QUITs.
423         * p-valprint.c (pascal_object_print_class_method): Likewise.
424         * valops.c (search_struct_method): Likewise.
425         (find_method_list, value_struct_elt_for_reference): Likewise.
426
427 2002-09-13  Andrew Cagney  <cagney@redhat.com>
428
429         * gdbarch.sh (SIGTRAMP_END): Change to a predicate function.
430         * gdbarch.h, gdbarch.c: Regenerate.
431
432 2002-09-13  Andrew Cagney  <ac131313@redhat.com>
433
434         * frame.c (find_saved_register): Delete function.
435         * frame.h (find_saved_register): Delete declaration.
436         Fix PR gdb/631.
437
438 Fri Sep 13 14:59:55 2002  Andrew Cagney  <cagney@redhat.com>
439
440         * mips-tdep.c (read_next_frame_reg): Re-hack using
441         frame_register_unwind.
442
443 Fri Sep 13 07:42:09 2002  Andrew Cagney  <cagney@redhat.com>
444
445         * mips-tdep.c (mips_get_saved_register): Re-hack using
446         frame_register_unwind.
447
448 2002-09-12  Joel Brobecker  <brobecker@gnat.com>
449
450         * gdbarch.sh (NAME_OF_MALLOC): New variable in the architecture
451         vector. Will be useful for Interix.  
452         * gdbarch.h, gdbarch.c: Regenerate.
453
454         * valops.c (value_allocate_space_in_inferior): Replace hard-coded
455         name of the malloc function by NAME_OF_MALLOC.
456
457 2002-09-12  Joel Brobecker  <brobecker@gnat.com>
458
459         * value.h (find_function_in_inferior): Add const keyword to
460         one of the parameters. Allows us to invoke this function with
461         a const char *.
462         * valops.c (find_function_in_inferior): Likewise.
463
464 2002-09-12  Joel Brobecker  <brobecker@gnat.com>
465
466         * exec.c (xfer_memory): Fix compilation warning with old versions
467         of GCC.
468         * tracepoint.c (trace_find_tracepoint_command): Likewise.
469
470 2002-09-12  David Carlton  <carlton@math.stanford.edu>
471
472         * symtab.h: Run through gdb_indent.h.
473         Add 2002 to Copyright year list.
474
475 2002-09-12  Alan Modra  <amodra@bigpond.net.au>
476
477         * x86-64-tdep.c (_initialize_x86_64_tdep): Don't use hard-coded
478         mach constants.
479         * MAINTAINERS: Add myself to write after approval list.
480
481 2002-09-11  J. Brobecker  <brobecker@gnat.com>
482
483         * osabi.c (gdb_osabi_name): Add entry for GDB_OSABI_INTERIX.
484
485 2002-09-11  J. Brobecker  <brobecker@gnat.com>
486
487         * osabi.h (gdb_osabi): Add new GDB_OSABI_INTERIX enum value for
488         Interix.
489
490 2002-06-05  Paul N. Hilfinger  <hilfingr@otisco.mckusick.com>
491
492         * procfs.c (do_detach): Clear current signal, not just fault.
493         Corrects problem with breakpoint trap signal leaking to detached
494         process on Tru64.
495
496 2002-09-10  Michael Snyder  <msnyder@redhat.com>
497
498         * buildsym.c (finish_block): Protect against null pointer.
499
500 2002-09-10  Andrew Cagney  <cagney@redhat.com>
501
502         * infcmd.c (default_print_registers_info): Send all output to
503         ``file'' instead of ``gdb_stdout''.
504
505 2002-09-10  Michael Snyder  <msnyder@redhat.com>
506
507         * mips-tdep.c (mips_extract_struct_value_address): Make val a
508         LONGEST, and use signed register read (addresses are sign-
509         extended for mips).
510
511 2002-09-10  Stephane Carrez  <stcarrez@nerim.fr>
512
513         * event-loop.c (gdb_do_one_event): Make public.
514         * event-loop.h (gdb_do_one_event): Declare.
515
516 2002-09-10  Jeff Law  <law@redhat.com>
517
518         * infttrace.c (child_resume): Simplify and rework to avoid
519         TT_PROC_CONTINUE.
520
521 2002-09-09  Fred Fish  <fnf@intrinsity.com>
522
523         * printcmd.c (print_scalar_formatted): "len" is the number of
524         target bytes, NOT the number of target bits.
525
526 2002-09-09  Elena Zannoni  <ezannoni@redhat.com>
527
528         From: Emmanuel Thome'  <thome@lix.polytechnique.fr>
529         * top.c (init_main): Set rl_terminal_name.
530
531 2002-09-08  Aidan Skinner <aidan@velvet.net>
532
533         * ada-lang.c (ada_array_bound, ada_type_match,
534         _initialize_ada_language): Fix K&R definitions.
535         * ada-tasks.c (get_current_task): Fix K&R definitions.
536         * ada-valprint.c (adjust_type_signedness): Fix K&R definitions.
537                         
538 2002-09-07  Christopher Faylor  <cgf@redhat.com>
539
540         * MAINTAINERS: Remove CE from list of maintainership responsibilities.
541         Add XP.
542
543 2002-09-06  Mark Kettenis  <kettenis@gnu.org>
544
545         * i386-tdep.c (i386_register_virtual_type,
546         i386_register_convertible, i386_register_convert_to_virtual,
547         i386_register_comvert_to_raw): Use FP_REGNUM_P and SSE_REGNUM_P
548         instead of IS_FP_REGNUM and IS_SSE_REGNUM.
549         (i386_gdbarch_init): Fix comment.  Add comments on calls that set
550         sp_regnum, fp_regnum, pc_regnum, ps_regnum and fp0_regnum.
551         Don't set push_arguments twice.
552
553         * i386bsd-tdep.c (i386bsd_init_abi): Set sigtramp_start and
554         sigtramp_end to i386bsd_sigtramp_start and i386bsd_sigtramp_end.
555         * i386nbsd-tdep.c (i386nbsd_init_abi): Set sigtramp_start and
556         sigtramp_end to NULL.
557         * config/i386/tm-fbsd.h (SIGTRAMP_START, SIGTRAMP_END): Remove
558         defines.
559         (i386bsd_sigtramp_start, i386_sigtramp_end): Remove prototypes.
560
561         * i386nbsd-tdep.c (i386nbsd_pc_in_sigtramp): Remove spurious
562         whitespace.
563
564         * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): New methods.
565         * gdbarch.h, gdbarch.c: Re-generate.
566         * blockframe.c (find_pc_sect_partial_function): Convert to use
567         SIGTRAMP_START_P predicate.
568
569 2002-09-05  Michael Snyder  <msnyder@redhat.com>
570
571         * arm-tdep.c (arm_init_extra_frame_info): Distinguish between
572         generic_dummy_frame method and old method.  Also distinguish
573         between ARM_FP_REGNUM and THUMB_FP_REGNUM.
574         (arm_extract_return_value): Use new regcache method.
575
576         * mips-tdep.c (mips_n32n64_push_arguments): Remove alignment
577         adjustment that doesn't conform to the ABI.
578         (mips_extract_struct_value_address): Retrieve V0_REGNUM from
579         saved regcache, not from current regcache.
580
581 2002-09-05  Andrew Cagney  <ac131313@redhat.com>
582
583         * NEWS: Update for 5.3.  Add new section ``Changes since 5.3''.
584         * README: Update.
585
586 2002-09-04  Jason Thorpe  <thorpej@wasabisystems.com>
587
588         * arm-tdep.c (arm_addr_bits_remove): Don't check for Thumb mode
589         if arm_apcs_32 is false.
590
591 2002-09-04  Andrew Cagney  <ac131313@redhat.com>
592
593         GDB 5.3 branch created.
594
595 2002-09-03  Theodore A. Roth  <troth@verinet.com>
596
597         * gdb/avr-tdep.c (avr_gdbarch_init): Use
598         generic_unwind_get_saved_register.
599
600 2002-09-03  David Carlton  <carlton@math.stanford.edu>
601
602         * dwarf2read.c (dwarf2_add_member_fn): Add the 'type'
603         argument (PR gdb/653).  Update call to smash_to_method_type.
604         (read_structure_scope): Update call to dwarf2_add_member_fn.
605
606 2002-09-03  Michal Ludvig  <mludvig@suse.cz>
607
608         * x86-64-linux-tdep.c: Include gdb_string.h
609         * x86-64-linux-nat.c: Ditto.
610
611 2002-09-02  Jason Thorpe  <thorpej@wasabisystems.com>
612
613         * ada-exp.y (yyname, yyrule): Remap global variables that appear
614         when YYDEBUG is set to 1.  
615         * c-exp.y: Likewise.
616         * f-exp.y: Likewise.
617         * jv-exp.y: Likewise.
618         * m2-exp.y: Likewise.
619         * p-exp.y: Likewise.
620
621 2002-09-02  Jason Thorpe  <thorpej@wasabisystems.com>
622
623         * Makefile.in (i386nbsd-tdep.o): Add $(solib_svr4_h) to
624         dependency list.
625         * i386nbsd-tdep.c (i386nbsdelf_init_abi): Set
626         solib_svr4_fetch_link_map_offsets to
627         nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
628         * config/i386/nbsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
629         * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
630         * config/i386/nbsdelf.mh (NATDEPFILES): Remove solib.o,
631         solib-svr4.o, and solib-legacy.o.
632         * config/i386/tm-nbsd.h: Include solib.h.
633
634 2002-09-02  Jason Thorpe  <thorpej@wasabisystems.com>
635
636         * configure.tgt (i[3456]86-*-netbsdelf*): Merge with... 
637         (i[3456]86-*-netbsd*): ...this.  Set gdb_target to nbsd. 
638         (i[3456]86-*-openbsd*): Make this a separate entry.  Add a
639         comment noting that this needs its own target configuration.
640         * config/i386/nbsd.mt: New file.
641         * config/i386/nbsdaout.mt: Remove.
642         * config/i386/nbsdelf.mt: Ditto.
643         * config/i386/tm-nbsdaout.h: Ditto. 
644
645 2002-09-02  Jason Thorpe  <thorpej@wasabisystems.com>
646
647         * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): New function. 
648         (i386nbsd_pc_in_sigtramp): Rewrite to use i386nbsd_sigtramp_offset. 
649         (i386nbsd_init_abi): Don't initialize tdep->sigtramp_start or
650         tdep->sigtramp_end.
651         (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end): Remove. 
652         * config/i386/tm-nbsd.h (SIGTRAMP_START, SIGTRAMP_END)
653         (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove.
654
655 2002-09-02  Jason Thorpe  <thorpej@wasabisystems.com>
656
657         * Makefile.in (i386nbsd-tdep.o): Add $(arch_utils_h),
658         $(i386_tdep_h), and $(nbsd_tdep_h) to dependency list.
659         * i386-tdep.h (i386bsd_init_abi): New prototype.
660         * i386bsd-tdep.c (i386bsd_init_abi): Remove "static" from
661         function declaration.
662         (_initialize_i386bsd_tdep): Don't register OS ABI handlers
663         for NetBSD-a.out or NetBSD-ELF.
664         (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end)
665         (i386nbsd_sc_pc_offset, i386nbsd_sc_sp_offset)
666         (i386nbsd_init_abi, i386nbsdelf_init_abi): Move to...
667         * i386nbsd-tdep.c: ...here.  Include arch-utils.h, i386-tdep.h,
668         and nbsd-tdep.h.
669         (i386nbsd_pc_in_sigtramp): New function.
670         (i386nbsd_init_abi): Set gdbarch_pc_in_sigtramp to
671         i386nbsd_pc_in_sigtramp.
672         (_initialize_i386nbsd_tdep): Register i386nbsd_init_abi
673         and i386nbsdelf_init_abi OS ABI handlers.
674         * config/i386/nbsdaout.mt (TDEPFILES): Add nbsd-tdep.o.
675         * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
676
677 2002-09-02  Mark Kettenis  <kettenis@gnu.org>
678
679         * i386-linux-nat.c (dummy_sse_values): Only try to fill in the SSE
680         registers if the target really has them.
681
682 2002-08-31  Jason Thorpe  <thorpej@wasabisystems.com>
683
684         * Makefile.in (mipsnbsd-tdep.o): Use $(nbsd_tdep_h) rather
685         than nbsd-tdep.h.
686
687 2002-08-31  Jason Thorpe  <thorpej@wasabisystems.com>
688
689         * Makefile.in (alphanbsd-tdep.o): Add $(frame_h) to dependency
690         list.
691         * alphanbsd-tdep.c (alphanbsd_sigcontext_addr)
692         (alphanbsd_skip_sigtramp_frame): New functions. 
693         (alphanbsd_init_abi): Set tdep->skip_sigtramp_frame to
694         alphanbsd_skip_sigtramp_frame.  Set tdep->sigcontext_addr
695         to alphanbsd_sigcontext_addr. 
696
697 2002-08-31  Jason Thorpe  <thorpej@wasabisystems.com>
698
699         * Makefile.in (mipsnbsd-tdep.o): Add nbsd-tdep.h to dependency
700         list.
701         (nbsd-tdep.o): Add $(gdb_string_h) to dependency list. 
702         * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): Use
703         nbsd_pc_in_sigtramp. 
704         * mipsnbsd-tdep.c: Include nbsd-tdep.h.
705         (mipsnbsd_pc_in_sigtramp): Use nbsd_pc_in_sigtramp.
706         * nbsd-tdep.c: Include gdb_string.h.
707         (nbsd_pc_in_sigtramp): New function. 
708         * nbsd-tdep.h (nbsd_pc_in_sigtramp): New prototype. 
709         * ppcnbsd-tdep.c (ppcnbsd_pc_in_sigtramp): New function.
710         (ppcnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
711         ppcnbsd_pc_in_sigtramp. 
712         * shnbsd-tdep.c (shnbsd_pc_in_sigtramp): New function.
713         (shnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
714         shnbsd_pc_in_sigtramp. 
715         * sparcnbsd-tdep.c (sparcnbsd_init_abi_elf): Set
716         gdbarch_pc_in_sigtramp to nbsd_pc_in_sigtramp. 
717         * config/mips/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
718
719 2002-08-30  Pierre Muller  <muller@ics.u-strasbg.fr>
720
721         * breakpoint.c (breakpoint_init_inferior): Reset the val field of
722         watchpoints to NULL.
723         (insert_breakpoints): set val field of watchpoints if NULL.
724
725
726 2002-08-29  Jim Blandy  <jimb@redhat.com>
727
728         * symtab.c (lookup_symbol_aux): In the cases where we find a
729         minimal symbol of an appropriate name and use its address to
730         select a symtab to read and search, use `name' (as passed to us)
731         as the demangled name when searching the symtab's global and
732         static blocks, not the minsym's name.
733
734 2002-08-29  Keith Seitz  <keiths@redhat.com>
735
736         * stack.c (print_frame_info_base): Always set current_source_symtab
737         and current_source_line.
738
739 2002-08-29  Donn Terry  <donnte@microsoft.com>
740
741         * proc-api.c (rw_table): Fix typo in #ifdef PCSHOLD (missing S).
742
743 2002-08-28  Keith Seitz  <keiths@redhat.com>
744
745         * stack.c (select_frame): Add FIXME concerning selected-frame
746         events.
747         (select_frame_command): Send selected-frame-level-changed
748         event notification, but only if the level actually changed.
749         (up_silently_base): Add selected-frame-level-changed event
750         notification.
751         (down_silently_base): Likewise.
752
753 2002-08-28  Andrew Cagney  <ac131313@redhat.com>
754
755         * Makefile.in: Update dependencies for all gdb/*.c files.
756
757 2002-08-27  Tom Tromey  <tromey@redhat.com>
758
759         * Makefile.in (osabi.o, i387-tdep.o, i386-linux-nat.o, lin-lwp.o,
760         ax-gdb.o, signals.o, jv-valprint.o, c-valprint.o, cp-abi.o):
761         Update dependencies.
762         * i387-tdep.c: Include gdb_string.h.
763         * osabi.c: Likewise.
764         * i386-linux-nat.c: Likewise.
765         * lin-lwp.c: Likewise.
766         * ax-gdb.c: Likewise.
767         * signals/signals.c: Likewise.
768         * jv-valprint.c: Likewise.
769         * p-lang.c: Likewise.
770         * c-valprint.c: Likewise.
771         * cp-abi.c: Likewise.
772
773 2002-08-27  Elena Zannoni  <ezannoni@redhat.com>
774
775         * cli/cli-script.h (copy_command_lines): Export.
776         * breakpoint.c: Include cli/cli-script.h.
777         * Makefile.in (breakpoint.o): Update dependencies.
778
779 2002-08-26  Michael Snyder  <msnyder@redhat.com>
780
781         * breakpoint.c (insert_breakpoints): Protect all references
782         to 'process_warning'.  Shorten long lines.
783
784 2002-08-26  Joel Brobecker  <brobecker@gnat.com>
785
786         * cli/cli-script.c (copy_command_lines): New function.
787         * defs.h (copy_command_lines): Export.
788         * testsuite/gdb.base/commands.exp: New tests for commands
789         attached to a temporary breakpoint, and for commands that
790         delete the breakpoint they are attached to.
791         
792 2002-08-26  Michael Snyder  <msnyder@redhat.com>
793
794         * breakpoint.c (bpstat_stop_status): Instead of copying the 
795         pointer to the breakpoint commands struct, make a new copy
796         of the struct and point to that.
797         (bpstat_clear): Free the commands struct.
798         (bpstat_clear_actions): Free the commands struct.
799         (bpstat_do_actions): Free the command actions.  Also execute
800         the local cleanups, instead of deleting them.
801         (delete_breakpoint): Leave the commands field of the bpstat
802         chain alone -- it will be freed later.
803
804 2002-08-26  Kevin Buettner  <kevinb@redhat.com>
805
806         * rs6000-tdep.c (altivec_register_p): Restore function inadvertently
807         deleted in 2002-08-20 commit.  This function is still used by
808         ppc-linux-nat.c.
809
810 2002-08-26  Keith Seitz  <keiths@redhat.com>
811
812         * gdb-events.sh: Add selected-frame-level-changed event.
813         * gdb-events.c: Regenerated.
814         * gdb-events.h: Regenerated.
815         
816 2002-08-26  Stephane Carrez  <stcarrez@nerim.fr>
817
818         Fix PR gdb/393:
819         * inflow.c (terminal_save_ours): New function to save terminal
820         settings.
821         * inferior.h (terminal_save_ours): Declare.
822         * target.c (debug_to_terminal_save_ours): New function.
823         (cleanup_target): Defaults to_terminal_save_ours.
824         (update_current_target): Inherit to_terminal_save_ours.
825         (setup_target_debug): Set to_terminal_save_ours.
826         * target.h (target_terminal_save_ours): New to save terminal settings.
827         (target_ops): New member to_terminal_save_ours.
828         * gnu-nat.c (init_gnu_ops): Set to_terminal_save_ours.
829         * hpux-thread.c (init_hpux_thread_ops): Likewise.
830         * inftarg.c (init_child_ops): Likewise.
831         * m3-nat.c (init_m3_ops): Likewise.
832         * procfs.c (init_procfs_ops): Likewise.
833         * wince.c (init_child_ops): Likewise.
834         * win32-nat.c (init_child_ops): Likewise.
835         * sol-thread.c (init_sol_thread_ops): Likewise.
836
837 2002-08-26  Mark Kettenis  <kettenis@gnu.org>
838
839         * i386-tdep.c (i386_store_return_value): Undeprecate.  Convert to
840         use regcache_* functions.
841         (i386_gdbarch_init): Set store_return_value instead of
842         deprecated_store_return_value.
843
844         * regcache.c (regcache_raw_write_signed,
845         regcache_raw_write_unsigned): New functions.
846         * regcache.h (regcache_raw_write_signed,
847         regcache_raw_write_unsigned): New prototypes.
848
849 2002-08-25  Andrew Cagney  <ac131313@redhat.com>
850
851         * Makefile.in (c-exp.tab.o, jv-exp.tab.o, f-exp.tab.o)
852         (m2-exp.tab.o, p-exp.tab.o, ada-exp.tab.o): Move to before the
853         source file dependencies.  Cleanup corresponding generator rules.
854
855 2002-08-25  Andrew Cagney  <ac131313@redhat.com>
856
857         * regcache.h (register_offset_hack): Declare.
858         (regcache_cooked_read_using_offset_hack): Declare.
859         (regcache_cooked_write_using_offset_hack): Declare.
860
861         * regcache.c (register_offset_hack): New function.
862         (regcache_cooked_read_using_offset_hack): New function.
863         (regcache_cooked_write_using_offset_hack): New function.
864         (regcache_dump): Check that the registers, according to their
865         offset, are packed hard against each other.
866         (cooked_xfer_using_offset_hack): New function.
867
868 2002-08-25  Andrew Cagney  <ac131313@redhat.com>
869
870         * regcache.c (struct regcache_descr): Add field register_type.
871         (init_legacy_regcache_descr): Pass a pre-allocated regcache_descr
872         in as a parameter
873         (init_regcache_descr): Initialize register_type.  Pass the descr
874         to init_legacy_regcache_descr.  Use register_type instead of
875         REGISTER_VIRTUAL_TYPE.
876         (register_type): New function.
877         (regcache_dump): Replace REGISTER_VIRTUAL_TYPE with register_type.
878         * regcache.h (register_type): Declare.
879
880 2002-08-25  Andrew Cagney  <ac131313@redhat.com>
881
882         * rs6000-tdep.c (rs6000_gdbarch_init): Set store_struct_return
883         instead of deprecated_store_return_value.  Fix fallout from
884         2002-08-23 Andrew Cagney <cagney@redhat.com>.
885
886 2002-08-25  Andrew Cagney  <ac131313@redhat.com>
887
888         * regcache.c (max_register_size): New function.
889         (init_legacy_regcache_descr): Ensure that max_register_size is
890         large enough for REGISTER_VIRTUAL_SIZE.
891         * regcache.h (max_register_size): Declare.
892
893 2002-08-24  Andrew Cagney  <ac131313@redhat.com>
894
895         * rs6000-tdep.c (rs6000_gdbarch_init): Use deprecated version of
896         store_return_value.
897         (e500_extract_return_value): Change type of valbuf pointer to
898         void.
899
900 2002-08-24  Mark Kettenis  <kettenis@gnu.org>
901
902         * PROBLEMS: Clarify problems with FreeBSD's compiler and suggest
903         workaround.
904
905         * valprint.c (print_longest) [CC_HAS_LONG_LONG &&
906         PRINTF_HAS_LONG_LONG]: Cast val_long to (long long) or (unsigned
907         long long) to prevent compiler warning on 64-bit systems.
908
909 2002-08-23  Andrew Cagney  <cagney@redhat.com>
910
911         * gdbarch.sh (STORE_RETURN_VALUE): Add regcache parameter.
912         (DEPRECATED_STORE_RETURN_VALUE): New method.
913         (EXTRACT_RETURN_VALUE): Make buffer parameter a void pointer.
914         * gdbarch.h, gdbarch.c: Re-generate.
915
916         * values.c (set_return_value): Pass current_regcache to
917         STORE_RETURN_VALUE.
918         * arch-utils.h (legacy_store_return_value): Declare.
919         * arch-utils.c (legacy_store_return_value): New function.
920         (legacy_extract_return_value): Update parameters.
921
922         * config/pa/tm-hppa.h (DEPRECATED_STORE_RETURN_VALUE): Rename
923         STORE_RETURN_VALUE.
924         * config/pa/tm-hppa64.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
925         * config/sparc/tm-sparc.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
926         * config/z8k/tm-z8k.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
927         * config/sparc/tm-sparclet.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
928         * config/mn10200/tm-mn10200.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
929         * config/m68k/tm-linux.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
930         * config/m68k/tm-delta68.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
931         * config/m32r/tm-m32r.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
932         * config/h8500/tm-h8500.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
933         * config/h8300/tm-h8300.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
934
935         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
936         * i386-tdep.c (i386_extract_return_value): Update.
937         * arch-utils.c (legacy_extract_return_value): Update.
938         * frv-tdep.c (frv_gdbarch_init): Update.
939         * cris-tdep.c (cris_gdbarch_init): Update.
940         * d10v-tdep.c (d10v_gdbarch_init): Update.
941         * rs6000-tdep.c (rs6000_gdbarch_init): Update.
942         * m68k-tdep.c (m68k_gdbarch_init): Update.
943         * mcore-tdep.c (mcore_gdbarch_init): Update.
944         * mn10300-tdep.c (mn10300_gdbarch_init): Update.
945         * s390-tdep.c (s390_gdbarch_init): Update.
946         * sparc-tdep.c (sparc_gdbarch_init): Update.
947         * sh-tdep.c (sh_gdbarch_init): Update.
948         * x86-64-tdep.c (x86_64_gdbarch_init): Update.
949         * v850-tdep.c (v850_gdbarch_init): Update.
950         * avr-tdep.c (avr_gdbarch_init): Update.
951         * ia64-tdep.c (ia64_gdbarch_init): Update.
952         * ns32k-tdep.c (ns32k_gdbarch_init): Update.
953         * vax-tdep.c (vax_gdbarch_init): Update.
954         * alpha-tdep.c (alpha_gdbarch_init): Update.
955         * arm-tdep.c (arm_gdbarch_init): Update.
956         * mips-tdep.c (mips_gdbarch_init): Update.
957         * i386-tdep.c (i386_gdbarch_init): Update.
958
959 2002-08-23  Andrew Cagney  <ac131313@redhat.com>
960
961         * config/djgpp/fnchange.lst: Add entries for bfd/elf32-ppcqnx.c,
962         bfd/elf32-ppc.c, bfd/elf32-sh.c and bfd/elf32-shqnx.c.
963
964 2002-08-24  Mark Kettenis  <kettenis@gnu.org>
965
966         * PROBLEMS: Refer to GDB 5.3 instead of 5.2.  Mention FreeBSD
967         problems.
968
969 2002-08-23  Joel Brobecker  <brobecker@gnat.com>
970
971         * infrun.c (handle_inferior_event): Move a comment outside of a
972         function call, in order to avoid indent reformatting this part
973         of the code in an unreadable way.
974
975 2002-08-23  Grace Sainsbury  <graces@redhat.com>
976
977         * infrun.c (normal_stop, proceed): Remove call to print_sys_errmsg
978         when breakpoints fail. Move general breakpoint error messages to
979         insert_breakpoints.  
980         * breakpoint.c (insert_breakpoints): Change warnings when
981         breakpoints are nto inserted to specify the type. Remove call to
982         memory_error when hardware breakpoints can't be inserted. Remove
983         multiple calls to warning so all messages are sent to the user at
984         once.
985         (delete_breakpoints): Make insert error messsages more explicit.
986
987 2002-08-23  Daniel Jacobowitz  <drow@mvista.com>
988
989         * ChangeLog: Move gdbserver entries after GDB 5.2 to
990         gdbserver/ChangeLog.
991
992 2002-08-23  Mark Kettenis  <kettenis@gnu.org>
993
994         * i386-tdep.c: Include "objfiles.h".
995         (i386_svr4_init_abi): Set in_solib_call_trampoline and
996         skip_trampoline_code.
997         * config/i386/tm-i386v4.h: Don't include "config/tm-sysv4.h".
998         (CPLUS_MARKER): Define to '.'.
999
1000         * linux-proc.c (struct linux_corefile_thread_data): Add num_notes
1001         member.
1002         (linux_corefile_thread_callback): Increase args->num_notes.
1003         (linux_make_note_section): Initialize thread_args.num_notes, and
1004         use it to determine whether notes for any threads were created.
1005
1006 2002-08-23  Donn Terry  <donnte@microsoft.com>
1007
1008         * proc-api.c (rw_table): Do not include a row for PCDSTOP if the
1009         corresponding macro is not defined. Likewise for PCNICE, PCSHOLD
1010         and PCUNKILL.
1011         (write_with_trace): Conditionalize out the switch branch handling
1012         PCSHOLD if the corresponding macro is not defined. Likewise for
1013         PRSABORT and PRSTOP.
1014         This change will be needed by the Interix port.
1015
1016 2002-08-22  Elena Zannoni  <ezannoni@redhat.com>
1017
1018         * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): use
1019         write_register wherever possible instead of manipulating the
1020         register bytes directly.
1021         Assign VALUE_CONTENTS to a variable and use that.
1022         The GPR numbers are now dependent on the architecture.
1023         
1024 2002-08-22  Elena Zannoni  <ezannoni@redhat.com>
1025
1026         * rs6000-tdep.c (struct rs6000_framedata): Add saved_ev and
1027         ev_offset fields.
1028         (skip_prologue): Add support for BookE/e500 instructions.
1029         (e500_extract_return_value): New function.
1030         (frame_get_saved_regs): Add support for saving ev registers and
1031         pseudo gpr's.
1032         (e500_store_return_value): New function.
1033         (rs6000_gdbarch_init): Move up default intializations of
1034         deprecated_extract_return_value and store_return_value.  Overwrite
1035         init of store_return_value with e500 specific version.
1036         Set extract_return_value for e500.
1037         
1038 2002-08-22  Elena Zannoni  <ezannoni@redhat.com>
1039
1040         * blockframe.c (generic_call_dummy_register_unwind): Use
1041         regcache_cooked_read to catch cases in which the variable is
1042         stored in a pseudo register.
1043
1044 2002-08-22  Andrew Cagney  <cagney@redhat.com>
1045
1046         * NEWS: Mention that the i960 has been made obsolete.
1047         * Makefile.in (SFILES): Delete remote-nrom.c, remote-nindy.c and
1048         i960-tdep.c
1049         (remote-nrom.o): Obsolete target.
1050         (remote-nindy.o, i960-tdep.o): Ditto.
1051         * remote-nrom.c: Make file obsolete.
1052         * remote-nindy.c, remote-vx960.c: Ditto.
1053         * config/i960/vxworks960.mt, config/i960/nindy960.mt: Ditto.
1054         * config/i960/mon960.mt, config/i960/tm-i960.h: Ditto.
1055         * config/i960/tm-vx960.h, config/i960/tm-nindy960.h: Ditto.
1056         * config/i960/tm-mon960.h, i960-tdep.c: Ditto.
1057         * configure.tgt: Make i960-*-bout*, i960-nindy-coff*,
1058         i960-*-coff*, i960-nindy-elf*, i960-*-elf*, i960-*-nindy* and
1059         i960-*-vxworks* obsolete.
1060         * MAINTAINERS: Note that the i960 is obsolete.
1061
1062 2002-08-21  Corinna Vinschen  <vinschen@redhat.com
1063
1064         * aix-thread.c (aix_thread_detach): Disable thread debugging on
1065         detach to allow reinitialization.
1066
1067 2002-08-22  Andrew Cagney  <ac131313@redhat.com>
1068
1069         * MAINTAINERS: Change the s390 target to s390-linux-gnu (second
1070         attempt).
1071
1072 2002-08-22  Jim Blandy  <jimb@redhat.com>
1073
1074         * coffread.c (coff_symfile_read): Don't try to read the line
1075         number table from disk if the image file doesn't have a symbol
1076         table; we'll never actually look at the info anyway, and Windows
1077         ships DLL's with bogus file offsets for the line number data.
1078
1079 2002-08-21  Elena Zannoni  <ezannoni@redhat.com>
1080
1081         * rs6000-tdep.c (rs6000_gdbarch_init): Figure out whether we have
1082         an e500 executable.
1083
1084 2002-08-21  Michael Snyder  <msnyder@redhat.com>
1085
1086         * mips-tdep.c (MSYMBOL_IS_SPECIAL): Replace macro with function.
1087         (MSYMBOL_SIZE): Replace macro with function.
1088         (DEFAULT_MIPS_TYPE): Delete unused macro.
1089         * config/mips/tm-mips.h (DEFAULT_MIPS_TYPE): Delete unused macro.
1090         * config/mips/tm-embed.h (DEFAULT_MIPS_TYPE): Delete unused macro.
1091
1092 2002-08-21  Jim Blandy  <jimb@redhat.com>
1093
1094         * valops.c (value_cast): Simplify and correct logic for doing a
1095         static cast from a pointer to a base class to a pointer to a
1096         derived class.
1097
1098 2002-08-21  Andrew Cagney  <ac131313@redhat.com>
1099
1100         * infcmd.c (default_print_registers_info): Replace
1101         do_registers_info.
1102         (registers_info): Use gdbarch_print_registers_info instead of
1103         DO_REGISTERS_INFO.
1104         * inferior.h (default_print_registers_info): Replace
1105         do_registers_info.
1106         * gdbarch.sh (PRINT_REGISTERS_INFO): New method.
1107         (DO_REGISTERS_INFO): Change to a predicate function.
1108         * gdbarch.h, gdbarch.c: Regenerate.
1109         
1110 2002-08-21  Keith Seitz  <keiths@redhat.com>
1111
1112         * gdb-events.sh: Add target-changed event.
1113         * gdb-events.c: Regenerated.
1114         * gdb-events.c: Regenerated.
1115         * valops.c (value_assign): Add target-changed event notification
1116         to inlval_register, lval_memory, and lval_reg_frame_relative.
1117
1118 2002-08-21  Joel Brobecker  <brobecker@gnat.com>
1119
1120         * NEWS: Add an entry regarding the improvement of the next/step
1121         operation on Alpha Tru64 multi-processor machines.
1122
1123 2002-08-21  Andrew Cagney  <ac131313@redhat.com>
1124
1125         * Makefile.in: Update dependencies for mi/ cli/ and tui/
1126         directores.
1127         * Makefile.in: Update all _h macro definitions.
1128         * Makefile.in (install-gdbtk): Move to install section.
1129         (rdi-share/libangsd.a): Move to end of file.
1130
1131 2002-08-19  Andrew Cagney  <ac131313@redhat.com>
1132
1133         * frame.c (frame_register_unwind): When a register, set addrp to
1134         the register's byte.
1135
1136 2002-08-20  Michael Snyder  <msnyder@redhat.com>
1137
1138         * mips-tdep.c (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): These are only
1139         used locally, so move them from the target machine header to here.
1140         (mips_set_processor_type, mips_register_name, mips32_next_pc, 
1141         mips16_next_pc, cached_proc_desc, mips_set_processor_type): 
1142         Make static.
1143         * config/mips/tm-mips.h (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Delete.
1144
1145 2002-08-20  Andrew Cagney  <cagney@redhat.com>
1146
1147         * NEWS: Mention that the Apollo line was made obsolete.
1148         * configure.tgt: Make m68*-apollo*-bsd*, m68*-hp-bsd*, and
1149         m68*-hp-hpux* obsolete.
1150         * configure.host: Make m68*-apollo*-sysv*, m68*-apollo*-bsd*,
1151         m68*-hp-bsd* and m68*-hp-hpux* obsolete.
1152         * buildsym.c (make_blockvector): Make static.
1153         * buildsym.h (make_blockvector): Make extern declaration obsolete.
1154         * Makefile.in (HFILES_NO_SRCDIR): Remove dst.h
1155         (ALLDEPFILES): Remove dstread.c.
1156         (dstread.o): Obsolete make rule.
1157         * dstread.c: Makefile obsolete.
1158         * dst.h: Ditto.
1159         * config/m68k/hp300hpux.mt: Ditto.
1160         * config/m68k/hp300hpux.mh: Ditto.
1161         * config/m68k/hp300bsd.mt: Ditto.
1162         * config/m68k/hp300bsd.mh: Ditto.
1163         * config/m68k/apollo68b.mt: Ditto.
1164         * config/m68k/apollo68v.mh: Ditto.
1165         * config/m68k/apollo68b.mh: Ditto.
1166
1167 2002-08-20  Michael Snyder  <msnyder@redhat.com>
1168
1169         * mips-tdep.c (mips_in_return_stub): Make static.
1170         (mips_gdbarch_init): Set in_solib_return_trampoline.
1171         * config/mips/tm-mips.h (IN_SOLIB_RETURN_TRAMPOLINE): Delete.
1172
1173 2002-08-20  Michael Snyder  <msnyder@redhat.com>
1174
1175         * gdbarch.sh (IN_SOLIB_RETURN_TRAMPOLINE): Add.
1176         * gdbarch.c, gdbarch.h: Regenerate.
1177         * arch-utils.c, arch-utils.h (generic_in_solib_return_trampoline):
1178         Add.
1179         * infrun.c (IN_SOLIB_RETURN_TRAMPOLINE): Delete default definition.
1180
1181 2002-08-20  Michael Snyder  <msnyder@redhat.com>
1182
1183         * mips-tdep.c (mips_skip_stub, mips_in_call_stub): Make static.
1184         (mips_gdbarch_init): Set skip_trampoline_code, 
1185         in_solib_call_trampoline.
1186         * config/mips/tm-mips.h (REGISTER_NAME): Delete.
1187         (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE): Delete.
1188
1189 2002-08-20  Elena Zannoni  <ezannoni@redhat.com>
1190
1191         * ppc-tdep.h (struct gdbarch_tdep): Add ev registers.
1192
1193         * rs6000-tdep.c (rs6000_register_virtual_type): Return 64 bit
1194         vector type for ev registers.
1195         (e500_pseudo_register_read): New function.
1196         (e500_pseudo_register_write): New function.
1197         (e500_dwarf2_reg_to_regnum): New function.
1198         (PPC_UISA_NOFP_SPRS): New macro.
1199         (PPC_EV_REGS): New macro.
1200         (PPC_GPRS_PSEUDO_REGS): New macro.
1201         (registers_e500): New register set for e500.
1202         (variants): Add e500 variant.
1203         (rs6000_gdbarch_init): Move setting of pc, sp, fp regnums to
1204         before setting architectural dependent variations.  Initialize ev
1205         registers numbers.  Add case for e500 architecture.  Set the
1206         number of pseudo registers.
1207
1208 2002-08-20  Elena Zannoni  <ezannoni@redhat.com>
1209
1210         * rs6000-tdep.c: Clean up comments.
1211
1212 2002-08-20  Andrew Cagney  <cagney@redhat.com>
1213
1214         * h8300-tdep.c: Re-indent file.
1215
1216 2002-08-20  Jim Blandy  <jimb@redhat.com>
1217
1218         * Makefile.in (LDFLAGS): Allow the configure script to establish a
1219         default for this.
1220
1221 2002-08-20  Keith Seitz  <keiths@redhat.com>
1222
1223         * breakpoints.c (watch_command_1): Use internal breakpoint
1224         when setting a watchpoint_scope breakpoint.
1225
1226 2002-08-20  Elena Zannoni  <ezannoni@redhat.com>
1227
1228         * gdbtypes.c (build_builtin_type_vec64): Add name to type.
1229         (build_builtin_type_vec64i): Ditto.
1230         (build_builtin_type_vec128): Ditto.
1231         (build_builtin_type_vec128i): Ditto.
1232
1233 2002-08-19  Michael Snyder  <msnyder@redhat.com>
1234
1235         * config/mips/tm-mips.h (ELF_MAKE_MSYMBOL_SPECIAL): Delete.
1236         (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Change into functions.
1237         (FIX_CALL_DUMMY, PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME,
1238         POP_FRAME, INIT_EXTRA_FRAME_INFO): Delete.
1239         (CALL_DUMMY_START_OFFSET, CALL_DUMMY_BREAKPOINT_OFFSET,
1240         CALL_DUMMY_ADDRESS): Delete.
1241         * mips-tdep.c (mips_elf_make_msymbol_special, mips_msymbol_size,
1242         mips_msymbol_is_special, mips_fix_call_dummy): New functions.
1243         (mips_gdbarch_init): Set elf_make_msymbol_special, pop_frame, 
1244         push_dummy_frame, fix_call_dummy, init_extra_frame_info, 
1245         push_return_address.
1246         (mips_register_raw_size, mips_eabi_use_struct_convention, 
1247         mips_n32n64_use_struct_convention, mips_o32_use_struct_convention,
1248         mips_o32_reg_struct_has_addr, mips_frame_saved_pc, mips_frame_chain,
1249         mips_init_extra_frame_info, mips_eabi_push_arguments, 
1250         mips_n32n64_push_arguments, mips_push_return_address,
1251         mips_push_dummy_frame, mips_pop_frame, mips_skip_prologue,
1252         mips_breakpoint_from_pc, mips_call_dummy_address): Make static.
1253
1254 2002-08-19  Michael Snyder  <msnyder@redhat.com>
1255
1256         * mips-tdep.c (mips_frame_num_args): New function.
1257         (mips_gdbarch_init): Set frame_chain, frameless_function_invocation,
1258         frame_saved_pc, frame_args_address, frame_locals_address, 
1259         frame_num_args, and frame_args_skip.
1260         * config/mips/tm-mips.h (FRAME_CHAIN, FRAMELESS_FUNCTION_INVOCATION,
1261         FRAME_SAVED_PC, FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS, 
1262         FRAME_NUM_ARGS, FRAME_ARGS_SKIP): Delete.
1263         * config/mips/tm-mipsv4.h (FRAME_CHAIN_VALID): Delete.
1264
1265 2002-08-20  Michael Snyder  <msnyder@redhat.com>
1266
1267         * config/mips/tm-mips.h (STORE_STRUCT_RETURN): Delete.
1268         (EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
1269         * mips-tdep.c (mips_store_struct_return): New function.
1270         (mips_extract_struct_value_address): New function.
1271         (mips_gdbarch_init): Set store_struct_return and
1272         extract_struct_value_address.
1273
1274 2002-08-20  David Carlton  <carlton@math.stanford.edu>
1275
1276         * dwarf2read.c (dwarf2_build_psymtabs): Check that
1277         dwarf_line_offset is nonzero before creating dwarf_line_buffer.
1278         (read_file_scope): Check that line_header is nonzero before
1279         decoding macro information.
1280
1281 2002-08-20  Mark Kettenis  <kettenis@gnu.org>
1282
1283         * i386-tdep.h (FP_REGNUM_P): Change such that we don't incorrectly
1284         flag the general-purpose registers as floating-point on targets
1285         that don't support the floating-point registers.
1286
1287 2002-08-20  Elena Zannoni  <ezannoni@redhat.com>
1288
1289         * rs6000-tdep.c (altivec_register_p): Delete.
1290         (rs6000_do_altivec_registers): Delete.
1291         (rs6000_altivec_registers_info): Delete.
1292         (rs6000_do_registers_info): Delete.
1293         (_initialize_rs6000_tdep): Remove command 'info powerpc altivec'.
1294         (rs6000_gdbarch_init): Remove setting of do_registers_info.
1295
1296 2002-08-20  Elena Zannoni  <ezannoni@redhat.com>
1297
1298         * infcmd.c (do_registers_info): Print vector registers in hex
1299         format only.
1300         (print_vector_info): Check that printing registers
1301         makes sense.
1302         (print_float_info): Ditto.
1303
1304 2002-08-20  Andrew Cagney  <ac131313@redhat.com>
1305
1306         * mips-tdep.c (mips_gdbarch_init): Update.
1307         (mips_o32_extract_return_value): Rewrite.
1308         (mips_o32_store_return_value): Rewrite.
1309         (mips_o32_xfer_return_value): New function.
1310         (mips_xfer_register): Tweak debug print message.  Allow for
1311         buf_offset when dumping the value transfered.
1312
1313 2002-08-20  Andrew Cagney  <ac131313@redhat.com>
1314
1315         * config/mips/tm-nbsd.h (MIPS_DEFAULT_ABI): Delete.
1316         * config/mips/tm-linux.h (MIPS_DEFAULT_ABI): Delete.
1317         * config/mips/tm-irix5.h (MIPS_DEFAULT_ABI): Delete.
1318         * config/mips/tm-irix6.h (MIPS_DEFAULT_ABI): Delete.
1319         * mips-tdep.c (mips_gdbarch_init) [MIPS_DEFAULT_ABI]: Delete code.
1320
1321 2002-08-14  Michael Snyder  <msnyder@redhat.com>
1322
1323         * mips-tdep.c (mips_frame_chain): Check for call-dummy frames.
1324
1325 2002-08-19  Elena Zannoni  <ezannoni@redhat.com>
1326
1327         * rs6000-tdep.c (struct reg): Add field to indicate a pseudo
1328         register.
1329         (P): New macro to define a register as a pseudo register.
1330         (R, R4, R8, R16, FR32, R64, R0): Updated.
1331         (struct variant): Add new fields for number of pseudo registers
1332         and number of total registers.
1333         (tot_num_registers): New macro replacing....
1334         (num_registers): ...deleted macro.
1335         (num_registers): New function.
1336         (num_pseudo_registers): New function.
1337         (variants): Update all variants to intialize new fields correctly.
1338         Postpone initialization of number of pseudo regs and real regs.
1339         (init_variants): New function.
1340         (rs6000_gdbarch_init): Initialize variants.  Update calculation of
1341         registers offsets.
1342
1343 2002-08-19  David Carlton  <carlton@math.stanford.edu>
1344
1345         * valops.c (search_struct_field): Change error message to treat
1346         return value of 0 from value_static_field as meaning that field is
1347         optimized out.
1348         (value_struct_elt_for_reference): Ditto.
1349         * values.c (value_static_field): Treat an unresolved location the
1350         same as a nonexistent symbol.  Fix PR gdb/635.
1351         * gnu-v2-abi.c (gnuv2_value_rtti_type): Eliminate test for being
1352         enclosed.  Fix PR gdb/574.
1353         * MAINTAINERS: Add self to Write After Approval list.
1354
1355 2002-08-19  Andrew Cagney  <ac131313@redhat.com>
1356
1357         * mips-tdep.c (mips_xfer_register): New function.
1358         (mips_n32n64_extract_return_value): Rewrite.
1359         (mips_gdbarch_init): For N32 and N64, set extract_return_value
1360         instead of deprecated_extract_return_value.
1361
1362 2002-08-19  Elena Zannoni  <ezannoni@redhat.com>
1363
1364         * rs6000-tdep.c (TDEP): Delete macro.
1365         (branch_dest): Replace use of TDEP macro with its body.
1366         (rs6000_pop_frame): Ditto.
1367         (rs6000_push_arguments): Ditto.
1368         (rs6000_skip_trampoline_code): Ditto.
1369         (rs6000_frame_saved_pc): Ditto.
1370         (rs6000_frame_chain): Ditto.
1371         (rs6000_register_name): Ditto.
1372         (rs6000_register_byte): Ditto.
1373         (rs6000_register_raw_size): Ditto.
1374         (rs6000_register_virtual_type): Ditto.
1375         (rs6000_register_convertible): Ditto.
1376         (rs6000_convert_from_func_ptr_addr): Ditto.
1377
1378 2002-08-19  Daniel Jacobowitz  <drow@mvista.com>
1379
1380         * config/mips/tm-linux.h (REALTIME_LO, REALTIME_HI): Define
1381         conditionally.
1382         (JB_PC, JB_ELEMENT_SIZE): Rename to MIPS_LINUX_JB_PC and
1383         MIPS_LINUX_JB_ELEMENT_SIZE.
1384         * mips-linux-tdep.c (supply_gregset, fill_gregset): Use alloca
1385         for MAX_REGISTER_RAW_SIZE arrays.
1386         (mips_linux_get_longjmp_target): Use MIPS_LINUX_JB_PC and
1387         MIPS_LINUX_JB_ELEMENT_SIZE.
1388
1389 2002-08-19  Pierre Muller  <muller@ics.u-strasbg.fr>
1390
1391         * i387-tdep.c (i387_print_float_info): Fix typo in comment.
1392
1393 2002-08-19  Aidan Skinner <aidan@velvet.net>
1394
1395         * Makefile.in (SFILES): Add ada-exp.y ada-lang.c ada-typeprint.c
1396         ada-valprint.c ada-tasks.c.
1397         (YYFILES): Add ada-exp.y.
1398         (ada-exp.tab.c ada-lex.c ada-lang.o): New target.
1399         (ada-tasks.o ada-typeprint.o ada-valprint.o): New target.
1400         (ada-exp.tab.o): New target.
1401                 
1402 2002-08-18  Andrew Cagney  <ac131313@redhat.com>
1403
1404         * regcache.c (regcache_xfer_part): New function.
1405         (regcache_raw_read_part): New function.
1406         (regcache_raw_write_part): New function.
1407         (regcache_cooked_read_part): New function.
1408         (regcache_cooked_write_part): New function.
1409         * regcache.h (regcache_raw_read_part): Declare.
1410         (regcache_raw_write_part): Declare.
1411         (regcache_cooked_read_part): Declare.
1412         (regcache_cooked_write_part): Declare.
1413
1414 2002-08-18  Daniel Jacobowitz  <drow@mvista.com>
1415
1416         * remote.c (remote_open_1): Add async_p.
1417         (remote_async_open_1): Delete.
1418         (open_remote_target): Delete.
1419         (remote_open, extended_remote_open): Update calls to remote_open_1.
1420         (remote_async_open, extended_remote_async_open): Call
1421         remote_open_1 instead of remote_async_open_1.
1422
1423 2002-08-19  Mark Kettenis  <kettenis@gnu.org>
1424
1425         * blockframe.c: Fix a few coding standard violations.
1426
1427 2002-08-19  Mark Kettenis  <kettenis@gnu.org>
1428
1429         * config/i386/nm-i386sco5.h (START_INFERIOR_TRAPS_EXPECTED): Moved
1430         here from ...
1431         * config/i386/tm-i386sco5.h: ... here.  File removed.
1432         * config/i386/i386sco5.mt (TM_FILE): Set to tm-i386v4.h.
1433
1434         * config/i386/nm-i386v.h (START_INFERIOR_TRAPS_EXPECTED): New define.
1435         * config/i386/i386aout.mt (TDEPFILES): Add i387-tdep.o
1436         (TM_FILE): Set to tm-i386.h.
1437         * config/i386/i386v.mt (TM_FILE): Set to tm-i386.h.
1438         * config/i386/tm-i386v.h: Remove file.
1439         * config/i386/tm-ptx.h [!SEQUENT_PTX4]: Include "i386/tm-i386.h"
1440         instead of "i386/tm-i386v.h".
1441         (START_INFERIOR_TRAPS_EXPECTED): Remove define.
1442         * config/i386/tm-symmetry: Include "i386/tm-i386.h" instead of
1443         "i386/tm-i386v.h".
1444         (START_INFERIOR_TRAPS_EXPECTED): Remove define.
1445         * config/i386/tm-vxworks.h: Include "i386/tm-i386.h" instead of
1446         "i386/tm-i386.h".
1447
1448 2002-08-18  Mark Kettenis  <kettenis@gnu.org>
1449
1450         * config/i386/nm-i386v.h: Add protection against
1451         multiple-inclusion.
1452         (i386_register_u_addr): Remove prototype.
1453         (register_u_addr): New prototype.
1454         (REGISTER_U_ADDR): Redefine accordingly.
1455         * i386v-nat.c: Improve several comments.
1456         (i386_register_u_addr): Change signature and rename to
1457         register_u_addr.  Use FP_REGNUM_P.  Rewrite slightly to get rid of
1458         ubase variable.
1459
1460 2002-08-18  Andrew Cagney  <ac131313@redhat.com>
1461
1462         * config/mips/tm-mips.h (STORE_RETURN_VALUE): Delete macro.
1463         (DEPRECATED_EXTRACT_RETURN_VALUE): Delete macro.
1464         * mips-tdep.c (mips_gdbarch_init): Set store_return_value and
1465         deprecated_extract_return_value.
1466         (mips_o32_push_arguments, mips_o64_push_arguments): Clone and
1467         rename mips_o32o64_push_arguments.
1468         (mips_gdbarch_init): Update.
1469         (mips_extract_return_value): Delete.
1470         (mips_o32_extract_return_value): Clone mips_extract_return_value.
1471         (mips_o64_extract_return_value): Clone mips_extract_return_value.
1472         (mips_eabi_extract_return_value): Clone mips_extract_return_value.
1473         (mips_n32n64_extract_return_value): Clone
1474         mips_extract_return_value.
1475         (mips_store_return_value): Delete.
1476         (mips_o32_store_return_value): Clone mips_store_return_value.
1477         (mips_o64_store_return_value): Clone mips_store_return_value.
1478         (mips_eabi_store_return_value): Clone mips_store_return_value.
1479         (mips_n32n64_store_return_value): Clone mips_store_return_value.
1480
1481 2002-08-18  Aidan Skinner <aidan@velvet.net>
1482
1483         * ada-lang.c: Use gdb_string.h instead of <string.h>.
1484         * ada-typeprint.c: Use gdb_string.h instead of <string.h>.
1485                 
1486 2002-08-18  Aidan Skinner <aidan@velvet.net>
1487
1488         * ada-lang.c: Run through gdb_indent.sh.
1489         * ada-lang.h: Run through gdb_indent.sh.
1490         * ada-tasks.c: Run through gdb_indent.sh.
1491         * ada-typeprint.c: Run through gdb_indent.sh.
1492         * ada-valprint.c: Run through gdb_indent.sh.
1493
1494 2002-08-18  Andrew Cagney  <ac131313@redhat.com>
1495
1496         * osabi.c (gdbarch_init_osabi): Don't complain about an unknown
1497         ABI.
1498
1499 2002-08-18  Mark Kettenis  <kettenis@gnu.org>
1500
1501         * i386b-nat.c [FETCH_INFERIOR_REGISTERS]: Remove dead code.
1502
1503         * config/i386/nm-i386bsd.h (FLOAT_INFO): Remove redundant #undef.
1504         * i386b-nat.c [FLOAT_INFO]: Remove dead code.
1505
1506         * i386-tdep.c (i386_do_pop_frame, i386_store_return_value): Call
1507         write_register_gen instead of write_register_bytes.
1508
1509         * NEWS: Mention that the i[3456]-*mach3*, i[3456]-*-mach* and
1510         i[3456]-*-osf1mk* configurations have been made obsolete.
1511         * configure.host: Make i[3456]86-*-mach3*, i[3456]86-*mach* and
1512         i[3456]86-*-osf1mk* hosts obsolete.
1513         * confighure.tgt: Make i[3456]86-*-mach3*, i[3456]86-*-osf1mk*
1514         targets obsolete.
1515         * config/i386/i386mach.mh, config/i386/nm-i386mach.h,
1516         config/i386/xm-i386mach.h, config/i386/i386m3.mh,
1517         config/i386/i386m3.mt, config/i386/nm-m3.h,
1518         config/i386/tm-i386m3.h, config/i386/xm-i386m3.h,
1519         config/i386/i386mk.mh, config/i386/i386mk.mt,
1520         config/i386/tm-i386mk.h, config/i386/xm-i386mk.h: Make files
1521         obsolete.
1522         * i386mach-nat.c, i386m3-nat.c: Make files obsolete.
1523         * Makefile.in (ALLDEPFILES): Remove i386mach.c i386m3-nat.c
1524         (i386mach-nat.o, i386m3-nat.o):Make targets obsolete.
1525
1526 2002-08-18  Andrew Cagney  <ac131313@redhat.com>
1527
1528         * config/pa/tm-hppa.h (hppa_store_return_value): Declare.
1529         (hppa_value_returned_from_stack): Declare.
1530         (hppa_extract_return_value): Declare.
1531         * config/pa/hppa.mt: New file.
1532         * configure.tgt: Recognize hppa*-*-*.
1533         * MAINTAINERS: Change HPPA target to hppa-elf.  Still broken.
1534
1535 2002-08-18  Mark Kettenis  <kettenis@gnu.org>
1536
1537         * i386-sol2-tdep.c (_initialize_i386_sol2_tdep): Fix typo in
1538         comment.
1539
1540 2002-08-17  Mark Kettenis  <kettenis@gnu.org>
1541
1542         * top.c (gdb_rl_operate_and_get_next): Make sure
1543         operate-and-get-next functions correctly even when the history
1544         list is completely filled.
1545
1546 2002-08-18  Andrew Cagney  <ac131313@redhat.com>
1547
1548         * MAINTAINERS (Target Instruction Set Architectures): Rename
1549         Target/Architectures.  Replace vax-dec-vms5.5 with vax-netbsd.
1550         Replace s390-linux with s390-linux-gnu.  Remove i386-aout,
1551         mcore-pe, mips64-elf, sparc64-elf.  Remove i586-pc-msdosdjgpp,
1552         already listed under Host/Native.
1553
1554         * configure.tgt: Combine i[3456]86-*-coff*, i[3456]86-*-elf*,
1555         i[3456]86-*-pe*, and i[3456]86-*-aout* into i[3456]86-*-*.  Add
1556         mips*-*-*.
1557
1558 2002-08-17  Andrew Cagney  <ac131313@redhat.com>
1559
1560         * config/ia64/ia64.mt: New file.
1561         * config/alpha/alpha.mt: New file.
1562         * MAINTAINERS: Change the alpha target to alpha-elf and IA-64 to
1563         ia64-linux-gnu.  Mention that ia64-elf is broken.
1564         * configure.tgt: Add alpha*-*-* and ia64*-*-* patterns.
1565
1566 2002-08-17  Mark Kettenis  <kettenis@elgar.kettenis.dyndns.org>
1567
1568         * i386-tdep.c (i386_svr4_init_abi, i386_nw_init_abi): Use
1569         generic_func_frame_valid instead of func_frame_valid.
1570
1571 2002-08-16  Joel Brobecker  <brobecker@gnat.com>
1572
1573         * alpha-osf1-tdep.c (alpha_osf1_init_abi): Unfortunately,
1574         procfs appears to be broken when debugging on multi-processor
1575         machines. So enable software single stepping in order to avoid
1576         using the procfs interface to do next/step operations, using
1577         internal breakpoints instead.
1578
1579         * infrun.c (handle_inferior_event): Readjust the stop_pc by
1580         DECR_PC_AFTER_BREAK when hitting a single step breakpoint, to
1581         make this pc address equal to the value it would have if the
1582         system stepping capability was used. Also set a new flag used
1583         to ensure that we don't readjust the PC one more time later.
1584
1585         * breakpoint.c (bpstat_stop_status): Do not adjust the PC
1586         address by DECR_PC_AFTER_BREAK when software single step is
1587         in use for this architecture, as this has already been taken
1588         care of in handle_inferior_event().
1589
1590 2002-08-16  Joel Brobecker  <brobecker@gnat.com>
1591
1592         * infrun.c (handle_inferior_event): Minor reformatting, to make
1593         a rather long condition expression easier to read.
1594
1595 2002-08-16  Andrew Cagney  <ac131313@redhat.com>
1596
1597         * Makefile.in (gdbtk.o): Move to end of file.
1598         (gdbtk-bp.o, gdbtk-cmds.o): Ditto.
1599         (gdbtk-hooks.o, gdbtk-register.o): Ditto.
1600         (gdbtk-stack.o, gdbtk-varobj.o): Ditto.
1601         (gdbtk-wrapper.o, gdbres.o): Ditto.
1602
1603 2002-08-16  Andrew Cagney  <ac131313@redhat.com>
1604
1605         * Makefile.in (copying.o): Separate out compile rule.
1606         (hpux-thread.o, procfs.o, signals.o): Ditto.
1607         (v850ice.o, z8k-tdep.o): Ditto.
1608         (tui-file.o): Move to TUI section.
1609         (xdr_ptrace.o, xdr_rdb.o, xdr_ld.o): Move to separate section.
1610         (nindy.o, Onindy.o, ttyflush.o): Move to separate section.
1611
1612 2002-08-16  Joel Brobecker  <brobecker@gnat.com>
1613
1614         * i386-tdep.c (i386_pe_skip_trampoline_code): renamed from
1615         skip_trampoline_code, for better namespace-proofing.   
1616
1617         * i386-tdep.h (i386_pe_skip_trampoline_code): Add declaration.
1618
1619 2002-08-16  Joel Brobecker  <brobecker@gnat.com>
1620
1621         * config/i386/tm-cygwin.h: Remove some "#if 0"'ed macros.
1622
1623 2002-08-16  Joel Brobecker  <brobecker@gnat.com>
1624
1625         * infrun.c (handle_inferior_event): When receiving a SIGTRAP
1626         signal, check whether we hit a breakpoint before checking for a
1627         single step breakpoint. Otherwise, GDB fails to notice that a
1628         breakpoint has been hit when stepping onto a breakpoint.
1629
1630 2002-08-16  Keith Seitz  <keiths@redhat.com>
1631
1632         * gdb-events.sh (clear_gdb_event_hooks): New function.
1633         * gdb-events.c: Regenerate.
1634         * gdb-events.h: Regenerate.
1635
1636 2002-08-16  Andrew Cagney  <ac131313@redhat.com>
1637
1638         * breakpoint.c (bpstat_stop_status): Rename not_a_breakpoint to
1639         not_a_sw_breakpoint.
1640         * breakpoint.h (bpstat_stop_status): Add parameter names.
1641
1642 2002-08-16  Grace Sainsbury  <graces@redhat.com>
1643
1644         * remote.c (remote_insert_hw_breakpoint)
1645         (remote_remove_hw_breakpoint): Fix calculation of length field
1646         for Z-packet.
1647
1648 2002-08-15  Michael Snyder  <msnyder@redhat.com>
1649
1650         * irix5-nat.c (supply_gregset): Allocate plenty-big buffer
1651         (32 bytes) instead of using MAX_REGISTER_RAW_SIZE.
1652         (supply_fpregset): Ditto.
1653         
1654         * config/mips/tm-mips.h (REGISTER_CONVERT_TO_VIRTUAL, 
1655         REGISTER_CONVERT_TO_RAW, REGISTER_CONVERTIBLE, 
1656         MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE): Delete.
1657         (TARGET_READ_SP): Delete.
1658         (DO_REGISTERS_INFO): Delete.
1659         (FUNCTION_START_OFFSET, IN_SIGTRAMP, REGISTER_VIRTUAL_SIZE):
1660         Delete.
1661         (REGISTER_CONVERT_FROM_TYPE, REGISTER_CONVERT_TO_TYPE): Convert
1662         from macros to functions.
1663
1664         * mips-tdep.c (mips_gdbarch_init): Set the above in the gdbarch.
1665         (mips_register_convertible, mips_register_convert_to_virtual,
1666         mips_register_convert_to_raw): Make static.
1667         (mips_read_sp): New function.
1668         (mips_gdbarch_init): Set gdbarch read_sp to mips_read_sp.
1669         (mips_do_registers_info): Make static.
1670         (mips_gdbarch_init): Insert mips_do_registers_info into gdbarch.
1671         (in_sigtramp): Make static, rename to mips_pc_in_sigtramp.
1672         (mips_register_convert_from_type, mips_register_convert_to_type):
1673         New functions.
1674         (mips_gdbarch_init): Set up function_start_offset, 
1675         register_virtual_size, pc_in_sigtramp.
1676
1677 2002-08-15  Andrew Cagney  <ac131313@redhat.com>
1678
1679         * infcmd.c (vector_info): New function.
1680         (_initialize_infcmd): Add command "info vector".
1681         (print_vector_info): New function.
1682
1683         * gdbarch.sh (PRINT_VECTOR_INFO): New method
1684         * gdbarch.h, gdbarch.c: Regenerate.
1685
1686 2002-08-15  Andrew Cagney  <ac131313@redhat.com>
1687
1688         * infcmd.c (do_registers_info): Rename parameter ``fpregs'' to
1689         ``print_all''.  Only print vector registers when ``print_all''.
1690
1691 2002-08-15  Andrew Cagney  <ac131313@redhat.com>
1692
1693         * i387-tdep.h (i387_print_float_info): Add `args' parameter.
1694         * i387-tdep.c (i387_print_float_info): Add `args' parameter.
1695
1696         * gdbarch.sh (PRINT_FLOAT_INFO): Change to a predicate method.
1697         Add `args' parameter.
1698         * gdbarch.h, gdbarch.c: Regenerate.
1699         
1700         * arm-tdep.c (arm_print_float_info): Add the parameter `args'.
1701         
1702         * infcmd.c (float_info): Call print_float_info.
1703         (print_float_info): New function.  By default, print the
1704         floating-point registers.
1705
1706         * arch-utils.h (default_print_float_info): Delete declaration.
1707         * arch-utils.c (default_print_float_info): Delete function.
1708         
1709 2002-08-16  Mark Kettenis  <kettenis@gnu.org>
1710
1711         * config/i386/nm-i386v.h (FLOAT_INFO): Remove already commented
1712         out define.
1713
1714         * i387-tdep.c (i387_print_float_info): Add comment about ignoring
1715         FRAME.
1716
1717         * NEWS: Mention that the i[3456]-*-aix target has been made obsolete.
1718         * configure.host: Make i[3456]86-*-aix host obsolete.
1719         * configure.tgt: Make i[3456]86-*-aix target obsolete.
1720         * config/i386/i386aix.mh, config/i386/i386aix.mt,
1721         config/i386/nm-i386aix.h, condig/i386/tm-i386aix.h,
1722         config/i386/xm-i386aix.h: Make files obsolete.
1723         * i386aix-nat.c: Make file obsolete.
1724         * Makefile.in (ALLDEPFILES): Remove i386aix-nat.c.
1725         (i386aix-nat.o): Make target obsolete.
1726
1727         * config/i386/nm-gnu.h: Removed.
1728         * config/i386/nm-i386gnu.h: New file.
1729         (THREAD_STATE_FLAVOR, THREAD_STATE_SIZE,
1730         THREAD_STATE_SET_TRACED, THREAD_STATE_CLEAR_STATE, ATTACH_DETACH):
1731         Moved here from ...
1732         * config/i386/tm-i386gnu.h: ... here.  Removed.
1733         * config/i386/xm-i386gnu.h: Removed.
1734         * config/i386/i386gnu.mh (XM_FILE): Set to xm-i386.h.
1735         (NAT_FILE): Set to nm-i386gnu.h.
1736         * config/i386/i386gnu.mt (TDEPFILES): Add i386gnu-tdep.o.
1737         * i386-tdep.c: New file.
1738         * Makefile.in (ALLDEPFILES): Add i386gnu-nat.c and i386gnu-tdep.c.
1739         (i386gnu-tdep.o): Specify dependencies.
1740
1741 2002-08-15  Mark Kettenis  <kettenis@gnu.org>
1742
1743         * config/i386/tm-i386sco5.h: Include "i386/tm-i386v4.h" instead of
1744         "i386/tm-i386.h", "i386/tm-i386v.h" and "config/tm-sysv.h".
1745         Adjust a few comments to reflect reality a bit closer.
1746         (KERNEL_U_SIZE, TARGET_HAS_HARDWARE_WATCHPOINTS,
1747         TARGET_CAN_USE_HARDWARE_WATCHPOINT, HAVE_CONTINUEABLE_WATCHPOINT,
1748         HAVE_STEPPABLE_WATCHPOINT, STOPPED_BY_WATCHPOINT,
1749         target_insert_watchpoint, target_remove_watchpoint):
1750         Move defines to ...
1751         * config/i386/nm-i386sco5.h: ... here.
1752         (kernel_u_size): Add prototype.  Improve a few comments and add
1753         protection against multiple inclusion.
1754         
1755         * config/i386/nm-i386sco.h (FLOAT_INFO): Remove already commented
1756         out define.
1757
1758         * uw-thread.c (SP_ARG0): Define if not already defined.
1759         * config/i386/tm-i386.h (SO_ARG0): Remove define.
1760
1761         * config/i386/tm-i386v4.h (HAVE_I387_REGS): Remove define.
1762
1763         * config/i386/tm-i386.h: Don't include "regcache.h".
1764
1765         * i387-tdep.h (i387_print_float_info): New prototype.
1766         * i387-tdep.c (print_i387_value, print_i387_ext,
1767         print_i387_status_word, print_i387_control_word): Add `struct
1768         ui_file *' argument and use it for output.
1769         (i387_print_float_info): Renamed from i387_float_info.  Add
1770         `struct gdbarch *' and `struct ui_file *' arguments and use the
1771         latter for output.
1772         * i386-tdep.c: Include "i387-tdep.h".
1773         (i386_gdbarch_init): Set print_float_info.
1774         * config/i386/tm-i386.h (i387_float_info): Remove prototype.
1775         (FLOAT_INFO): Remove define.
1776
1777 2002-08-13  Michael Snyder  <msnyder@redhat.com>
1778
1779         * mips-tdep.c (mips_push_arguments): Rename to
1780         mips_eabi_push_arguments, and tune for EABI.
1781         (MIPS_REGS_HAVE_HOME_P): Delete.
1782         (struct gdbarch_tdep): Remove mips_regs_have_home_p field.
1783         (mips_gdbarch_init): Set gdbarch push_arguments for eabi.
1784         Delete references to mips_regs_have_home_p.
1785
1786 2002-08-14  Keith Seitz  <keiths@redhat.com>
1787
1788         * Makefile.in (install-gdbtk): Create insight plugin directory.
1789         Install plugins.tcl file.
1790
1791 2002-08-14  Keith Seitz  <keiths@redhat.com>
1792
1793         * configure.in: Move SUBDIRS to near top of the file so that
1794         --enable options may add things to it.
1795         If gdbtk is enabled, add gdbtk directory to SUBDIRS and configdirs.
1796         * configure: Regenerate.
1797
1798 2002-08-13  Michael Snyder  <msnyder@redhat.com>
1799
1800         * mips-tdep.c (mips_o32o64_push_arguments):  New function, 
1801         cloned from mips_push_arguments, tuned for o32/o64 ABI.
1802         (mips_gdbarch_init): Set gdbarch_push_arguments to new func.
1803
1804 2002-08-13  Andrew Cagney  <ac131313@redhat.com>
1805
1806         * vax-tdep.c (vax_get_saved_register): Delete function.
1807         (vax_gdbarch_init): Update.
1808         * ns32k-tdep.c (ns32k_get_saved_register): Delete function.
1809         (ns32k_gdbarch_init): Update.
1810         * alpha-tdep.c (alpha_get_saved_register): Delete function.
1811         (alpha_gdbarch_init): Update.
1812
1813 2002-08-13  Andrew Cagney  <cagney@redhat.com>
1814
1815         * regcache.c (init_regcache_descr): Overallocate the
1816         raw_register_valid_p array including space for NUM_PSEUDO_REGS.
1817         (registers_changed): Replace NUM_REGS+NUM_PSEUDO_REGS with
1818         nr_raw_registers.
1819         (set_register_cached): Add range checking assertions.  Use
1820         current_regcache.
1821
1822 2002-08-13  Mark Kettenis  <kettenis@gnu.org>
1823
1824         * i386-tdep.c (i386_stab_reg_to_regnum): Return correct register
1825         numbers for MMX registers.
1826
1827 2002-08-13  Andrew Cagney  <cagney@redhat.com>
1828
1829         * i386-tdep.c (i386_gdbarch_init): Use
1830         generic_unwind_get_saved_register.
1831
1832 2002-08-13  Kevin Buettner  <kevinb@redhat.com>
1833
1834         * procfs.c (procfs_can_use_hw_breakpoint): New function.
1835         (init_procfs_ops): Define ``to_can_use_hw_breakpoint'' for procfs
1836         target vector.
1837         * config/mips/nm-irix5.h (TARGET_CAN_USE_HARDWARE_WATCHPOINT):
1838         Delete.  Add comment regarding this now-deleted target method.
1839
1840 2002-08-13  Stephane Carrez  <stcarrez@nerim.fr>
1841
1842         * m68hc11-tdep.c (M68HC12_NUM_PSEUDO_REGS): New define.
1843         (M68HC12_HARD_PC_REGNUM): Define specific PC for 68HC12 (pseudo reg).
1844         (m68hc11_pseudo_register_read): Compute the 68HC12 PC using the
1845         real PC and the page number (if it's within the memory bank window).
1846         (m68hc11_pseudo_register_write): Likewise when saving.
1847         (m68hc11_register_name): Name the virtual pc 'pc' and the real one ppc.
1848         (m68hc11_register_virtual_type): Return uint32 for virtual pc.
1849         (m68hc11_register_raw_size): And use 32-bit for it.
1850         (m68hc11_gdbarch_init): Use 32-bit address for 68HC12 if the
1851         16K memory bank is used by the prog; also use the virtual pc.
1852
1853 2002-08-13  Stephane Carrez  <stcarrez@nerim.fr>
1854
1855         * m68hc11-tdep.c (m68hc11_elf_make_msymbol_special): New function.
1856         (m68hc11_gdbarch_init): Install it in gdbarch.
1857         (MSYMBOL_SET_RTC, MSYMBOL_SET_RTI): New to set symbol specific flags.
1858         (MSYMBOL_IS_RTC, MSYMBOL_IS_RTI): New to test these flags.
1859         (MSYMBOL_SIZE): New for documentation.
1860         (insn_return_kind): Enum to specify how a function returns.
1861         (frame_extra_info): Cleanup and record the return mode.
1862         (gdbarch_tdep, USE_PAGE_REGISTER): New to control the use of page 
1863         register in address computation.
1864         (m68hc11_get_return_insn): New to obtain the return instruction used
1865         by the function.
1866         (m68hc11_frame_init_saved_regs): Take into account the return
1867         instruction used by the function for far and interrupt functions.
1868         (m68hc11_init_extra_frame_info): Take into account page register.
1869         (m68hc11_frame_args_address): Adjust according to the return mode.
1870         (show_regs): Print page register only when it's used.
1871
1872 2002-08-13  Stephane Carrez  <stcarrez@nerim.fr>
1873
1874         * m68hc11-tdep.c (HARD_PAGE_REGNUM): Define for 68HC12 page register.
1875         (M68HC11_LAST_HARD_REG, m68hc11_register_names): Update.
1876         (m68hc11_register_virtual_type): Return a 8-bit type for 8-bit
1877         registers.
1878         (m68hc11_register_raw_size): Likewise.
1879
1880 2002-08-13  Andrew Cagney  <cagney@redhat.com>
1881
1882         * i386-tdep.c (i386_register_name): Handle mmx registers.
1883         (mmx_regnum_p): New function.
1884         (i386_mmx_names): New array.
1885         (mmx_num_regs): New variable.
1886         (i386_pseudo_register_read): New function.
1887         (i386_pseudo_register_write): New function.
1888         (mmx_regnum_to_fp_regnum): New function. Code from Fernando Nasser.
1889
1890         * regcache.c (regcache_raw_read_unsigned): New function.
1891         (regcache_raw_read_signed): New function.
1892         * regcache.h (regcache_raw_read_unsigned): Declare.
1893         (regcache_raw_read_signed): Declare.
1894
1895 2002-08-13  Andrew Cagney  <cagney@redhat.com>
1896
1897         * regcache.c (regcache_raw_read_as_address): Delete function.
1898         (regcache_cooked_read_signed): New function.
1899         (regcache_cooked_read_unsigned): New function.
1900         * regcache.h (regcache_cooked_read_signed): Declare.
1901         (regcache_cooked_read_unsigned): Declare.
1902         (regcache_raw_read_as_address): Delete declaration.
1903
1904         * blockframe.c (generic_read_register_dummy): Use
1905         regcache_cooked_read_unsigned.
1906         * i386-tdep.c (i386_extract_struct_value_address): Use
1907         regcache_cooked_read_unsigned.
1908
1909 2002-08-13  Stephane Carrez  <stcarrez@nerim.fr>
1910
1911         * m68hc11-tdep.c (m68hc11_gdbarch_init): Set int, double and long
1912         double sizes according to ELF ABI flags.
1913         (gdbarch_tdep): Record elf_flags.
1914
1915 2002-08-13  Stephane Carrez  <stcarrez@nerim.fr>
1916
1917         * m68hc11-tdep.c (M6812_OP_PSHX, M6812_OP_PSHY): New defines.
1918         (m6812_prolog): They can appear in 68HC12 function prologue.
1919         (m68hc11_frame_chain): Cleanup.
1920
1921 2002-08-12  Andrew Cagney  <cagney@redhat.com>
1922
1923         * i386-tdep.h (i386_register_byte, i386_register_raw_size): Delete
1924         declarations.
1925         * i386-linux-tdep.c (i386_linux_register_byte): Delete function.
1926         (i386_linux_register_raw_size): Delete function.
1927         (i386_linux_init_abi): Update.
1928         * i386-tdep.c (i386_register_raw_size): Delete function.
1929         (i386_register_byte): Delete function.
1930         (i386_gdbarch_init): Update.
1931         (i386_register_size): Delete array.
1932         (i386_register_offset): Delete array.
1933
1934         * config/i386/tm-symmetry.h (REGISTER_BYTE): Delete macro.
1935         (REGISTER_RAW_SIZE): Delete macro.
1936         * config/i386/tm-ptx.h (REGISTER_RAW_SIZE): Delete macro.
1937         (REGISTER_BYTE): Delete macro.
1938
1939 2002-08-11  Aidan Skinner <aidan@velvet.net>
1940
1941         * ada-lang.c (ada_lookup_partial_symbol)
1942         (to_fixed_variant_branch_type) (find_line_in_linetable): Fix
1943         prototype names so that grep ^func works properly.
1944
1945         * ada-lang.c (ada_array_element_type)
1946         (ada_lookup_partial_symbol): Fix typos in parameter list.
1947
1948         * ada-valprint.c (val_print_packed_array_elements) (ada_val_print_1):
1949         Fix prototype names so that grep ^func works properly.
1950         
1951 2002-08-10  Andrew Cagney  <cagney@redhat.com>
1952             Elena Zannoni  <ezannoni@redhat.com>
1953             Martin M. Hunt  <hunt@redhat.com>
1954
1955         * gdbtypes.c (build_builtin_type_vec128): Set the vector bit.
1956         (build_builtin_type_vec128i): Set the vector bit.
1957         * gdbtypes.h (builtin_type_vec64, builtin_type_vec64i): Declare.
1958         * gdbtypes.c (builtin_type_vec64, builtin_type_vec64i): Define.
1959         (build_builtin_type_vec64): New function.
1960         (build_builtin_type_vec64i): New function.
1961         (build_gdbtypes): Initialize builtin_type_vec64 and
1962         builtin_type_vec64i.
1963
1964 2002-08-09  Andrew Cagney  <cagney@redhat.com>
1965
1966         * regcache.c (regcache_dump): Compare the register offset
1967         with REGISTER_BYTE.
1968         * arch-utils.c (generic_register_byte): New function.
1969         * arch-utils.h (generic_register_byte): Declare.
1970         * gdbarch.sh (REGISTER_BYTE): Default to generic_register_byte.
1971         * gdbarch.h, gdbarch.c: Regenerate.
1972
1973 2002-08-09  Andrew Cagney  <cagney@redhat.com>
1974
1975         * regcache.c: Include "gdbcmd.h"
1976         (_initialize_regcache): Add commands "maintenance print
1977         registers", "maintenance print raw-registers" and "maintenance
1978         print cooked-registers".
1979         (enum regcache_dump_what): Define.
1980         (dump_endian_bytes): New function.
1981         (regcache_dump): New function.
1982         (regcache_print): New function.
1983         (maintenance_print_registers): New function.
1984         (maintenance_print_raw_registers): New function.
1985         (maintenance_print_cooked_registers): New function.
1986         * Makefile.in (regcache.o): Update dependencies.
1987
1988 2002-08-09  Michael Snyder  <msnyder@redhat.com>
1989
1990         * mips-tdep.c (ROUND_DOWN, ROUND_UP): Move to global scope.
1991         (mips_push_arguments): Correct some comments.  Use paddr_nz
1992         for printing addresses in debug output.  Replace static
1993         allocation using MAX_REGISTER_RAW_SIZE with alloca.
1994         (mips_n32n64_push_arguments): New function, cloned from
1995         mips_push_arguments and tuned for the n32/n64 ABI.
1996         (mips_push_register): Buffer needs dynamic allocation.
1997         (mips_print_register): Ditto.
1998         (do_gp_register_row): Ditto.
1999         (mips_store_return_value): Ditto.
2000         (mips_gdbarch_init): Set gdbarch_push_arguments per ABI.
2001
2002 2002-08-09  Don Howard  <dhoward@redhat.com>
2003
2004         * memattr.c (mem_info_command): Print special case of upper bound
2005         as max CORE_ADDR + 1.
2006
2007 2002-08-08  Michael Snyder  <msnyder@redhat.com>
2008
2009         * mips-tdep.c (mips_n32n64_use_struct_convention): N32 only 
2010         returns structs by ref if they're too big to fit in two registers.
2011
2012 2002-08-09  Kevin Buettner  <kevinb@redhat.com>
2013
2014         * mips-tdep.c (mips_init_extra_frame_info): Initialize SP_REGNUM's
2015         saved regs value.
2016         (read_next_frame_reg): Call FRAME_INIT_SAVED_REGS instead of
2017         mips_find_saved_regs().
2018         (mips_pop_frame): Likewise.
2019
2020 2002-08-09  Kevin Buettner  <kevinb@redhat.com>
2021
2022         * blockframe.c (frame_saved_regs_register_unwind): Revise
2023         PC_IN_CALL_DUMMY assertion to only apply when generic dummy
2024         frames are in use.
2025
2026 2002-08-09  Grace Sainsbury  <graces@redhat.com>
2027         
2028         * remote.c: (remote_wait, remote_async_wait): Add check for awatch
2029         T-packets; the 'a' is not taken as a register number.
2030         (remote_check_watch_resources, remote_stopped_by_watchpoint)
2031         (remote_stopped_data_address): New functions; add to target
2032         vector.
2033         (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Change
2034         prototypes to match other implementations of this
2035         function. replace integer argument with pointer -- the length
2036         field in the Z-packet is the length of what is pointed to or 1 if
2037         pointer is null. Add to target vector.
2038         (remote_insert_watchpoint, remote_remove_watchpoint): Add to
2039         target vector.
2040
2041         From Mark Salter:
2042         * remote.c (remote_wait): Add support to extract optional
2043         watchpoint information from T-packet. Ignore unrecognized
2044         optional info in T-packet.
2045         (remote_async_wait): Ditto.
2046
2047 2002-08-09  Corinna Vinschen  <vinschen@redhat.com>
2048
2049         * cli/cli-dump.c: Change fopen modes to use binary open modes
2050         as defined in include/fopen-bin.h throughout.
2051
2052 2002-08-08  Michael Snyder  <msnyder@redhat.com>
2053
2054         * mips-tdep.c: Minor whitespace and indentation clean-ups.
2055
2056 2002-08-08  Kevin Buettner  <kevinb@redhat.com>
2057
2058         * doublest.c (store_floating): Avoid floatformat_from_doublest()
2059         assertion failure by returning early after a warning.
2060
2061 2002-08-08  Kevin Buettner  <kevinb@redhat.com>
2062
2063         * mips-tdep.c (mips_find_saved_regs): Make static.
2064         (mips_frame_init_saved_regs): New function.
2065         (mips_gdbarch_init): Setup FRAME_INIT_SAVED_REGS method.
2066         * config/mips/tm-mips.h (FRAME_INIT_SAVED_REGS): Delete macro.
2067         (mips_find_saved_regs): Delete declaration.
2068
2069 2002-08-08  Grace Sainsbury  <graces@redhat.com>
2070
2071         * remote.c (remote_wait, remote_async_wait): Change
2072         thread_num from int to ULONGEST.
2073         (unpack_varlen_hex): Change result parameter from
2074         int * to ULONGEST *.
2075
2076 2002-08-08  Andrew Cagney  <ac131313@redhat.com>
2077
2078         * configure.tgt: Replace powerpc-*-sysv*, powerpc-*-elf*,
2079         powerpcle-*-eabi*, powerpcle-*-sysv* and powerpcle-*-elf* with
2080         powerpc*-*-*.
2081         * MAINTAINERS: Remove redundant rs6000-ibm-aix4.1 target.
2082
2083 2002-08-08  Andrew Cagney  <cagney@redhat.com>
2084
2085         * gcore.c (override_derive_stack_segment): Delete variable.
2086         (preempt_derive_stack_segment): Delete function.
2087         (derive_stack_segment): Delete function.
2088         (default_derive_stack_segment): Renamed to derive_stack_segment.
2089         (override_derive_heap_segment): Delete variable.
2090         (preempt_derive_heap_segment): Delete function.
2091         (derive_heap_segment): Delete function.
2092         (default_derive_heap_segment): Rename to derive_heap_segment.
2093
2094 2002-08-06  Michael Snyder  <msnyder@redhat.com>
2095
2096         * config/mips/tm-mips.h: Remove #define USE_STRUCT_CONVENTION.
2097         * mips-tdep.c (mips_EABI_use_struct_convention, 
2098         mips_OABI_use_struct_convention, mips_NABI_use_struct_convention):
2099         New functions.  (mips_use_struct_convention): Delete.
2100         (mips_gdbarch_init): set use_gdbarch_convention.
2101
2102 2002-08-06  Michael Snyder  <msnyder@redhat.com>
2103
2104         *  mips-tdep.c: gdbarch-ify reg_struct_has_addr.
2105         (mips_eabi_reg_struct_has_addr, mips_n32n64_reg_struct_has_addr, 
2106         mips_o32_reg_struct_has_addr): New functions.
2107         (mips_gdbarch_init): Set gdbarch reg_struct_has_addr.
2108
2109 2002-08-07  Andrew Cagney  <ac131313@redhat.com>
2110
2111         * regcache.c (pseudo_register): Delete function.
2112         (fetch_register): Delete function.
2113         (store_register): Delete function.
2114         (regcache_raw_read, legacy_read_register_gen): Use
2115         target_fetch_registers instead of fetch_register.
2116         (legacy_write_register_gen, regcache_raw_write): Use
2117         target_store_register instead of store_register.
2118         (write_register_bytes): Ditto.
2119
2120         * gdbarch.sh (FETCH_PSEUDO_REGISTER): Delete.
2121         (STORE_PSEUDO_REGISTER): Delete.
2122         * gdbarch.h, gdbarch.c: Regenerate.
2123
2124 2002-08-06  Corinna Vinschen  <vinschen@redhat.com>
2125
2126         * cli/cli-dump.c (add_dump_command): Explicitely use "b" flag to
2127         write dump file binary.
2128
2129 2002-08-05  Michael Snyder  <msnyder@redhat.com>
2130
2131         *  mips-tdep.c (mips_find_saved_regs): Adjust stack according
2132         to MIPS_SAVED_REGSIZE, not GDB_TARGET_IS_MIPS64.  Enhance comment.
2133         (mips_gdbarch_init): Set N32 target to be mips64.
2134
2135 2002-08-06  Kevin Buettner  <kevinb@redhat.com>
2136
2137         * frame.c (find_saved_register): Break out of loop once saved
2138         register address is found.  Don't mention sparc in loop comment
2139         anymore.
2140
2141 2002-08-06  Kevin Buettner  <kevinb@redhat.com>
2142
2143         * mips-tdep.c (mips_gdbarch_init): For the N32 ABI, set
2144         mips_default_saved_regsize to 8.
2145
2146 2002-08-06  Andrew Cagney  <ac131313@redhat.com>
2147
2148         * gcore.c: Do not include <sys/procfs.h>.
2149         * Makefile.in (gcore.o): Update dependencies.
2150
2151 2002-08-06  Andrew Cagney  <cagney@redhat.com>
2152
2153         * configure.tgt: Make arc-*-* obsolete.
2154         * NEWS: Mention that arc-*-* has been identifed as obsolete.
2155         * MAINTAINERS: Make arc-elf obsolete.
2156         * arc-tdep.c: Make file obsolete.
2157         * config/arc/arc.mt: Ditto.
2158         * config/arc/tm-arc.h: Ditto.
2159
2160 2002-08-05  Theodore A. Roth  <troth@verinet.com>
2161
2162         * avr-tdep.c (avr_skip_prologue): Fix to return the correct pc.
2163
2164 2002-08-05  Andrew Cagney  <ac131313@redhat.com>
2165
2166         * mcore-tdep.c (mcore_gdbarch_init): Use
2167         generic_unwind_get_saved_register instead of
2168         generic_get_saved_register.
2169         * v850-tdep.c (v850_gdbarch_init): Ditto.
2170         * frv-tdep.c (frv_gdbarch_init): Ditto.
2171         * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
2172         * s390-tdep.c (s390_gdbarch_init): Ditto.
2173         * d10v-tdep.c (d10v_gdbarch_init): Ditto.
2174         * config/mn10200/tm-mn10200.h (GET_SAVED_REGISTER): Ditto.
2175         * config/h8300/tm-h8300.h (GET_SAVED_REGISTER): Ditto.
2176
2177 2002-08-05  Joel Brobecker  <brobecker@gnat.com>
2178
2179         * objfiles.h: Add missing #include "symfile.h"
2180
2181         * Makefile.in (objfiles_h): Add dependency on symfile.h and dependents.
2182
2183 2002-08-04  Andrew Cagney  <ac131313@redhat.com>
2184
2185         From 2002-08-01 david carlton <carlton@math.stanford.edu>:
2186         * hpread.c (hpread_read_struct_type): Deleted superfluous setting
2187         of FIELD_BITSIZE.
2188
2189 2002-08-04  Daniel Jacobowitz  <drow@mvista.com>
2190
2191         * NEWS: Cleanup and nitpick.
2192
2193 2002-08-03  Andrew Cagney  <ac131313@redhat.com>
2194
2195         * NEWS: Cleanup.  Use *-linux*-gnu*.  Only use `*' for headings.
2196
2197 2002-08-03  Andrew Cagney  <ac131313@redhat.com>
2198
2199         * Makefile.in (gdbtk-bp.o): Update dependencies.
2200         (gdbtk-register.o): Ditto.
2201         (gdbtk-varobj.o): Ditto.
2202
2203 2002-08-03  Andrew Cagney  <cagney@redhat.com>
2204
2205         * m68hc11-tdep.c (m68hc11_pseudo_register_read): Replace
2206         m68hc11_fetch_pseudo_register.
2207         (m68hc11_pseudo_register_write): Replace
2208         m68hc11_store_pseudo_register.
2209         (m68hc11_gdbarch_init): Update.
2210
2211 Fri Aug  2 15:53:50 2002  Andrew Cagney  <cagney@redhat.com>
2212
2213         * gdbarch.sh: Include "gdb_string.h".
2214         * gdbarch.c: Regenerate.
2215
2216         * regcache.c: Include "gdb_string.h".
2217         * ax-general.c: Ditto.
2218         * varobj.c: Ditto.
2219         * std-regs.c: Ditto.
2220         * fbsd-proc.c: Ditto.
2221         * thread.c: Ditto.
2222
2223         * Makefile.in (regcache.o): Update dependencies.
2224         (thread.o, gdbarch.o): Ditto.
2225         (ax-general.o, gdbarch.o): Ditto.
2226         (varobj.o, std-regs.o): Ditto.
2227         (fbsd-proc.o): Specify dependencies.
2228
2229 2002-08-02  Andrew Cagney  <cagney@redhat.com>
2230
2231         * regcache.c (regcache_cooked_read): Rename rawnum parameter to
2232         regnum.
2233         (regcache_cooked_write): Ditto.
2234
2235 2002-08-02  Andrew Cagney  <ac131313@redhat.com>
2236
2237         * regcache.c (regcache_cooked_read): New function.
2238         (regcache_cooked_write): New function.
2239         (read_register_gen): Rewrite using regcache_cooked_read.
2240         (write_register_gen): Rewrite using regcache_cooked_write.
2241
2242         * regcache.h (regcache_cooked_read, regcache_cooked_write):
2243         Declare.
2244
2245 2002-08-02  Andrew Cagney  <cagney@redhat.com>
2246
2247         * gdbarch.sh (pseudo_register_read, pseudo_register_write):
2248         Replace the architecture methods register_read and register_write.
2249         * gdbarch.h, gdbarch.c: Regenerate.
2250         * regcache.c (init_regcache_descr): Update.
2251         (read_register_gen): Update.
2252         (write_register_gen): Update.
2253         (supply_register): Update comment.
2254
2255         * sh-tdep.c (sh_gdbarch_init): Update.
2256         (sh_pseudo_register_read, sh64_pseudo_register_read): Add
2257         `regcache' and `gdbarch' parameters.  Make `buffer' a void
2258         pointer.  Update code.
2259         (sh_pseudo_register_write, sh64_pseudo_register_write): Add
2260         `regcache' and `gdbarch' parameters.  Make `buffer' a constant
2261         void pointer.  Update code.
2262         (sh64_register_write): Delete.
2263         (sh4_register_read): Delete.
2264         (sh64_register_read): Delete.
2265         (sh4_register_write): Delete.
2266         (sh_sh4_register_convert_to_raw): Make `from' parameter a constant
2267         void pointer, `to' parameter a void pointer.
2268         (sh_sh64_register_convert_to_raw): Ditto.
2269
2270 2002-08-01  Kevin Buettner  <kevinb@redhat.com>
2271
2272         * mips-tdep.c (mips_register_virtual_type): Use architecture
2273         invariant return values.
2274
2275 2002-08-01  Andrew Cagney  <cagney@redhat.com>
2276
2277         * linux-proc.c: Include "gdb_string.h".
2278         * Makefile.in (linux-proc.o): Update dependency list.
2279
2280 2002-08-01  Kevin Buettner  <kevinb@redhat.com>
2281
2282         * mips-tdep.c (mips_gdbarch_init): Add comments.  Fix typo in
2283         comment.
2284
2285 2002-08-01  Grace Sainsbury  <graces@redhat.com>
2286
2287         * target.h: Add to_insert_hw_breakpoint, to_remove_hw_breakpoint,
2288         to_insert_watchpoint, to_remove_watchpoint,
2289         to_stopped_by_watchpoint, to_stopped_data_address,
2290         to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint to
2291         target vecctor. Define their corresponding macros so they call
2292         them.
2293         
2294         * target.c: Add default and debug versions of for
2295         to_insert_hw_breakpoint, to_remove_hw_breakpoint,
2296         to_insert_watchpoint, to_remove_watchpoint,
2297         to_stopped_by_watchpoint, to_stopped_data_address,
2298         to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint.
2299
2300 2002-08-01  Kevin Buettner  <kevinb@redhat.com>
2301
2302         * mips-tdep.c (mips_register_virtual_type): New function.
2303         (mips_gdbarch_init): Register mips_register_virtual_type()
2304         with gdbarch machinery.
2305         * config/mips/tm-irix6.h (mips/tm-bigmips64.h): Include
2306         this file instead of tm-bigmips.h.
2307         (MIPS_REGSIZE): Delete this macro.
2308         (REGISTER_VIRTUAL_TYPE): Delete macro.  Undef macro so that
2309         multiarch version in mips-tdep.c will be found.
2310
2311 2002-08-01  Andrew Cagney  <cagney@redhat.com>
2312
2313         * NEWS: Menion that CHILL has been made obsolete.
2314
2315         * gdbtypes.c (chill_varying_type): Make chill references obsolete.
2316         * stabsread.c (read_range_type): Ditto.
2317         * gdbtypes.h: Ditto.
2318         * language.c (binop_type_check): Ditto.
2319         (binop_result_type): Ditto.
2320         (integral_type): Ditto.
2321         (character_type): Ditto.
2322         (string_type): Ditto.
2323         (boolean_type): Ditto.
2324         (structured_type): Ditto.
2325         (lang_bool_type): Ditto.
2326         (binop_type_check): Ditto.
2327         * language.h (_LANG_chill): Ditto.
2328         * dwarfread.c (set_cu_language): Ditto.
2329         * dwarfread.c (CHILL_PRODUCER): Ditto.
2330         * dwarfread.c (handle_producer): Ditto.
2331         * expression.h (enum exp_opcode): Ditto.
2332         * eval.c: Ditto for comments.
2333         * typeprint.c (typedef_print) [_LANG_chill]: Ditto.
2334         * expprint.c (print_subexp): Ditto.
2335         (print_subexp): Ditto.
2336         * valops.c (value_cast): Ditto.
2337         (search_struct_field): Ditto.
2338         * value.h (COERCE_VARYING_ARRAY): Ditto.
2339         * symfile.c (init_filename_language_table): Ditto.
2340         (add_psymbol_with_dem_name_to_list): Ditto.
2341         * valarith.c (value_binop): Ditto.
2342         (value_neg): Ditto.
2343         * valops.c (value_slice): Ditto.
2344         * symtab.h (union language_specific): Ditto.
2345         (SYMBOL_INIT_LANGUAGE_SPECIFIC): Ditto.
2346         (SYMBOL_DEMANGLED_NAME): Ditto.
2347         (SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
2348         * defs.h (enum language): Ditto.
2349         * symtab.c (got_symtab): Ditto.
2350         * utils.c (fprintf_symbol_filtered): Ditto.
2351
2352         * ch-typeprint.c: Make file obsolete.
2353         * ch-valprint.c: Make file obsolete.
2354         * ch-lang.h: Make file obsolete.
2355         * ch-exp.c: Make file obsolete.
2356         * ch-lang.c: Make file obsolete.
2357
2358         * Makefile.in (FLAGS_TO_PASS): Do not pass CHILL or CHILLFLAGS or
2359         CHILL_LIB.
2360         (TARGET_FLAGS_TO_PASS): Ditto.
2361         (CHILLFLAGS): Obsolete.
2362         (CHILL): Obsolete.
2363         (CHILL_FOR_TARGET): Obsolete.
2364         (CHILL_LIB): Obsolete.
2365         (SFILES): Remove ch-exp.c, ch-lang.c, ch-typeprint.c and
2366         ch-valprint.c.
2367         (HFILES_NO_SRCDIR): Remove ch-lang.h.
2368         (COMMON_OBS): Remove ch-valprint.o, ch-typeprint.o, ch-exp.o and
2369         ch-lang.o.
2370         (ch-exp.o, ch-lang.o, ch-typeprint.o, ch-valprint.o): Delete
2371         targets.
2372
2373 2002-07-31  Joel Brobecker  <brobecker@gnat.com>
2374
2375         * dwarf2read.c (set_cu_language): Add handler for LANG_Ada95.
2376         This does not change anything at the moment, but will be helpful
2377         later when full Ada support is integrated.
2378
2379 2002-07-31  Kevin Buettner  <kevinb@redhat.com>
2380
2381         * mips-tdep.c (_initialize_mips_tdep): Add "n64" to "set mips abi"
2382         help message.
2383
2384 2002-07-31  Kevin Buettner  <kevinb@redhat.com>
2385
2386         * mips-tdep.c (mips_push_arguments): Fetch gdbarch_tdep struct
2387         and save it in a local variable.  Use variable in later test.
2388
2389 2002-07-31  Kevin Buettner  <kevinb@redhat.com>
2390
2391         * mips-tdep.c (mips_find_abi_section): Add N64 ABI recognition
2392         test.  (Thanks to Daniel Jacobowitz.)
2393         
2394 2002-07-31  Kevin Buettner  <kevinb@redhat.com>
2395
2396         * mips-tdep.c (enum mips_abi): Add MIPS_ABI_N64.
2397         (mips_abi_strings): Add "n64".
2398         (mips_gdbarch_init): Add test for n64 abi.  Add MIPS_ABI_N64 case.
2399
2400 2002-07-31  Kevin Buettner  <kevinb@redhat.com>
2401
2402         * config/mips/tm-irix6.h (MIPS_REGSIZE): Define to be 8.
2403         (REGISTER_VIRTUAL_TYPE): Some registers are now 64 bits wide.
2404
2405 2002-07-31  Kevin Buettner  <kevinb@redhat.com>
2406
2407         * utils.c (host_pointer_to_address, address_to_host_pointer):
2408         Use gdb_assert() instead of explicit call to internal_error().
2409
2410 2002-07-30  Kevin Buettner  <kevinb@redhat.com>
2411
2412         * Makefile.in (rs6000-nat.o): Update dependencies.
2413
2414         From Nicholas Duffek:
2415         * Makefile.in (ALLDEPFILES): Add aix-thread.c.
2416         (aix-thread.o): New rule.
2417         * configure.host (gdb_host): Set to aix432 on AIX 4.3.2+.
2418         * config/powerpc/aix432.mh: New file.
2419
2420 2002-07-30  Daniel Jacobowitz  <drow@mvista.com>
2421
2422         * ppc-linux-tdep.c (ELF_NGREG, ELF_NFPREG, ELF_NVRREG)
2423         (ELF_FPREGSET_SIZE, ELF_GREGSET_SIZE): New enums.
2424         (fetch_core_registers, ppc_linux_supply_gregset)
2425         (ppc_linux_supply_fpregset): New functions.
2426         (ppc_linux_regset_core_fns): New.
2427         (_initialize_ppc_linux_tdep): Call add_core_fns.
2428         * ppc-tdep.h: Add prototypes for ppc_linux_supply_fpregset
2429         and ppc_linux_supply_gregset.
2430         * ppc-linux-nat.c (supply_gregset): Call ppc_linux_supply_gregset.
2431         (supply_fpregset): Call ppc_linux_supply_fpregset.
2432         * config/powerpc/linux.mh (NATDEPFILES): Remove core-regset.o and
2433         corelow.o.
2434         * config/powerpc/linux.mt (TDEPFILES): Add corelow.o.
2435
2436 2002-07-30  Daniel Jacobowitz  <drow@mvista.com>
2437
2438         * symtab.c (lookup_symbol): Demangle before lowercasing.
2439
2440 2002-07-30  Andrew Cagney  <ac131313@redhat.com>
2441
2442         * symtab.h: Replace #include "gdb_obstack.h" with opaque
2443         declaration.
2444         * cli/cli-cmds.c, cli/cli-script.c: Include "gdb_string.h".
2445         * gnu-v3-abi.c, arc-tdep.c, cli/cli-decode.c: Ditto.
2446         * avr-tdep.c, mon960-rom.c, i960-tdep.c: Ditto.
2447         * arch-utils.c, cli/cli-setshow.c: Unconditionally include
2448         "gdb_string.h".
2449         * Makefile.in (cli-script.o, cli-cmds.o): Update dependencies.
2450         (gnu-v3-abi.o, cli-setshow.o, i960-tdep.o): Ditto.
2451         (cli-decode.o, mi-cmd-var.o, mi-cmd-disas.o): Ditto.
2452         (avr-tdep.o, mon960-rom.o): Ditto.
2453         (aout_stabs_gnu_h): Define.
2454         (symtab_h): Remove $(gdb_obstack_h).
2455
2456 2002-07-30  Jim Blandy  <jimb@redhat.com>
2457
2458         Patch from David Carlton <carlton@math.stanford.edu>:
2459         * gdbinit.in: Move the `dir' commands that add GDB's own source
2460         directory to the search path to the end, so that the `gdb' source
2461         directory will be searched first.
2462
2463 2002-07-29  Andrew Cagney  <ac131313@redhat.com>
2464
2465         * gdb_obstack.h: New file.
2466         * symtab.h: Include "gdb_obstack.h" instead of "obstack.h".
2467         (obstack_chunk_alloc, obstack_chunk_free): Delete macros.
2468         * objfiles.h: Include "gdb_obstack.h".
2469         * Makefile.in (gdb_obstack_h): Define.
2470         (symtab_h): Add $(gdb_obstack_h).
2471         (objfiles_h): Add $(gdb_obstack_h).
2472         
2473         * objfiles.c: Include "gdb_obstack.h" instead of "obstack.h".
2474         * macrotab.c, cp-valprint.c, dbxread.c: Ditto.
2475         * ch-typeprint.c, ch-valprint.c, dstread.c: Ditto.
2476         * macroexp.c, p-typeprint.c, stabsread.c: Ditto.
2477         * symtab.c, f-typeprint.c, mdebugread.c: Ditto.
2478         * p-valprint.c, symmisc.c, typeprint.c: Ditto.
2479         * symfile.c, coffread.c, c-typeprint.c: Ditto.
2480         * buildsym.c, bcache.c, ada-typeprint.c: Ditto.
2481
2482         * Makefile.in (bcache.o): Update dependencies.
2483         (buildsym.o, c-typeprint.o, ch-typeprint.o): Ditto.
2484         (ch-valprint.o, coffread.o, cp-valprint.o): Ditto.
2485         (dbxread.o, dstread.o, f-typeprint.o): Ditto.
2486         (objfiles.o, p-typeprint.o, p-valprint.o): Ditto.
2487         (stabsread.o, symfile.o, symmisc.o): Ditto.
2488         (symtab.o, typeprint.o, macroexp.o): Ditto.
2489         (macrotab.o, mdebugread.o): Ditto.
2490         (f_lang_h, coff_sym_h, coff_symconst_h): Define.
2491         (coff_ecoff_h, aout_aout64_h): Define.
2492         (aout_stabs_gnu_h, libaout_h): Define.
2493
2494 2002-07-29  Andrew Cagney  <cagney@redhat.com>
2495
2496         * regcache.c (struct regcache_descr): Rename nr_registers to
2497         nr_cooked_registers.  Revise comments describing the structure
2498         member fields.
2499         (init_regcache_descr): Update.
2500         (init_legacy_regcache_descr): Update.
2501         (read_register_gen, write_register_gen): When a cooked register in
2502         the raw register range, directly access the value from the raw
2503         register cache.
2504
2505 2002-07-29  Andrew Cagney  <ac131313@redhat.com>
2506
2507         * z8k-tdep.c: Do not include "obstack.h".
2508         * h8300-tdep.c, h8500-tdep.c: Ditto.
2509         * m68hc11-tdep.c, sh-tdep.c: Ditto.
2510         * valprint.c, v850-tdep.c: Ditto.
2511         * d10v-tdep.c, mn10300-tdep.c: Ditto.
2512         * mn10200-tdep.c: Ditto.
2513
2514         * Makefile.in (z8k-tdep.o): Update dependencies.
2515         (m68hc11-tdep.o, valprint.o): Ditto.
2516         (v850-tdep.o, d10v-tdep.o): Ditto.
2517         (mn10300-tdep.o, sparc-tdep.o): Ditto.
2518         (sh-tdep.o, h8500-tdep.o, h8300-tdep.o): Ditto.
2519         (m32r-tdep.o, mn10200-tdep.o): Specify dependencies.
2520         (sh_opc_h, gdb_sim_sh_h): Define.
2521         (elf_sh_h, elf_bfd_h): Define.
2522         (opcode_m68hc11_h): Define.
2523         (OPCODES_SRC, OPCODES_DIR): define.
2524         (OPCODES): Use $(OPCODES_DIR).
2525         (gdb_sim_d10v_h): Rename sim_d10v_h.
2526         (gdb_sim_arm_h): Rename sim_arm_h.
2527
2528 2002-07-26  Kevin Buettner  <kevinb@redhat.com>
2529
2530         * utils.c (host_pointer_to_address, address_to_host_pointer):
2531         Change internal_error() message to indicate function responsible
2532         for the error.
2533
2534 2002-07-26  Kevin Buettner  <kevinb@redhat.com>
2535
2536         * ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in
2537         calls to local_hex_string_custom().
2538
2539 2002-07-26  Kevin Buettner  <kevinb@redhat.com>
2540
2541         * irix5-nat.c: Move IRIX shared library support from here...
2542         * solib-irix.c: ...to here.  Revised substantially to work with
2543         generic solib framework.
2544
2545         * osabi.h (gdb_osabi): Add new enum constant GDB_OSABI_IRIX.
2546         * osabi.c (gdb_osabi_names): Add corresponding string for Irix.
2547         * mips-irix-tdep.c: New file.
2548
2549         * Makefile.in (ALLDEPFILES): Add mips-irix-tdep.c and solib-irix.c.
2550         (mips-irix-tdep.o, solib-irix.o): New rules.
2551         * config/mips/irix5.mt (TDEPFILES): Add mips-irix-tdep.o, solib.o,
2552         solib-irix.o.
2553         * config/mips/irix6.mt (TDEPFILES): Likewise.
2554         * config/mips/irix6.mh (NATDEPFILES): Remove solib.o.
2555
2556 2002-07-26  Kevin Buettner  <kevinb@redhat.com>
2557
2558         * aix-thread.c (coff/internal.h, bfd/libcoff.h, pthread.h): Remove
2559         disabled (via ``#if 0'') includes.
2560
2561 2002-07-26  Kevin Buettner  <kevinb@redhat.com>
2562
2563         * aix-thread.c (special_register_p, supply_sprs64, supply_sprs32)
2564         (fetch_regs_user_thread, fetch_regs_kernel_thread, fill_sprs64)
2565         (fill_sprs32, store_regs_user_thread, store_regs_kernel_thread):
2566         Add support for the fpscr register.
2567         * rs6000-nat.c (regmap, fetch_inferior_registers)
2568         (store_inferior_registers, fetch_core_registers): Likewise.
2569
2570 2002-07-26  Kevin Buettner  <kevinb@redhat.com>
2571
2572         * rs6000-nat.c (language.h): Include.
2573         (special_regs): Delete this array.
2574         (regmap): New function.
2575         (fetch_register, store_register):  Use regmap() to map gdb
2576         register numbers to ptrace register numbers.  Also, use
2577         outputs from regmap() to make decisions regarding type of
2578         ptrace() call to make.  In particular, don't compare against
2579         FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
2580         (fetch_inferior_registers, store_inferior_registers): Where
2581         possible, obtain register numbers from tdep struct.  Don't
2582         refer to FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
2583         * config/rs6000/tm-rs6000.h (FIRST_UISA_SP_REGNUM)
2584         (LAST_UISA_SP_REGNUM): Delete.
2585         
2586 2002-07-25  Kevin Buettner  <kevinb@redhat.com>
2587
2588         * rs6000-nat.c (ppc-tdep.h): Include.
2589         (fetch_registers, store_register, fetch_core_registers): Don't
2590         access registers[] directly.  Instead, use supply_register() or
2591         regcache_collect() as appropriate.
2592         (find_toc_address): Format hex address with local_hex_string().
2593
2594 2002-07-25  Andrew Cagney  <ac131313@redhat.com>
2595
2596         * config/djgpp/fnchange.lst: Rename bfd/elf32-fr30.c and
2597         bfd/elf32-frv.c.
2598
2599 2002-07-24  Tom Tromey  <tromey@redhat.com>
2600
2601         * jv-exp.y: Marked all strings with _().
2602         (ClassInstanceCreationExpression, ArrayCreationExpression): Use
2603         internal_error.
2604         (MethodInvocation, CastExpression, parse_number, yyerror,
2605         java_type_from_name, push_expression_name, yylex): Typo fixes.
2606
2607 2002-07-24  Daniel Jacobowitz  <drow@mvista.com>
2608
2609         * ui-file.c (struct tee_file, tee_file_new, tee_file_delete)
2610         (tee_file_flush, tee_file_write, tee_file_fputs)
2611         (tee_file_isatty): New.
2612         * ui-file.h (tee_file_new): Add prototype.
2613
2614 2002-07-24  Aidan Skinner <aidan@velvet.net>
2615
2616         * ada-lang.c: Change k&r style function definitions to prototyped
2617         form.
2618         * ada-typeprint.c: Change k&r style function definitions to prototyped
2619         form.
2620         * ada-valprint.c: Change k&r style function definitions to prototyped
2621         form.
2622         
2623 2002-07-24  Andrew Cagney  <cagney@redhat.com>
2624
2625         * README: Remove reference to remote-bug.
2626         * Makefile.in (ALLDEPFILES): Remove m88k-nat.c, m88k-tdep.c and
2627         remote-bug.c.
2628         (m88k-nat.o): Delete rule.
2629         (m88k-tdep.o): Delete rule.
2630         (remote-bug.o): Delete rule.
2631         * MAINTAINERS: Mark as obsolete.
2632         * elfread.c (elf_symtab_read): Mention that m88k is obsolete.
2633         * m88k-tdep.c: Make file obsolete.
2634         * config/m88k/m88k.mh: Ditto.
2635         * config/m88k/delta88v4.mh: Ditto.
2636         * config/m88k/delta88v4.mt: Ditto.
2637         * config/m88k/delta88.mt: Ditto.
2638         * config/m88k/delta88.mh: Ditto.
2639         * remote-bug.c: Ditto.
2640         * config/m88k/tm-delta88.h: Ditto.
2641         * config/m88k/nm-delta88v4.h: Ditto.
2642         * config/m88k/xm-delta88.h: Ditto.
2643         * config/m88k/xm-dgux.h: Ditto.
2644         * config/m88k/tm-m88k.h: Ditto.
2645         * config/m88k/nm-m88k.h: Ditto.
2646         * config/m88k/tm-delta88v4.h: Ditto.
2647         * m88k-nat.c: Ditto.
2648         * cxux-nat.c: Ditto.
2649         * configure.host: Make m88*-motorola-sysv4*, m88*-motorola-sysv*
2650         and m88*-*-* obsolete.
2651         * configure.tgt: Make m88*-motorola-sysv4*, m88*-motorola-* and
2652         m88*-*-* obsolete.
2653
2654 2002-07-24  Andrew Cagney  <cagney@redhat.com>
2655
2656         * findvar.c (extract_unsigned_integer): Make `addr' parameter
2657         constant.  Same for local pointer variables.
2658         (extract_signed_integer): Ditto.
2659         * defs.h (extract_unsigned_integer): Update.
2660         (extract_signed_integer): Update.
2661
2662 2002-07-24  Andrew Cagney  <cagney@redhat.com>
2663
2664         * regcache.c (regcache_raw_write): Change buf parameter to a
2665         constant void pointer.
2666         (regcache_raw_read): Change buf parameter to a void pointer.
2667         (legacy_write_register_gen): Change myaddr parameter a constant
2668         void pointer.
2669         (supply_register): Change val parameter to a const void pointer.
2670         * regcache.h (regcache_raw_write): Update declaration.
2671         (regcache_raw_read): Update declaration.
2672         (supply_register): Update declaration.
2673
2674 2002-07-24  Tom Tromey  <tromey@redhat.com>
2675
2676         * defs.h (gdb_readline_wrapper): Declare.
2677         * utils.c (prompt_for_continue): Use gdb_readline_wrapper.
2678         * tracepoint.c (read_actions): Use gdb_readline_wrapper.
2679         * top.c (gdb_readline_wrapper): New function.
2680         (command_line_input): Use it.
2681
2682 2002-07-24  Andrew Cagney  <cagney@redhat.com>
2683
2684         * regcache.h (regcache_raw_read, regcache_raw_write): Replace
2685         regcache_read and regcache_write.
2686         (regcache_raw_read_as_address): Replace regcache_read_as_address.
2687         * regcache.c: Update.
2688         * sh-tdep.c (sh64_push_arguments): Update comment.
2689         (sh_pseudo_register_read): Update.
2690         (sh_pseudo_register_write): Update.
2691         (sh4_register_read): Update.
2692         (sh4_register_write): Update.
2693         (sh64_pseudo_register_read): Update.
2694         (sh64_pseudo_register_write): Update.
2695         (sh64_register_read): Update.
2696         (sh64_register_write): Update.
2697         * i386-tdep.c (i386_extract_return_value): Update.
2698         (i386_extract_struct_value_address): Update.
2699         (i386_extract_return_value): Update.
2700         * blockframe.c (generic_read_register_dummy): Update.
2701         (generic_call_dummy_register_unwind): Update
2702         * infrun.c (write_inferior_status_register): Update.
2703
2704 2002-07-23  Jim Blandy  <jimb@redhat.com>
2705
2706         * parser-defs.h (expression_context_pc): Make this extern.
2707         (Thanks to Michael Snyder.)
2708
2709 2002-07-23  Andrew Cagney  <ac131313@redhat.com>
2710
2711         GDB 5.2.1 released from 5.2 branch.
2712         * NEWS: Mention changes in 5.2.1 including addition of AVR target.
2713         * README: Update to mention 5.2.1.
2714
2715 2002-07-23  Mark Salter  <msalter@redhat.com>
2716
2717         * remote.c (remote_read_bytes): Fix check for error.
2718
2719 2002-07-22  Kevin Buettner  <kevinb@redhat.com>
2720
2721         * aix-thread.c (language.h): Include.
2722         (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
2723         (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
2724         Print newlines at end of debug messages.
2725         (pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
2726         (pdc_write_data): Use local_hex_string() instead of %llx formats.
2727
2728 2002-07-22  Kevin Buettner  <kevinb@redhat.com>
2729
2730         * aix-thread.c (ppc-tdep.h): Include.
2731         (special_register_p): New function.
2732         (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32)
2733         (store_regs_user_thread): Use register number information from
2734         gdbarch_tdep struct instead of hardcoded offsets relative to
2735         FIRST_UISA_SP_REGNUM.
2736         (fetch_regs_kernel_thread, store_regs_kernel_thread):  Call
2737         special_register_p() instead of using FPLAST_REGNUM and
2738         LAST_UISA_SP_REGNUM as lower and upper bounds on the special
2739         register numbers.  Also, don't assume that LAST_UISA_SP_REGNUM
2740         will be MQ's register number.
2741
2742 2002-07-22  Michael Snyder  <msnyder@redhat.com>
2743
2744         * aix-thread.c (ops): Rename to aix_thread_ops.
2745         (base_ops): Rename to base_target.
2746         (ops_attach): Rename to aix_thread_attach.
2747         (ops_detach): Rename to aix_thread_detach.
2748         (ops_resume): Rename to aix_thread_detach.
2749         (ops_wait):   Rename to aix_thread_wait.
2750         (ops_kill):   Rename to aix_thread_kill.
2751         (init_ops):   Rename to init_aix_thread_ops.
2752         (ops_fetch_register): Rename to aix_thread_fetch_register.
2753         (ops_store_register): Rename to aix_thread_store_register.
2754         (ops_mourn_inferior): Rename to aix_thread_mourn_inferior.
2755         (ops_thread_alive):   Rename to aix_thread_thread_alive.
2756         (ops_extra_thread_info: Rename to aix_thread_extra_thread_info.
2757         (ops_pid_to_str):  Rename to aix_thread_pid_to_str.
2758         (ops_xfer_memory): Rename to aix_thread_xfer_memory.
2759         (fetch_regs_lib):  Rename to fetch_regs_user_thread.
2760         (fetch_regs_kern): Rename to fetch_regs_kernel_thread.
2761         (store_regs_lib):  Rename to store_regs_user_thread.
2762         (store_regs_kern): Rename to store_regs_kernel_thread.
2763
2764 2002-07-22  Michael Snyder  <msnyder@redhat.com>
2765
2766         * aix-thread.c (ops_prepare_to_store): Eliminate.
2767         (init_ops): Don't initialize ops.prepare_to_store.
2768         (store_regs_kern): Pre-fetch register buffers from child, 
2769         because some registers may not be in the cache.  Copy
2770         regs from register cache only if they are cached.
2771         (store_regs_lib): Copy regs from register cache only
2772         if they are cached.
2773         (fill_sprs32, (fill_sprs64, fill_fprs, fill_gprs32,
2774         fill_gprs64): Ditto.
2775
2776 2002-07-22  Kevin Buettner  <kevinb@redhat.com>
2777
2778         * aix-thread.c (gdb_assert.h): Include.
2779         (fill_sprs64, fill_sprs32): Add selected asserts to make sure that
2780         register sizes (from register cache) match size of buffer holding
2781         register data.
2782         (fill_sprs32): Change parameter types to match those in the ptrace()
2783         buffer.
2784         (store_regs_lib): Likewise, but for 32-bit temporary variables.
2785         (ops_prepare_to_store): Rename loop variable ``i'' to ``regno''.
2786
2787 2002-07-22  Michael Snyder  <msnyder@redhat.com>
2788
2789         * aix-thread.c (supply_sprs64): Cosmetic change.
2790         (supply_sprs32): Cosmetic change.
2791         (fill_gprs64, fill_gprs32, fill_fprs, fill_sprs32): New funcs.
2792         (fill_sprs64): Use regcache_collect instead of read_register.
2793         (store_regs_lib): Use regcache_collect instead of 
2794         read_register.  Use fill_sprs32 instead of fill_sprs64,
2795         if debugging a 32-bit architecture.
2796         (store_regs_kern): Use fill_gprs64 etc. to pull the values
2797         out of the register cache, instead of passing a pointer into
2798         the register cache directly to ptrace.  Use regcache_collect
2799         insteaad of read_register.
2800         (ops_prepare_to_store): Use target_read_registers instead
2801         of read_register_bytes.
2802
2803 2002-07-20  Aidan Skinner <aidan@velvet.net>
2804
2805         * MAINTAINERS: Add self under write after approval. 
2806                 
2807 2002-07-20  Aidan Skinner <aidan@velvet.net>
2808
2809         * ada-tasks.c: Change k&r style function definitions to prototyped
2810         form.
2811                 
2812 2002-07-19  Andrew Cagney  <ac131313@redhat.com>
2813
2814         * Makefile.in (x86-64-tdep.o): Add $(objfiles_h).
2815         * x86-64-tdep.c: Include "objfiles.h".
2816         (x86_64_gdbarch_init): Set in_solib_call_trampoline to
2817         in_plt_section.  From 2002-07-18 Michal Ludvig <mludvig@suse.cz>.
2818
2819 2002-07-17  Michal Ludvig  <michal@suse.cz>
2820
2821         * dwarf2cfi.c (execute_stack_op): Complain on unknown DW_OP_ value.
2822         (update_context): Initialise cfa variable.
2823
2824 2002-07-17  Michael Snyder  <msnyder@redhat.com>
2825
2826         * aix-thread.c: Shorten some long lines.  
2827         Bring comments into line with code spec.
2828
2829 2002-07-18  Joel Brobecker  <brobecker@gnat.com>
2830
2831         * infrun.c: Re-indent using gdb_indent.sh.
2832
2833 2002-07-18  Joel Brobecker  <brobecker@gnat.com>
2834
2835         * infrun.c (handle_inferior_event): Remove unneeded extra brace.
2836         Leave the indentation temporarily untouched, to minimize the diffs.
2837
2838 2002-07-18  Elena Zannoni  <ezannoni@redhat.com>
2839
2840         * stabsread.c: Make os9k sections of the code obsolete,
2841         for real this time.
2842         * stabsread.h: Make os9k sections of the code obsolete.
2843
2844 2002-07-18  Michal Ludvig <mludvig@suse.cz>
2845
2846         * linux-low.c (regsets_store_inferior_registers): Add free()
2847         at the end of a loop to prevent memory leak.
2848         * linux-x86-64-low.c (x86_64_regmap): Add CS, SS registers.
2849         (X86_64_NUM_GREGS): Count it from the size of x86_64_regmap.
2850         * config/sparc/tm-sp64linux.h: Make the rest of #endif
2851         line a comment.
2852         * Makefile.in (x86-64-linux-nat.o): Remove dependency on i387-tdep.h
2853
2854 2002-07-17  Jim Blandy  <jimb@redhat.com>
2855
2856         * macrocmd.c (info_macro_command): Remove newline from error
2857         message.
2858
2859 2002-07-17  J"orn Rennecke <joern.rennecke@superh.com>
2860
2861         * sh-tdep.c (sh_dsp_register_sim_regno): New function.
2862         (sh_gdbarch_init): Use it for sh-dsp.
2863
2864 2002-07-16  Kevin Buettner  <kevinb@redhat.com>
2865
2866         * dwarf2read.c (read_initial_length): Handle older, non-standard,
2867         64-bit DWARF2 format.
2868
2869 2002-07-16  Joel Brobecker  <brobecker@gnat.com>
2870
2871         * proc-api.c: use HAVE_SYS_PROC_H macro to avoid including
2872         <sys/proc.h> when not available.
2873
2874 2002-07-16  Andrew Cagney  <ac131313@redhat.com>
2875
2876         * NEWS: Mention that the i[34]86-*-os9k has been made obsolete.
2877         * stabsread.c: Make os9k sections of the code obsolete.
2878         * configure.tgt: Make i[3456]86-*-os9k target obsolete.
2879         * config/i386/i386os9k.mt: Make file obsolete.
2880         * Makefile.in (ALLDEPFILES): Remove remote-os9k.c.
2881         (COMMON_OBS): Remove os9kread.o
2882         (SFILES): Remove os9kread.c.
2883         (os9kread.o, remote-os9k.o): Make target obsolete.
2884         * remote-os9k.c: Make file obsolete.
2885         * os9kread.c: Make file obsolete.
2886         * Makefile.in
2887
2888 2002-07-16  Andrew Cagney  <ac131313@redhat.com>
2889
2890         * NEWS: Mention that the FR30 has been made obsolete.
2891         * fr30-tdep.c: Make file obsolete.
2892         * config/fr30/tm-fr30.h: Ditto.
2893         * config/fr30/fr30.mt: Ditto.
2894         * configure.tgt: Make fr30-*-elf obsolete.
2895         * MAINTAINERS: Make fr30-elf obsolete.
2896
2897 2002-07-16  Pierre Muller  <muller@ics.u-strasbg.fr>
2898
2899         * blockframe.c (get_pc_function_start): return 0 if the minimal symbol
2900         found is not inside a section.
2901
2902 2002-07-15  Kevin Buettner  <kevinb@redhat.com>
2903
2904         * aix-thread.c (ptrace_check): Use safe_strerror() instead of
2905         strerror().
2906         (pdc_realloc): Use xrealloc() instead of realloc().
2907
2908 2002-07-15  Kevin Buettner  <kevinb@redhat.com>
2909
2910         * aix-thread.c (PD_ERROR, CALL_BASE): Delete.
2911         (ops_resume, ops_wait, fetch_regs_lib, store_regs_lib)
2912         (ops_xfer_memory, ops_kill): Don't use PD_ERROR or CALL_BASE
2913         macros.
2914
2915 2002-07-15  Kevin Buettner  <kevinb@redhat.com>
2916
2917         * aix-thread.c (ptrace_check): Eliminate goto.
2918         (sync_threadlists): Eliminate gotos.  Also, fix array overrun
2919         problem.
2920
2921 2002-07-15  Kevin Buettner  <kevinb@redhat.com>
2922
2923         * aix-thread.c (gdbcmd.h): Include.
2924         (DEBUG, DBG, DBG2, dbg): Eliminate.
2925         (debug_aix_thread): New static global.
2926         (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
2927         (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
2928         (fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
2929         invocations to DBG and DBG2 macros to test against
2930         ``debug_aix_thread'' and call fprintf_unfiltered().
2931         (_initialize_aix_thread): Add new command "set debug aix-thread".
2932
2933 2002-07-15  Andrew Cagney  <ac131313@redhat.com>
2934
2935         From Gerhard Tonn <TON@de.ibm.com>:
2936         * s390-nat.c (fill_fpregset, fill_gregset): Use regcache_collect
2937         instead of supply_register.
2938
2939 2002-07-15  Andrew Cagney  <ac131313@redhat.com>
2940
2941         * dwarf2cfi.c: Include "gdb_assert.h".
2942         (frame_state_for): Use gdb_assert to check that fde->cie_ptr is
2943         non-NULL.
2944         (update_context): Do not use __func__.  Add missing ``break''.
2945         (update_context): Do not use __func__.
2946
2947 2002-07-15  Elena Zannoni  <ezannoni@redhat.com>
2948
2949         * rs6000-tdep.c (rs6000_gdbarch_init): Remove variable print_insn
2950         and its setting.  Set gdbarch instruction printing functions
2951         directly.  For non-rs6000 case use new function
2952         gdb_print_insn_powerpc.
2953         (gdb_print_insn_powerpc): New function.
2954
2955 2002-07-13  Andrew Cagney  <ac131313@redhat.com>
2956
2957         * NEWS: Mention that the d30v has been marked obsolete.
2958         * MAINTAINERS: Note that d30v / d30v-elf has been made obsolete.
2959         * configure.tgt: Mark d30v-*-* as obsolete.
2960         * d30v-tdep.c: Mark file as obsolete.
2961         * config/d30v/d30v.mt: Ditto.
2962         * config/d30v/tm-d30v.h: Ditto.
2963
2964 2002-07-13  Aidan Skinner <aidan@velvet.net>
2965
2966         * ada-tasks.c (add_task_entry): replace calls to
2967         malloc() with xmalloc
2968         * ada-tasks.c (init_task_list): replace calls to free with xfree()
2969         
2970         * ada-lang.c (replace_operator_with_call, fill_in_ada_prototype,
2971         ada_finish_decode_line_1, all_sals_for_line
2972         ada_breakpoint_rewrite): replace calls to free() with xfree()
2973                 
2974 2002-07-12  Kevin Buettner  <kevinb@redhat.com>
2975
2976         From Nicholas Duffek (with minor changes by Martin Hunt, 
2977         Louis Hamilton, and Kevin Buettner):
2978         * aix-thread.c: New file.
2979
2980 2002-07-12  Petr Sorfa <petrs@caldera.com>
2981
2982         *  dwarf2read.c (dwarf2_invalid_attrib_class): New
2983         complaint for invalid attribute class or form.
2984         (read_func_scope): DW_AT_frame_base
2985         better handling of DW_AT_block*.
2986         (dwarf2_add_member_fn): DW_AT_vtable_elem_location
2987         better handling of DW_AT_block*.
2988         (read_common_block): DW_AT_location
2989         better handling of DW_AT_block*.
2990         (read_partial_die): DW_AT_location better handling
2991         of DW_AT_block*.
2992         (new_symbol): DW_AT_external better handling of
2993         DW_AT_block*. Proper initialization of variable
2994         "addr".
2995         (attr_form_is_block): New function that returns true
2996         if the attribute's form is of DW_FORM_block*.
2997
2998 2002-07-12  Peter Schauer  <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
2999
3000         * valops.c (find_method_list): Remove comment about
3001         removed STATIC_MEMFUNCP argument.
3002         (value_find_oload_method_list): Likewise.
3003
3004 2002-07-12  Kevin Buettner  <kevinb@redhat.com>
3005
3006         From Nicholas Duffek:
3007         * rs6000-nat.c (vmap_ldinfo, xcoff_relocate_core): Call
3008         target_new_objfile_hook.
3009
3010 2002-07-12  Kevin Buettner  <kevinb@redhat.com>
3011
3012         From Nicholas Duffek:
3013         * xcoffread.c (scan_xcoff_symtab): Recognize XMC_TD as a data storage
3014         csect.
3015
3016 2002-07-12  Andrew Cagney  <cagney@redhat.com>
3017
3018         * MAINTAINERS: Mention --enable-sim-build-warnings.
3019         (m68hc11-elf): Disable sim build warnings.
3020         (m32r-elf): Mark as broken obsolete candidate.
3021         (x86_64-linux-gnu): Mark as buildable with -Werror.
3022         (arm-elf): Change -w to ``,'' which enables warnings but not
3023         -Werror.
3024
3025 2002-07-12  Andrew Cagney  <ac131313@redhat.com>
3026
3027         * bcache.h: Update copyright.
3028         (struct bstring, struct bcache): Move definition to "bcache.c".
3029         Replaced by opaque declaration.
3030         (bcache_xfree): Replace free_bcache.
3031         (bcache_xmalloc, bcache_memory_used): Declare.
3032         
3033         * bcache.c: Update copyright.
3034         (struct bstring, struct bcache): Moved to here from "bcache.h".
3035         Update comments.
3036         (bcache_xmalloc, bcache_memory_used): New functions.
3037         (bcache_xfree): Replace function free_bcache.
3038         
3039         * Makefile.in (objfiles.o): Add $(bcache_h).
3040         (objfiles_h): Remove $(bcache_h).
3041         (symfile.o): Add $(bcache_h).
3042
3043         * symmisc.c: Update copyright.
3044         (print_symbol_bcache_statistics): Pass psymbol_cache by value.
3045         (print_objfile_statistics): Use bcache_memory_used.
3046
3047         * symfile.c: Include "bcache.h".
3048         (reread_symbols): Use bcache_xfree.
3049         (reread_symbols): Use bcache_xmalloc and bcache_xfree.
3050         (add_psymbol_to_list): Pass psymbol_cache by value.
3051         (add_psymbol_with_dem_name_to_list): Ditto.
3052
3053         * objfiles.h: Update copyright.
3054         (struct bcache): Declare opaque.  Do not include "bcache.h".
3055         (struct objfile): Change psymbol_cache and macro_cache to ``struct
3056         bcache'' pointers.
3057         * dwarf2read.c (macro_start_file): Pass macro_cache by value.
3058
3059         * objfiles.c: Include "bcache.h".  Update copyright.
3060         (allocate_objfile): Use bcache_xmalloc to create psymbol_cache and
3061         macro_cache.
3062         (free_objfile): Use bcache_xfree.
3063
3064 2002-07-11  Grace Sainsbury  <graces@redhat.com>
3065
3066         * monitor.c (monitor_fetch_register): Make name a constant.
3067         (monitor_store_register): Same.
3068
3069 2002-07-11  Daniel Jacobowitz  <drow@mvista.com>
3070
3071         Based on patch from Daniel Berlin <dberlin@dberlin.org>.
3072         * buildsym.c: Include "demangle.h" for SYMBOL_INIT_DEMANGLED_NAME.
3073         (finish_block) For non-function blocks, hash the symbol table.  For
3074         function blocks, mark the symbol table as unhashed.
3075         * minsyms.c (msymbol_hash): Return hash value without taking modulus.
3076         (msymbol_hash_iw): Likewise.
3077         (add_minsym_to_hash_table): Take modulus of msymbol_hash's return
3078         value.
3079         (add_minsym_to_demangled_hash_table): Likewise for msymbol_hash_iw.
3080         (lookup_minimal_symbol): Likewise for both.
3081         * symtab.h (struct block): Add `hashtable' flag.  Comment the
3082         hashtable.
3083         (BLOCK_HASHTABLE, BLOCK_BUCKETS, BLOCK_BUCKET): New macro.
3084         (ALL_BLOCK_SYMBOLS): Update.
3085         (BLOCK_SHOULD_SORT): Do not sort hashed blocks.
3086         (struct symbol): Add `hash_next' pointer.
3087         * symtab.c (lookup_block_symbol): Search using the hash table when
3088         possible.
3089         (find_pc_sect_symtab): Use ALL_BLOCK_SYMBOLS.
3090         (search_symbols, find_addr_symbol): Likewise.
3091
3092         * dstread.c (process_dst_block): Clear hashtable bit for new block.
3093         (read_dst_symtab): Likewise.
3094         * jv-lang.c (get_java_class_symtab): Likewise.
3095         * mdebugread.c: Include "gdb_assert.h".
3096         (shrink_block): Assert that the block being modified is not hashed.
3097         * coffread.c (patch_opaque_types): Use ALL_BLOCK_SYMBOLS.
3098         * symmisc.c (free_symtab_block): Walk the hash table when freeing
3099         symbols.
3100         (dump_symtab): Recognize hashed blocks.
3101         * printcmd.c (print_frame_args):  Assert that function blocks do not
3102         have hashed symbol tables.
3103         * ada-lang.c (symtab_for_sym): Use ALL_BLOCK_SYMBOLS.
3104         (fill_in_ada_prototype, debug_print_block): Likewise.
3105         (ada_add_block_symbols): Use ALL_BLOCK_SYMBOLS.  Handle hash tables.
3106
3107 2002-07-11  Corinna Vinschen  <vinschen@redhat.com>
3108
3109         * stack.c (print_frame): Use result of frame_address_in_block()
3110         instead of fi->pc when evaluating symbols.
3111         (backtrace_command_1): Ditto.
3112
3113 2002-07-11  Andrew Cagney  <cagney@redhat.com>
3114
3115         * cris-tdep.c (cris_saved_pc_after_call): Fix parameter type.
3116         Make static.
3117
3118         * arm-tdep.c (arm_register_name): Make return type constant.
3119
3120 2002-07-10  Andrew Cagney  <ac131313@redhat.com>
3121
3122         * win32-nat.c (has_detach_ability): Convert to strict ISO C
3123         prototype.
3124         * top.c (gdb_rl_operate_and_get_next_completion): Ditto.
3125         * s390-tdep.c (s390_fp_regnum): Ditto.
3126         (s390_read_fp): Ditto.
3127         (s390_pop_frame): Ditto.
3128         (_initialize_s390_tdep): Ditto.
3129         * remote.c (get_remote_state): Ditto.
3130         * procfs.c (mappingflags): Ditto.
3131         * memattr.c (_initialize_mem): Ditto.
3132         * mcore-tdep.c (mcore_pop_frame): Ditto.
3133         * m68klinux-nat.c (_initialize_m68k_linux_nat): Ditto.
3134         * m68k-tdep.c (m68k_register_bytes_ok): Ditto.
3135         * language.c (set_case_str): Ditto.
3136         * gnu-v3-abi.c (vtable_address_point_offset): Ditto.
3137         * frv-tdep.c (new_variant): Ditto.
3138         (frv_stopped_data_address): Ditto.
3139         * dwarf2cfi.c (fde_chunks_need_space): Ditto.
3140         (context_alloc): Ditto.
3141         (frame_state_alloc): Ditto.
3142         (unwind_tmp_obstack_init): Ditto.
3143         (unwind_tmp_obstack_free): Ditto.
3144         (cfi_read_fp): Ditto.
3145         * cris-tdep.c (cris_saved_pc_after_call): Ditto.
3146         (cris_pop_frame): Ditto.
3147         * c-lang.c (scanning_macro_expansion): Ditto.
3148         (finished_macro_expansion): Ditto.
3149         (c_preprocess_and_parse): Ditto.
3150         * gdbarch.sh: Ditto.
3151         * gdbarch.h, gdbarch.c: Regenerate.
3152         * config/mn10200/tm-mn10200.h: Adjust indentation.
3153         * target.c: Adjust indentation.
3154         * symtab.h: Adjust indentation.
3155         * stabsread.h: Adjust indentation.
3156         * remote-es.c: Adjust indentation.
3157         * os9kread.c: Adjust indentation.
3158
3159 2002-07-10  Andrew Cagney  <ac131313@redhat.com>
3160         
3161         * wince.c (_initialize_wince): Rename _initialize_inftarg.
3162         * win32-nat.c (_initialize_win32_nat): Rename _initialize_inftarg.
3163
3164 2002-07-10  Grace Sainsbury  <graces@redhat.com>
3165         
3166         * NEWS: Mention m68k, mcore multi-arching.  
3167         * MAINTAINERS: Change status of m68k, mcore to reflect
3168         multi-arching.
3169
3170 2002-07-10  Daniel Jacobowitz  <drow@mvista.com>
3171
3172         * valops.c (find_overload_match): Free oload_syms.
3173
3174 2002-07-09  Joel Brobecker  <brobecker@gnat.com>
3175
3176         Define HAVE_SYS_PROC_H if sys/proc.h exists
3177         * configure.in: Add check for sys/proc.h
3178         * config.in: Regenerate.
3179         * configure: Regenerate.
3180
3181 2002-07-09  Grace Sainsbury  <graces@redhat.com>
3182
3183         * config/m68k/tm-m68k.h: Remove macros wrapped in 
3184         #if !GDB_MULTI_ARCH. 
3185
3186 2002-07-08  Andrew Cagney  <ac131313@redhat.com>
3187
3188         * config.in, configure: Regenerate.
3189
3190 2002-07-08  Mark Kettenis  <kettenis@gnu.org>
3191
3192         * dwarf2cfi.c: Include "gcore.h".
3193         (execute_stack_op): Fix implementation of the
3194         DW_OP_deref and DW_OP_deref_size operators by letting do their
3195         lookup in the target.
3196
3197 2002-07-07  Mark Kettenis  <kettenis@gnu.org>
3198
3199         From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de>:
3200         * i386-sol2-tdep.c (i386_sol2_init_abi): Correct value for
3201         tdep->sc_sp_offset.
3202
3203 2002-07-05  Daniel Jacobowitz  <drow@mvista.com>
3204
3205         Fix PR gdb/595, gdb/602
3206         * gnu-v3-abi.c (gnuv3_baseclass_offset): Remove unused variables.
3207         Don't call value_cast, just read the vtable pointer; update comments
3208         to match.
3209
3210 2002-07-05  Grace Sainsbury  <graces@redhat.com>
3211
3212         * config/mcore/tm-mcore.h: Remove file.
3213         * config/mcore/mcore.mt: Remove definition of TM_FILE
3214         * configure.tgt: Set gdb_multi_arch to yes for the mcore target.
3215
3216 2002-07-05  Mark Kettenis  <kettenis@gnu.org>
3217
3218         * i386bsd-tdep.c: Include "gdb_string.h".
3219
3220 2002-07-04  Grace Sainsbury  <graces@redhat.com>
3221
3222         * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Set to 2.
3223         (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG,RETVAL_REGNUM): Move to
3224         mcore-tdep.
3225         (REG_STRUCT_HAS_ADDR, USE_STRUCT_CONVENTION, GET_SAVED_REGISTER)
3226         (TARGET_VIRTUAL_FRAME_POINTER, BELIEVE_PCC_PROMOTION): Remove.
3227         * mcore-tdep.c (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG)
3228         (RETVAL_REGNUM): Move macros from tm-mcore.h
3229         (mcore_reg_struct_has_addr): New function.
3230         (mcore_gdbarch_init): Added initializations for the macros removed
3231         from tm-mcore.h.
3232
3233 2002-07-04  Mark Kettenis  <kettenis@gnu.org>
3234
3235         * osabi.c (generic_elf_osabi_sniffer): Add check for FreeBSD 3.x's
3236         traditonal string branding within the ELF header.
3237
3238 2002-07-04  Daniel Jacobowitz  <drow@mvista.com>
3239
3240         * symtab.c (remove_params): New function.
3241         (make_symbol_overload_list): Use it instead of cplus_demangle.
3242         (overload_list_add_symbol): Likewise.  Reorder.  Fix memory leak.
3243
3244 2002-07-04  Mark Kettenis  <kettenis@gnu.org>
3245
3246         * i386obsd-nat.c (_initialize_i386obsd_nat): Fix typo in prototype.
3247
3248         * i386bsd-tdep.c (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end):
3249         New variables.
3250         (i386nbsd_init_abi): Use these to initialize tdep->sigtramp_start
3251         and tdep->sigtramp_end.
3252         * i386obsd-nat.c: New file.
3253         * config/i386/obsd.mh (NATDEPFILES): Add i386obsd-nat.o.
3254
3255         * dwarf2cfi.c (cfi_pop_frame): Use alloca() for regbuf.
3256         Don't call get_current_frame().
3257
3258 2002-07-04  Pierre Muller  <muller@ics.u-strasbg.fr>
3259
3260         * i386-nat.c (child_post_startup_inferior): New function
3261         calling i386_cleanup_dregs if
3262         I386_USE_GENERIC_WATCHPOINTS is defined.
3263         * config/i386/nm-i386.h: define CHILD_POST_STARTUP_INFERIOR
3264         conditional to acknowledge that i386-nat.c has its
3265         own child_post_startup_inferior function.
3266
3267 2002-07-04  Mark Kettenis  <kettenis@gnu.org>
3268
3269         * i386-tdep.h (I386_MAX_REGISTER_SIZE): New define.
3270         * i386-tdep.c (i386_do_pop_frame): Use I386_MAX_REGISTER_SIZE
3271         instead of MAX_REGISTER_RAW_SIZE.
3272         (i386_extract_return_value, i386_extract_struct_value_address):
3273         Convert to use regcache.
3274         (i386_gdbarch_init): Set max_register_raw_size and
3275         max_register_virtual_size to I386_MAX_REGISTER_SIZE.
3276         Set extract_return_value and extract_struct_value_address instead
3277         of their deprecated variants.
3278
3279         Convert i386 target to generic dummy frames.
3280         * i386-tdep.c: Include "symfile.h".
3281         (i386_frameless_signal_p): Consider a function to be frameless if
3282         the pc points at the first instruction of the function.
3283         (i386_frame_chain): Handle (generic) call dummies.
3284         (i386_frame_saved_pc): Likewise.
3285         (i386_frame_init_saved_regs): Remove code dealing with call
3286         dummies on the stack.
3287         (i386_push_dummy_frame): Removed.
3288         (i386_call_dummy_words): Removed.
3289         (i386_fix_call_dummy): Removed.
3290         (i386_push_return_address): New function.
3291         (i386_do_pop_frame): Renamed from i386_pop_frame.  Add FRAME
3292         parameter, and don't call get_current_frame.
3293         (i386_pop_frame): New function.
3294         (i386_gdbarch_init): Set use_generic_dummy_frames to 1, set
3295         call_dummy_location to AT_ENTRY_POINT, set call_dummy_address to
3296         entry_point_address, set call_dummy_breakpoint_offset to 0, set
3297         call_dummy_length to 0, set call_dummy_words to NULL, set
3298         sizeof_call_dummy_words to 0, set fix_call_dummy to
3299         generic_fix_call_dummy, set pc_in_call_dummy to
3300         pc_in_call_dummy_at_entry_point, set push_dummy_frame to
3301         generic_push_dummy_frame, set push_return_address to
3302         i386_push_return_address and set frame_chain_valid to
3303         generic_file_frame_chain_valid.
3304
3305 2002-07-03  Andrew Cagney  <ac131313@redhat.com>
3306
3307         * gdbarch.sh (struct regcache): Add opaque declaration.
3308         (EXTRACT_RETURN_VALUE): New architecture method.
3309         (EXTRACT_STRUCT_VALUE_ADDRESS): Ditto.
3310         * gdbarch.h, gdbarch.c: Regenerate.
3311         * arch-utils.c (legacy_extract_return_value): New function.
3312         * arch-utils.h (legacy_extract_return_value): Declare.
3313         * values.c (value_being_returned): Re-enable code handling
3314         EXTRACT_STRUCT_VALUE_ADDRESS.  Move
3315         deprecated_grub_regcache_for_registers call to block handling
3316         DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
3317         (EXTRACT_RETURN_VALUE): Do not define.
3318
3319 2002-07-03  Grace Sainsbury  <graces@redhat.com>
3320
3321         * config/mcore/tm-mcore.h (REGISTER_BYTES, NUM_REGS, PC_REGNUM)
3322         (SP_REGNUM, FP_REGNUM, FUNCTION_START_OFFSET, DECR_PC_AFTER_BREAK)
3323         (BREAKPOINT_FROM_PC, INNER_THAN, SAVED_PC_AFTER_CALL)
3324         (INIT_EXTRA_FRAME_INFO, FRAME_INIT_SAVED_REGS, INIT_FRAME_PC)
3325         (FRAME_CHAIN, FRAME_CHAIN_VALID, FRAME_SAVED_PC)
3326         (STORE_RETURN_VALUE, DEPRECATED_EXTRACT_RETURN_VALUE)
3327         (STORE_STRUCT_RETURN, DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
3328         (SKIP_PROLOGUE, FRAME_ARGS_SKIP, FRAME_ARGS_ADDRESS)
3329         (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, POP_FRAME)
3330         (PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME, PUSH_ARGUMENTS): Remove.
3331         * mcore-tdep.c (mcore_init_extra_frame_info): Add fromleaf
3332         argument so the function fits the prototype in the architecture
3333         vector.
3334         (mcore_pop_frame): Remove argument so the function fits the
3335         prototype. Use get_current_frame instead of the argument.
3336         (mcore_push_arguments): Change type of struct_return so the
3337         function can be used in the architecture vector.
3338         (mcore_store_struct_return): Add.
3339         (mcore_frame_init_saved_regs): Add.
3340         (mcore_gdbarch_init): Add function calls to replace the macros
3341         removed from tm-mcore.h
3342
3343 2002-07-03  Andrew Cagney  <ac131313@redhat.com>
3344
3345         * infcmd.c (print_return_value): Remove compatibility code calling
3346         deprecated_grub_regcache_for_registers.
3347         
3348         * values.c: Include "regcache.h".
3349         (value_being_returned): Update.  Use
3350         deprecated_grub_regcache_for_registers to extract the register
3351         buffer address.  
3352         * value.h (value_being_returned): Change ``retbuf'' parameter to a
3353         ``struct regcache''.
3354         * Makefile.in (values.o): Add dependency on $(regcache_h).
3355
3356         * inferior.h (run_stack_dummy): Change type of second parameter to
3357         a ``struct regcache''.
3358         * valops.c (hand_function_call): Change type of retbuf to ``struct
3359         regcache''.  Allocate using regcache_xmalloc, clean using
3360         make_cleanup_regcache_xfree.
3361         * infcmd.c (run_stack_dummy): Update.  Use
3362         regcache_cpu_no_passthrough instead of memcpy to copy the buffer.
3363
3364         * regcache.c (do_regcache_xfree): New function.
3365         (make_cleanup_regcache_xfree): New function.
3366         * regcache.h (make_cleanup_regcache_xfree): Declare.
3367
3368 2002-07-03  Martin M. Hunt  <hunt@redhat.com>
3369
3370         * event-top.c (command_line_handler): Don't read past
3371         beginning of buffer.
3372
3373 2002-07-03  Martin M. Hunt  <hunt@redhat.com>
3374         
3375         * varobj.c (struct varobj_root): Change frame from CORE_ADDR to 
3376         struct frame_id. 
3377         (varobj_create): Store frame_id for root.
3378         (varobj_gen_name): Use xasprintf.
3379         (varobj_update): Save and restore frame using get_frame_id() and
3380         frame_find_by_id().
3381         (create_child): Use xasprintf.
3382         (new_root_variable): Initialize frame_id.
3383         (c_name_of_child): Use xasprintf. Call find_frame_by_id().
3384         (c_value_of_variable): Use xasprintf. Move mem_fileopen call
3385         to prevent memory leak.
3386
3387 2002-07-03  Andrew Cagney  <ac131313@redhat.com>
3388
3389         * valops.c (hand_function_call): Move declaration of retbuf to
3390         start of function, allocate using malloc, add a cleanup but before
3391         the inf_status cleanup, cleanup the buffer.  Rename local variable
3392         old_chain to inf_status_cleanup.
3393
3394 2002-07-03  Martin M. Hunt  <hunt@redhat.com>
3395
3396         * top.c (execute_command): Use cmd_func() and cmd_func_p().
3397
3398         * cli/cli-decode.c (cmd_func_p): New function.
3399         (cmd_func): New function.
3400
3401         * command.h: Add cmd_func() and cmd_func_p().   
3402         
3403 2002-07-03  Grace Sainsbury  <graces@redhat.com>
3404
3405         * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Add macro. Set to 0.
3406         (REGISTER_SIZE): Remove.
3407         (MAX_REGISTER_RAW_SIZE): Remove.
3408         (REGISTER_VIRTUAL_TYPE): Remove.
3409         (MAX_REGISTER_VIRTUAL_SIZE): Remove.
3410         (REGISTER_NAME): Remove.
3411         (USE_GENERIC_DUMMY_FRAMES): Remove.
3412         (CALL_DUMMY): Remove.
3413         (CALL_DUMMY_START_OFFSET): Remove.
3414         (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
3415         (CALL_DUMMY_LOCATION): Remove.
3416         (FIX_CALL_DUMMY): Remove.
3417         (CALL_DUMMY_ADDRESS): Remove.
3418         (SIZEOF_CALL_DUMMY_WORDS): Remove.
3419         (SAVE_DUMMY_FRAME_TOS): Remove.
3420         * mcore-tdep.c (MCORE_REG_SIZE, MCORE_NUM_REGS): Add macros.
3421         (mcore_register_virtual_type): New function.
3422         (mcore_register_byte): New function.
3423         (mcore_register_size): New function.
3424         (mcore_register_name): New function.
3425         (mcore_gdbarch_init): New function. Add set_gdbarch calls for
3426         macros removed from tm-mcore.h.
3427         (mcore_dump_tdep): Add.
3428         (_initialize_mcore_tdep): Add gdbarch_register call.
3429
3430 2002-07-03  Mark Kettenis  <kettenis@gnu.org>
3431
3432         * i386-tdep.c (i386_frameless_signal_p): Provide an argument in to
3433         frameless_look_for_prologue, such that we actually call this
3434         function.
3435
3436 2002-07-02  Joel Brobecker  <brobecker@gnat.com>
3437
3438         * frame.h (frame_address_in_block): New function.
3439
3440         * blockframe.c (frame_address_in_block): New function extracted
3441         from get_frame_block().
3442         (get_frame_block): Use frame_address_in_block().
3443         (block_innermost_frame): Use frame_address_in_block() to match
3444         the frame pc address against the block boundaries rather than
3445         the frame pc directly. This prevents a failure when a frame pc
3446         is actually a return-address pointing immediately after the end
3447         of the given block. 
3448
3449 2002-07-02  Grace Sainsbury  <graces@redhat.com>
3450
3451         * MAINTAINERS: Add self under write after approval. 
3452
3453 2002-07-02  Grace Sainsbury  <graces@redhat.com>
3454
3455         * m68k-tdep.c (m68k_remote_breakpoint_from_pc): Add. Currently not
3456         used in architecture vector. The default is
3457         m68k_local_breakpoint_from_pc.
3458         (m68k_local_breakpoint_from_pc): Add.
3459         (enum): Add register numbers from tm-m68k.h.
3460         (m68k_gdbarch_init): Add breakpoint_from_pc to architecture
3461         vector.  
3462         * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Set to
3463         GDB_MULTI_ARCH_PARTIAL.
3464         (BPT_VECTOR, REGISTER_BYTES_FP, REGISTER_BYTES_NOFP)
3465         (NUM_FREGS, SIG_PC_FP_OFFSET, SP_ARG0, REMOTE_BPT_VECTOR): Move to
3466         m68k-tdep.c.
3467         (BREAKPOINT, REMOTE_BREAKPOINT): Remove.
3468         (A1_REGNUM, FP0_REGNUM, FPC_REGNUM, FPS_REGNUM, FPI_REGNUM): Move
3469         to enum in m68k-tdep.c
3470
3471 2002-07-02  Joel Brobecker  <brobecker@gnat.com>
3472
3473         * solib-osf.c (open_map): Compute the list of shared libraries
3474         loaded by the inferior, rather than the list of libraries loaded
3475         by GDB itself.  Otherwise, GDB ends up reading the symbols from
3476         the wrong shared libraries...
3477
3478 2002-07-02  Mark Kettenis  <kettenis@gnu.org>
3479
3480         * i386-linux-tdep.c (i386_linux_sigcontext_addr): Make static.
3481         (LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONEXT_SP_OFFSET): Remove
3482         macros.
3483         (i386_linux_sigtramp_saved_pc, i386_linux_sigtramp_saved_sp):
3484         Remove functions.
3485         (FRAMELESS_SIGNAL): Remove function.
3486         (i386_linux_frame_chain, i386_linux_frame_saved_pc,
3487         i386_linux_saved_pc_after_call): Removed.
3488         (i386_linux_init_abi): Initialize tdep->sigcontext_addr,
3489         tdep->sc_pc_offset and tdep->sc_sp_offset.  Don't override
3490         frame_chain, frame_saved_pc and saved_pc_after_call any longer.
3491
3492         * i386-tdep.c (i386_frameless_signal_p): New function.
3493         (i386_frame_chain): Deal with frameless signals.
3494         (i386_sigtramp_saved_sp): New function.
3495         (i386_frame_saved_pc): Deal with frameless signals.
3496         (i386_saved_pc_after_call): Make sure the correct value is
3497         returned just after entry into a sigtramp.
3498         * i386bsd-tdep.c (i386bsd_sc_sp_offset, i386nbsd_sc_sp_offset,
3499         i386fbsd4_sc_sp_offset): New variables.
3500         (i386bsd_init_abi, i386nbsd_init_abi, i386fbsd4_init_abi): Use
3501         these variables to initialize tdep->sc_sp_offset.  * i386bsd-nat.c
3502         (_initialize_i386bsd_nat): Add sanity check for sc_sp_offset
3503         similiar to what we already did for sc_pc_offset.
3504         * i386-sol2-tdep.c (i386_sol2_init_abi): Initialize
3505         tdep->sc_sp_offset.
3506
3507         * i386nbsd-tdep.c (fetch_elfcore_registers): Wrap long line.
3508
3509 2002-07-02  Michal Ludvig  <mludvig@suse.cz>
3510
3511         * config/i386/tm-x86-64linux.h: New.
3512         * config/i386/x86-64linux.mt: Add GDB_MULTI_ARCH and TM_FILE
3513         definitions.
3514         * config/i386/nm-x86-64.h: Rename to ...
3515         * config/i386/nm-x86-64linux.h: ... this one.
3516         * config/i386/x86-64linux.mh: Reflect the above change.
3517         
3518 2002-07-01  Mark Kettenis  <kettenis@gnu.org>
3519
3520         * i386-tdep.h (struct gdbarch_tdep): Replace sigtramp_saved_pc
3521         with sigcontext_addr.  Add sc_sp_offset.
3522         (i386bsd_sigtramp_saved_pc): Remove prototype.
3523         (i386bsd_sicontext_addr): Add prototype.
3524         * i386-tdep.c (i386_sigtramp_saved_pc): New function.
3525         (i386_frame_saved_pc): Rewrite to call i386_sigtramp_saved_pc.
3526         (i386_svr4_sigtramp_saved_pc): Removed.
3527         (i386_svr4_sigcontext_addr): New function.
3528         (i386_svr4_init_abi): Don't initialize tdep->sigtramp_saved_pc.
3529         Initialize tdep->sigcontext_addr instead.  Initialize
3530         tdep->sc_pc_offset and tdep->sc_sp_offset.
3531         (i386_gdbarch_init): Likewise.
3532         * i386bsd-tdep.c (i386bsd_sigcontext_addr): Don't make it static
3533         any more.
3534         (i386bsd_sigtramp_saved_pc): Remove function.
3535         (i386bsd_init_abi): Don't initialize tdep->sigtramp_saved_pc.
3536         Initialize tdep->sigcontext_addr instead.  Initialize
3537         tdep->sc_pc_offset.
3538         * i386-linux-tdep.c (i386_linux_init_abi): Remove initialization
3539         of tdep->sigtramp_saved_pc.
3540         * i386-sol2-tdep.c (i386_sol2_init_abi): Don't initialize
3541         tdep->sigtramp_saved_pc.  Initialize tdep->sigcontext_addr
3542         instead.
3543
3544         * i386-tdep.c (i386_frameless_function_invocation,
3545         i386_frame_num_args, i386_frame_init_saved_regs,
3546         i386_skip_prologue, i386_push_dummy_frame, i386_fix_call_dummy,
3547         i386_pop_frame, i386_push_arguments, i386_store_struct_return,
3548         i386_extract_return_value, i386_store_return_value,
3549         i386_extract_struct_value_address, i386_register_virtual_type,
3550         i386_register_convertible, i386_register_convert_to_virtual,
3551         i386_register_convert_to_raw, i386_svr4_sigtramp_saved_pc,
3552         i386_go32_init_abi, i386_nw_init_abi, i386_gdbarch_init): Make
3553         static.
3554
3555 2002-07-01  Mark Kettenis  <kettenis@gnu.org>
3556
3557         * i386bsd-tdep.c (i386bsd_frame_saved_pc): Removed.
3558
3559         * config/i386/tm-i386sol2.h (COERCE_FLOAT_TO_DOUBLE): Removed.
3560         * i386-sol2-tdep.c (i386_sol2_init_abi): Adjust for the removal of
3561         this macro.  Include "value.h".
3562
3563 2002-06-30  Aidan Skinner  <aidan@velvet.net>
3564
3565         * ada-exp.tab.c: remove as it's a generated file
3566         * ada-lex.c: remove as it's a generated file
3567                 
3568 2002-06-30  Mark Kettenis  <kettenis@gnu.org>
3569
3570         * config/i386/tm-i386.h (struct frame_info, struct
3571         frame_saved_regs, struct value, struct type): Remove forward
3572         declarations.
3573
3574         * config/i386/tm-linux.h [HAVE_PTRACE_GETFPXREGS]
3575         (FILL_FPXREGSET, HAVE_SSE_REGS): Remove define.
3576         * config/i386/nm-linux.h [HAVE_PTRACE_GETFPXREGS]
3577         (FILL_FPXREGSET): Define.
3578
3579         * config/i386/tm-nbsd.h (HAVE_SSE_REGS): Remove define.
3580
3581         * configure.tgt (i[3456]86-*-openbsd*): Fold into
3582         i[3456]86-*-netbsd* case.
3583         * config/i386/tm-obsd.h: Removed.
3584         * config/i386/obsd.mt: Removed.
3585         * config/i386/obsd.mh (NATDEPFILES): Remove corelow.o and
3586         core-aout.o.
3587         (MH_CFLAGS): Add -DYYDEBUG=0.
3588
3589         * i386bsd-nat.c (_initialize_i386bsd_nat): Define SC_PC_OFFSET to
3590         i386nbsd_sc_pc_offset on OpenBSD too.
3591
3592         * config/i386/tm-fbsd.h [!SVR4_SHARED_LIBS]
3593         (IN_SOLIB_CALL_TRAMPOLINE): Remove define.
3594         * config/i386/tm-nbsdaout.h (IN_SOLIB_CALL_TRAMPOLINE): Remove
3595         define.
3596         * i386bsd-tdep.c: Include "arch-utils.h".
3597         (i386bsd_aout_in_solib_call_trampoline): New function.
3598         (i386bsd_init_abi): Set in_solib_call_trampoline to
3599         i386bsd_aout_in_solib_call_trampoline.
3600         (i386nbsdelf_init_abi, i386fbsd_init_abi): Set
3601         in_solib_call_trampoline to generic_in_solib_call_trampoline.
3602
3603 2002-06-28  Andrew Cagney  <ac131313@redhat.com>
3604
3605         * macrotab.h: Do not include "obstack.h" or "bcache.h".
3606         (struct obstack, struct bcache): Add opaque declarations.
3607         * Makefile.in (macrotab_h): Update
3608
3609 2002-06-28  Andrew Cagney  <ac131313@redhat.com>
3610
3611         * blockframe.c (generic_find_dummy_frame): Change return type to
3612         ``struct regcache''.
3613         (struct dummy_frame): Replace field ``registers'' with regcache, a
3614         struct regcache object.
3615         (generic_find_dummy_frame): Update.
3616         (generic_push_dummy_frame): Update.  Use regcache_xfree,
3617         regcache_xmalloc and regcache_cpy.
3618         (generic_pop_dummy_frame): Update.  Use regcache_cpy and
3619         regcache_xfree.
3620         (deprecated_generic_find_dummy_frame): Update.
3621         (generic_read_register_dummy): Update.  Use
3622         regcache_read_as_address.
3623         (generic_call_dummy_register_unwind): Update.  Use regcache_read.
3624         (generic_get_saved_register): Update.  Use regcache_read.
3625
3626 2002-06-28  Andrew Cagney  <ac131313@redhat.com>
3627
3628         * Makefile.in (objfiles_h): Add $(bcache_h).
3629         * objfiles.h: Include "bcache.h".
3630
3631         * Makefile.in (symtab_h): Remove $(bcache_h).
3632         * symtab.h: Do not include "bcache.h".
3633
3634 2002-06-28  Andrew Cagney  <ac131313@redhat.com>
3635
3636         * ppcnbsd-tdep.c (ppcnbsd_init_abi): Set frame_chain_valid to
3637         generic_func_frame_chain_valid.
3638
3639 2002-06-28  David O'Brien  <obrien@FreeBSD.org>
3640
3641         * config/i386/nm-fbsd.h: Include <sys/param.h>.
3642         * config/i386/tm-fbsd.h: Likewise.
3643
3644 2002-06-28  Andrew Cagney  <ac131313@redhat.com>
3645
3646         * rs6000-tdep.c (rs6000_gdbarch_init): Use
3647         generic_unwind_get_saved_register.
3648
3649 2002-06-27  Andrew Cagney  <ac131313@redhat.com>
3650
3651         From 2002-06-27 John David Anglin <dave@hiauly1.hia.nrc.ca>:
3652         * regcache.c (supply_register): Add missing argument to
3653         register_buffer call.
3654
3655 2002-06-27  Andrew Cagney  <ac131313@redhat.com>
3656
3657         * Makefile.in (init.c): Drop -e option to grep.  Not necessary and
3658         Solaris /bin/grep does not not like it.  From Peter Schauer.
3659
3660 2002-06-26  Tom Tromey  <tromey@redhat.com>
3661
3662         * command.h (add_setshow_cmd): Declare.
3663         (add_setshow_cmd_full): Declare.
3664         * cli/cli-decode.c (add_setshow_cmd): No longer static.  Now
3665         returns void.  Use add_setshow_cmd_full.
3666         (add_setshow_cmd_full): New function.
3667         (add_setshow_auto_boolean_cmd): Use add_setshow_cmd_full.
3668         (add_setshow_boolean_cmd): Likewise.
3669
3670 2002-06-26  Jason Thorpe  <thorpej@wasabisystems.com>
3671
3672         * config/vax/tm-vax.h: Protect from multiple inclusion.
3673         (TARGET_UPAGES, TARGET_NBPG, STACK_END_ADDR)
3674         (SIGTRAMP_START, SIGTRAMP_END, SIGCONTEXT_PC_OFFSET): Move to...
3675         * config/vax/tm-vaxbsd.h: ...here.  New file.
3676         * config/vax/vax.mt (TM_FILE): Set to tm-vaxbsd.h.
3677
3678 2002-06-26  Jason Thorpe  <thorpej@wasabisystems.com>
3679
3680         * config/vax/tm-vax.h (BREAKPOINT): Remove.
3681         (BELIEVE_PCC_PROMOTION): Remove.
3682         (AP_REGNUM): Move to...
3683         * config/vax/nm-vax.h: ...here.
3684         * vax-tdep.c: Use VAX_AP_REGNUM instead of AP_REGNUM.
3685         (vax_breakpoint_from_pc): New function.
3686         (vax_gdbarch_init): Initialize gdbarch_breakpoint_from_pc
3687         and gdbarch_believe_pcc_promotion.
3688
3689 2002-06-26  Jason Thorpe  <thorpej@wasabisystems.com>
3690
3691         * Makefile.in (vax_tdep_h): Define.  
3692         (vax-tdep.o): Use $(vax_tdep_h).
3693         * vax-tdep.c (vax_gdbarch_init): Use generic OS ABI framework.
3694         (vax_dump_tdep): New function. 
3695         (_initialize_vax_tdep): Register vax_dump_tdep.
3696         * vax-tdep.h: Include osabi.h.     
3697         (struct gdbarch_tdep): New. 
3698
3699 2002-06-26  Andrew Cagney  <cagney@redhat.com>
3700
3701         * frame.h (deprecated_generic_find_dummy_frame): Rename
3702         generic_find_dummy_frame.
3703         * blockframe.c (generic_find_dummy_frame): Make static.
3704         (deprecated_generic_find_dummy_frame): New function.
3705         * sh-tdep.c (sh_nofp_frame_init_saved_regs): Replace
3706         generic_find_dummy_frame with deprecated_find_dummy_frame.
3707         (sh64_nofp_frame_init_saved_regs): Ditto.
3708         (sh_fp_frame_init_saved_regs): Ditto.
3709         * s390-tdep.c (s390_frame_saved_pc_nofix): Ditto.
3710         (s390_frame_chain): Ditto.
3711         * cris-tdep.c (cris_frame_init_saved_regs): Ditto.
3712
3713 2002-06-26  Grace Sainsbury  <graces@redhat.com>
3714
3715         * config/m68k/tm-m68k.h: Rearrange code so macros not in the
3716         gdbarch vector are at the top.
3717         (NUM_REGS): Remove.
3718         (FP_REGNUM, SP_REGNUM, PS_REGNUM, PC_REGNUM, FP0_REGNUM): Remove.
3719         (FRAME_ARGS_ADDRESS): Remove.
3720         (FRAME_LOCALS_ADDRESS): Remove.
3721         (FRAME_NUM_ARGS): Remove.
3722         (FRAME_ARGS_SKIP): Remove.  
3723         * m68k-tdep.c (enum): Add eumeration of special register numbers.
3724         (m68k_gdbarch_init): Add gdbarch initializations for macros
3725         undefined in tm-m68k.h
3726
3727 2002-06-26  Grace Sainsbury  <graces@redhat.com>
3728
3729         * monitor.h: Add the function regname to monitor_ops
3730         structure. This way NUM_REGS does not have to be a constant.
3731         * monitor.c (monitor_fetch_register): Added support for regname
3732         function. The function is called if the array regnames is NULL.
3733         (monitor_store_register): Same.
3734         * cpu32bug-rom.c (cpu32bug_regname): Add function. Replaces
3735         regnames array.
3736         (init_cpu32bug_cmds): set cpu32bug_cmds.regnames to NULL,
3737         cpu32bug_cmds.regname to point to new function.
3738         * abug-rom.c (abug_regname): Same as above.
3739         (init_abug_cmds): Same.
3740         * dbug-rom.c (dbug_regname): Same as above.
3741         (init_dbug_cmds): Same.
3742         * remote-est.c (est_regname): Same. 
3743         (init_est_cmds): Same.
3744         * rom68k-rom.c (rom68k_regname): Same. 
3745         (init_rom68k_cmds): Same.
3746
3747 2002-06-25  Tom Tromey  <tromey@redhat.com>
3748
3749         * breakpoint.c (delete_command): Don't repeat `delete' commands.
3750
3751 2002-06-25  Andrew Cagney  <cagney@redhat.com>
3752
3753         * infrun.c (stop_registers): Change variable's type to ``struct
3754         regcache'''.
3755         (xmalloc_inferior_status): Delete function.
3756         (free_inferior_status): Delete function.
3757         (normal_stop): Use regcache_cpy.
3758         (struct inferior_status): Change type of fields ``stop_registers''
3759         and ``registers'' to ``struct regcache''.
3760         (write_inferior_status_register): Use regcache_write.
3761         (save_inferior_status): Instead of calling
3762         xmalloc_inferior_status, allocate the inf_status buffer directly.
3763         Use regcache_dup_no_passthrough and regcache_dup to save the
3764         buffers.
3765         (restore_inferior_status): Use regcache_xfree and regcache_cpy.
3766         Replace the stop_registers regcache instead of overriding it.  Use
3767         regcache_xfree.  Instead of calling free_inferior_status, xfree
3768         the buffer directly.
3769         (discard_inferior_status): Use regcache_xfree.  Instead of calling
3770         free_inferior_status, xfree the buffer directly.
3771         (build_infrun): Use regcache_xmalloc.
3772         (_initialize_infrun): Delete redundant call to build_infrun.
3773
3774         * Makefile.in (infcmd.o): Add $(regcache_h).
3775
3776         * infcmd.c: Include "regcache.h".
3777         (run_stack_dummy): Use deprecated_grub_regcache_for_registers to
3778         obtain the address of `stop_registers' register buffer.
3779         (print_return_value): Ditto.
3780
3781         * inferior.h (struct regcache): Add opaque declaration.
3782         (stop_registers): Change variable's declared type to ``struct
3783         regcache''.
3784
3785 2002-06-24  Tom Tromey  <tromey@redhat.com>
3786
3787         * cli/cli-decode.c (add_show_from_set): Fixed typo in comment.
3788         * target.c (initialize_targets): Fixed typo in
3789         trust-readonly-sections `show' documentation.
3790
3791         * main.c: Marked all strings with _().
3792
3793 2002-06-24  Don Howard  <dhoward@redhat.com>
3794
3795         * memattr.c (create_mem_region): Treat hi == 0 as a special case
3796         that means max CORE_ADDR+1.
3797         (lookup_mem_region): Ditto.
3798         (mem_info_command): Ditto.
3799
3800 2002-06-24  Grace Sainsbury  <graces@redhat.com>
3801
3802         * config/m68k/tm-m68k.h (DECR_PC_AFTER_BREAK): Remove.
3803         (REGISTER_BYTES_OK): Remove.
3804         (REGISTER_BYTES): Remove.
3805         (STORE_STRUCT_RETURN): Remove.
3806         (DEPRECATED_EXTRACT_RETURN_VALUE): Remove.
3807         (STORE_RETURN_VALUE): Remove.
3808         (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Remove.
3809         (FRAME_CHAIN): Remove.
3810         (FRAMELESS_FUNCTION_INVOCATION): Remove.
3811         (FRAME_SAVED_PC): Remove.  
3812         * m68k-tdep.c (m68k_register_bytes_ok):Add.
3813         (m68k_store_struct_return): Add.
3814         (m68k_deprecated_extract_return_value): Add.
3815         (m68k_deprecated_extract_struct_value_address): Add.
3816         (m68k_store_return_value): Add.
3817         (m68k_frame_chain): Add.
3818         (m68k_frameless_function_invocation): Add.
3819         (m68k_frame_saved_pc): Add.
3820         (m68k_gdbarch_init): added set_gdbarch calls for new 
3821         functions and deleted macros.
3822
3823 2002-06-23  Tom Tromey  <tromey@redhat.com>
3824
3825         * Makefile.in (HFILES_NO_SRCDIR): Remove old files.
3826         (ALLDEPFILES): Likewise.
3827         (udiheaders): Removed.
3828         (udip2soc.o): Likewise.
3829         (udi2go32.o): Likewise.
3830         (udr.o): Likewise.
3831         (HFILES_WITH_SRCDIR): Don't mention udiheaders.
3832
3833 2002-06-22  Andrew Cagney  <ac131313@redhat.com>
3834
3835         * infrun.c (_initialize_infrun): Delete unnecessary call to
3836         build_infrun.
3837
3838         * regcache.h: Update comments describing the regcache_cpy family
3839         of functions.
3840         (regcache_save, regcache_restore): Delete declaration.
3841         (regcache_save_no_passthrough): Delete declaration.
3842         (regcache_restore_no_passthrough): Delete declaration.
3843         * regcache.c (regcache_save): Delete function.
3844         (regcache_save_no_passthrough): Delete function.
3845         (regcache_restore): Delete function.
3846         (regcache_restore_no_passthrough): Delete function.
3847
3848 2002-06-21  Andrew Cagney  <ac131313@redhat.com>
3849
3850         * config/m68k/tm-m68k.h: Fix typo.
3851         (FRAME_INIT_SAVED_REGS): Define when non-multi-arch.
3852         (m68k_frame_init_saved_regs): Declare.
3853
3854 2002-06-21  Jim Blandy  <jimb@redhat.com>
3855
3856         Remove some vestiges of Harris 88k support.
3857         * dwarf2read.c (decode_locdesc): Remove `#if' block for Harris 88k
3858         register numbering quirk.
3859         * elfread.c (elf_symtab_read): Remove `#if' block for skipping
3860         odd symbols occurring in Harris 88k ELF targets.
3861
3862 2002-06-21  Tom Tromey  <tromey@redhat.com>
3863
3864         * gdb_locale.h: New file.
3865         * Makefile.in (GDB_CFLAGS): Define LOCALEDIR.
3866         (defs_h): Added gdb_locale.h.
3867         * configure, config.in: Rebuilt.
3868         * configure.in (PACKAGE): Define.
3869         * defs.h: Include gdb_locale.h.
3870         * main.c (captured_main): Call setlocale, bindtextdomain,
3871         textdomain.
3872
3873 2002-06-21  Dave Brolley  <brolley@redhat.com>
3874
3875         From Stan Shebs, Jim Blandy, Mark Salter, Kevin Buettner:
3876         * config/frv/frv.mt: New file.
3877         * config/frv/tm-frv.h: New file.
3878         * configure.tgt: Support frv-*-*.
3879         * Makefile.in (frv-tdep.o): New target.
3880         * frv-tdep.c: New file.
3881         * NEWS: Mention frv.
3882
3883 2002-06-21  Dave Brolley  <brolley@redhat.com>
3884
3885         * MAINTAINERS: Add self to "Write After Approval" list.
3886
3887 2002-06-21  Grace Sainsbury  <graces@redhat.com>
3888
3889         * config/m68k/tm-m68k.h (REGISTER_BYTE, REGISTER_RAW_SIZE)
3890         (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
3891         (REGISTER_VIRTUAL_TYPE, REGISTER_NAMES, TARGET_LONG_DOUBLE_FORMAT)
3892         (FUNCTION_START_OFFSET, SKIP_PROLOGUE, SAVED_PC_AFTER_CALL)
3893         (INNER_THAN, STACK_ALIGN, REGISTER_SIZE): Remove macros.
3894
3895         * m68k-tdep.c: Include arch-utils.h
3896         (m68k_register_raw_size): Add.
3897         (m68k_register_virtual_size): Add.
3898         (m68k_register_virtual_type): Add.
3899         (m68k_register_name): Add.
3900         (m68k_stack_align): Add.
3901         (m68k_register_byte): Add.
3902         (m68k_gdbarch_init): Add set_gdbarch calls for macros removed in
3903         tm-m68k.h.
3904
3905 2002-06-21  Grace Sainsbury  <graces@redhat.com>
3906
3907         * m68k-tdep.c (m68k_frame_init_saved_regs): Replace
3908         m68k_find_saved_regs.
3909         (m68k_pop_frame): Removed saved_regs structure, and replaced
3910         references to it with frame->saved_regs.
3911         (m68k_gdbarch_init): Added function calls to initialize the
3912         gdbarch structure.
3913         (m68k_fix_call_dummy): Add. 
3914         * config/m68k/tm-m68k.h: (FRAME_FIND_SAVED_REGS): Remove.
3915         (CALL_DUMMY): Remove.
3916         (CALL_DUMMY_LENGTH): Remove.
3917         (CALL_DUMMY_START_OFFSET): Remove.
3918         (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
3919         (FIX_CALL_DUMMY): Remove.
3920         (PUSH_DUMMY_FRAME): Remove.
3921         (POP_FRAME): Remove.
3922
3923 2002-06-19  Pierre Muller  <muller@ics.u-strasbg.fr>
3924
3925         * parse.c (parse_fprintf): New function used to avoid calls to
3926         fprintf in bison parser generated debug code.
3927         * parser-defs.h: Declaration of new parse_fprintf function.
3928         * ada-exp.y, c-exp.y, f-exp.y, jv-exp.y, m2-exp.y, p-exp.y:
3929         Set YYDEBUG to 1 by default.
3930         Set YYFPRINTF as parse_fprintf.
3931
3932 2002-06-21  Michal Ludvig  <mludvig@suse.cz>
3933
3934         * dwarf2cfi.c (read_encoded_pointer): Don't handle pointer 
3935         encoding anymore.
3936         (pointer_encoding, enum ptr_encoding): New.
3937         (execute_cfa_program): Take care about pointer encoding.        
3938         (dwarf2_build_frame_info): Only call parse_frame_info for 
3939         .debug_frame and .eh_frame.
3940         (parse_frame_info): New, derived from former dwarf2_build_frame_info.
3941         fixed augmentation handling, added relative addressing, 
3942         ignore duplicate FDEs. Added comments.
3943         * dwarf2cfi.c: Reindented.
3944         
3945 2002-06-20  Elena Zannoni  <ezannoni@redhat.com>
3946
3947         * event-top.c (command_handler): Don't use space_at_cmd_start
3948         unless there is sbrk() on the host. Assign time and space data
3949         to union fields of the appropriate length.
3950
3951 2002-06-20  Michal Ludvig  <mludvig@suse.cz>
3952
3953         * x86-64-tdep.c (x86_64_register_nr2name): Rename to 
3954         x86_64_register_name. Return type changed to 'const char *'.
3955         (x86_64_register_name2nr): Rename to x86_64_register_number.
3956         (x86_64_gdbarch_init): Update to reflect the change.
3957         * x86-64-tdep.h: Ditto.
3958         * x86-64-linux-nat.c (x86_64_fxsave_offset)
3959         (supply_fpregset): Ditto.
3960
3961 2002-06-19  Andrew Cagney  <cagney@redhat.com>
3962
3963         * regcache.h: Update copyright.
3964         (struct regcache, struct gdbarch): Add opaque declarations.
3965         (current_regcache): Declare global variable.
3966         (regcache_read, regcache_write): Add gdbarch parameter.
3967         (regcache_save, regcache_save_no_passthrough)
3968         (regcache_restore, regcache_restore_no_passthrough)
3969         (regcache_dup, regcache_dup_no_passthrough)
3970         (regcache_cpy, regcache_cpy_no_passthrough)
3971         (deprecated_grub_regcache_for_registers)
3972         (deprecated_grub_regcache_for_register_valid)
3973         (regcache_valid_p): Add function declarations.
3974         
3975         * regcache.c: Update copyright.
3976         (regcache_descr_handle): New global variable.
3977         (struct regcache_descr): Define.
3978         (init_legacy_regcache_descr, init_regcache_descr): New functions.
3979         (regcache_descr, xfree_regcache_descr): New functions.
3980         (struct regcache): Define.
3981         (regcache_xmalloc, regcache_xfree): New functions.
3982         (regcache_cpy, regcache_cpy_no_passthrough): New functions.
3983         (regcache_dup, regcache_dup_no_passthrough): New functions.
3984         (regcache_valid_p, regcache_read_as_address): New functions.
3985         (deprecated_grub_regcache_for_registers): New function.
3986         (deprecated_grub_regcache_for_register_valid): New function.
3987         (current_regcache): New global variable.
3988         (register_buffer): Add regcache parameter.  Update calls.
3989         (regcache_read, regcache_write): Add regcache parameter.  Rewrite.
3990         (read_register_gen, write_register_gen): Update register_buffer
3991         call.  Test for legacy_p instead of gdbarch_register_read_p or
3992         gdbarch_register_write_p.
3993         (regcache_collect): Update register_buffer call.
3994         (build_regcache): Rewrite.  Use deprecated grub functions.
3995         (regcache_save, regcache_save_no_passthrough): New functions.
3996         (regcache_restore, regcache_restore_no_passthrough): New
3997         functions.
3998         (_initialize_regcache): Create the regcache_data_handle. Swap
3999         current_regcache global variable.
4000         
4001         * sh-tdep.c (sh_pseudo_register_read): Add current_regcache
4002         parameter to regcache_read and regcache_write calls.
4003         (sh4_register_read): Ditto.
4004         (sh64_pseudo_register_read): Ditto.
4005         (sh64_register_read): Ditto.
4006         (sh_pseudo_register_write): Ditto.
4007         (sh4_register_write): Ditto.
4008         (sh64_pseudo_register_write): Ditto.
4009         (sh64_register_write): Ditto.
4010
4011         * defs.h (XCALLOC): Define.
4012
4013 2002-06-19  Grace Sainsbury  <graces@redhat.com>
4014
4015         * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Added (set to 0).
4016         * m68k-tdep.c (m68k_gdbarch_init): Added.
4017         (m68k_dump_tdep): Added.
4018
4019 2002-06-19  Daniel Jacobowitz  <drow@mvista.com>
4020
4021         * ada-lang.c (fill_in_ada_prototype): Update comment.
4022
4023 2002-06-19  Daniel Jacobowitz  <drow@mvista.com>
4024
4025         * mips-tdep.c (enum mips_abi): Explicitly start at 0.  Add
4026         MIPS_ABI_LAST.
4027         (mips_abi_string, mips_abi_strings): New.
4028         (struct gdbarch_tdep): Remove mips_abi_string, add found_abi.
4029         (mips_gdbarch_init): Set tdep->found_abi.  Don't set
4030         tdep->mips_abi_string.  Honor mips_abi_string.  Default to
4031         O32 if no ABI is found.
4032         (mips_dump_tdep): Use mips_abi_strings.
4033         (mips_abi_update): New function.
4034         (_initialize_mips_tdep): Initialize mips_abi_string.  Add  
4035         ``set mips abi'' and ``show mips abi''.  Check the size of
4036         mips_abi_strings.
4037
4038 2002-06-19  Andrew Cagney  <cagney@redhat.com>
4039
4040         * i386-linux-tdep.c (i386_linux_register_name): Make return type
4041         constant.
4042
4043 2002-06-18  Joel Brobecker  <brobecker@gnat.com>
4044
4045         * alpha-tdep.c (heuristic_proc_desc): Compute the size of the  
4046         current frame using only the first stack size adjustment. All
4047         subsequent size adjustments are not considered to be part of
4048         the "static" part of the current frame.
4049         Compute the address of the saved registers relative to the
4050         Frame Pointer ($fp) instead of the Stack Pointer if $fp is
4051         in use in this frame.
4052
4053 2002-06-18  Don Howard  <dhoward@redhat.com>
4054  
4055         * valops.c (value_ind): Use value_at_lazy() when dereferencing
4056         type int expressions.  Thanks to Jim Blandy <jimb@redhat.com> for
4057         suggesting this solution.
4058
4059 2002-06-18  Andrew Cagney  <ac131313@redhat.com>
4060
4061         * config/romp/xm-rtbsd.h: Delete file.
4062         * config/romp/rtbsd.mh: Delete file.
4063
4064 2002-06-18  Keith Seitz  <keiths@redhat.com>
4065
4066         * breakpoint.c (condition_command): Post breakpoint_modify
4067         when a condition is added to an existing breakpoint.
4068         (commands_command): Likewise for commands.
4069         (set_ignore_count): Likewise for ignore counts.
4070         If no tty, do not simply return, still need to send event
4071         notification.
4072         (ignore_command): Only print a newline if the command came
4073         from a tty.
4074         Don't call breakpoints_changed, since this is now properly
4075         handled by set_ignore_count.
4076
4077 2002-06-18  Andrew Cagney  <cagney@redhat.com>
4078
4079         * MAINTAINERS: Note that cris-elf target can be compiled with
4080         -Werror.
4081         * cris-tdep.c (cris_register_name): Make return type constant.
4082         (cris_breakpoint_from_pc): Ditto.
4083
4084 2002-06-18  Michal Ludvig  <mludvig@suse.cz>
4085
4086         * frame.h (struct frame_info): Change type of context to 
4087         'struct context'.
4088
4089 2002-06-17  Andrew Cagney  <cagney@redhat.com>
4090
4091         * gdbarch.sh (REGISTER_NAME): Change return type a constant string
4092         pointer.
4093         * gdbarch.h, gdbarch.c: Regenerate.
4094         * config/mips/tm-mips.h (mips_register_name): Update.
4095         * i386-tdep.h (i386_register_name): Update.
4096         * mips-tdep.c (mips_register_name): Update
4097         * alpha-tdep.c (alpha_register_name): Update.
4098         * arch-utils.c (legacy_register_name): Update.
4099         * arch-utils.h (legacy_register_name): Update.
4100         * avr-tdep.c (avr_register_name): Update.
4101         * ia64-tdep.c (ia64_register_name): Update.
4102         * i386-tdep.c (i386_register_name): Update.
4103         * sparc-tdep.c (sparc32_register_name): Update.
4104         (sparc64_register_name): Update.
4105         (sparclite_register_name): Update.
4106         (sparclet_register_name): Update.
4107         * sh-tdep.c (sh_generic_register_name): Update.
4108         (sh_sh_register_name): Update.
4109         (sh_sh3_register_name): Update.
4110         (sh_sh3e_register_name): Update.
4111         (sh_sh_dsp_register_name): Update.
4112         (sh_sh3_dsp_register_name): Update.
4113         (sh_sh4_register_name): Update.
4114         (sh_sh64_register_name): Update.
4115         * s390-tdep.c (s390_register_name): Update.
4116         * rs6000-tdep.c (rs6000_register_name): Update.
4117         * ns32k-tdep.c (ns32k_register_name_32082): Update.
4118         (ns32k_register_name_32382): Update.
4119         * d10v-tdep.c (d10v_ts2_register_name): Update.
4120         (d10v_ts3_register_name): Update.
4121         * xstormy16-tdep.c (xstormy16_register_name): Update.
4122         * vax-tdep.c (vax_register_name): Update.
4123         * v850-tdep.c (v850_register_name): Update.
4124         * m68hc11-tdep.c (m68hc11_register_name): Update.
4125         * mn10300-tdep.c (mn10300_generic_register_name): Update.
4126         (am33_register_name): Update.
4127
4128 2002-06-17  Grace Sainsbury  <graces@redhat.com>
4129
4130         * m68k-tdep.c: Reindented.
4131
4132 2002-06-17  Andrew Cagney  <ac131313@redhat.com>
4133
4134         * gdb_indent.sh: Add prgregset_t, fpregset_t, and gregset_t to the
4135         list of predefined types.
4136
4137 2002-06-16  Mark Kettenis  <kettenis@gnu.org>
4138
4139         * config/i386/tm-i386.h (REGISTER_VIRTUAL_TYPE,
4140         REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL,
4141         REGISTER_CONVERT_TO_RAW): Remove defines.
4142         (i386_register_virtual_type, i386_register_convertible,
4143         i386_register_convert_to_virtual, i386_register_convert_to_raw):
4144         Remove prototypes.
4145         * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
4146         macros mentioned above.
4147
4148         * config/i386/tm-i386lynx.h (SAVED_PC_AFTER_CALL): Remove define.
4149         (i386lynx_saved_pc_after_call): Remove prototype.
4150         * i386ly-tdep.c: Include "i386-tdep.h".
4151         (i386lynx_saved_pc_after_call): Make static.  Use
4152         read_memory_nobpt instead of read_memory.  Use
4153         read_memory_unsigned_integer instead of read_memory_integer.
4154         (i386lynx_init_abi): New function.
4155         (i386lynx_coff_osabi_sniffer): New function.
4156         (_initialize_i386bsd_tdep): New function.
4157
4158         * config/i386/tm-i386.h (PARM_BOUNDARY, CALL_DUMMY,
4159         CALL_DUMMY_LENGTH, CALL_DUMMY_START_OFFSET,
4160         CALL_DUMMY_BREAKPOINT_OFFSET, FIX_CALL_DUMMY): Remove defines.
4161         (i386_fix_call_dummy): Remove prototype.
4162         * i386-tdep.c (i386_call_dummy_words): New variable.
4163         (i386_gdbarch_init): Adjust for removal of the
4164         macros mentioned above.
4165
4166 2002-06-15  Andrew Cagney  <ac131313@redhat.com>
4167
4168         * command.h (add_setshow_auto_boolean_cmd): Replace
4169         add_set_auto_boolean_cmd.
4170         * cli/cli-decode.c (add_setshow_auto_boolean_cmd): Replace
4171         add_set_auto_boolean_cmd.
4172         * cli/cli-decode.h (add_set_auto_boolean_cmd): Delete declaration.
4173         * mips-tdep.c (_initialize_mips_tdep): Update ``set mips
4174         mask-address'' command.
4175         (show_mask_address): Add cmd parameter.
4176         * remote.c (add_packet_config_cmd): Update.  Change type of
4177         set_func and show_func to cmd_sfunc_ftype.
4178         (_initialize_remote): Update `set remote Z-packet'
4179         (show_remote_protocol_qSymbol_packet_cmd): Add cmd parameter.
4180         (show_remote_protocol_e_packet_cmd): Ditto.
4181         (show_remote_protocol_E_packet_cmd): Ditto.
4182         (show_remote_protocol_P_packet_cmd): Ditto.
4183         (show_remote_protocol_Z_software_bp_packet_cmd): Ditto.
4184         (show_remote_protocol_Z_hardware_bp_packet_cmd): Ditto.
4185         (show_remote_protocol_Z_write_wp_packet_cmd): Ditto.
4186         (show_remote_protocol_Z_read_wp_packet_cmd): Ditto.
4187         (show_remote_protocol_Z_access_wp_packet_cmd): Ditto.
4188         (show_remote_protocol_Z_packet_cmd): Ditto.
4189         (show_remote_protocol_binary_download_cmd): Ditto.
4190         (show_remote_cmd): Pass NULL to all of above.
4191
4192 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
4193
4194         * config/i386/tm-i386.h (PUSH_ARGUMENTS, STORE_STRUCT_RETURN,
4195         DEPRECATED_EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE,
4196         DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS, PUSH_DUMMY_FRAME,
4197         POP_FRAME): Remove defines.
4198         (i386_push_arguments, i386_store_struct_return,
4199         i386_extract_return_value, i386_store_return_value,
4200         i386_extract_struct_value_address, i386_push_dummy_frame,
4201         i386_pop_frame): Renove prototypes.
4202         * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
4203         macros mentioned above.
4204
4205 2002-06-15  Andrew Cagney  <ac131313@redhat.com>
4206
4207         * cli/cli-decode.c (add_setshow_boolean_cmd): Replace
4208         add_set_boolean_cmd.
4209         (add_setshow_cmd): New function.
4210         * command.h (add_setshow_boolean_cmd): Replace
4211         add_set_boolean_cmd.
4212         * remote-rdi.c (_initialize_remote_rdi): Update ``set rdiheartbeat''
4213         and ``set rdiromatzero''.
4214         * maint.c (_initialize_maint_cmds): Update commented out code.
4215         * cli/cli-decode.h (add_set_boolean_cmd): Delete declaration.
4216         * target.c (initialize_targets): Update `set
4217         trust-readonly-sections'.
4218         * remote.c (_initialize_remote): Update `set remotebreak'.
4219
4220 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
4221
4222         * config/i386/tm-i386.h (FUNCTION_START_OFFSET, INNER_THAN,
4223         BREAKPOINT, DECR_PC_AFTER_BREAK): Removed.
4224         * i386-tdep.c (i386_skip_prologue): Adjust function signature to
4225         fit into multi-arch framework.
4226         (i386_breakpoint_from_pc): New function.
4227         (i386_gdbarch_init): Adjust for removal of the macros mentioned
4228         above.
4229
4230         * config/i386/tm-i386.h (FRAMELESS_FUNCTION_INVOCATION,
4231         FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS,
4232         FRAME_ARGS_SKIP, FRAME_INIT_SAVED_REGS): Remove defines.
4233         (i386_frameless_function_invocation, i386_frame_num_args,
4234         i386_frame_init_saved_regs): Remove prototypes.
4235         * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
4236         macros mentioned above.
4237
4238 2002-06-15  Andrew Cagney  <ac131313@redhat.com>
4239
4240         * cli/cli-decode.c (set_cmd_cfunc): Update.
4241         (set_cmd_sfunc): Update.
4242         * command.h (cmd_cfunc_ftype, cmd_sfunc_ftype): Declare.
4243         (set_cmd_sfunc, set_cmd_cfunc): Update.
4244         * cli/cli-decode.h: Update.
4245
4246 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
4247
4248         * i386-sol2-tdep.c (i386_sol2_osabi_sniffer): New function.
4249         (_initialize_i386_sol2_tdep): Register i386_sol2_osabi_sniffer.
4250
4251 2002-06-15  Andrew Cagney  <ac131313@redhat.com>
4252
4253         * defs.h (auto_boolean): Declare enum.
4254         * command.h (cmd_auto_boolean): Delete enum.
4255         * mips-tdep.c (mask_address_var): Update.
4256         (mips_mask_address_p): Update.
4257         (show_mask_address): Update.
4258         * remote.c (struct packet_config): Update.
4259         (update_packet_config): Update.
4260         (show_packet_config_cmd): Update.
4261         (packet_ok): Update.
4262         (add_packet_config_cmd): Update.
4263         (_initialize_remote): 
4264         * command.h: Update.
4265         * cli/cli-setshow.c (parse_auto_binary_operation): Update.
4266         (do_setshow_command): Update.
4267         * cli/cli-decode.c (add_set_auto_boolean_cmd): Update.
4268         * cli/cli-decode.h: Update.
4269
4270 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
4271
4272         * config/i386/tm-cygwin.h, config/i386/tm-fbsd.h,
4273         config/i386/tm-go32.h, config/i386/tm-i386gnu.h,
4274         config/i386/tm-i386sol2.h, config/i386/tm-i386v4.h,
4275         config/i386/tm-linux.h, config/i386/tm-nbsd.h,
4276         config/i386/tm-obsd.h (HAVE_I387_REGS): Remove define.
4277         * config/i386/tm-i386.h: Unconditionally define FLOAT_INFO.
4278
4279         * i386-tdep.c (i386_coff_osabi_sniffer): Add "coff-go32" to the
4280         list of DJGPP COFF targets.
4281
4282         * config/i386/tm-i386.h (REGISTER_SIZE): Remove define.
4283         (NUM_GREGS, NUM_FREGS, NUM_SSE_REGS): Remove defines.
4284         (FP_REGNUM, SP_REGNUM, PC_REGNUM, PS_REGNUM): Remove defines.
4285         (FP0_REGNUM): Remove define.
4286         (MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE,
4287         MAX_REGISTER_VIRTUAL_SIZE): Remove define.
4288         (i386_register_virtual_size): Remove protoype.
4289         * i386-tdep.c (i386_register_virtual_size): Removed.
4290         (i386_extract_return_value, i386_store_return_value): Use
4291         FP0_REGNUM instead of NUM_FREGS to determine whether the
4292         floating-point registers are available.
4293         (i386_gdbarch_init): Tweak FIXME about FPU registers.
4294         Adjust for removal of macros mentioned above.
4295
4296 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
4297
4298         * i386v4-nat.c: Include "i386-tdep.h".  Reformat and tweak various
4299         comments.
4300         (fill_gregset, supply_gregset, supply_fpregset, fill_fpregset):
4301         Remove prototypes.
4302         (supply_gregset, fill_gregset): Remove use of register keyword and
4303         remove declaration for regmap.  Use I386_NUM_GREGS instead of
4304         NUM_REGS and NUM_FREGS.
4305         (FPREGSET_FSAVE_OFFSET): Remove.
4306         (supply_fpregset, fill_fpregset): Use FPO_REGNUM instead of
4307         NUM_FREGS to determine whether the floating-point registers are
4308         available.
4309
4310         * i386gnu-nat.c (supply_gregset, gnu_fetch_registers,
4311         gnu_store_registers): Replace usage of NUM_GREGS with
4312         I386_NUM_GREGS.
4313
4314         * i386-linux-nat.c (OLD_CANNOT_FETCH_REGISTER,
4315         OLD_CANNOT_STORE_REGISTER, supply_gregset, fill_gregset): Replace
4316         usage of NUM_GREGS with I386_NUM_GREGS.
4317
4318         * i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
4319
4320         * i386bsd-nat.c: Include "i386-tdep.h".
4321         (supply_gregset, fill_gregset): Replace usage of NUM_GREGS with
4322         I386_NUM_GREGS.
4323
4324         * i386v-nat.c: Remove copnditional inclusion of <asm/debugreg.h>,
4325         and associated comment.  They no longer make any sense, since we
4326         don't use this file anymore on Linux.
4327
4328         * config/i386/tm-i386.h (MAX_NUM_REGS): Removed.
4329         * i386-tdep.c (i386_register_offset, i386_register_size): Use
4330         I386_SSE_NUM_REGS instead of MAX_NUM_REGS for the number of
4331         elements in these arrays.
4332         (_initialize_i386_tdep): Use I386_SSE_NUM_REGS instead of
4333         MAX_NUM_REGS.
4334
4335 2002-06-15  Mark Kettenis  <kettenis@gnu.org>
4336
4337         * osabi.h (gdb_osabi): Add GDB_OSABI_LYNXOS.
4338         * osabi.c (gdb_osabi_names): Add entry for "LynxOS".
4339
4340 2002-06-14  Andrew Cagney  <cagney@redhat.com>
4341
4342         * gdbarch.sh (DEPRECATED_EXTRACT_RETURN_VALUE): Rename
4343         EXTRACT_RETURN_VALUE.
4344         (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Rename
4345         EXTRACT_STRUCT_VALUE_ADDRESS.
4346         * gdbarch.h, gdbarch.c: Regenerate.
4347         
4348         * values.c (value_being_returned): Handle
4349         DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
4350         (EXTRACT_RETURN_VALUE): Define as DEPRECATED_EXTRACT_RETURN_VALUE.
4351
4352         * arm-linux-tdep.c (arm_linux_init_abi): Update. 
4353         * arm-tdep.c (arm_gdbarch_init): Update.
4354         * avr-tdep.c (avr_gdbarch_init): Update.
4355         * cris-tdep.c (cris_gdbarch_init): Update.
4356         * d10v-tdep.c (d10v_gdbarch_init): Update.
4357         * ia64-tdep.c (ia64_gdbarch_init): Update.
4358         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
4359         * rs6000-tdep.c (rs6000_gdbarch_init): Update.
4360         * s390-tdep.c (s390_gdbarch_init): Update.
4361         * sh-tdep.c (sh_gdbarch_init): Update.
4362         * s390-tdep.c (s390_gdbarch_init): Update.
4363         * sparc-tdep.c (sparc_gdbarch_init): Update.
4364         * ns32k-tdep.c (ns32k_gdbarch_init): Update.
4365         * v850-tdep.c (v850_gdbarch_init): Update.
4366         * vax-tdep.c (vax_gdbarch_init): Update.
4367         * x86-64-tdep.c (x86_64_gdbarch_init): Update.
4368         * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
4369
4370         * config/arc/tm-arc.h: Update.
4371         * config/d30v/tm-d30v.h: Update.
4372         * config/fr30/tm-fr30.h: Update.
4373         * config/h8300/tm-h8300.h: Update.
4374         * config/h8500/tm-h8500.h: Update.
4375         * config/i386/tm-i386.h: Update.
4376         * config/i386/tm-ptx.h: Update.
4377         * config/i386/tm-symmetry.h: Update.
4378         * config/i960/tm-i960.h: Update.
4379         * config/m32r/tm-m32r.h: Update.
4380         * config/m68k/tm-delta68.h: Update.
4381         * config/m68k/tm-linux.h: Update.
4382         * config/m68k/tm-m68k.h: Update.
4383         * config/m88k/tm-m88k.h: Update.
4384         * config/mcore/tm-mcore.h: Update.
4385         * config/mips/tm-mips.h: Update.
4386         * config/mn10200/tm-mn10200.h: Update.
4387         * config/pa/tm-hppa.h: Update.
4388         * config/pa/tm-hppa64.h: Update.
4389         * config/sparc/tm-sp64.h: Update.
4390         * config/sparc/tm-sparc.h: Update.
4391         * config/sparc/tm-sparclet.h: Update.
4392         * config/z8k/tm-z8k.h: Update.
4393
4394 2002-06-14  Andrew Cagney  <cagney@redhat.com>
4395
4396         * Makefile.in (i386_linux_tdep_h): Define.
4397         (i386_tdep_h, i387_tdep_h): Define.
4398         (i386-linux-nat.o): Add $(i386_linux_tdep_h),
4399         $(i386_tdep_h) and $(i387_tdep_h).
4400         * i386-linux-nat.c: Include "i386-linux-tdep.h".
4401
4402 2002-06-14  Mark Kettenis  <kettenis@gnu.org>
4403
4404         * config/i386/tm-i386.h (START_INFERIOR_TRAPS_EXPECTED): Removed.
4405         Already covered by the default.
4406
4407         * config/i386/tm-i386.h (TARGET_LONG_DOUBLE_FORMAT,
4408         TARGET_LONG_DOUBLE_BIT): Remove.  * i386-tdep.c
4409         (i386_gdbarch_init): Initialize long_double_format and long_double
4410         bit.
4411
4412         * config/i386/i386sol2.mt (TDEPFILES): Add i386-sol2-tdep.o and
4413         i386bsd-tdep.o.  Remove solib.o, solib-svr4.o and solib-legacy.o.
4414         Move these to ...
4415         * config/i386/i386sol2.mh: ... here.
4416         * config/i386/tm-i386sol2.h (STAB_REG_TO_REGNUM): Remove define.
4417         (sigtramp_saved_pc, I386V4_SIGTRAMP_SAVED_PC): Don't #undef.
4418         (SIGCONTEXT_PC_OFFSET): Remove define.
4419         (IN_SIGTRAMP): Remove define.
4420         * i386-sol2-tdep.c: New file.
4421         
4422         * config/i386/i386nw.mt (TM_FILE): Change to tm-i386.h.
4423         * config/i386/tm-i386nw.h: Removed.
4424
4425         * config/i386/tm-fbsd.h (STAB_REG_TO_REGNUM,
4426         USE_STRUCT_CONVENTION): Remove defines.
4427         (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
4428         (get_longjmp_target): Remove prototype.
4429         (IN_SIGTRAMP): Remove define.
4430         (i386bsd_in_sigtramp): Remove prototype.
4431         (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
4432         function.  Update comment accordingly
4433         (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
4434         (FRAME_SAVED_PC): Remove define.
4435         (i386bsd_frame_saved_pc): Remove prototype.
4436         * config/i386/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC,
4437         GET_LONGJMP_TARGET): Remove defines.
4438         (get_longjmp_target): Remove prototype.
4439         (IN_SIGTRAMP): Remove define.
4440         (i386bsd_in_sigtramp): Remove prototype.
4441         (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
4442         function.  Update comment accordingly
4443         (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
4444         (FRAME_SAVED_PC): Remove define.
4445         (i386bsd_frame_saved_pc): Remove prototype.
4446         * config/i386/tm-nbsdaout.h (i386nbsd_aout_use_struct_convention):
4447         Remove prototype.
4448         (USE_STRUCT_CONVENTION): Remove prototype.
4449         * i386bsd-nat.c (i386bsd_sigcontext_pc_offset): Remove
4450         declaration.
4451         (_initialize_i386bsd_nat): Revise logic to determine some
4452         constants at compile time when compiling a native GDB.  Warn if
4453         things don't match up with what we expect.
4454         * i386bsd-tdep.c (i386bsd_sigtramp_start, i386bsd_sigtramp_end):
4455         Remove variables.
4456         (i386bsd_in_sigtramp): Rename tp i386bsd_pc_in_sigtramp.  Rewrite
4457         to use date stored in `struct gdbarch_tdep'.
4458         (i386bsd_sigcontext_offset): Remove varaible.
4459         (i386bsd_sigtramp_saved_pc): Make public.  Rewrite to use data
4460         stored in `struct gdbarch_tdep'.
4461         (i386bsd_frame_saved_pc): Make static.
4462         (i386bsd_sigtramp_start, i386bsd_sigtramp_end): New functions.
4463         (i386bsd_sc_pc_offset, i386nbsd_sc_pc_offset,
4464         i386fbsd_sigtramp_start, i386fbsd_sigtramp_end,
4465         i386fbsd4_sc_pc_offset): New variables.
4466         (i386bsd_init_abi, i386nbsd_init_abi, i386nbsdelf_init_abi,
4467         i386fbsdaout_init_abi, i386fbsd_init_abi, i386fbsd4_init_abi): New
4468         functions.
4469         (i386bsd_aout_osabi_sniffer, _initialize_i386bsd_tdep): New
4470         functions.
4471         * i386fbsd-nat.c (_initialize_i386fbsd_nat): Fix type in comment.
4472         Modify the value of i386fbsd_sigtramp_start and
4473         i386fbsd_sigtramp_end instead of i386bsd_sigtramp_start and
4474         i386fbsd_sigtramp_end.
4475         * i386nbsd-tdep.c: (i386nbsd_aout_use_struct_convention): Remove
4476         function.
4477
4478         * config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): Move
4479         define to i386-linux-tdep.h.
4480         (NUM_REGS, MAX_NUM_REGS, REGISTER_BYTES, REGISTER_NAME,
4481         REGISTER_BYTE, REGISTER_RAW_SIZE, STAB_REG_TO_REGNUM): Remove
4482         defines.
4483         (i386_linux_register_name, i386_linux_register_byte,
4484         i386_linux_register_raw_size): Remove prototypes.
4485         (i386_linux_svr4_fetch_link_map_offsets): Remove prototype.
4486         (SVR4_FETCH_LINK_MAP_OFFSETS): Remove define.
4487         (IN_SIGTRAMP, FRAME_CHAIN, FRAME_SAVED_PC, SAVED_PC_AFTER_CALL,
4488         TARGET_WRITE_PC): Remove defines.
4489         (i386_linux_in_sigtramp, i386_linux_frame_chain,
4490         i386_linux_frame_saved_pc, i386_linux_saved_pc_after_call,
4491         i386_linux_write_pc): Remove prototypes.
4492         (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
4493         (get_longjmp_target): Remove prototype.
4494         * i386-linux-tdep.h: New file.
4495         * i386-linux-nat.c: Include "i386-linux-tdep.h".
4496         * i386-linux-tdep.c: Include "i386-tdep.h" and
4497         "i386-linux-tdep.h".
4498         (i386_linux_register_name, i386_linux_register_byte,
4499         i386_linux_register_raw_size, i386_linux_in_sigtramp,
4500         i386_linux_write_pc, i386_linux_svr4_fetch_link_map_offsets):
4501         Make static.
4502         (i386_linux_init_abi): New function.
4503         (_initialize_i386_linux_tdep): New function.
4504
4505         * config/i386/tm-i386.h (SAVED_PC_AFTER_CALL): Remove define.
4506         (i386_saved_pc_after_call): Remove prototype.
4507         (MAX_NUM_REGS): Increase to deal with Linux's orig_eax "register".
4508         (REGISTER_NAME, STAB_REG_TO_REGNUM, SDB_REG_TO_REGNUM,
4509         DWARF_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM): Remove defines.
4510         (i386_register_name, i386_stab_reg_to_regnum,
4511         i386_dwarf_reg_to_regnum): Remove prototypes.
4512         (SIZEOF_GREGS, SIZEOF_FPU_REGS, SIZEOF_FPU_CTL_REGS,
4513         SIZEOF_SSE_REGS): Remove defines.
4514         (REGISTER_BYTES): Remove define.
4515         (REGISTER_BYTE, REGISTER_RAW_SIZE): Remove defines.
4516         (i386_register_byte, i386_register_raw_size): Remove prototypes.
4517         (FRAME_CHAIN, FRAME_SAVED_PC): Remove defines.
4518         (i386_frame_chain, i386_frame_saved_pc): Remove prototypes.
4519         * config/i386/tm-i386v4.h (FRAME_CHAIN_VALID): Remove define.
4520         (JB_ELEMENT_SIZE, JB_PC, JB_EBX, JB_ESI, JB_EDI, JB_EBP, JB_ESP,
4521         JB_EDX, GET_LONGJMP_TARGET): Remove defines.
4522         (get_longjmp_target): Remove prototype.
4523         (I386V4_SIGTRAMP_SAVED_PC, IN_SIGTRAMP): Remove defines.
4524         (sigtramp_saved_pc): Remove define.
4525         (i386v4_sigtramp_saved_pc): Remove prototype.
4526         * config/i386/tm-go32.h (FRAME_CHAIN,
4527         FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC): Remove defines.
4528         (i386go32_frame_saved_pc): Remove prototype.
4529         (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
4530         (get_longjmp_target): Remove prototype.
4531         * i386-tdep.h: Include "osabi.h".
4532         (enum i386_abi): Removed.
4533         (enum struct_return): New enum.
4534         (struct gdbarch_tdep): Remove abi member, add osabi, jb_pc_offset,
4535         struct_return, sigtramp_saved_pc, sigtramp_start, sigtramp_end and
4536         sc_pc_offset members.
4537         (i386_gdbarch_register_os_abi): Remove prototype.
4538         (I386_NUM_GREGS, I386_NUM_FREGS, I386_NUM_XREGS,
4539         I386_SSE_NUM_REGS): New defines.
4540         (I386_SIZEOF_GREGS, I386_SIZEOF_FREGS, I386_SIZEOF_XREGS,
4541         I386_SSE_SIZEOF_REGS): New defines.
4542         (i386_register_name, i386_register_byte, i386_register_raw_size):
4543         New prototypes.
4544         (i386_elf_init_abi, i386_svr4_init_abi): New prototypes.
4545         (i386bsd_sigtramp_saved_pc): New prototype.
4546         * i386-tdep.c: Don't include "elf-bfd.h".
4547         (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum,
4548         i386_frame_chain, i386_saved_pc_after_call): Make static.
4549         (i386_frame_saved_pc): Rewrite to call architecture dependent
4550         function to deal with signal handlers.  Make static.
4551         (i386go32_frame_saved_pc): Removed.
4552         [GET_LONGJMP_TARGET] (JB_PC, JB_ELEMENT_SIZE, get_longjmp_target):
4553         Removed.
4554         (i386_get_longjmp_target): New function.
4555         (default_struct_convention, pcc_struct_convention,
4556         reg_struct_convention, valid_conventions, struct_convention): New
4557         variables.
4558         (i386_use_struct_convention): New function.
4559         (i386v4_sigtramp_saved_pc): Renamed to
4560         i386_svr4_sigtramp_saved_pc.  Made static.  Moved.
4561         (i386_pc_in_sigtramp): New function.
4562         (i386_abi_names): Removed.
4563         (ABI_TAG_OS_GNU_LINUX, ABI_TAG_OS_GNU_HURD,
4564         ABI_TAG_OS_GNU_SOLARIS, ABI_TAG_OS_FREEBSD, ABI_TAG_OS_NETBSD):
4565         Removed.
4566         (process_note_sections, i386_elf_abi_from_note, i386_elf_abi,
4567         i386_gdbarch_register_os_abi): Removed.
4568         (struct i386_abi_handler): Removed.
4569         (i386_abi_handler_list): Removed.
4570         (i386_svr4_pc_in_sigtramp, i386_go32_pc_in_sigtramp): New
4571         functions.
4572         (i386_elf_init_abi, i386_svr4_init_abi, i386_go32_init_abi,
4573         i386_nw_init_abi): New functions.
4574         (i386_gdbarch_init): Rewritten to use generic OS ABI framework.
4575         Use set_gdbarch_xxx() calls instead of relying on macros for a
4576         number of calls.
4577         (i386_coff_osabi_sniffer, i386_nlm_osabi_sniffer): New functions.
4578         (_initialize_i386_tdep): Add new 'struct-convcention' command.
4579         Register the various architecture variants defined in this file.
4580
4581 2002-06-14  Daniel Jacobowitz  <drow@mvista.com>
4582
4583         * gdbtypes.h (TYPE_FLAG_VARARGS): Update comment.
4584         (struct main_type): Remove arg_types member.  Update comments for
4585         struct field.
4586         (TYPE_ARG_TYPES): Remove.
4587         (TYPE_FN_FIELD_ARGS): Update.
4588         (smash_to_method_type): Update prototype.
4589
4590         * c-typeprint.c (cp_type_print_method_args): Take method type
4591         instead of argument list.  Use new argument layout.  Simplify.
4592         (c_type_print_args): Use new argument layout.  Simplify.
4593         (c_type_print_base): Update call to cp_type_print_method_args.
4594         * dwarf2read.c (dwarf2_add_member_fn): Remove unneeded type
4595         argument; use die->type instead.  Update call to
4596         smash_to_method_type.
4597         (read_structure_scope): Update call to dwarf2_add_member_fn.
4598         * gdbtypes.c (allocate_stub_method): Update comment.
4599         (smash_to_method_type): Take new NARGS and VARARGS arguments.
4600         Use new argument layout.
4601         (check_stub_method): Use new argument layout.  Don't count
4602         void as an argument.
4603         (print_arg_types): Update comments.  Use new argument layout.
4604         (recursive_dump_type): Don't print arg_types member.
4605         * hpread.c (hpread_read_struct_type): Use new argument layout.
4606         (fixup_class_method_type): Likewise.
4607         (hpread_type_lookup): Likewise.
4608         * stabsread.c (read_type): Update calls to read_args and
4609         smash_to_method_type.
4610         (read_args): Use new argument layout.  Simplify.
4611         * valops.c (typecmp): Use new argument layout.  Update parameters
4612         and comments.  Simplify.
4613         (hand_function_call): Use new argument layout.
4614         (search_struct_method): Update call to typecmp.
4615         (find_overload_match): Use new argument layout.
4616
4617 2002-06-13  Daniel Jacobowitz  <drow@mvista.com>
4618
4619         * NEWS: Mention multithreaded debug support for gdbserver.
4620
4621 2002-06-13  Daniel Jacobowitz  <drow@mvista.com>
4622
4623         * MAINTAINERS: Mention NEWS.
4624
4625 2002-06-13  Daniel Jacobowitz  <drow@mvista.com>
4626
4627         * mips-tdep.c (PROC_SYMBOL): Add warning comment.
4628         (struct mips_objfile_private, compare_pdr_entries): New.
4629         (non_heuristic_proc_desc): Read the ".pdr" section if it
4630         is present.
4631
4632 2002-06-12  Andrew Cagney  <ac131313@redhat.com>
4633
4634         * arm-tdep.c (arm_push_arguments): Rewrite using a two-pass loop.
4635         (arm_debug): New static variable.
4636         (_initialize_arm_tdep): Add ``set debug arm'' command.
4637
4638 2002-06-12  Andrew Cagney  <ac131313@redhat.com>
4639
4640         * Makefile.in (sim_arm_h): Define.
4641         (arm-tdep.o): Add $(sim_arm_h) and $(gdb_assert_h).
4642         * arm-tdep.c: Include "gdb/sim-arm.h" and "gdb_assert.h".
4643         (arm_register_sim_regno): New function, map an internal REGNUM
4644         onto a simulator register number.
4645         (arm_gdbarch_init): Set register_sim_regno.
4646
4647 2002-06-09  Aldy Hernandez  <aldyh@redhat.com>
4648
4649         * MAINTAINERS: Add self.
4650
4651 2002-06-11  Jim Blandy  <jimb@redhat.com>
4652
4653         * source.c (source_info): Mention whether the symtab has
4654         information about preprocessor macros.
4655
4656         Call the command `info macro', not `show macro'.
4657         * macrocmd.c (info_macro_command): Renamed from `show_macro_command'.
4658         Fix error message.
4659         (_initialize_macrocmd): Register `info_macro_command' in
4660         `infolist', not `showlist'.
4661
4662 2002-06-11  Daniel Jacobowitz  <drow@mvista.com>
4663
4664         * mips-tdep.c (MIPS_FPU_TYPE, FP_REGISTER_DOUBLE, MIPS_EABI)
4665         (MIPS_LAST_FP_ARG_REGNUM, MIPS_LAST_ARG_REGNUM)
4666         (MIPS_DEFAULT_SAVED_REGSIZE, MIPS_REGS_HAVE_HOME_P)
4667         (MIPS_DEFAULT_STACK_ARGSIZE, GDB_TARGET_IS_MIPS64)
4668         (MIPS_DEFAULT_MASK_ADDRESS_P): Remove obsolete definitions.  Define
4669         unconditionally.
4670         (set_mipsfpu_single_command, set_mipsfpu_double_command)
4671         (set_mipsfpu_none_command): Remove if (GDB_MULTI_ARCH).
4672         (_initialize_mips_tdep): Remove dead code.
4673         * config/mips/tm-irix5.h (MIPS_LAST_ARG_REGNUM)
4674         (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
4675         * config/mips/tm-irix6.h (MIPS_LAST_ARG_REGNUM)
4676         (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
4677         * config/mips/tm-mips.h (MIPS_EABI, MIPS_LAST_ARG_REGNUM,
4678         MIPS_LAST_FP_ARG_REGNUM): Remove.
4679
4680 2002-06-11  Michal Ludvig  <mludvig@suse.cz>
4681
4682         * dwarf2cfi.c (unwind_tmp_obstack_init): New.
4683         (unwind_tmp_obstack_free, parse_frame_info)
4684         (update_context, cfi_read_fp, cfi_write_fp)
4685         (cfi_frame_chain, cfi_init_extra_frame_info)
4686         (cfi_virtual_frame_pointer): Use the above function.
4687         * dwarf2cfi.c: Reindented (using 'indent dwarf2cfi.c').
4688
4689 2002-06-11  Corinna Vinschen  <vinschen@redhat.com>
4690
4691         * v850-tdep.c (v850_type_is_scalar): New function.
4692         (v850_use_struct_convention): Match current gcc implementation
4693         as close as possible.
4694         (v850_push_arguments): Fix stack_offset handling.  Don't write
4695         struct_addr into register.  This is done by v850_store_struct_return.
4696         (v850_extract_return_value): Care for structs.
4697         (v850_store_return_value): Ditto.
4698         (v850_store_struct_return): Actually write address.
4699
4700 2002-06-11  Michal Ludvig  <mludvig@suse.cz>
4701
4702         * x86-64-tdep.c (x86_64_skip_prologue): Fix to work on functions
4703         without debug information too.
4704
4705 2002-06-10  Andrew Cagney  <ac131313@redhat.com>
4706
4707         * gdbarch.sh (PRINT_FLOAT_INFO): Add frame and ui_file parameters.
4708         Make multi-arch pure.
4709         * gdbarch.h, gdbarch.c: Re-generate.
4710         * arm-tdep.c (arm_print_float_info): Update.
4711         * arch-utils.h (default_print_float_info): Update.
4712         * arch-utils.c (default_print_float_info): Update.
4713         * infcmd.c (float_info): Update call.
4714
4715 2002-06-10  Andrew Cagney  <ac131313@redhat.com>
4716
4717         * Makefile.in (init.c): Move the call to _initialize_gdbtypes to
4718         the front of the initialize list.
4719
4720 2002-06-10  Andrew Cagney  <ac131313@redhat.com>
4721
4722         * infrun.c (struct inferior_status): Replace fields
4723         selected_frame_address and selected_level with field
4724         selected_frame_id.
4725         (save_inferior_status): Update.  Use get_frame_id.
4726         (struct restore_selected_frame_args): Delete.
4727         (restore_selected_frame): Update.  Use frame_find_by_id.
4728         (restore_inferior_status): Update.
4729
4730         * breakpoint.h (struct breakpoint): Change type of
4731         watchpoint_frame to frame_id.
4732         * breakpoint.c (insert_breakpoints): Use frame_find_by_id.  Remove
4733         call to get_current_frame.
4734         (do_enable_breakpoint): Use frame_find_by_id.  Remove call to
4735         get_current_frame.
4736         (watchpoint_check): Use frame_find_by_id.
4737
4738         * frame.h (record_selected_frame): Delete declaration.
4739         * stack.c (record_selected_frame): Delete function.
4740         
4741         * frame.h (struct frame_id): Define.
4742         (get_frame_id): Declare.
4743         (frame_find_by_id): Declare.
4744         * frame.c (frame_find_by_id): New function.
4745         (get_frame_id): New function.
4746
4747 2002-06-10  Andrey Volkov <avolkov@transas.com>
4748
4749         * ser-e7kpc.c: Fix duplicated define and call of 
4750         _initialize_ser_e7000pc
4751             
4752 2002-06-09  Daniel Jacobowitz  <drow@mvista.com>
4753
4754         * signals/signals.c (target_signal_from_host): Fix #ifdef
4755         SIGRTMIN case.
4756         (do_target_signal_to_host): Likewise.
4757
4758 2002-06-09  Daniel Jacobowitz  <drow@mvista.com>
4759
4760         * mips-tdep.c (mips_find_abi_section): New function.
4761         (mips_gdbarch_init): Call it.
4762
4763 2002-06-09  Mark Kettenis  <kettenis@gnu.org>
4764
4765         * solib-svr4.c (init_fetch_link_map_offsets): Simply return
4766         legacy_fetch_link_map_offsets.  Adjust comment to reflect reality
4767         after Andrew's 2002-06-08 gdbarch change.
4768
4769 2002-06-09  Mark Kettenis  <kettenis@gnu.org>
4770
4771         * i386-linux-nat.c (suppy_gregset): Don't supply
4772         I386_LINUX_ORIG_EAX_REGNUM if there isn't room for it in GDB's
4773         register cache.
4774         (fill_gregset): Don't fetch it under the same circumstances.
4775
4776 2002-06-09  Andrew Cagney  <cagney@redhat.com>
4777
4778         * Makefile.in (callback_h): Define.
4779         (remote_sim_h): Update path to remote-sim.h.
4780         (remote-rdp.o): Add $(callback_h).
4781         (remote-sim.o): Use $(callback_h).
4782         * remote-sim.c: Include "gdb/callback.h" and "gdb/remote-sim.h".
4783         * remote-rdp.c: Include "gdb/callback.h".
4784
4785 2002-06-09  Mark Kettenis  <kettenis@gnu.org>
4786
4787         * osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
4788         * osabi.c (gdb_osabi_names): Add "DJGPP" and "NetWare".
4789
4790 2002-06-08  Andrew Cagney  <ac131313@redhat.com>
4791
4792         * sparcl-tdep.c: Use __CYGWIN__ instead of __CYGWIN32__.
4793         * rdi-share/serpardr.c: Ditto.
4794         * rdi-share/unixcomm.c: Ditto.
4795         * rdi-share/serdrv.c: Ditto.
4796         * rdi-share/hostchan.h: Ditto.
4797         * rdi-share/hostchan.c: Ditto.
4798         * rdi-share/host.h: Ditto.
4799         * rdi-share/devsw.c: Ditto.
4800
4801         * objfiles.h: Change type of obj_private to void pointer.
4802         * pa64solib.c: Update copyright.  Don't include "assert.h", use
4803         strcmp instead of STREQ, use LONGEST, do not use PTR
4804         * somsolib.c: Ditto.
4805
4806         * config/djgpp/fnchange.lst: Fix problems with bfd/elf32-i386.c,
4807         bfd/elf32-i386qnx.c, bfd/elf32-sh.c, bfd/elf32-sh64-nbsd.c,
4808         bfd/elf64-sh64-nbsd.c bfd/elf64-sh64.c.
4809
4810 2002-06-08  Andrew Cagney  <ac131313@redhat.com>
4811
4812         * frame.c (GET_SAVED_REGISTER): Delete macro definition.
4813         (default_get_saved_register): Delete function.
4814         * gdbarch.sh (GET_SAVED_REGISTER): Set default to
4815         generic_unwind_get_saved_register.
4816         * gdbarch.h, gdbarch.c: Re-generate.
4817         
4818 2002-06-08  Andrew Cagney  <ac131313@redhat.com>
4819
4820         * gdbarch.sh (FRAME_CHAIN_VALID): Set default to
4821         generic_func_frame_chain_valid.
4822         * gdbarch.h, gdbarch.c: Re-generate.
4823         * blockframe.c (generic_func_frame_chain_valid): Only check
4824         PC_IN_CALL_DUMMY when generic dummy frames.  Don't worry about
4825         passing FP to PC_IN_CALL_DUMMY.
4826         Fix PR gdb/360.
4827
4828 2002-06-08  Andrew Cagney  <ac131313@redhat.com>
4829
4830         * gdbarch.sh (struct gdbarch_data): Add field init_p.
4831         (register_gdbarch_data): Initialize init_p.
4832         (gdbarch_data): Initialize data pointer using the init function.
4833         (init_gdbarch_data): Delete function.
4834         (gdbarch_update_p): Update.
4835         (initialize_non_multiarch): Update.
4836         (struct gdbarch): Add field initialized_p.
4837         * gdbarch.h, gdbarch.c: Re-generate.
4838
4839 2002-06-07  Michal Ludvig  <mludvig@suse.cz>
4840
4841         * x86-64-linux-nat.c (x86_64_fxsave_offset): New.
4842         (supply_fpregset, fill_fpregset): Don't call i387_*_fxsave,
4843         better do the things actually here.
4844         * x86-64-tdep.c (x86_64_register_name2nr): New.
4845         (x86_64_register_name): Renamed to x86_64_register_nr2name.
4846         (x86_64_gdbarch_init): Respect the above change.
4847         * x86-64-tdep.h (x86_64_register_name2nr)
4848         (x86_64_register_nr2name): Add prototypes.
4849         * config/i386/x86-64linux.mt (TDEPFILES): Remove i387-tdep.o.
4850
4851 2002-06-06  Michael Snyder  <msnyder@redhat.com>
4852
4853         * d10v-tdep.c (d10v_push_arguments): Handle struct_return.
4854         Delete extra braces and re-indent.
4855         (d10v_store_return_value): Char return values
4856         must be shifted over by one byte in R0.
4857         (d10v_extract_return_value): Delete extra braces, re-indent.
4858
4859 2002-06-06  Elena Zannoni  <ezannoni@redhat.com>
4860
4861         * d10v-tdep.c (d10v_read_sp, d10v_read_fp): Add prototype.
4862         (d10v_register_virtual_type): Make $fp and $sp be pointer to data.
4863         (d10v_integer_to_address): Rewrite.
4864         (d10v_frame_init_saved_regs): When reading fp and sp registers use
4865         the d10v specific functions which take care of converting to the
4866         correct space.
4867
4868 2002-06-06  Elena Zannoni  <ezannoni@redhat.com>
4869
4870         * config/djgpp/fnchange.lst: Add testsuite files altivec-abi.c,
4871         altivec-abi.exp, altivec-regs.c, altivec-regs.exp.
4872
4873 2002-06-02  Andrew Cagney  <ac131313@redhat.com>
4874
4875         * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm
4876         includes.
4877         * config/tm-linux.h: Ditto.
4878         * config/alpha/tm-alphalinux.h: Ditto.
4879         * config/arm/nm-linux.h, config/arm/tm-linux.h: Ditto.
4880         * config/arm/xm-nbsd.h, config/i386/nm-gnu.h: Ditto.
4881         * config/i386/nm-i386lynx.h, config/i386/nm-i386sol2.h: Ditto.
4882         * config/i386/nm-i386v4.h, config/i386/nm-i386v42mp.h: Ditto.
4883         * config/i386/nm-linux.h, config/i386/nm-m3.h: Ditto.
4884         * config/i386/nm-ptx4.h, config/i386/nm-x86-64.h: Ditto.
4885         * config/i386/tm-i386gnu.h, config/i386/tm-i386lynx.h: Ditto.
4886         * config/i386/tm-i386m3.h, config/i386/tm-i386sco5.h: Ditto.
4887         * config/i386/tm-i386v4.h, config/i386/tm-linux.h: Ditto.
4888         * config/i386/tm-ptx4.h, config/i386/tm-vxworks.h: Ditto.
4889         * config/i386/xm-i386v4.h, config/i386/xm-nbsd.h: Ditto.
4890         * config/i386/xm-ptx.h, config/i386/xm-ptx4.h: Ditto.
4891         * config/i960/tm-vx960.h, config/ia64/nm-aix.h: Ditto.
4892         * config/ia64/nm-linux.h, config/ia64/tm-aix.h: Ditto.
4893         * config/ia64/tm-linux.h, config/ia64/xm-aix.h: Ditto.
4894         * config/m68k/nm-linux.h, config/m68k/nm-m68klynx.h: Ditto.
4895         * config/m68k/nm-sysv4.h, config/m68k/tm-linux.h: Ditto.
4896         * config/m68k/tm-m68klynx.h, config/m68k/tm-m68kv4.h: Ditto.
4897         * config/m68k/tm-sun2os4.h, config/m68k/tm-sun3os4.h: Ditto.
4898         * config/m68k/tm-vx68.h, config/m68k/xm-m68kv4.h: Ditto.
4899         * config/m68k/xm-nbsd.h, config/m88k/nm-delta88v4.h: Ditto.
4900         * config/m88k/tm-delta88v4.h, config/m88k/xm-delta88v4.h: Ditto.
4901         * config/mips/nm-irix5.h, config/mips/nm-linux.h: Ditto.
4902         * config/mips/tm-linux.h, config/mips/tm-mips64.h: Ditto.
4903         * config/mips/tm-mipsm3.h, config/mips/tm-mipsv4.h: Ditto.
4904         * config/mips/tm-vxmips.h, config/mips/xm-irix5.h: Ditto.
4905         * config/mips/xm-mipsv4.h, config/ns32k/xm-nbsd.h: Ditto.
4906         * config/pa/nm-hppao.h, config/powerpc/nm-linux.h: Ditto.
4907         * config/powerpc/tm-linux.h, config/powerpc/tm-vxworks.h: Ditto.
4908         * config/powerpc/xm-aix.h, config/rs6000/nm-rs6000ly.h: Ditto.
4909         * config/rs6000/tm-rs6000ly.h, config/rs6000/xm-aix4.h: Ditto.
4910         * config/sh/tm-linux.h, config/sparc/nm-linux.h: Ditto.
4911         * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4sol2.h: Ditto.
4912         * config/sparc/tm-linux.h, config/sparc/tm-sp64linux.h: Ditto.
4913         * config/sparc/tm-sp64sim.h, config/sparc/tm-sparclynx.h: Ditto.
4914         * config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h: Ditto.
4915         * config/sparc/tm-vxsparc.h, config/sparc/xm-sun4sol2.h: Ditto.
4916
4917 2002-05-04  Aidan Skinner <aidan@velvet.net>
4918
4919         * ada-exp.tab.c: New file
4920         * ada-exp.y: New file
4921         * ada-lang.c: New file
4922         * ada-lang.h: New file
4923         * ada-lex.c: New file
4924         * ada-lex.l: New file
4925         * ada-tasks.c: New file
4926         * ada-typeprint.c: New file
4927         * ada-valprint.c: New file
4928         
4929 2002-06-02  Jason Thorpe  <thorpej@wasabisystems.com>
4930
4931         * ppcnbsd-tdep.c (ppcnbsd_init_abi): Don't set
4932         use_struct_convention to ppc_sysv_abi_broken_use_struct_convention.
4933
4934 2002-06-02  Jason Thorpe  <thorpej@wasabisystems.com>
4935
4936         * config/rs6000/aix4.mt (TDEPFILES): Use ppc-sysv-tdep.o
4937         insetead of ppc-linux-tdep.o.
4938         * config/rs6000/rs6000.mt (TDEPFILES): Likewise.
4939         * config/rs6000/rs6000lynx.mt (TDEPFILES): Likewise.
4940
4941 2002-06-02  Andrew Cagney  <ac131313@redhat.com>
4942
4943         2002-05-07 Christian Groessler <chris@groessler.org>
4944         * z8k-tdep.c (z8k_print_register_hook): Fix display of 32 and 64
4945         bit register contents for little endian hosts.
4946
4947 2002-06-01  Andrew Cagney  <ac131313@redhat.com>
4948
4949         * MAINTAINERS: Mention that any `HP/UX reader' can be changed by
4950         any maintainer.
4951
4952 2002-06-01  Andrew Cagney  <ac131313@redhat.com>
4953
4954         * gdbarch.h: Regenerate.
4955
4956 2002-06-01  Andrew Cagney  <ac131313@redhat.com>
4957
4958         * MAINTAINERS: Add everyone to write-after-approval list.
4959
4960 2002-06-01  Andrew Cagney  <ac131313@redhat.com>
4961
4962         * stack.c (frame_info): Use frame_register_unwind instead of
4963         saved_regs.  Mention when the SP is on the stack or in a register.
4964
4965         * frame.h (frame_register_unwind_ftype): Define.  Document.
4966         (struct frame_info): Add field register_unwind and
4967         register_unwind_cache.
4968         (frame_register_unwind): Declare.
4969         (generic_unwind_get_saved_register): Declare.
4970
4971         * frame.c (frame_register_unwind): New function.
4972         (generic_unwind_get_saved_register): New function.
4973
4974         * blockframe.c (generic_call_dummy_register_unwind): New function.
4975         (frame_saved_regs_register_unwind): New function.
4976         (set_unwind_by_pc): New function.
4977         (create_new_frame): New function.
4978         (get_prev_frame): New function.
4979
4980 2002-05-30  Andrew Cagney  <ac131313@redhat.com>
4981
4982         * a29k-share/: Delete directory.
4983         * remote-vx29k.c: Delete file.
4984
4985 2002-05-30  Jason Thorpe  <thorpej@wasabisystems.com>
4986
4987         * config/djgpp/fnchange.lst: Add ns32knbsd-nat.c, ns32knbsd-tdep.c,
4988         ppcnbsd-nat.c, ppcnbsd-tdep.c, sparcnbsd-nat.c, and sparcnbsd-tdep.c.
4989
4990 2002-05-30  Jason Thorpe  <thorpej@wasabisystems.com>
4991
4992         * Makefile.in (ALLDEPFILES): Add sparc64nbsd-nat.c,
4993         sparcnbsd-nat.c, and sparcnbsd-tdep.c.
4994         (sparc64nbsd-nat.o)
4995         (sparcnbsd-nat.o)
4996         (sparcnbsd-tdep.o): New dependency lists.
4997         * NEWS: Note new UltraSPARC NetBSD native configuration.
4998         * configure.host (sparc64-*-netbsd*): New host.
4999         * configure.tgt (sparc-*-netbsdelf*)
5000         (sparc-*-netbsd*): Set gdb_target to nbsd.
5001         (sparc64-*-netbsd*): New target.
5002         * sparc64nbsd-nat.c: New file.
5003         * sparcnbsd-nat.c: New file.
5004         * sparcnbsd-tdep.c: New file.
5005         * sparcnbsd-tdep.h: New file.
5006         * config/sparc/nbsd.mt: New file.
5007         * config/sparc/nbsd64.mh: New file.
5008         * config/sparc/nbsd64.mt: New file.
5009         * config/sparc/nbsdaout.mh (NATDEPFILES): Remove corelow.o,
5010         sparc-nat.o, and solib.o.  Add sparcnbsd-nat.o.
5011         (HOST_IPC): Remove.
5012         * config/sparc/nbsdaout.mt: Remove.
5013         * config/sparc/nbsdelf.mh (NATDEPFILES): Remove corelow.o,
5014         sparc-nat.o, and solib.o.  Add sparcnbsd-nat.o.
5015         (HOST_IPC): Remove.
5016         * config/sparc/nbsdelf.mt: Remove.
5017         * config/sparc/nm-nbsd.h: Update copyright years.  Remove all
5018         sparc-nat.c compatiblity defines.
5019         * config/sparc/tm-nbsd.h: Update copyright years.  Include solib.h.
5020         (GDB_MULTI_ARCH): Set to GDB_MULTI_ARCH_PARTIAL.
5021         * config/sparc/tm-nbsd64.h: New file.
5022         * config/sparc/tm-nbsdaout.h: Remove.
5023         * config/sparc/xm-nbsd.h: Remove.
5024
5025 2002-05-30  Jason Thorpe  <thorpej@wasabisystems.com>
5026
5027         * Makefile.in (sparc-tdep.o): Add osabi.h to dependency list.
5028         * sparc-tdep.c: Include osabi.h.
5029         (gdbarch_tdep): Add osabi member.
5030         (_initialize_sparc_tdep): Use gdbarch_register.
5031         (sparc_gdbarch_init): Use generic OS ABI framework.
5032         (sparc_dump_tdep): New function.
5033
5034 2002-05-30  Kevin Buettner  <kevinb@redhat.com>
5035
5036         * corefile.c (do_captured_read_memory_integer): Return non-zero
5037         result.
5038         (safe_read_memory_integer): Copy result of memory read when
5039         status is non-zero.  Also, add comments.
5040
5041 2002-05-20  Jason Thorpe  <thorpej@wasabisystems.com>
5042
5043         * Makefile.in (ppc_tdep_h): Define.
5044         (ppc-linux-nat.o)
5045         (ppc-linux-tdep.o)
5046         (rs6000-tdep.o): Use $(ppc_tdep_h).
5047         (ppc-sysv-tdep.o)
5048         (ppcnbsd-nat.o)
5049         (ppcnbsd-tdep.o): New dependency lists.
5050         * ppc-tdep.h: Use generic OS ABI framework.
5051         * ppc-linux-tdep.c (_initialize_ppc_linux_tdep)
5052         (ppc_linux_init_abi): New functions.
5053         (ppc_sysv_abi_broken_use_struct_convention)
5054         (ppc_sysv_abi_use_struct_convention)
5055         (ppc_sysv_abi_push_arguments): Move to...
5056         * ppc-sysv-tdep.c: ...here.
5057         * ppcnbsd-nat.c: Don't include gdbcore.h and regcache.h.
5058         * rs6000-tdep.c (process_note_abi_tag_sections)
5059         (get_elfosabi): Remove.
5060         (rs6000_gdbarch_init): Use generic OS ABI framework.
5061         (rs6000_dump_tdep): New function.
5062         (_initialize_rs6000_tdep): Use gdbarch_register.
5063         * config/powerpc/linux.mt (TDEPFILES): Add ppc-sysv-tdep.o.
5064         * config/powerpc/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
5065         * config/powerpc/aix.mt (TDEPFILES): Use ppc-sysv-tdep.o instead
5066         of ppc-linux-tdep.o.
5067         * config/powerpc/nbsd.mt (TDEPFILES): Likewise.
5068         * config/powerpc/ppc-eabi.mt (TDEPFILES): Likewise.
5069         * config/powerpc/ppc-sim.mt (TDEPFILES): Likewise.
5070         * config/powerpc/ppcle-eabi.mt (TDEPFILES): Likewise.
5071         * config/powerpc/ppcle-sim.mt (TDEPFILES): Likewise.
5072         * config/powerpc/vxworks.mt (TDEPFILES): Likewise.
5073
5074 2002-05-29  Jim Blandy  <jimb@redhat.com>
5075
5076         * macroscope.c (default_macro_scope): Put `void' in empty argument
5077         list.
5078
5079 2002-05-29  Andrew Cagney  <ac131313@redhat.com>
5080
5081         * Makefile.in (arch-utils.o): Add $(sim_regno_h).
5082         * arch-utils.c: Include "sim-regno.h".
5083         * gdbarch.sh: Don't include "sim-regno.h".
5084         * gdbarch.h, gdbarch.c: Regenerate.
5085         * sim-regno.h (legacy_register_sim_regno): Move declaration from
5086         here.
5087         * arch-utils.h (legacy_register_sim_regno): To here.
5088         * remote-sim.c (legacy_register_sim_regno): Move function from
5089         here.
5090         * arch-utils.c (legacy_register_sim_regno): To here.
5091
5092 2002-05-28  Andrew Cagney  <ac131313@redhat.com>
5093
5094         * sim-regno.h: New file.
5095         * Makefile.in (sim_regno_h): Define.
5096         (d10v-tdep.o, remote-sim.o): Add dependency on $(sim_regno_h).
5097         * remote-sim.c: Include "sim-regno.h" and "gdb_assert.h".
5098         (legacy_register_sim_regno): New function.
5099         (one2one_register_sim_regno): New function.
5100         (gdbsim_fetch_register): Rewrite.
5101         (gdbsim_store_register): Only store a register when
5102         REGISTER_SIM_REGNO is valid.
5103         * d10v-tdep.c: Include "sim-regno.h".
5104         (d10v_ts2_register_sim_regno): Add legacy_regiter_sim_regno check.
5105         (d10v_ts3_register_sim_regno): Ditto.
5106         * gdbarch.sh: Include "sim-regno.h".
5107         (REGISTER_SIM_REGNO): Set default to legacy_register_sim_regno.
5108         * gdbarch.h, gdbarch.c: Regenerate.
5109         * arch-utils.h (default_register_sim_regno): Delete declaration.
5110         * arch-utils.c (default_register_sim_regno): Delete function.
5111
5112 2002-05-28  Jason Thorpe  <thorpej@wasabisystems.com>
5113
5114         * ppcnbsd-nat.c: Rewrite.
5115         * ppcnbsd-tdep.c: New file.
5116         * ppcnbsd-tdep.h: New file.
5117         * config/powerpc/nbsd.mh (NATDEPFILES): Remove corelow.o,
5118         solib.o, and solib-svr4.o.
5119         * config/powerpc/nbsd.mt (TDEPFILES): Add ppcnbsd-tdep.o,
5120         nbsd-tdep.o, and corelow.o.
5121
5122 2002-05-28  Andrew Cagney  <ac131313@redhat.com>
5123
5124         * MAINTAINERS (--enable-gdb-build-warnings): Rewrite script to use
5125         `tr' and `sed'.  Mention that `broken' targets are not expected to
5126         build.
5127
5128 2002-05-27  Michal Ludvig  <mludvig@suse.cz>
5129
5130         * x86-64-tdep.c (x86_64_skip_prologue): Remove obsolete note.
5131         Let PC point right after the prologue before looking up symbols.
5132         
5133 2002-05-27  Martin M. Hunt  <hunt@redhat.com>
5134
5135         * i386-tdep.c (i386_register_virtual_type): Return 
5136         builtin_type_vec128i for SSE registers.
5137
5138         * gdbtypes.h (builtin_type_vec128i): Declare.
5139
5140         * gdbtypes.c (build_builtin_type_vec128i): New function.
5141         (builtin_type_v2_double, builtin_type_v4_int64): New types.
5142         (builtin_type_vec128i): New type for SSE2 128-bit registers.
5143         (build_gdbtypes): Initialize new builtin vector types.
5144         (_initialize_gdbtypes): Register new vector types with gdbarch.
5145
5146 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
5147
5148         * MAINTAINERS: ns32k is not longer an obsolete candidate,
5149         since it has been multi-arch'd.
5150         * NEWS: Note that ns32k-*-* is now partial multi-arch.
5151         Move Alpha and VAX multi-arch news entries to same section
5152         as other multi-arch news.
5153
5154 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
5155
5156         * ns32k-tdep.c: include gdbtypes.h, inferior.h, regcache.h,
5157         target.s, arch-utils.h, ns32k-tdep.h.  Make many functions
5158         static.  Rename some register numbers to put them in ns32k-tdep
5159         private namespace.
5160         (ns32k_get_saved_register, ns32k_gdbarch_init_32082,
5161         ns32k_gdbarch_init_32382, ns32k_gdbarch_init, ns32k_dump_tdep): New
5162         functions.
5163         (_initialize_ns32k_tdep): Use gdbarch_register.
5164         * ns32k-tdep.h: New file.
5165         * ns32knbsd-tdep.c: New file.
5166         * config/ns32k/nbsdaout.mt (TDEPFILES): Add ns32knbsd-tdep.o.
5167         * config/ns32k/tm-nbsd.h: Include "ns32k/tm-ns32k.h".
5168         (IN_SOLIB_CALL_TRAMPOLINE, REGISTER_NAME, NUM_REGS,
5169         REGISTER_BYTES, REGISTER_BYTE): Remove.
5170         * config/ns32k/tm-ns32k.h: New file.
5171         * config/ns32k/tm-umax.h: Remove.
5172
5173 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
5174
5175         * ns32k-tdep.c (ns32k_saved_pc_after_call,
5176         ns32k_store_struct_return, ns32k_extract_return_value,
5177         ns32k_store_return_value, ns32k_extract_struct_value_address): New
5178         functions.
5179         * config/ns32k/tm-umax.h (SAVED_PC_AFTER_CALL): Define as
5180         ns32k_saved_pc_after_call.
5181         (STORE_STRUCT_RETURN): Define as ns32k_store_struct_return.
5182         (EXTRACT_RETURN_VALUE): Define as ns32k_extract_return_value.
5183         (STORE_RETURN_VALUE): Define as ns32k_store_return_value.
5184         (EXTRACT_STRUCT_VALUE_ADDRESS): Define as
5185         ns32k_extract_struct_value_address.
5186
5187 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
5188
5189         * ns32k-tdep.c (ns32k_call_dummy_words, sizeof_ns32k_call_dummy_words,
5190         ns32k_fix_call_dummy): New.
5191         * config/ns32k/tm-umax.h (CALL_DUMMY_WORDS): Define as
5192         ns32k_call_dummy_words.
5193         (SIZEOF_CALL_DUMMY_WORDS): Define as sizeof_ns32k_call_dummy_words.
5194         (CALL_DUMMY, CALL_DUMMY_LENGTH, CALL_DUMMY_ADDR,
5195         CALL_DUMMY_NARGS): Remove.
5196         (FIX_CALL_DUMMY): Define as ns32k_fix_call_dummy.
5197
5198 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
5199
5200         * ns32k-tdep.c (ns32k_breakpoint_from_pc, ns32k_frame_chain,
5201         ns32k_frame_saved_pc, ns32k_frame_args_address,
5202         ns32k_frame_locals_address, ns32k_frame_init_saved_regs,
5203         ns32k_push_dummy_frame, ns32k_pop_frame): New functions.
5204         * config/ns32k/tm-nbsd.h (FRAME_SAVED_PC): Remove.
5205         * config/ns32k/tm-umax.h (INNER_THAN): Define as core_addr_lessthan.
5206         (BREAKPOINT_FROM_PC): Define as ns32k_breakpoint_from_pc.
5207         (BREAKPOINT): Remove..
5208         (FRAME_CHAIN): Define as ns32k_frame_chain.
5209         (FRAME_SAVED_PC): Define as ns32k_frame_saved_pc.
5210         (FRAME_ARGS_ADDRESS): Define as ns32k_frame_args_address.
5211         (FRAME_LOCALS_ADDRESS): Define as ns32k_frame_locals_address.
5212         (FRAME_FIND_SAVED_REGS): Remove.
5213         (FRAME_INIT_SAVED_REGS): Define as ns32k_frame_init_saved_regs.
5214         (PUSH_DUMMY_FRAME): Define as ns32k_push_dummy_frame.
5215         (POP_FRAME): Define as ns32k_pop_frame.
5216
5217 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
5218
5219         * ns32k-tdep.c (ns32k_register_byte_32082,
5220         ns32k_register_byte_32382, ns32k_register_raw_size,
5221         ns32k_register_virtual_size, ns32k_register_virtual_type): New
5222         functions.
5223         * config/ns32k/tm-nbsd.h (REGISTER_BYTE): Define as
5224         ns32k_register_byte_32382.
5225         * config/ns32k/tm-umax.h: Update copyright years.
5226         (REGISTER_BYTE): Define as ns32k_register_byte_32082.
5227         (REGISTER_RAW_SIZE): Define as ns32k_register_raw_size.
5228         (REGISTER_VIRTUAL_SIZE): Define as ns32k_register_virtual_size.
5229         (REGISTER_VIRTUAL_TYPE): Define as ns32k_register_virtual_type.
5230         (ns32k_get_enter_addr): Fix prototype.
5231
5232 2002-05-26  Jason Thorpe  <thorpej@wasabisystems.com>
5233
5234         * ns32k-tdep.c: Update copyright years.
5235         (ns32k_register_name_32082): New function.
5236         (ns32k_register_name_32382): Ditto.
5237         * config/ns32k/tm-nbsd.h (REGISTER_NAMES): Remove.
5238         (REGISTER_NAME): Define as ns32k_register_name_32382.
5239         * config/ns32k/tm-umax.h (REGISTER_NAMES): Remove.
5240         (REGISTER_NAME): Define as ns32k_register_name_32082.
5241
5242 2002-05-24  Jim Blandy  <jimb@redhat.com>
5243
5244         * dwarf2read.c (free_line_header): Use xfree, not free.
5245
5246 2002-05-24  Jason Thorpe  <thorpej@wasabisystems.com>
5247
5248         * config/djgpp/fnchange.lst: Add alphabsd-nat.c,
5249         alphabsd-tdep.c, mipsnbsd-nat.c, and mipsnbsd-tdep.c
5250
5251 2002-05-23  Andrew Cagney  <ac131313@redhat.com>
5252
5253         * PROBLEMS: Mention s390 and FreeBSD 4.4 build problems.
5254
5255 2002-05-23  Andrew Cagney  <ac131313@redhat.com>
5256
5257         From Ross Alexander at NEC Europe:
5258         * config/pa/hpux11w.mh (NATDEPFILES): Add solib.o.
5259
5260 2002-05-23  Michael Snyder  <msnyder@redhat.com>
5261
5262         * cli/cli-dump.c (restore_command): Use parse_and_eval_long
5263         for input, rather than parse_and_eval_address.  
5264
5265 2002-05-23  Andrew Cagney  <ac131313@redhat.com>
5266
5267         * d10v-tdep.c: Include "gdb/sim-d10v.h" instead of "sim-d10v.h".
5268         * Makefile.in (sim_d10v_h): Update definition.
5269
5270 2002-05-24  Andrew Cagney  <cagney@redhat.com>
5271
5272         * d10v-tdep.c (d10v_gdbarch_init): Revert old code included in
5273         change `2002-05-22 Michael Snyder' below.
5274         (d10v_push_arguments): Ditto.
5275         (d10v_extract_return_value): Ditto.
5276
5277 2002-05-23  Jim Blandy  <jimb@redhat.com>
5278
5279         * macrotab.c (check_for_redefinition): Don't complain if the new
5280         definition is the same as the previous one.  Take more arguments
5281         to allow the comparison.
5282         (macro_define_object, macro_define_function): Pass more arguments
5283         to check_for_redefinition.
5284
5285 2002-05-22  Michael Snyder  <msnyder@redhat.com>
5286
5287         * d10v-tdep.c: Change a few macros to enums for ease of debugging.
5288         (d10v_frame_chain_valid): Add PC_IN_CALL_DUMMY clause.
5289         (d10v_frame_saved_pc): Add PC_IN_CALL_DUMMY clause.
5290         (d10v_frame_chain): Bail immediately if PC_IN_CALL_DUMMY.
5291         Don't bail if return_pc is PC_IN_CALL_DUMMY.
5292         Add a temp variable to save a call (and a memory read).
5293         (d10v_init_extra_frame_info): Get fi->pc from callee's return_pc
5294         if possible (so that PC_IN_CALL_DUMMY will work).
5295
5296 2002-05-22  Corinna Vinschen  <vinschen@redhat.com>
5297
5298         * MAINTAINERS: Remove status `OBSOLETE' from v850.
5299
5300 2002-05-22  Michal Ludvig  <mludvig@suse.cz>
5301
5302         * dwarf2cfi.c (frame_state_for): Added safety check for a valid
5303         fde->cie_ptr.
5304         (dwarf2_build_frame_info): Corrected handling of eh_frame.
5305         (dwarf2_build_frame_info): Add offset to fde->initial_location 
5306         so that frames of shared libraries are mapped correctly.
5307         (execute_stack_op): Change type of 'result' from ULONGEST to
5308         CORE_ADDR.
5309         
5310 2002-05-22  Jason Thorpe  <thorpej@wasabisystems.com>
5311
5312         * config/alpha/tm-nbsd.h: Include solib.h.
5313
5314 2002-05-22  Jason Thorpe  <thorpej@wasabisystems.com>
5315
5316         * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Don't make
5317         assumptions about the host's byte order.
5318
5319 2002-05-22  Jason Thorpe  <thorpej@wasabisystems.com>
5320
5321         * Makefile.in (alphanbsd-tdep.o, shnbsd-tdep.o): Add solib-svr4.h
5322         to dependency list.
5323         * alphanbsd-tdep.c: Include solib-svr4.h.
5324         * shnbsd-tdep.c: Ditto.
5325
5326 2002-05-22  Jason Thorpe  <thorpej@wasabisystems.com>
5327
5328         * Makefile.in (armnbsd-tdep.o): Add solib-svr4.h and
5329         nbsd-tdep.h to dependency list.
5330         * configure.host (arm*-*-netbsdelf*, arm*-*-netbsd*,
5331         i[3456]86-*-netbsdaout*, i[3456]86-*-netbsd*, m68*-*-netbsd*,
5332         ns32k-*-netbsd*, sparc-*-netbsdaout*, sparc-*-netbsd*): Use
5333         nbsdaout.mh and nbsdelf.mh consistently.
5334         * configure.tgt (i[3456]86-*-netbsd*, m68*-*-netbsd*,
5335         ns32k-*-netbsd*, sparc-*-netbsdelf*, sparc-*-netbsd*) Use
5336         nbsdaout.mt and nbsdelf.mh consistently.
5337         * armnbsd-tdep.c: Include nbsd-tdep.h and solib-svr4.h. 
5338         (arm_netbsd_elf_init_abi): Use set_solib_svr4_fetch_link_map_offsets
5339         to set nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
5340         * config/nm-nbsd.h: Garbage-collect SVR4_SHARED_LIBS.  Move
5341         a.out shared library stuff from here...
5342         * config/nm-nbsdaout.h: ...to here.
5343         * config/tm-nbsd.h: Remove.
5344         * config/alpha/nm-nbsd.h (SVR4_SHARED_LIBS): Remove.
5345         * config/arm/nbsd.mh: Remove.
5346         * config/arm/nbsd.mt (TDEPFILES): Remove solib-sunos.o, add
5347         nbsd-tdep.o.
5348         * config/arm/nbsdaout.mh: New file. 
5349         * config/arm/nbsdelf.mh: New file.
5350         * config/arm/nm-nbsdaout.h: New file.
5351         * config/i386/nbsd.mh: Remove.
5352         * config/i386/nbsd.mt: Remove.
5353         * config/i386/nbsdaout.mh: New file.
5354         * config/i386/nbsdaout.mt: New file.
5355         * config/i386/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
5356         * config/i386/nbsdelf.mt (TM_FILE): Use tm-nbsd.h.
5357         * config/i386/nm-nbsd.h (REGISTER_U_ADDR, 
5358         i386_register_u_addr): Remove.
5359         * config/i386/nm-nbsdaout.h: New file.
5360         * config/i386/nm-nbsdelf.h: Remove.
5361         * config/i386/tm-nbsd.h: Don't include config/tm-nbsd.h.
5362         (USE_STRUCT_CONVENTION): Remove.
5363         * config/i386/tm-nbsdaout.h: New file.
5364         * config/i386/tm-nbsdelf.h: Remove.
5365         * config/m68k/nbsd.mh: Remove.
5366         * config/m68k/nbsd.mt: Remove.
5367         * config/m68k/nbsdaout.mh: New file.
5368         * config/m68k/nbsdaout.mt: New file. 
5369         * config/m68k/nm-nbsd.h: Use config/nm-nbsd.h.
5370         * config/m68k/nm-nbsdaout.h: New file.
5371         * config/m68k/tm-nbsd.h: Don't include config/tm-nbsd.h.
5372         (IN_SOLIB_CALL_TRAMPOLINE): Define.
5373         * config/ns32k/nbsd.mh: Remove.
5374         * config/ns32k/nbsd.mt: Remove. 
5375         * config/ns32k/nbsdaout.mh: New file.
5376         * config/ns32k/nbsdaout.mt: New file.
5377         * config/ns32k/nm-nbsd.h: Include config/nm-nbsd.h. 
5378         * config/ns32k/nm-nbsdaout.h: New file.
5379         * config/ns32k/tm-nbsd.h: Don't include config/tm-nbsd.h.  
5380         (IN_SOLIB_CALL_TRAMPOLINE): Define.
5381         * config/powerpc/nm-nbsd.h: Include config/nm-nbsd.h.
5382         (SVR4_SHARED_LIBS): Remove.
5383         * config/powerpc/tm-nbsd.h: Dont' include config/tm-nbsd.h.
5384         * config/sparc/nbsd.mh: Remove.
5385         * config/sparc/nbsd.mt: Remove.
5386         * config/sparc/nbsdaout.mh: New file.
5387         * config/sparc/nbsdaout.mt: New file.
5388         * config/sparc/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
5389         * config/sparc/nbsdelf.mt: New file.
5390         * config/sparc/nm-nbsdaout.h: New file.   
5391         * config/sparc/nm-nbsdelf.h: Remove.
5392         * config/sparc/tm-nbsd.h: Don't include config/tm-nbsd.h.
5393         * config/sparc/tm-nbsdaout.h: New file.
5394
5395 2002-05-21  Jason Thorpe  <thorpej@wasabisystems.com>
5396
5397         * Makefile.in (ALLDEPFILES): Add mipsnbsd-nat.c and
5398         mipsnbsd-tdep.c
5399         (mipsnbsd-nat.o, mipsnbsd-tdep.o): New dependency lists.
5400
5401 2002-05-21  Jason Thorpe  <thorpej@wasabisystems.com>
5402
5403         * Makefile.in (ALLDEPFILES): Add shnbsd-tdep.c and
5404         shnbsd-nat.c.
5405         (shnbsd-tdep.o, shnbsd-nat.o): New dependency lists.
5406
5407 2002-05-21  Jason Thorpe  <thorpej@wasabisystems.com>
5408
5409         * NEWS: Note new MIPS NetBSD native configuration. 
5410         * configure.host (mips*-*-netbsd*): New host. 
5411         * configure.tgt (mips*-*-netbsd*): New target. 
5412         * mipsnbsd-nat.c: New file.
5413         * mipsnbsd-tdep.c: New file.
5414         * mipsnbsd-tdep.h: New file.
5415         * config/mips/nbsd.mh: New file.
5416         * config/mips/nbsd.mt: New file.
5417         * config/mips/nm-nbsd.h: New file.
5418         * config/mips/tm-nbsd.h: New file.
5419
5420 2002-05-21  Jason Thorpe  <thorpej@wasabisystems.com>
5421
5422         * Makefile.in (SFILES): Add osabi.c.
5423         (COMMON_OBS): Add osabi.o.
5424         (osabi.o): New dependency list.
5425         * osabi.c: New file.
5426         * osabi.h: New file.
5427         * doc/gdbint.texinfo: Document new generic OS ABI framework.
5428
5429         * Makefile.in (alpha_tdep_h): Define and use instead of
5430         alpha-tdep.h.
5431         * alpha-tdep.c (alpha_abi_names, process_note_abi_tag_sections,
5432         get_elfosabi, alpha_abi_handler_list, alpha_gdbarch_register_os_abi):
5433         Remove.
5434         (alpha_gdbarch_init, alpha_dump_tdep): Use generic OS ABI framework.
5435         * alpha-tdep.h: Include osabi.h.
5436         (alpha_abi): Remove.
5437         (gdbarch_tdep): Use generic OS ABI framework.
5438         * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Use
5439         gdbarch_register_osabi.
5440         * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Likewise.
5441         * alphafbsd-tdep.c (_initialize_alphafbsd_tdep): Likewise.
5442         * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Likewise.
5443
5444         * Makefile.in (sh_tdep_h): Add osabi.h.
5445         * sh-tdep.h (sh_osabi): Remove.
5446         (gdbarch_tdep): Use generic OS ABI framework.
5447         * sh-tdep.c (sh_osabi_names, process_note_abi_tag_sections,
5448         sh_osabi_handler_list, sh_gdbarch_register_os_abi): Remove.
5449         (sh_gdbarch_init, sh_dump_tdep): Use generic OS ABI framework.
5450         * shnbsd-tdep.c (_initialize_shnbsd_tdep): Use gdbarch_register_osabi.
5451
5452         * Makefile.in (arm_tdep_h): Define and use instead of arm-tdep.h.
5453         * arm-linux-tdep.c (_initialize_arm_linux_tdep): Use
5454         gdbarch_register_osabi.
5455         * arm-tdep.c (arm_abi_names, process_note_abi_tag_sections,
5456         arm_abi_handler_list, arm_gdbarch_register_os_abi): Remove.
5457         (get_elfosabi): Rename to...
5458         (arm_elf_osabi_sniffer): ...this.  Adjust to use generic OS
5459         ABI framework support routines.
5460         (arm_gdbarch_init): Use generic OS ABI framework.
5461         (arm_dump_tdep): Likewise.
5462         (_initialize_arm_tdep): Likewise.
5463         * arm-tdep.h: Include osabi.h.
5464         (arm_abi): Remove.
5465         (gdbarch_tdep): Remove arm_abi and abi_name members.  Add
5466         osabi member.
5467         (arm_gdbarch_register_os_abi): Remove prototype.
5468         * armnbsd-tdep.c (arm_netbsd_aout_osabi_sniffer): New function.
5469         (_initialize_arm_netbsd_tdep): Use gdbarch_register_osabi.
5470
5471         * Makefile.in (mips-tdep.o): Add osabi.h to dependency list.
5472         * mips-tdep.c: Include osabi.h.
5473         (gdbarch_tdep, mips_gdbarch_init, mips_dump_tdep): Use generic
5474         OS ABI framework.
5475
5476 2002-05-20  Kazu Hirata  <kazu@cs.umass.edu>
5477
5478         * h8300-tdep.c: Fix formatting.
5479
5480 2002-05-20  Elena Zannoni  <ezannoni@redhat.com>
5481
5482         * rs6000-tdep.c (rs6000_do_registers_info): Simplify code for
5483         printing vector registers.
5484
5485 2002-05-19  Andrew Cagney  <ac131313@redhat.com>
5486
5487         From Fernando Nasser:
5488         * remote.c (remote_async_open_1): Re-throw the exception when the
5489         connection fails.
5490         (remote_cisco_open): Ditto.
5491         (remote_open_1): Ditto.
5492
5493 2002-05-19  Andrew Cagney  <ac131313@redhat.com>
5494
5495         * remote.c (remote_start_remote_dummy): Add uiout parameter.
5496         (remote_start_remote): Add uiout parameter.  Pass through to
5497         remote_start_remote_dummy.
5498         (remote_open_1): Use catch_exception instead of catch_errors.
5499         (remote_async_open_1): Ditto.
5500         (remote_cisco_open): Ditto.
5501
5502 2002-05-19  Andrew Cagney  <ac131313@redhat.com>
5503
5504         * remote.c (remote_start_remote): Replace PTR with void pointer.
5505         (sigint_remote_twice_token, sigint_remote_token): Ditto.  Make
5506         static.
5507
5508 2002-05-18  Andrew Cagney  <ac131313@redhat.com>
5509
5510         * gdb_indent.sh: Allow the script to be run in the sim directory.
5511
5512 2002-05-18  Mark Kettenis  <kettenis@gnu.org>
5513
5514         * config/i386/nm-cygwin.h (NO_PTRACE_H): Remove define.
5515         * config/i386/nm-go32.h (NO_PTRACE_H): Remove define.
5516
5517         * corelow.c (core_open): Only call set_gdbarch_from_file if
5518         exec_bfd is NULL.
5519
5520 2002-05-17  Andrey Volkov <avolkov@transas.com>
5521
5522         * h8300-tdep.c: Add support of EXR register
5523         * config/h8300/tm-h8300.h: Ditto. 
5524         
5525 2002-05-17  Andrey Volkov <avolkov@transas.com>
5526
5527         * h8300-tdep.c: Add additional CCR flags (I,UI,H,U) 
5528         
5529 2002-05-17  Andrey Volkov <avolkov@transas.com>
5530
5531         * h8300-tdep.c: Change literal regnums to REGNO.
5532         
5533 2002-05-17  Jim Blandy  <jimb@redhat.com>
5534
5535         * NEWS: Note addition of macro support.
5536
5537         Expand preprocessor macros in C expressions.
5538         * c-lang.h: #include "macroexp.h", for macro_lookup_ftype.
5539         (scan_macro_expansion, scanning_macro_expansion,
5540         finished_macro_expansion): New function declarations.
5541         (expression_macro_lookup_func, expression_macro_lookup_baton): New
5542         variable declarations.
5543         * parser-defs.h (expression_context_pc): New declaration.
5544         * parse.c (expression_context_pc): New variable.
5545         (parse_exp_1): Set expression_context_pc, as well as
5546         expression_context_block.
5547         * c-exp.y (yylex): If we're not already reading the result of a
5548         macro expansion, try to macro-expand the next token.  When we're
5549         done scanning a macro expansion, switch back to the mainline text.
5550         Commas and `if's in a macro's expansion don't terminate the input.
5551         * c-lang.c: #include "macroscope.h" and "gdb_assert.h".
5552         (macro_original_text, macro_expanded_text,
5553         expression_macro_lookup_func, expression_macro_lookup_baton): New
5554         variables.
5555         (scan_macro_expansion, scanning_macro_expansion,
5556         finished_macro_expansion, scan_macro_cleanup, null_macro_lookup,
5557         c_preprocess_and_parse): New functions.
5558         (c_language_defn, cplus_language_defn, asm_language_defn): Call
5559         c_preprocess_and_parse, instead of c_parse.
5560         * Makefile.in (c_lang_h): Note that this #includes macroexp.h.
5561         (c-lang.o): Note dependency on macroscope.h and gdb_assert.h.
5562
5563 Fri May 17 14:26:19 2002  J"orn Rennecke <joern.rennecke@superh.com>
5564
5565         * sh-tdep.c (gdb_print_insn_sh64): Delete.
5566         (gdb_print_insn_sh): Just set info->endian and use print_insn_sh.
5567         (sh_gdbarch_init): Always use gdb_print_insn_sh.
5568
5569 2002-05-17  Corinna Vinschen  <vinschen@redhat.com>
5570
5571         * NEWS: Add section for multi-arched targets.  Add v850 to that section.
5572
5573 2002-05-17  Jason Thorpe  <thorpej@wasabisystems.com>
5574
5575         * Makefile.in (sh_tdep_h): Define and use.
5576         * config/sh/tm-sh.h (sh_osabi, sh_abi, gdbarch_tdep,
5577         register enum): Move to...
5578         * * sh-tdep.h: ...here.
5579         * sh-tdep.c: Include sh-tdep.h.
5580         * sh3-rom.c: Likewise.
5581         * shnbsd-tdep.c: Likewise.
5582
5583 2002-05-16  Michael Snyder  <msnyder@redhat.com>
5584
5585         * arm-tdep.c: Spelling fix in comment.
5586
5587 2002-05-16  Jim Blandy  <jimb@redhat.com>
5588
5589         Add commands for manually expanding macros and showing their
5590         definitions.
5591         * macrocmd.c, macroscope.c, macroscope.h: New files.
5592         * Makefile.in (SFILES): Add macrocmd.c, macroscope.c.
5593         (macroscope_h): New variable.
5594         (HFILES_NO_SRCDIR): Add macroscope.h.
5595         (COMMON_OBS): Add macrocmd.o, macroscope.o.
5596         (macroscope.o, macrocmd.o): New rules.
5597
5598         Teach the Dwarf 2 reader to read macro information.
5599         * dwarf2read.c: #include "macrotab.h".
5600         (dwarf_macinfo_buffer): New variable.
5601         (struct dwarf2_pinfo): New members: dwarf_macinfo_buffer, and
5602         dwarf_macinfo_size.
5603         (DWARF_MACINFO_BUFFER, DWARF_MACINFO_SIZE): New macros.
5604         (dwarf2_missing_macinfo_section, dwarf2_macros_too_long,
5605         dwarf2_macros_not_terminated, dwarf2_macro_outside_file,
5606         dwarf2_macro_unmatched_end_file, dwarf2_macro_malformed_definition,
5607         dwarf2_macro_spaces_in_definition): New complaints.
5608         (dwarf2_has_info): Initialize dwarf_macinfo_offset.
5609         (dwarf2_build_psymtabs): Read the .dwarf_macinfo section.
5610         (dwarf2_build_psymtabs_hard): Record the buffer and its size in
5611         the partial symbol table.
5612         (psymtab_to_symtab_1): Set the macinfo buffer and size globals
5613         from what's recorded in the partial symbol table.
5614         (read_file_scope): If the compilation unit has a
5615         `DW_AT_macro_info' attribute, read its macro information.
5616         * Makefile.in (dwarf2read.o): Depend on macrotab.h.
5617
5618 2002-05-16  Daniel Jacobowitz  <drow@mvista.com>
5619
5620         Fix PR gdb/546
5621         * ser-tcp.c: Don't include <netinet/udp.h>.
5622
5623 2002-05-16  Stephane Carrez  <stcarrez@nerim.fr>
5624
5625         * MAINTAINERS: Update my email address.
5626
5627 2002-05-16  Richard Earnshaw  <rearnsha@arm.com>
5628
5629         * config/arm/nm-nbsd.h: Use "config/nm-nbsd.h" to include generic
5630         include file of the same name.
5631
5632 2002-05-16  Corinna Vinschen  <vinschen@redhat.com>
5633
5634         * configure.tgt: Mark v850 as multi-arched.
5635         * config/v850/tm-v850.h: Remove file.
5636         * config/v850/v850.mt: Eliminate TM_FILE.
5637
5638 2002-05-16  Corinna Vinschen  <vinschen@redhat.com>
5639
5640         * v850-tdep.c: Full multi-arch.
5641         * config/v850/tm-v850.h: Eliminate or move to v850-tdep.c everything.
5642         Define GDB_MULTI_ARCH to 2.
5643
5644 2002-05-16  Pierre Muller  <muller@ics.u-strasbg.fr>
5645
5646         * p-exp.y (current_type): New static variable.
5647         Carries the type of the expression at the position that is parsed.
5648         (push_current_type, pop_current_type): Two new functions. Used
5649         to store/restore current_type in expression on specific tokens.
5650         (search_field): New static variable. Set to one after parsing a point
5651         as at that point only a FIELDNAME token should be searched.
5652         (FIELDNAME): New token. After a point only a token belonging to 
5653         current_type type definition is allowed.
5654         (all over token rules): reset and change current_type according
5655         to rules.
5656         (exp '[' rule): insert implicit array index field if
5657         exp is a pascal string type.
5658
5659 2002-05-16  Corinna Vinschen  <vinschen@redhat.com>
5660
5661         * v850-tdep.c: Fix comment for v850_scan_prologue.  Remove extra
5662         frame info.  Use frame_info's saved_regs instead of matching member
5663         in extra_frame_info throughout.
5664         (v850_frame_init_saved_regs): New function.
5665         (v850_init_extra_frame_info): Move most functionality into
5666         v850_frame_init_saved_regs().
5667         * config/v850/tm-v850.h (EXTRA_FRAME_INFO): Remove definition.
5668         (v850_frame_find_saved_regs): Remove declaration.
5669         (FRAME_FIND_SAVED_REGS): Remove definition.
5670         (v850_frame_init_saved_regs): Add declaration.
5671         (FRAME_INIT_SAVED_REGS): Add definition.
5672
5673 2002-05-16  Corinna Vinschen  <vinschen@redhat.com>
5674
5675         * v850-tdep.c: Begin multi-arch'ing v850.
5676         (v850_target_architecture_hook): Remove function.
5677         (v850_gdbarch_init): New function.  Add code previously in
5678         v850_target_architecture_hook().
5679         (_initialize_v850_tdep): Don't  set target_architecture_hook.
5680         Call register_gdbarch_init() instead.
5681
5682 2002-05-16 Daniel Jacobowitz  <drow@mvista.com>
5683
5684         * gdbtypes.h (struct cplus_struct_type): Remove args field.
5685         * hpread.c (hpread_read_struct_type): Remove assignments to args.
5686         (fixup_class_method_type): Likewise.
5687
5688 2002-05-15  Jim Blandy  <jimb@redhat.com>
5689
5690         Add macro structures to GDB's symbol tables.  Nobody puts anything
5691         in them yet.
5692         * symtab.h (struct symtab): New member: `macro_table'.
5693         * buildsym.h (pending_macros): New global variable.
5694         * buildsym.c: #include "macrotab.h".
5695         (buildsym_init): Initialize `pending_macros'.
5696         (end_symtab): If we found macro information while reading a CU's
5697         debugging info, do build a symtab structure for it.  Make the
5698         symtab point to the macro information, and clear the
5699         `pending_macros' pointer which held it while we were reading the
5700         debug info.
5701         (really_free_pendings): Free any pending macro table.
5702         * objfiles.h (struct objfile): New member: `macro_cache'.
5703         * objfiles.c (allocate_objfile): Set allocate and free functions
5704         for the macro cache's objstack.
5705         (free_objfile): Empty the macro cache's obstack.
5706         * symfile.c (reread_symbols): Empty the macro cache's obstack, and
5707         set new allocate and free functions for it.
5708         * solib-sunos.c (allocate_rt_common_objfile): Set allocate and
5709         free functions for the macro cache's objstack.  (Why is this
5710         function building its own objfile?)
5711         * symmisc.c (print_objfile_statistics): Print statistics on the
5712         macro bcache.
5713         * Makefile.in: Note that buildsym.o depends on macrotab.h.
5714
5715 2002-05-15  Richard Earnshaw  <rearnsha@arm.com>
5716
5717         * config/arm/nm-nbsd.h: Use <> for include of config/nm-nbsd.h.
5718         (REGISTER_U_ADDR): Delete definition.
5719         (arm_register_u_addr): Delete declaration.
5720
5721 2002-05-15  Richard Earnshaw  <rearnsha@arm.com>
5722
5723         * arm-linux-tdep.c (ARM_LINUX_JB_PC): Renamed from JB_PC.
5724         (ARM_LINUX_JB_ELEMENT_SIZE): Likewise.
5725
5726 2002-05-14  Andrew Cagney  <ac131313@redhat.com>
5727
5728         * regcache.c (register_valid): Revise comments refering to "Not
5729         available" and "unavailable".
5730         * frame.c (frame_register_read): Ditto.
5731         * findvar.c (value_of_register): Ditto.
5732
5733 2002-05-15  Andrew Cagney  <cagney@redhat.com>
5734
5735         * Makefile.in (remote_sim_h): Replace remote-sim_h.
5736         (remote-sim.o): Update dependencies.
5737         (d10v-tdep.o): Specify dependencies.
5738         (sim_d10v_h): Define.
5739
5740 2002-05-14  Jim Blandy  <jimb@redhat.com>
5741
5742         * macroexp.c (init_buffer, gather_arguments, expand): Use NULL, not 0.
5743         * macrotab.c (macro_lookup_inclusion, find_definition,
5744         new_macro_table): Same.
5745         
5746         * macroexp.c (currently_rescanning, expand): Use `strcmp () == 0',
5747         not `! strcmp ()'.  This is a dubious improvement.
5748         * macrotab.c (macro_lookup_inclusion, find_definition): Same.
5749
5750         * macrotab.c (macro_lookup_inclusion): Initialize `best_depth',
5751         although it's not necessary, to avoid a warning.
5752
5753 2002-05-14  Daniel Jacobowitz  <drow@mvista.com>
5754
5755         * gdbtypes.h: Update accessor macros to use TYPE_MAIN_TYPE.
5756         (TYPE_CONST, TYPE_VOLATILE, TYPE_CODE_SPACE, TYPE_DATA_SPACE): Use
5757         TYPE_INSTANCE_FLAGS.
5758         (struct main_type): New.
5759         (struct type): Move most members to struct main_type.  Change
5760         cv_type and as_type to new type_chain member.  Add instance_flags.
5761         (TYPE_MAIN_TYPE, TYPE_CHAIN, TYPE_INSTANCE_FLAGS): New macros.
5762         (TYPE_CV_TYPE, TYPE_AS_TYPE): Remove.
5763         (finish_cv_type): Remove prototype.
5764         * gdbtypes.c (alloc_type): Update comment.  Allocate TYPE_MAIN_TYPE.
5765         Set TYPE_CHAIN.
5766         (alloc_type_instance): New function.
5767         (smash_type): New function.
5768         (make_pointer_type, make_reference_type, make_function_type)
5769         (smash_to_member_type, smash_to_method_type): Call smash_type.
5770         (make_qualified_type): New function.
5771         (make_type_with_address_space): Call make_qualified_type.
5772         (make_cv_type): Likewise.
5773         (finish_cv_type): Remove unnecessary function.
5774         (replace_type): Update comment.  Copy TYPE_MAIN_TYPE.
5775         (recursive_dump_type): Dump TYPE_CHAIN and TYPE_INSTANCE_FLAGS;
5776         remove TYPE_CV_TYPE and TYPE_AS_TYPE.
5777         * c-typeprint.c (c_type_print_modifier): Use TYPE_INSTANCE_FLAGS.
5778         * dwarf2read.c (read_structure_scope): Don't call finish_cv_type.
5779         * hpread.c (hpread_read_struct_type): Likewise.
5780         * stabsread.c (read_struct_type): Likewise.
5781
5782 2002-05-14  Elena Zannoni  <ezannoni@redhat.com>
5783
5784         * configure.tgt: Add a catch all sh* target, for cases like
5785         sh[2,3,4]-elf and sh-hms.
5786
5787 2002-05-14  Keith Seitz  <keiths@redhat.com>
5788
5789         * event-loop.c (create_file_handler): Don't do anything but
5790         update data when we are given a fd which we are already
5791         monitoring.
5792
5793 2002-05-14  Michal Ludvig  <mludvig@suse.cz>
5794
5795         * dwarf2cfi.c (context_cpy): Copy registers correctly.
5796         (update_context): Use __func__ in warnings.
5797         
5798 2002-05-14  Daniel Jacobowitz  <drow@mvista.com>
5799
5800         * ser-tcp.c: Include <netinet/udp.h>.  Rename tcp_open
5801         and tcp_close to net_open and net_close.
5802         (net_open): Accept "udp:" and "tcp:" specifications.  Connect
5803         using UDP if requested.  Don't try to disable Nagle on UDP
5804         sockets.
5805         * remote.c (remote_serial_open): New function.  Warn about UDP.
5806         (remote_open_1, remote_async_open_1, remote_cisco_open): Call it.
5807
5808 2002-05-13  Elena Zannoni  <ezannoni@redhat.com>
5809
5810         * MAINTAINERS: List sh-elf as buildable with ,-Werror.
5811
5812 2002-05-13  Elena Zannoni  <ezannoni@redhat.com>
5813
5814         * configure.tgt: Remove sh-hms target.
5815         * MAINTAINERS: Don't list sh-hms as a separate target.
5816
5817 2002-05-13  Jim Blandy  <jimb@redhat.com>
5818
5819         Add first preprocessor macro-expansion files.
5820         * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
5821         * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
5822         (splay_tree_h, macroexp_h, macrotab_h): New variable.
5823         (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
5824         (COMMON_OBS): Add macrotab.o, macroexp.o.
5825         (macroexp.o, macrotab.o): New rules.
5826
5827 2002-05-13  Andrew Cagney  <ac131313@redhat.com>
5828
5829         * config/m88k/tm-m88k.h: Update copyright.
5830         (m88k_target_write_pc): Declare
5831         (TARGET_WRITE_PC): Redefine using m88k_target_write_pc.
5832         (M88K_NNPC_REGNUM): Rename NNPC_REGNUM.
5833         (SHIFT_INST_REGS): Update definition.
5834         * m88k-tdep.c (m88k_target_write_pc): New function.  Implement
5835         using old definition of TARGET_WRITE_PC.
5836         * regcache.c (generic_target_write_pc): Delete code handling
5837         NNPC_REGNUM.
5838         * gdbarch.sh (NNPC_REGNUM): Delete.
5839         * gdbarch.h, gdbarch.c: Regenerate.
5840
5841 2002-05-13  Richard Earnshaw  <rearnsha@arm.com>
5842
5843         * builtin-regs.c (value_of_builtin_reg): Correctly calculate the
5844         builtin reg number.
5845
5846 2002-05-13  Daniel Jacobowitz  <drow@mvista.com>
5847
5848         * ax-gdb.c (gen_sign_extend, gen_fetch, gen_usual_unary)
5849         (gen_cast, gen_scale, gen_add, gen_sub, gen_binop, gen_deref)
5850         (gen_address_of, gen_struct_ref, gen_repeat): Use type
5851         access macros.
5852         * c-typeprint.c (cp_type_print_method_args): Likewise.
5853         (c_type_print_args): Likewise.
5854         * d10v-tdep.c (d10v_push_arguments): Likewise.
5855         (d10v_extract_return_value): Likewise.
5856         * expprint.c (print_subexp): Likewise.
5857         * gdbtypes.c (lookup_primitive_typename): Likewise.
5858         (lookup_template_type, add_mangled_type, print_arg_types): Likewise.
5859         * gdbtypes.h (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB)
5860         (TYPE_TARGET_STUB, TYPE_STATIC, TYPE_CONST, TYPE_VOLATILE)
5861         (TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_CODE_SPACE, TYPE_VARARGS)
5862         (TYPE_VECTOR): Likewise.
5863         * hpread.c (hpread_read_struct_type)
5864         (fix_static_member_physnames, fixup_class_method_type)
5865         (hpread_type_lookup): Likewise.
5866         * mdebugread.c (parse_symbol, parse_type): Likewise.
5867         * p-lang.c (is_pascal_string_type): Likewise.
5868         * valops.c (hand_function_call): Likewise.
5869         * x86-64-tdep.c (classify_argument): Likewise.
5870
5871         * hpread.c (hpread_read_function_type)
5872         (hpread_read_doc_function_type): Call replace_type.
5873         * dstread.c (create_new_type): Delete.
5874         (decode_dst_structure, process_dst_function): Call alloc_type.
5875         Use type access macros.
5876
5877 2002-05-12  Mark Kettenis  <kettenis@gnu.org>
5878
5879         * i387-tdep.c (i387_supply_fxsave): Skip the SSE registers if
5880         the're not supported by the current architecture.
5881         (i387_fill_fxsave): Likewise.
5882
5883 2002-05-12  Fred Fish  <fnf@redhat.com>
5884
5885         * symfile.c (default_symfile_offsets): Arrange for uninitialized
5886         sect_index_xxx members to index the first slot in section_offsets
5887         if all of the section_offsets are zero.
5888
5889 2002-05-12  Mark Kettenis  <kettenis@gnu.org>
5890
5891         * configure.tgt (sparc-*openbsd): Remove entry accidentially
5892         checked in with last change.
5893
5894 2002-05-12  Mark Kettenis  <kettenis@gnu.org>
5895
5896         * configure.tgt (i[3456]86-*-unixware*, i[3456]86-*-unixware2*):
5897         Remove targets.  These are canonicalized to i386-*-sysv4.2uw by
5898         config.sub.
5899
5900 2002-05-12  Daniel Jacobowitz  <drow@mvista.com>
5901
5902         * Makefile.in: Update dependencies.
5903
5904 2002-05-11  Andrew Cagney  <ac131313@redhat.com>
5905
5906         * language.c (local_hex_string_custom): Simplify.  Do not depend
5907         on PRINTF_HAS_LONG_LONG or CC_HAS_LONG_LONG.
5908
5909         * memattr.c (mem_info_command): Replace calls to
5910         longest_local_hex_string and longest_local_hex_string_custom.
5911         * buildsym.c (make_blockvector): Ditto.
5912         * solib.c (info_sharedlibrary_command): Ditto.
5913         * tracepoint.c (tracepoints_info): Ditto.
5914         * symtab.c (print_msymbol_info): Ditto.
5915
5916         * language.c (local_hex_string): Delete.
5917         (local_hex_string_custom): Delete.
5918         (longest_local_hex_string): Rename to local_hex_string.
5919         (longest_local_hex_string_custom): Rename to
5920         local_hex_string_custom.
5921         * language.h (local_hex_string): Change parameter type to LONGEST.
5922         (local_hex_string_custom): Ditto.
5923         (longest_local_hex_string): Delete declaration.
5924         (longest_local_hex_string_custom): Ditto.
5925
5926         * solib.c: Update copyright.
5927         * memattr.c: Update copyright.
5928         
5929 2002-05-11  Andrew Cagney  <ac131313@redhat.com>
5930
5931         * arch-utils.h (legacy_register_to_value): Declare.
5932         (legacy_value_to_register): Declare.
5933         (legacy_convert_register_p): Declare.
5934         * arch-utils.c (legacy_register_to_value): New function.
5935         (legacy_value_to_register): New function.
5936         (legacy_convert_register_p): New function.
5937
5938         * gdbarch.sh (REGISTER_TO_VALUE): Define.
5939         (VALUE_TO_REGISTER): Define.
5940         (CONVERT_REGISTER_P): Define.
5941         * gdbarch.h, gdbarch.c: Regenerate.
5942
5943         * valops.c (value_assign): Use CONVERT_REGISTER_P and
5944         VALUE_TO_REGISTER.
5945         * findvar.c (value_from_register): Use REGISTER_TO_VALUE and
5946         CONVERT_REGISTER_P.
5947
5948 2005-05-11  Daniel Jacobowitz  <drow@mvista.com>
5949             Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
5950
5951         * Makefile.in: Update dependencies for valops.c.
5952         * valops.c: Include "gdb_assert.h".
5953         (typecmp): Skip THIS parameter to methods.
5954         (find_method_list): Remove static_memfuncp argument,
5955         update callers.  Check for stub methods.
5956         (find_value_oload_method_list): Don't set *static_memfuncp.
5957         (find_overload_match): Don't check for stub methods.  Assert
5958         that methods are not stubbed.  Handle static methods.
5959         (value_find_oload_method_list): Remove static_memfuncp argument.
5960         * gdbtypes.c (check_stub_method): Do not add THIS pointer
5961         to the argument list for static stub methods.
5962         * value.h (value_find_oload_method_list): Update prototype.
5963
5964 2002-05-11  Andrew Cagney  <ac131313@redhat.com>
5965
5966         * arch-utils.h (generic_register_size): Declare.
5967         (generic_register_raw_size, generic_register_virtual_size): Delete
5968         declarations.
5969         * arch-utils.c (generic_register_raw_size): Delete.
5970         (generic_register_size): New function.
5971         (generic_register_virtual_size): Delete.
5972
5973         * gdbarch.sh (REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE): Make
5974         default generic_register_size.
5975         * gdbarch.h, gdbarch.c: Re-generate.
5976         
5977         * d10v-tdep.c (d10v_gdbarch_init): Use generic_register_size for
5978         register_virtual_size.
5979         * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
5980         * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
5981
5982 2002-05-11  Andrew Cagney  <ac131313@redhat.com>
5983
5984         * gdbarch.sh (gdbarch_data): Add gdbarch parameter.
5985         * gdbarch.h, gdbarch.c: Regenerate.
5986         * gnu-v3-abi.c: Update copyright.
5987         (vtable_address_point_offset): Update.
5988         (gnuv3_rtti_type): Update.
5989         (gnuv3_baseclass_offset): Update.
5990         * solib-svr4.c (svr4_fetch_link_map_offsets): Update.
5991         (init_fetch_link_map_offsets): Update.
5992         * remote.c (get_remote_state): Update.
5993         
5994 2002-05-11  Daniel Jacobowitz  <drow@mvista.com>
5995
5996         * TODO: Remove value_headof/value_from_vtable_info comment.
5997         * printcmd.c (print_command_1): Don't call value_from_vtable_info.
5998         * values.c (value_headof, value_from_vtable_info): Delete.
5999         * value.h (value_from_vtable_info): Delete prototype.
6000
6001 2002-05-11  Andrew Cagney  <ac131313@redhat.com>
6002
6003         * Makefile.in: Replace gdb_assert.h with $(gdb_assert_h),
6004         gdb_string.h with $(gdb_string_h) and gdb_regex.h with
6005         $(gdb_regex_h).
6006         (gdb_assert_h): Define.
6007         (gdb_wait_h): Define.
6008         (gdb_regex_h): Define.
6009
6010 2002-05-11 Daniel Jacobowitz  <drow@mvista.com>
6011
6012         From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
6013         * linespec.c (find_methods): Handle GCC 3.x template constructors.
6014
6015 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
6016
6017         * nbsd-tdep.c: Fix comment.
6018
6019 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
6020
6021         * Makefile.in (ALLDEPFILES): Add nbsd-tdep.c.
6022         (alphanbsd-tdep.o): Add nbsd-tdep.h to dependency list.
6023         (nbsd-tdep.o): New dependency list.
6024         * alphanbsd-tdep.c: Don't include solib-svr4.h.  Include
6025         nbsd-tdep.h.
6026         (alphanbsd_solib_svr4_fetch_link_map_offsets): Remove.
6027         (alphanbsd_init_abi): Use nbsd_lp64_solib_svr4_fetch_link_map_offsets.
6028         * nbsd-tdep.c: New file.
6029         * nbsd-tdep.h: New file.
6030         * shnbsd-tdep.c: Don't include solib-svr4.h.  Include
6031         nbsd-tdep.h.
6032         (shnbsd_solib_svr4_fetch_link_map_offsets): Remove.
6033         (shnbsd_init_abi): Use nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
6034         * config/alpha/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
6035         * config/sh/nbsd.mt (TDEPFILES): Ditto.
6036
6037 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
6038
6039         * config/alpha/nbsd.mh (NATDEPFILES): Remove corelow.o.
6040         * config/alpha/nbsd.mt (TDEPFILES): Add corelow.o.
6041         * config/i386/nbsd.mh (NATDEPFILES): Remove corelow.o.
6042         * config/i386/nbsd.mt (TDEPFILES): Add corelow.o.
6043         * config/i386/nbsdelf.mh (NATDEPFILES): Remove corelow.o.
6044         * config/i386/nbsdelf.mt (TDEPFILES): Add corelow.o.
6045
6046 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
6047
6048         * config/i386/nbsd.mh (NATDEPFILES): Use line continuations.
6049         * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
6050         * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
6051         * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
6052         * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
6053         * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
6054         * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
6055
6056 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
6057
6058         * i386nbsd-nat.c: Delete file.  Move fetch_core_registers and
6059         fetch_elfcore_registers to...
6060         * i386nbsd-tdep.c: ...here.
6061         (i386nbsd_use_struct_convention): Rename to...
6062         (i386nbsd_aout_use_struct_convention): ...this.
6063         (i386nbsd_supply_reg): New function.
6064         (i386nbsd_fill_reg): New function.
6065         (fetch_core_registers): Use i386nbsd_supply_reg.
6066         (fetch_elfcore_registers): Likewise.
6067         (_initialize_i386nbsd_tdep): New function.
6068         * config/i386/nbsd.mh (NATDEPFILES): Remove i386nbsd-nat.o.
6069         * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
6070         * config/i386/nbsdelf.mt (TDEPFILES): Add i386nbsd-tdep.o.
6071         * config/i386/tm-nbsd.h (i386nbsd_use_struct_convention): Rename to...
6072         (i386nbsd_aout_use_struct_convention): ...this.
6073
6074 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
6075
6076         * shnbsd-nat.c (fetch_inferior_registers): Use shnbsd_supply_reg.
6077         (store_inferior_registers): Use shnbsd_fill_reg.
6078         * shnbsd-tdep.c (sh_nbsd_supply_registers, 
6079         sh_nbsd_supply_register): Collapse into...
6080         (shnbsd_supply_reg): ...this.
6081         (sh_nbsd_fill_registers, sh_nbsd_fill_register): Collapse into...
6082         (shnbsd_fill_reg): ...this.
6083         (sh_nbsd_solib_svr4_fetch_link_map_offsets): Rename to...
6084         (shnbsd_solib_svr4_fetch_link_map_offsets): ...this.
6085         (fetch_core_registers): Use shnbsd_supply_reg.
6086         (fetch_elfcore_registers): Use shnbsd_supply_reg.
6087         (sh_nbsd_core_fns): Rename to...
6088         (shnbsd_core_fns): ...this.
6089         (sh_nbsd_elfcore_fns): Rename to...
6090         (shnbsd_elfcore_fns): ...this.
6091         (sh_nbsd_init_abi): Rename to...
6092         (shnbsd_init_abi): ...this.
6093         (_initialize_sh_nbsd_tdep): Rename to...
6094         (_initialize_shnbsd_tdep): ...this.
6095         * shnbsd-tdep.h (sh_nbsd_supply_registers,
6096         sh_nbsd_supply_register, sh_nbsd_fill_registers,
6097         sh_nbsd_fill_register): Remove prototypes.
6098         (shnbsd_supply_reg, shnbsd_fill_reg): Add prototypes.
6099
6100 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
6101
6102         * Makefile.in (ALLDEPFILES): Remove i387-nat.c.
6103         (i387-nat.o): Delete dependency list.
6104         (go32-nat.o): Change i387-nat.h to i387-tdep.h.
6105         (x86-64-linux-nat.o): Likewise.
6106         * i387-nat.c: Delete file, moving contents to...
6107         * i387-tdep.c: ...here.
6108         * i387-nat.h: Rename...
6109         * i387-tdep.h: ...to this.
6110         * go32-nat.c: Include i387-tdep.h instead of i387-nat.h.
6111         * i386-linux-nat.c: Likewise.
6112         * i386bsd-nat.c: Likewise.
6113         * i386gnu-nat.c: Likewise.
6114         * i386nbsd-nat.c: Likewise.
6115         * i386v4-nat.c: Likewise.
6116         * x86-64-linux-nat.c: Likewise.
6117         * config/i386/fbsd.mh (NATDEPFILES): Remove i387-nat.o.
6118         * config/i386/go32.mh (NATDEPFILES): Likewise.
6119         * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
6120         * config/i386/i386sol2.mh (NATDEPFILES): Likewise.
6121         * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
6122         * config/i386/linux.mh (NATDEPFILES): Likewise.
6123         * config/i386/nbsd.mh (NATDEPFILES): Likewise.
6124         * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
6125         * config/i386/obsd.mh (NATDEPFILES): Likewise.
6126         * config/i386/x86-64linux.mh (NATDEPFILES): Likewise.
6127
6128 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
6129
6130         * Makefile.in (ALLDEPFILES): Remove alphanbsd-nat.c.
6131         (alphanbsd-nat.o): Remove dependency list.
6132         (alphanbsd-tdep.o): Add $(regcache_h) to dependency list.
6133         * alphanbsd-nat.c: Delete.  Contents moved to...
6134         * alphanbsd-tdep.c: ...here.
6135         (_initialize_alphanbsd_tdep): Register core functions.
6136         * config/alpha/nbsd.mh (NATDEPFILES): Remove alphanbsd-nat.o.
6137
6138 2002-05-11  Jason Thorpe  <thorpej@wasabisystems.com>
6139
6140         * Makefile.in (ALLDEPFILES): Add alphabsd-tdep.c.
6141         (alphabsd-nat.o): Depend on alphabsd-tdep.h.
6142         (alphanbsd-nat.o): Likewise.
6143         (alphabsd-tdep.o): New dependency list.
6144         * alphabsd-nat.c (supply_gregset): Use alphabsd_supply_reg.
6145         (fill_gregset): Use alphabsd_fill_reg.
6146         (supply_fpregset): Use alphabsd_supply_fpreg.
6147         (fill_fpregset): Use alphabsd_fill_fpreg.
6148         (fetch_inferior_registers): Use struct reg and struct fpreg
6149         rather than gregset_t and fpregset_t.  Use alphabsd_supply_reg
6150         and alphabsd_supply_fpreg.
6151         (store_inferior_registers): Use struct reg and struct fpreg
6152         rather than gregset_t and fpregset_t.  Use alphabsd_fill_reg
6153         and alphabsd_fill_fpreg.
6154         * alphabsd-tdep.c: New file.
6155         * alphabsd-tdep.h: New file.
6156         * alphanbsd-nat.c (fetch_core_registers): Use alphabsd_supply_fpreg.
6157         (fetch_elfcore_registers): Use alphabsd_supply_reg and
6158         alphabsd_supply_fpreg.
6159         * config/alpha/fbsd.mt (TDEPFILES): Add alphabsd-tdep.o.
6160         * config/alpha/nbsd.mt (TDEPFILES): Likewise.
6161
6162 2002-05-11  Eric Christopher  <echristo@redhat.com>
6163
6164         * mips-tdep.c (mips_double_register_type): Fix thinko.
6165         (mips_single_register_type): Ditto.
6166         * MAINTAINERS: Add self.
6167
6168 2002-05-11  Mark Kettenis  <kettenis@gnu.org>
6169
6170         * i387-nat.c (i387_supply_register, i387_fill_fsave,
6171         i387_supply_fxsave, i387_fill_fxsave): Rewrite in order to do the
6172         right thing on architectures with different endianness and/or
6173         integer sizes.
6174
6175 2002-05-10  Jason Thorpe  <thorpej@wasabisystems.com>
6176
6177         From Christian Limpach <chris@Pin.LU>
6178         * configure.in: Change sed expression which comments out
6179         NATDEPFILES to also comment out continuation lines.
6180         * configure: Regenerate.
6181
6182 2002-05-10  Elena Zannoni  <ezannoni@redhat.com>
6183
6184         * sh-tdep.c: Clean up code erroneously reintroduced by previous
6185         big patch.
6186
6187 2002-05-10  Elena Zannoni  <ezannoni@redhat.com>
6188
6189         * sh-tdep.c: Include correct file.
6190
6191 2002-05-10  Elena Zannoni  <ezannoni@redhat.com>
6192
6193         New support for sh64-elf (sh5) target.
6194
6195         * configure.tgt: For sh64-elf target, default to sh-elf.
6196
6197         * config/sh/tm-sh.h (enum sh-abi): Possible ABI's.
6198         (struct gdbarch_tdep): Add new fields for new registers and ABI
6199         info.
6200
6201         * sh-tdep.c: Include elf-bfd.h, elf/sh.h, gdb/sim-sh.h.
6202         (NUM_PSEUDO_REGS_SH_MEDIA, NUM_PSEUDO_REGS_SH_COMPACT,
6203         MSYMBOL_IS_SPECIAL, IS_ISA32_ADDR, MAKE_ISA32_ADDR,
6204         UNMAKE_ISA32_ADDR, IS_PTABSL_R18, IS_STS_R0, IS_STS_PR,
6205         IS_MOV_TO_R15, IS_MOV_R14, IS_STQ_R18_R14, IS_STQ_R18_R15,
6206         IS_STL_R18_R15, IS_STQ_R14_R15, IS_STL_R14_R15, IS_ADDIL_SP_MEDIA,
6207         IS_ADDI_SP_MEDIA, IS_ADDL_SP_FP_MEDIA, IS_ADD_SP_FP_MEDIA,
6208         IS_MOV_SP_FP_MEDIA, IS_MOV_R0, IS_MOVL_R0, IS_ADD_SP_R0,
6209         IS_MOV_R14_R0, IS_MEDIA_IND_ARG_MOV, IS_MEDIA_ARG_MOV,
6210         IS_MEDIA_MOV_TO_R14, IS_COMPACT_IND_ARG_MOV, IS_COMPACT_ARG_MOV,
6211         IS_COMPACT_MOV_TO_R14, IS_JSR_R0, IS_NOP): New macros.
6212         (sh_sh64_register_name, sh64_elf_make_msymbol_special,
6213         pc_is_isa32, sh_sh64_breakpoint_from_pc, look_for_args_moves,
6214         sh64_skip_prologue_hard_way, sh64_use_struct_convention,
6215         gdb_print_insn_sh64, translate_insn_rn, sh64_frame_chain,
6216         sh64_get_saved_pr, fpp_reg_base_num, is_media_pseudo,
6217         sh64_get_gdb_regnum, sh64_media_reg_base_num,
6218         sh64_compact_reg_base_num, translate_rn_to_arch_reg_num,
6219         sign_extend, sh64_nofp_frame_init_saved_regs,
6220         sh64_init_extra_frame_info, sh64_get_saved_register,
6221         sh64_extract_struct_value_address, sh64_pop_frame,
6222         sh64_push_arguments, sh64_extract_return_value,
6223         sh64_store_return_value, sh64_show_media_regs,
6224         sh64_show_compact_regs, sh64_show_regs, sh_sh64_register_byte,
6225         sh_sh64_register_raw_size, sh_sh64_register_virtual_size,
6226         sh_sh64_register_virtual_type,
6227         sh_sh64_register_convert_to_virtual,
6228         sh_sh64_register_convert_to_raw, sh64_pseudo_register_read,
6229         sh64_register_read, sh64_pseudo_register_write,
6230         sh64_register_write, do_fv_c_register_info, do_dr_c_register_info,
6231         do_r_c_register_info, do_fpp_register_info, do_cr_c_register_info,
6232         sh64_do_pseudo_register, sh_compact_do_registers_info,
6233         sh64_do_registers_info, sh_gdbarch_init): New functions.
6234
6235 2002-05-10  Elena Zannoni  <ezannoni@redhat.com>
6236
6237         * sh-tdep.c (sh_breakpoint_from_pc): Add 'const' to return type.
6238
6239 2002-05-10 Daniel Jacobowitz  <drow@mvista.com>
6240
6241         * linespec.c (decode_line_1): Check for a double quote after
6242         a filename correctly.
6243
6244 2002-05-10  Jim Blandy  <jimb@redhat.com>
6245
6246         Properly track the size of the current objfile's .debug_line section.
6247         * dwarf2read.c (struct dwarf2_pinfo): New member: dwarf_line_size.
6248         (DWARF_LINE_SIZE): New macro.
6249         (dwarf2_build_psymtabs_hard): Record the line section's size in
6250         the partial symbol table.
6251         (psymtab_to_symtab_1): Restore dwarf_line_size from the partial
6252         symbol table.
6253
6254 2002-05-10  Petr Sorfa  <petrs@caldera.com>
6255
6256         * ia64-tdep.c: Handle breakpoints on L instruction type
6257         in MLX instruction bundle by moving the breakpoint to
6258         the third slot (X instruction type) as L holds only data.
6259
6260 2002-05-10  Kevin Buettner  <kevinb@redhat.com>
6261
6262         * dbxread.c (discarding_local_symbols_complaint): New complaint.
6263         (process_one_symbol): Complain about discarding local symbols
6264         due to a misplaced N_LBRAC entry.
6265
6266 2002-05-09  Elena Zannoni  <ezannoni@redhat.com>
6267
6268         From Daniel Berlin <dan@cgsoftware.com>
6269         * linespec.c (find_toplevel_char): '<' and '>' also increase and
6270         decrease the depth we are at, in the case of templates.
6271
6272 2002-05-09  Daniel Jacobowitz  <drow@mvista.com>
6273
6274         * mips-tdep.c (mips_float_register_type): New function.
6275         (mips_double_register_type): New function.
6276         (mips_print_register): Use them.
6277         (do_fp_register_row): Likewise.
6278
6279 2002-05-09  Daniel Jacobowitz  <drow@mvista.com>
6280
6281         * signals/signals.c (signals): Remove conditional compilation around
6282         Mach-specific signals.  Move them to after TARGET_SIGNAL_DEFAULT.
6283         (target_signal_from_name): Loop until TARGET_SIGNAL_LAST.
6284
6285 2002-05-09  Michael Snyder  <msnyder@redhat.com>
6286
6287         * remote-rdp.c (remote_rdp_can_run): Remove.
6288
6289 2002-05-09  Tom Tromey  <tromey@redhat.com>
6290
6291         * jv-valprint.c (java_val_print): Handle `char' as a special case
6292         of TYPE_CODE_INT.
6293
6294 2002-05-09  Michael Snyder  <msnyder@redhat.com>
6295
6296         * arm-tdep.c (arm_scan_prologue): Accept strb r(0123),[r11,#-nn],
6297         strh r(0123),[r11,#-nn], str r(0123),[r11,#-nn], as well as
6298         strb r(0123),[sp,#nn], strh r(0123),[sp,#nn] and
6299         str r(0123),[sp,#nn].
6300         (arm_skip_prologue): Ditto.  Also make disassembly
6301         order-independent by placing it in a loop.
6302
6303 2002-05-06  Michael Snyder  <msnyder@redhat.com>
6304
6305         * stabsread.c (read_type): Add recognition for new attribute:
6306         "@V;" means that an array type is actually a vector.
6307         This is analogous to the vector flag that's been added to dwarf2.
6308
6309 2002-05-09  Mark Kettenis  <kettenis@gnu.org>
6310
6311         * i386-tdep.h (i386_abi): New enum.
6312         (struct gdbarch_tdep): Replace os_ident member with abi.
6313         (i386_gdbarch_register_os_abi): New prototype.
6314         * i386-tdep.c (i386_abi_names): New array.
6315         (process_note_abi_tag_sections): Removed.
6316         (process_note_sections): New function.
6317         (i386_elf_abi_from_note, i386_elf_abi): New functions.
6318         (struct i386_abi_handler): New struct.
6319         (i386_abi_handler_list): New variable.
6320         (i386_gdbarch_register_os_abi): New function.
6321         (i386_gdbarch_init): Adapt for the changes given above.
6322
6323 2002-05-08  Daniel Jacobowitz  <drow@mvista.com>
6324
6325         * gregset.h: Say "GNU/Linux".
6326
6327 2002-05-08  Elena Zannoni  <ezannoni@redhat.com>
6328
6329         * gdbtypes.c : Add new builtin type for 64 bit vectors.
6330         (build_gdbtypes): Build builtin_type_v2_float.
6331         (_initialize_gdbtypes): Register new builtin type.
6332
6333 2002-05-08  Andrew Cagney  <ac131313@redhat.com>
6334
6335         * gdbarch.sh (init_gdbarch_swap): Do not clear the swap section.
6336         (clear_gdbarch_swap): New function.
6337         (initialize_non_multiarch): Call.
6338         (gdbarch_update_p): Before calling init(), swap out and clear the
6339         existing architecture.
6340         * gdbarch.c: Regenerate.
6341
6342 2002-05-08  Jason Thorpe  <thorpej@wasabisystems.com>
6343
6344         * config/djgpp/fnchange.lst: Add alphanbsd-nat.c and
6345         alphanbsd-tdep.c.
6346
6347 2002-05-08  Jason Thorpe  <thorpej@wasabisystems.com>
6348
6349         * sh-nbsd-nat.c: Rename to...
6350         * shnbsd-nat.c: ...this.
6351         * sh-nbsd-tdep.c: Rename to...
6352         * shnbsd-tdep.c: ...this.
6353         * sh-nbsd-tdep.h: Rename to...
6354         * shnbsd-tdep.h: ...this.
6355         * config/sh/nbsd.mh: Use shnbsd-nat.o.
6356         * config/sh/nbsd.mt: Use shnbsd-tdep.o.
6357
6358 2002-05-08  Richard Earnshaw  <rearnsha@arm.com>
6359
6360         * remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
6361         concatenation for command help messages.
6362
6363 2002-05-08  Jason Thorpe  <thorpej@wasabisystems.com>
6364
6365         * NEWS: Note new sh*-*-netbsdelf* configuration.
6366         * configure.host: Set gdb_host_cpu to sh for all sh*.
6367         (sh*-*-netbsdelf*): New host.
6368         * configure.tgt: Set gdb_target_cpu to sh for all sh*.
6369         (sh*-*-netbsdelf*): New target.
6370         * sh-nbsd-nat.c: New file.
6371         * sh-nbsd-tdep.c: New file.
6372         * sh-nbsd-tdep.h: New file.
6373         * config/sh/nbsd.mh: New file.
6374         * config/sh/nbsd.mt: New file.
6375         * config/sh/nm-nbsd.h: New file.
6376         * config/sh/tm-nbsd.h: New file.
6377
6378 2002-05-08  Jason Thorpe  <thorpej@wasabisystems.com>
6379
6380         * sh-tdep.c (sh_osabi_names): Declare.
6381         (process_note_abi_tag_sections): New function.
6382         (get_elfosabi): Ditto.
6383         (sh_gdbarch_register_os_abi): Ditto.
6384         (sh_dump_tdep): Ditto.
6385         _initialize_sh_tdep): Use gdbarch_register to register
6386         sh_gdbarch_init and sh_dump_tdep.
6387         * config/sh/tm-sh.h (sh_osabi): Declare.
6388         (gdbarch_tdep): Add sh_osabi and osabi_name members.
6389
6390 2002-05-07  Andrew Cagney  <ac131313@redhat.com>
6391
6392         * arm-tdep.c (arm_skip_prologue): Handle generic dummy frames.
6393         (thumb_scan_prologue): Ditto.
6394         (arm_find_callers_reg): Ditto.
6395         (arm_frame_chain): Ditto.
6396         (arm_init_extra_frame_info): Ditto.
6397         (arm_frame_saved_pc): Ditto.
6398         (arm_pop_frame): Ditto.
6399         (arm_push_return_address): New function.
6400         (arm_gdbarch_init): Initialize use_generic_dummy_frames,
6401         call_dummy_location, call_dummy_breakpoint_offset_p,
6402         call_dummy_breakpoint_offset, call_dummy_p,
6403         call_dummy_stack_adjust_p, call_dummy_words,
6404         sizeof_call_dummy_words, call_dummy_start_offset,
6405         call_dummy_length, fix_call_dummy, pc_in_call_dummy,
6406         call_dummy_address, push_return_address and push_dummy_frame for
6407         generic dummy frames.
6408
6409 2002-05-07  Jason Thorpe  <thorpej@wasabisystems.com>
6410
6411         * sh-tdep.c (sh_nofp_frame_init_saved_regs): Fix error in
6412         size computation for alloca.
6413         (sh_fp_frame_init_saved_regs): Likewise.
6414
6415 2002-05-07  Richard Earnshaw  <rearnsha@arm.com>
6416
6417         * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE): Define.
6418         (ARM_MAX_REGISTER_VIRTUAL_SIZE): Define.
6419         * arm-tdep.c (arm_store_return_value): Use them.
6420         Use FP_REGISTER_RAW_SIZE when setting the FPA return value.
6421         * remote-rdp.c (remote_rdp_fetch_register): Use
6422         ARM_MAX_REGISTER_RAW_SIZE.
6423         (remote_rdp_store_register): Likewise.
6424
6425 2002-05-07  Michal Ludvig  <mludvig@suse.cz>
6426
6427         * dwarf2cfi.c: Code cleanup, removed unused variables,
6428         added default labels to switch {} statements.
6429         * x86-64-tdep.c: Ditto.
6430         * x86-64-linux-nat.c: Ditto.
6431
6432 2002-05-07  Jason Thorpe  <thorpej@wasabisystems.com>
6433
6434         * solib.h: Protect against multiple inclusion.
6435
6436 2002-05-06  Jim Blandy  <jimb@redhat.com>
6437
6438         Add first preprocessor macro-expansion files.
6439         * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
6440         * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
6441         (splay_tree_h, macroexp_h, macrotab_h): New variable.
6442         (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
6443         (COMMON_OBS): Add macrotab.o, macroexp.o.
6444         (macroexp.o, macrotab.o): New rules.
6445
6446         Separate the job of reading the line number info statement program
6447         header (...expialidocious) out into its own function.
6448         * dwarf2read.c (struct line_head, struct filenames, struct
6449         directories): Replace with...
6450         (struct line_header): New structure, containing the full
6451         contents of the statement program header, including the
6452         include directory and file name tables.
6453         (read_file_scope): If we have line number info, instead of just
6454         calling dwarf_decode_lines to do all the work, call
6455         dwarf_decode_line_header first to get a `struct line_header'
6456         containing the data in the statement program header, and then
6457         pass that to dwarf_decode_lines, which will pick up where that
6458         left off.  Be sure to clean up the `struct line_header' object.
6459         (dwarf_decode_line_header, free_line_header, add_include_dir,
6460         add_file_name): New functions.
6461         (dwarf_decode_lines): Move all the code to read the statement
6462         program header into dwarf_decode_line_header.  Take the line
6463         header it built as the first argument, instead of the offset to
6464         the compilation unit's line number info.  Use the new `struct
6465         line_header' type instead of the old structures.  No need to do
6466         cleanups here now, since we don't allocate anything.
6467         (dwarf2_statement_list_fits_in_line_number_section,
6468         dwarf2_line_header_too_long): New complaints.
6469
6470 2002-05-06  Elena Zannoni  <ezannoni@redhat.com>
6471
6472         * gdbtypes.c (init_vector_type): New function.
6473         (build_builtin_type_vec128): Simplify the representation of SIMD
6474         registers.
6475         (build_gdbtypes): Initialize new builtin vector types.
6476         (_initialize_gdbtypes): Register new vector types with gdbarch.
6477         (builtin_type_v4_float, builtin_type_v4_int32,
6478         builtin_type_v8_int16, builtin_type_v16_int8,
6479         builtin_type_v2_int32, builtin_type_v4_int16,
6480         builtin_type_v8_int8): New (renamed) SIMD types.
6481
6482 2002-05-06  Mark Kettenis  <kettenis@gnu.org>
6483
6484         * i387-nat.c (i387_fill_fsave): Use regcache_collect.
6485         (i387_fill_fxsave): Likewise.
6486
6487 2002-05-05  Alexandre Oliva  <aoliva@redhat.com>
6488
6489         * alpha-tdep.c (alpha_extract_return_value): Don't use
6490         non-constant array size in prototype.
6491
6492 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
6493
6494         From Brian Taylor <briant at model dot com>:
6495         * ui-out.c (ui_out_field_core_addr): Use the function
6496         longest_local_hex_string_custom'to format addresses > 32 bits
6497         wide.
6498
6499         * ui-out.c (ui_out_field_core_addr): Update comment.
6500
6501 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
6502
6503         * stack.c (select_and_print_frame): Make static.  Delete the
6504         parameter `level'.
6505         (func_command): Update call.
6506         (select_frame_command): Delete code computing the frame level.
6507         * frame.h (select_and_print_frame): Delete declaration.
6508
6509 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
6510
6511         * sparc-tdep.c (sparc_get_saved_register): Comment why
6512         get_prev_frame call is safe.
6513
6514 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
6515
6516         * frame.h (select_frame): Delete level parameter.
6517         * stack.c (select_frame): Update.  Use frame_relative_level to
6518         obtain the frame's level.
6519         (select_and_print_frame): Update call.
6520         (select_frame_command): Ditto.
6521         (up_silently_base): Ditto.
6522         (down_silently_base): Ditto.
6523         * ocd.c (ocd_start_remote): Ditto.
6524         * remote-rdp.c (remote_rdp_open): Ditto.
6525         * remote-mips.c (mips_initialize): Ditto.
6526         (common_open): Ditto.
6527         * remote-e7000.c (e7000_start_remote): Ditto.
6528         * m3-nat.c (select_thread): Ditto.
6529         * hppa-tdep.c (child_get_current_exception_event): Ditto.
6530         (child_get_current_exception_event): Ditto.
6531         * varobj.c (varobj_create): Ditto.
6532         (varobj_update): Ditto.
6533         (c_value_of_root): Ditto.
6534         * tracepoint.c (finish_tfind_command): Ditto.
6535         * corelow.c (core_open): Ditto.
6536         * arch-utils.c (generic_prepare_to_proceed): Ditto.
6537         * thread.c (info_threads_command): Ditto.
6538         (switch_to_thread): Ditto.
6539         * infrun.c (normal_stop): Ditto.
6540         (restore_selected_frame): Ditto.
6541         (restore_inferior_status): Ditto.
6542         * breakpoint.c (insert_breakpoints): Ditto.
6543         (watchpoint_check): Ditto.
6544         (bpstat_stop_status): Ditto.
6545         (do_enable_breakpoint): Ditto.
6546         * blockframe.c (flush_cached_frames): Ditto.
6547         (reinit_frame_cache): Ditto.
6548
6549 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
6550
6551         * MAINTAINERS (Host/Native): Add Jason Thorpe as NetBSD
6552         maintainer.
6553
6554 2002-05-04  Jim Blandy  <jimb@redhat.com>
6555
6556         * gdbtypes.c (replace_type): Doc fix.
6557
6558 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
6559
6560         * valprint.c (strcat_longest): Delete commented out function.
6561         Update copyright.
6562
6563 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
6564
6565         * MAINTAINERS: Mark a29k as deleted.
6566         * NEWS: Mention that a29k was removed.  Add OBSOLETE section.
6567         Move new configurations to the top.
6568         * configure.tgt: Remove a29k.
6569         * config/a29k/tm-vx29k.h: Delete.
6570         * config/a29k/vx29k.mt: Delete.
6571         * config/a29k/tm-a29k.h: Delete.
6572         * config/a29k/a29k-udi.mt: Delete.
6573         * config/a29k/a29k.mt: Delete.
6574         * a29k-tdep.c: Delete.
6575         * remote-udi.c: Delete.
6576         * remote-mm.c: Delete.
6577         * remote-eb.c: Delete.
6578         * remote-adapt.c: Delete.
6579         * Makefile.in: Remove obsolete code.
6580         * config/s390/s390x.mt: Ditto.
6581         * config/s390/s390.mt: Ditto.
6582         * config/sparc/sparclynx.mh: Ditto.
6583         * config/sparc/linux.mh: Ditto.
6584         * config/pa/hppaosf.mh: Ditto.
6585         * config/pa/hppabsd.mh: Ditto.
6586         * config/ns32k/nbsd.mt: Ditto.
6587         * config/mips/vr5000.mt: Ditto.
6588         * config/m68k/sun3os4.mh: Ditto.
6589         * config/m68k/nbsd.mt: Ditto.
6590         * config/m68k/m68klynx.mh: Ditto.
6591         * config/m32r/m32r.mt: Ditto.
6592         * config/i386/x86-64linux.mt: Ditto.
6593         * config/i386/nbsdelf.mt: Ditto.
6594         * config/i386/nbsd.mt: Ditto.
6595         * config/i386/i386lynx.mh: Ditto.
6596
6597 2002-05-04  Andrew Cagney  <ac131313@redhat.com>
6598
6599         * target.c (debug_print_register): New function.  Handle oversize
6600         registers.
6601         (debug_to_fetch_registers): Call.
6602         (debug_to_store_registers): Call.
6603
6604 2002-05-03  Jim Blandy  <jimb@redhat.com>
6605
6606         * stabsread.c (cleanup_undefined_types): Use replace_type, not memcpy.
6607         (read_type): Doc fix.
6608         * gdbtypes.c (replace_type): Doc fix.
6609
6610         * stabsread.c (multiply_defined_struct): New complaint.
6611         (read_struct_type): If the type we were passed isn't empty, or
6612         incomplete, don't read the new struct type into it; complain,
6613         and return the original type unchanged.  Take a new `type_code'
6614         argument, which is the type code for the new type.
6615         (read_type): Rather than storing the type's type code here, pass
6616         it as an argument to read_struct_type, and let that take care of
6617         storing it.  That way, we don't overwrite the original type code,
6618         so read_struct_type can use it to decide whether we're overwriting
6619         something we shouldn't.
6620         (complain_about_struct_wipeout): New function.
6621
6622 2002-05-03  Andrew Cagney  <ac131313@redhat.com>
6623
6624         * gdbarch.sh: Assert that gdbarch is non-NULL.
6625         * gdbarch.c: Regenerate.
6626
6627 2002-05-03  Jason Merrill  <jason@redhat.com>
6628
6629         * gnu-v3-abi.c (gnuv3_rtti_type): If we get confused, just warn
6630         and return NULL.
6631
6632 2002-05-03  Michal Ludvig  <mludvig@suse.cz>
6633
6634         * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map),
6635         (x86_64_dwarf2gdb_regno_map_length),
6636         (x86_64_dwarf2_reg_to_regnum): Added.
6637         (x86_64_gdbarch_init): Added registration of x86_64_dwarf2_reg_to_regnum.
6638         (x86_64_gdbarch_init): Renamed from i386_gdbarch_init.
6639         (_initialize_x86_64_tdep): Synced with the change above.
6640         (x86_64_skip_prologue): Reformulated message.
6641
6642 2002-05-03  Pierre Muller  <muller@ics.u-strasbg.fr>
6643
6644         * f-exp.y: Also use new prev_lexptr variable
6645         to improve error reporting. Based on Michael Snyder
6646         2002-04-24 dated patch to c-exp.y.
6647         * jv-exp.y: Likewise.
6648         * m2-exp.y: Likewise.
6649
6650 2002-05-02  Elena Zannoni  <ezannoni@redhat.com>
6651
6652         * valops.c (value_arg_coerce): Don't coerce arrays to pointers if
6653         we are dealing with vectors.
6654
6655 2002-05-02  Pierre Muller  <muller@ics.u-strasbg.fr>
6656
6657         * config/m68k/tm-nbsd.h: Obvious fix,
6658         correct machine name.
6659
6660 2002-05-02  Pierre Muller  <muller@ics.u-strasbg.fr>
6661
6662         * p-typeprint.c (pascal_type_print_base): Add support
6663         for TYPE_CODE_STRING and TYPE_CODE_BITSTRING.
6664
6665 2002-05-02  Pierre Muller  <muller@ics.u-strasbg.fr>
6666
6667         * p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
6668         for fondamental pascal 'char' type.
6669
6670 2002-05-02  Pierre Muller  <muller@ics.u-strasbg.fr>
6671
6672         * p-lang.h (is_pascal_string_type): Declaration changed,
6673         new sixth argument of type char ** added.
6674         * p-lang.c (is_pascal_string_type): Implementation
6675         changed. Args length_pos, length_size, string_pos, char_size
6676         can now be NULL. New argument arrayname set to the field
6677         name of the char array. Return value set to char array
6678         field index plus one.
6679         * p-valprint.c (pascal_val_print): Adapt to new declaration of
6680         is_pascal_string_type function.
6681
6682 2002-05-02  Andrew Cagney  <cagney@redhat.com>
6683
6684         * gdbarch.sh (gdbarch_update_p): Revert 2002-05-02 Andrew Cagney
6685         <cagney@redhat.com> change.
6686         * gdbarch.c: Regenerate.
6687
6688 2002-05-02  Andrew Cagney  <cagney@redhat.com>
6689
6690         * gdbarch.sh (gdbarch_update_p): Swap out the old architecture
6691         before probing for a new one.  Detect errorenous gdbarch_init
6692         functions.
6693         * gdbarch.c: Regenerate.
6694
6695 2002-05-01  Andrew Cagney  <cagney@redhat.com>
6696
6697         * config/mn10200/tm-mn10200.h: Include "symfile.h" and "symtab.h".
6698         * config/mcore/tm-mcore.h: Ditto.  Update copyright.
6699         * config/v850/tm-v850.h: Ditto.  Update copyright.
6700
6701 2002-04-30  Andrew Cagney  <ac131313@redhat.com>
6702
6703         * cris-tdep.c (cris_gdbarch_init): Use arches instead of
6704         current_gdbarch.
6705
6706 2002-04-30  Michael Snyder  <msnyder@redhat.com>
6707
6708         * arm-tdep.c: Whitespace clean-ups.
6709         (arm_skip_prologue): Fix thinko; two lines
6710         should have been removed as part of 4/24 change.
6711
6712 2002-04-30  Kevin Buettner  <kevinb@redhat.com>
6713
6714         * rs6000-tdep.c: Added comment describing how fpscr register
6715         numbers were chosen.
6716
6717 2002-04-30  Michael Snyder  <msnyder@redhat.com>
6718
6719         * gnu-nat.c (gnu_find_memory_regions): Fix merge botch.
6720
6721 2002-04-29  Elena Zannoni  <ezannoni@redhat.com>
6722
6723         * hpread.c (DNTT_TYPE_VECTOR): Rename from TYPE_VECTOR.
6724         (DNTT_TYPE_VECTOR_LENGTH): Rename from TYPE_VECTOR_LENGTH.
6725         (hpread_symfile_init, hpread_lookup_type): Substitute throughout.
6726
6727 2002-04-29  Kevin Buettner  <kevinb@redhat.com>
6728
6729         From Louis Hamilton <hamilton@redhat.com>:
6730         * rs6000-tdep.c (coff/xcoff.h, libxcoff.h): Include.
6731         * xcoffread.c (coff/xcoff.h, libxcoff.h): Likewise.
6732         * rs6000-tdep.c (rs6000_gdbarch_init): Use bfd_xcoff_is_xcoff64(),
6733         not bfd-private xcoff data, to determine wordsize.
6734         * xcoffread.c (read_xcoff_xymtab, read_symbol_lineno): Likewise.
6735
6736 2002-04-29  Andrew Cagney  <ac131313@redhat.com>
6737
6738         GDB 5.2 released from 5.2 branch.
6739
6740 2002-04-29  Michal Ludvig  <mludvig@suse.cz>
6741
6742         * x86-64-linux-nat.c (fill_gregset): Explicit cast to avoid warning.
6743         * x86-64-tdep.c (i386_gdbarch_init): Ditto.
6744         (x86_64_register_info_table): Added comments with register numbers.
6745
6746 2002-04-29  Elena Zannoni  <ezannoni@redhat.com>
6747
6748         * rs6000-tdep.c (rs6000_extract_return_value,
6749         rs6000_store_return_value): Handle returning vectors.
6750         (rs6000_gdbarch_init): Use
6751         ppc_sysv_abi_broken_use_struct_convention for native sysv cases.
6752         * ppc-linux-tdep.c (ppc_sysv_abi_broken_use_struct_convention):
6753         New function.
6754         (ppc_sysv_abi_use_struct_convention): Deal with functions returning
6755         vectors.
6756         (ppc_sysv_abi_push_arguments): Handle vector parameters.
6757         * ppc-tdep.h (ppc_sysv_abi_broken_use_struct_convention): Export.
6758
6759 2002-04-24  Pierre Muller  <ics.u-strasbg.fr>
6760
6761         * hpread.c (hpread_psymtab_to_symtab_1,
6762         hpread_psymtab_to_symtab): Replace fprintf tab_to_s...)
6763         with fprintf_unfiltered (gdb_stderr,...).
6764
6765 2002-04-24  Pierre Muller  <ics.u-strasbg.fr>
6766
6767         * remote-array.c (printf_monitor, write_monitor,
6768         array_insert_breakpoint, array_remove_breakpoint ):
6769         Replace fprintf (stderr,...
6770         with fprintf_unfiltered (gdb_stderr,....
6771         * remote-es.c: Likewise.
6772         * remote-os9k.c: Likewise.
6773         * remote-st.c: Likewise.
6774
6775 2002-04-28  Andreas Schwab  <schwab@suse.de>
6776
6777         * config/s390/s390.mh (NATDEPFILES): Remove solib.o, add
6778         linux-proc.o and gcore.o.
6779
6780 2002-04-26  Michal Ludvig  <mludvig@suse.cz>
6781
6782         * x86-64-tdep.c (x86_64_skip_prologue): Print note when debugging
6783         code without frame pointers.
6784
6785 2002-04-26  Andrew Cagney  <ac131313@redhat.com>
6786
6787         * sparc-tdep.c (sparc_gdbarch_init): Add comment explaining why
6788         ON_STACK is needed.
6789
6790 2002-04-26  Ben Elliston  <bje@redhat.com>
6791
6792         * target.c (do_xfer_memory): Correct reference to the new option
6793         "trust-readonly-sections".
6794
6795 2002-04-26  Elena Zannoni  <ezannoni@redhat.com>
6796
6797         * gdbtypes.h (TYPE_FLAG_VECTOR, TYPE_VECTOR): Define.
6798         * gdbtypes.c (recursive_dump_type): Output the vector flag.
6799         * dwarf2read.c (dwarf_attr_name): Handle new attribute for
6800         vectors.
6801         (read_array_type): Record the fact that this array type is really a
6802         vector (i.e. are passed in by value).
6803
6804 2002-04-26  Jason Thorpe  <thorpej@wasabisystems.com>
6805
6806         * alpha-tdep.h (gdbarch_tdep): Add sigcontext_addr member.
6807         * alpha-tdep.c (alpha_sigcontext_addr): New function.
6808         (alpha_find_saved_regs): Use alpha_sigcontext_addr.
6809         (alpha_gdbarch_init): Initialize tdep->sigcontext_addr.
6810         * alpha-linux-tdep.c: Include frame.h.
6811         (alpha_linux_sigcontext_addr): New function.
6812         (alpha_linux_init_abi): Set tdep->sigcontext_addr to
6813         alpha_linux_sigcontext_addr.
6814         * alpha-osf1-tdep.c: Include gdbcore.h.
6815         (alpha_osf1_sigcontext_addr): New function.
6816         (alpha_osf1_init_abi): Set tdep->sigcontext_addr to
6817         alpha_osf1_sigcontext_addr.
6818         * config/alpha/tm-alpha.h (SIGCONTEXT_ADDR): Remove.
6819         * config/alpha/tm-alphalinux.h (SIGCONTEXT_ADDR): Remove.
6820
6821 2002-04-26  Andrew Cagney  <ac131313@redhat.com>
6822
6823         * stack.c (selected_frame_level):
6824         (select_frame): Do not set selected_frame_level.
6825         * frame.h (selected_frame_level): Delete declaration.
6826
6827 2002-04-26  Andrew Cagney  <ac131313@redhat.com>
6828
6829         * rs6000-tdep.c (rs6000_gdbarch_init): Only set
6830         convert_from_func_ptr-addr when AIX / PowerOpen.
6831
6832 2002-04-25  Andrew Cagney  <ac131313@redhat.com>
6833
6834         * valops.c (hand_function_call): Call
6835         generic_save_call_dummy_addr.
6836         * frame.h (generic_save_call_dummy_addr): Declare.
6837         * blockframe.c (struct dummy_frame): Add fields call_lo and
6838         call_hi.
6839         (generic_find_dummy_frame): Check for PC in range call_lo to
6840         call_hi instead of entry_point_address.
6841         (generic_pc_in_call_dummy): Search the dummy frames for a PC in
6842         the call_lo to call_hi range.  Allow for DECR_PC_AFTER_BREAK.
6843         (generic_save_call_dummy_addr): New function.
6844
6845 2002-04-24  David S. Miller  <davem@redhat.com>
6846
6847         * sparc-tdep.c (sparc_gdbarch_skip_prologue): Kill, duplicates
6848         sparc_skip_prologue.
6849         (sparc_skip_prologue): Kill frameless_p arg, and use line number
6850         information to find prologue when possible.
6851         (sparc_prologue_frameless_p): Call examine_prologue directly.
6852         (sparc_gdbarch_init): Update set_gdbarch_skip_prologue call.
6853         * config/sparc/tm-sparc.h (sparc_skip_prologue): Update for killed
6854         second argument.
6855         (SKIP_PROLOGUE): Likewise.
6856
6857 2002-04-25  Jason Thorpe  <thorpej@wasabisystems.com>
6858
6859         * alpha-tdep.c (alpha_skip_prologue_internal): Remove
6860         GDB_TARGET_HAS_SHARED_LIBS #ifdef and update comment to
6861         indicate that the condition it was testing is always true.
6862         * config/alpha/nm-linux.h (GDB_TARGET_HAS_SHARED_LIBS): Remove.
6863         * config/alpha/nm-nbsd.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
6864         * config/alpha/nm-osf.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
6865
6866 2002-04-25  Jason Thorpe  <thorpej@wasabisystems.com>
6867
6868         * alpha-tdep.h (gdbarch_tdep): Add jb_pc and jb_elt_size members.
6869         * alpha-linux-tdep.c (alpha_linux_init_abi): Initialize
6870         tdep->jb_pc and tdep->jb_elt_size.
6871         * alpha-osf1-tdep.c (alpha_osf1_init_abi): Likewise.
6872         * alphafbsd-tdep.c (alphafbsd_init_abi): Likewise.
6873         * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
6874         * alpha-nat.c (get_longjmp_target): Remove.
6875         (JB_ELEMENT_SIZE): Ditto.
6876         (JB_PC): Ditto.
6877         * alpha-tdep.c (alpha_get_longjmp_target): New function.
6878         (alpha_gdbarch_init): Default tdep->jb_pc to -1.  If the
6879         OS ABI sets jb_pc to a valid value, set gdbarch_get_longjmp_target
6880         to alpha_get_longjmp_target.
6881         (alpha_dump_tdep): Report tdep->jb_pc and tdep->jb_elt_size.
6882         * config/alpha/nm-linux.h (GET_LONGJMP_TARGET): Remove.
6883         * config/alpha/nm-osf.h (GET_LONGJMP_TARGET): Remove.
6884
6885 2002-04-25  Andrew Cagney  <ac131313@redhat.com>
6886
6887         * README: Update to GDB 5.2.
6888
6889 2002-04-25  Andrew Cagney  <ac131313@redhat.com>
6890
6891         * gdbarch.sh (LC_ALL): Set to `c'.
6892
6893 2002-04-25  Theodore A. Roth  <troth@verinet.com>
6894
6895         * avr-tdep.c: Ran through gdb_indent.sh.
6896
6897 2002-04-25  Theodore A. Roth  <troth@verinet.com>
6898
6899         * MAINTAINERS: Add myself as AVR maintainer.
6900         * NEWS: Note new target avr.
6901
6902 2002-04-25  Theodore A. Roth  <troth@verinet.com>
6903
6904         * Makefile.in: Add support for AVR target.
6905         * configure.tgt: Add support for AVR target.
6906         * avr-tdep.c: New file
6907         * config/avr/avr.mt: New file.
6908
6909 2002-04-25  Theodore A. Roth  <troth@verinet.com>
6910
6911         * MAINTAINERS: Add myself to write-after-approval.
6912
6913 2002-04-24  Pierre Muller  <ics.u-strasbg.fr>
6914
6915         * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,...
6916         with fprintf_unfiltered (gdb_stderr,....
6917
6918 2002-04-25  Pierre Muller  <muller@ics.u-strasbg.fr>
6919
6920         Fix PR gdb/508.
6921         * symfile.c (add_filename_language): Fix wrong xrealloc size argument.
6922
6923 2002-04-25  Pierre Muller  <muller@ics.u-strasbg.fr>
6924
6925         * p-exp.y: Also use new prev_lexptr variable
6926         to improve error reporting. Based on Michael Snyder
6927         2002-04-24 dated patch to c-exp.y.
6928
6929 2002-04-25  Jason Thorpe  <thorpej@wasabisystems.com>
6930
6931         * alpha-tdep.c (alpha_breakpoint_from_pc): New function.
6932         (alpha_gdbarch_init): Set gdbarch_breakpoint_from_pc to
6933         alpha_breakpoint_from_pc.  Set gdbarch_function_start_offset
6934         to 0.
6935         * config/alpha/tm-alpha.h: Remove forward decls of struct type
6936         and struct value.
6937         (FUNCTION_START_OFFSET): Remove.
6938         (BREAKPOINT): Ditto.
6939
6940 2002-04-25  Jason Thorpe  <thorpej@wasabisystems.com>
6941
6942         * MAINTAINERS: Reflect that multi-arch is enabled for VAX.
6943         * NEWS: Ditto.
6944
6945 2002-04-24  Jason Thorpe  <thorpej@wasabisystems.com>
6946
6947         * alpha-linux-tdep.c (alpha_linux_pc_in_sigtramp): New function.
6948         (alpha_linux_init_abi): Set gdbarch_pc_in_sigtramp to
6949         alpha_linux_pc_in_sigtramp.
6950         * alpha-osf1-tdep.c (alpha_osf1_pc_in_sigtramp): New function.
6951         (alpha_osf1_init_abi): Set gdbarch_pc_in_sigtramp to
6952         alpha_osf1_pc_in_sigtramp.
6953         * alpha-tdep.c (alpha_osf_in_sigtramp): Remove.
6954         * alphafbsd-tdep.c (alphafbsd_pc_in_sigtramp): New function.
6955         (alphafbsd_init_abi): Set gdbarch_pc_in_sigtramp to
6956         alphafbsd_pc_in_sigtramp.
6957         * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): New function.
6958         (alphanbsd_init_abi): Set gdbarch_pc_in_sigtramp to
6959         alphanbsd_pc_in_sigtramp.
6960         * config/alpha/tm-alpha.h (IN_SIGTRAMP): Remove.
6961         * config/alpha/tm-alphalinux.h (IN_SIGTRAMP): Remove.
6962
6963 2002-04-24  Jason Thorpe  <thorpej@wasabisystems.com>
6964
6965         * config/alpha/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
6966
6967 2002-04-24  Jason Thorpe  <thorpej@wasabisystems.com>
6968
6969         * Makefile.in (ALLDEPFILES): Add alphanbsd-nat.c and
6970         alphanbsd-tdep.c.
6971         (alphanbsd-nat.o): New dependency list.
6972         (alphanbsd-tdep.o): Ditto.
6973         * NEWS: Note new native NetBSD/alpha configuration.
6974         * alphanbsd-nat.c: New file.
6975         * alphanbsd-tdep.c: Ditto.
6976         * configure.host (alpha*-*-netbsd*): New host.
6977         * configure.tgt (alpha*-*-netbsd*): New target.
6978         * config/alpha/nbsd.mh: New file.
6979         * config/alpha/nbsd.mt: Ditto.
6980         * config/alpha/nm-nbsd.h: Ditto.
6981         * config/alpha/tm-nbsd.h: Ditto.
6982
6983 2002-04-24  Jason Thorpe  <thorpej@wasabisystems.com>
6984
6985         * Makefile.in (ALLDEPFILES): Add alpha-osf1-tdep.c.
6986         (alpha-osf1-tdep.o): New dependency list.
6987         * alpha-tdep.h (gdbarch_tdep): Add dynamic_sigtramp_offset
6988         and skip_sigtramp_frame members.
6989         * alpha-linux-tdep.c: Include gdbcore.h.
6990         (alpha_linux_sigtramp_offset): Change return type to LONGEST.
6991         (alpha_linux_init_abi): Initialize tdep->dynamic_sigtramp_offset.
6992         * alpha-osf1-tdep.c: New file.
6993         * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Moved to
6994         alpha-osf1-dep.c.
6995         (alpha_frame_past_sigtramp_frame): New function.
6996         (alpha_dynamic_sigtramp_offset): Ditto.
6997         (alpha_proc_desc_is_dyn_sigtramp): Ditto.
6998         (alpha_set_proc_desc_is_dyn_sigtramp): Ditto.
6999         (ALPHA_PROC_SIGTRAMP_MAGIC): Define.
7000         (push_sigtramp_desc): Use alpha_set_proc_desc_is_dyn_sigtramp.
7001         (after_prologue): Use alpha_proc_desc_is_dyn_sigtramp.
7002         (find_proc_desc): Use alpha_dynamic_sigtramp_offset.
7003         (alpha_frame_chain): Use alpha_frame_past_sigtramp_frame.
7004         (alpha_init_extra_frame_info): Use alpha_proc_desc_is_dyn_sigtramp.
7005         (alpha_pop_frame): Use alpha_proc_desc_is_dyn_sigtramp.
7006         (alpha_gdbarch_init): Initialize tdep->dynamic_sigtramp_offset
7007         and tdep->skip_sigtramp_frame.  Set gdbarch_skip_trampoline_code
7008         to find_solib_trampoline_target.
7009         * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-osf1-tdep.o.
7010         * config/alpha/tm-alpha.h: Remove inclusion of regcache.h.
7011         (SKIP_TRAMPOLINE_CODE): Remove.
7012         (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7013         (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7014         (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
7015         (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
7016         * config/alpha/tm-alphalinux.h (PROC_DESC_IS_DYN_SIGTRAMP): Remove.
7017         (PROC_SIGTRAMP_MAGIC): Ditto.
7018         (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7019         (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7020         (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7021         (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
7022         (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
7023
7024 2002-04-24  Jason Thorpe  <thorpej@wasabisystems.com>
7025
7026         * NEWS: Note that Alpha targets are now multi-arch.
7027
7028 2002-04-24  Michael Snyder  <msnyder@redhat.com>
7029
7030         * parser-defs.h (prev_lexptr): New external variable.
7031         * parse.c (parse_exp_1): Set prev_lexptr to null before
7032         calling the language-specific parser.
7033         * c-exp.y (yylex): Set prev_lexptr to start of current token.
7034         (yyerror): Use prev_lexptr in error reporting.
7035
7036 2002-04-24  Daniel Jacobowitz  <drow@mvista.com>
7037
7038         * config/i386/tm-linux.h: Define FILL_FPXREGSET.
7039         * gregset.h: If FILL_FPXREGSET is defined, provide
7040         gdb_fpxregset_t, supply_fpxregset, and fill_fpxregset.
7041         * linux-proc.c (linux_do_thread_registers): If FILL_FPXREGSET
7042         is defined, call fill_fpxregset.
7043
7044 2002-04-24  Roland McGrath  <roland@frob.com>
7045
7046         * config/i386/i386gnu.mh (NATDEPFILES): Add core-regset.o here.
7047         * i386gnu-nat.c [HAVE_SYS_PROCFS_H]
7048         (supply_gregset, supply_fpregset): New functions.
7049
7050         * gnu-nat.c (gnu_find_memory_regions): New function.
7051         (init_gnu_ops): Set `to_find_memory_regions' hook to that.
7052         (gnu_xfer_memory): Add a cast.
7053
7054 2002-04-24  Michael Snyder  <msnyder@redhat.com>
7055
7056         * arm-tdep.c (arm_scan_prologue): Move "mov ip, sp" into the
7057         loop.  Add handling for "str lr, [sp, #-4]!" and for saves
7058         of argument regs ("str r(0123), [r11, #-nn"]).
7059         (arm_skip_prologue): Better handling for frameless functions.
7060         Treat "mov ip, sp" as optional.  Recognize "str lr, [sp, #-4]".
7061         (arm_skip_prologue): Recognize str r(0123), [r11, #-nn].
7062
7063 Wed Apr 24 14:22:21 2002  Andrew Cagney  <cagney@redhat.com>
7064
7065         * arm-tdep.c (arm_gdbarch_init): Add comment that NUM_REGS nor
7066         NUM_PSEUDO_REGS can be used.
7067
7068 2002-04-24  Andrew Cagney  <ac131313@redhat.com>
7069
7070         * arch-utils.h: Update copyright.
7071
7072         * gdbarch.sh (PC_IN_SIGTRAMP): Add.
7073         * gdbarch.h, gdbarch.c: Re-generate.
7074
7075         * inferior.h (IN_SIGTRAMP): Delete definition.
7076         * arch-utils.c (legacy_pc_in_sigtramp): New function.
7077         * arch-utils.h (legacy_pc_in_sigtramp): Declare.
7078
7079         * mips-tdep.c (mips_init_extra_frame_info): Use PC_IN_SIGTRAMP.
7080         (mips_dump_tdep): Do not print value of IN_SIGTRAMP.
7081         * hppa-tdep.c (pc_in_interrupt_handler):  Use PC_IN_SIGTRAMP.
7082         (find_proc_framesize): Ditto.
7083         * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Ditto.
7084         (alpha_init_extra_frame_info): Ditto.
7085         * infrun.c (handle_inferior_event): Ditto.
7086         (handle_inferior_event): Ditto.
7087         (check_sigtramp2): Ditto.
7088         * blockframe.c (create_new_frame): Ditto.
7089         (get_prev_frame): Ditto.
7090         * ppc-linux-tdep.c: Update comments.
7091         * i386-linux-tdep.c: Update comments.
7092         * breakpoint.c (bpstat_what): Update comment.
7093
7094 2002-04-24  David S. Miller  <davem@redhat.com>
7095
7096         * i960-tdep.c (register_in_window_p): New function.
7097         (i960_find_saved_register): Use it instead of
7098         REGISTER_IN_WINDOW_P.
7099         * config/i960/tm-i960.h (REGISTER_IN_WINDOW): Delete.
7100
7101         * symtab.h (find_stab_function_addr): Kill extern.
7102         * minsyms.c (find_stab_function_addr): Remove from here...
7103         * dbxread.c: ... to here, and mark it static.
7104
7105 2002-04-20  David S. Miller  <davem@redhat.com>
7106
7107         * sparc-tdep.c (sparc_pop_frame): Only need to allocate
7108         SPARC_INTREG_SIZE * 16 bytes for reg_temp.
7109
7110 2002-04-21  David S. Miller  <davem@redhat.com>
7111
7112         * remote-vxsparc.c (vx_read_register): Fix typo, we want
7113         REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
7114         (vx_write_register): Likewise.
7115
7116 2002-04-23  J. Brobecker  <brobecker@gnat.com>
7117
7118         * source.c (is_regular_file): New function.
7119         (openp): Check wether file to open is a regular file
7120         to avoid opening directories.
7121
7122 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
7123
7124         * findvar.c (extract_signed_integer): Cast printf argument
7125         to suppress format warning.
7126         (extract_unsigned_integer): Likewise.
7127         * infcmd.c (registers_info): Likewise.
7128         * top.c (get_prompt_1): Likewise.
7129         * valops.c (value_assign): Likewise.
7130         * valprint.c (print_decimal): Likewise.
7131
7132 2002-04-22  H.J. Lu  (hjl@gnu.org)
7133
7134         * c-exp.y (typebase): Support
7135
7136         [long|long long|short] [signed|unsigned] [int|]
7137
7138         and
7139
7140         signed [long|long long|short] int
7141
7142 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
7143
7144         * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
7145         and vax-tdep.h.
7146         * vax-tdep.h: New file.
7147         * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
7148         Make several routines static.
7149         (vax_get_saved_register): New function.
7150         (vax_gdbarch_init): New function.
7151         (_initialize_vax_tdep): Register vax_gdbarch_init.
7152         * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
7153         Remove macros now under the control of gdbarch.
7154
7155 2002-04-22  Michael Snyder  <msnyder@redhat.com>
7156
7157         * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
7158         Some whitespace and coding standards tweaks.
7159
7160 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
7161
7162         * vax-tdep.c: Include regcache.h.
7163         (vax_call_dummy_words): New.
7164         (sizeof_vax_call_dummy_words): New.
7165         (vax_fix_call_dummy): New function.
7166         (vax_saved_pc_after_call): Ditto.
7167         * config/vax/tm-vax.h: Don't include regcache.h.
7168         (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
7169         (CALL_DUMMY): Remove.
7170         (CALL_DUMMY_WORDS): Define.
7171         (SIZEOF_CALL_DUMMY_WORDS): Define.
7172         (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
7173
7174 2002-04-18  Michael Snyder  <msnyder@redhat.com>
7175
7176         * arm-tdep.h: Change regnum defines to enums for ease of debugging.
7177
7178 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
7179
7180         * vax-tdep.c (vax_frame_chain): New function.
7181         (vax_push_dummy_frame): Ditto.
7182         (vax_pop_frame): Ditto.
7183         * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
7184         (FRAMELESS_FUNCTION_INVOCATION): Use
7185         generic_frameless_function_invocation_not.
7186         (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
7187         (POP_FRAME): Use vax_pop_frame.
7188
7189 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
7190
7191         * vax-tdep.c (vax_store_struct_return): New function.
7192         (vax_extract_return_value): Ditto.
7193         (vax_store_return_value): Ditto.
7194         (vax_extract_struct_value_address): Ditto.
7195         * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
7196         vax_store_struct_return.
7197         (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
7198         (STORE_RETURN_VALUE): Use vax_store_return_value.
7199         (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
7200
7201 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
7202
7203         * vax-tdep.c (vax_frame_saved_pc): New function.
7204         (vax_frame_args_address_correct): Ditto.
7205         (vax_frame_args_address): Ditto.
7206         (vax_frame_locals_address): Ditto.
7207         (vax_frame_num_args): Move code to be in proximity to
7208         other frame-related functions.
7209         * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
7210         (FRAME_SAVED_PC): Use vax_frame_saved_pc.
7211         (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
7212         (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
7213         (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
7214
7215 2002-04-22  H.J. Lu  (hjl@gnu.org)
7216
7217         * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
7218         includedir.
7219
7220 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
7221
7222         * vax-tdep.c (vax_frame_init_saved_regs): New function.
7223         * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
7224         (FRAME_INIT_SAVED_REGS): New macro.
7225
7226 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
7227
7228         * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
7229
7230 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
7231
7232         * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
7233         where needed.
7234         (fetch_osf_core_registers): Likewise.
7235         (supply_gregset): Likewise.
7236
7237 2002-04-22  J. Brobecker  <brobecker@gnat.com>
7238
7239         * symfile.h (get_section_index): Define.
7240         * symfile.c (get_section_index): New function.
7241         * mdebugread.c (SC_IS_SBSS): New macro.
7242         (SC_IS_BSS): Return true for the scBss storage class only, as
7243         the scSBss storage class refers to the .sbss section.
7244         (parse_partial_symbols): Discard the symbols which associated
7245         section does not exist.
7246         Make sure to use the .sbss section index for symbols which
7247         storage class is scBss, rather than using the .bss section index.
7248
7249 2002-04-22  Jason Thorpe  <thorpej@wasabisystems.com>
7250
7251         * vax-tdep.c: Update copyright years.
7252         (vax_register_name): New function.
7253         (vax_register_byte): Ditto.
7254         (vax_register_raw_size): Ditto.
7255         (vax_register_virtual_size): Ditto.
7256         (vax_register_virtual_type): Ditto.
7257         * config/vax/tm-vax.h: Update copyright years.
7258         (REGISTER_NAMES): Remove.
7259         (REGISTER_NAME): Define.
7260         (REGISTER_BYTE): Use vax_register_byte.
7261         (REGISTER_RAW_SIZE): Use vax_register_raw_size.
7262         (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
7263         (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
7264
7265 2002-04-21  Andrew Cagney  <ac131313@redhat.com>
7266
7267         * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
7268         declaration
7269         * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
7270
7271 2002-04-21  David S. Miller  <davem@redhat.com>
7272
7273         * arch-utils.c (generic_prologue_frameless_p): Kill
7274         SKIP_PROLOGUE_FRAMELESS_P code.
7275         * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
7276         references.
7277         (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
7278         * arc-tdep.c (arc_prologue_frameless_p): Implement.
7279         * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
7280         references.
7281         (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
7282         * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
7283         (sparc_gdbarch_init): Pass it to
7284         set_gdbarch_prologue_frameless_p.
7285
7286 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
7287
7288         * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
7289         (alphabsd-nat.o): New dependency list.
7290
7291 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
7292
7293         * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
7294         alphafbsd-tdep.c.
7295         (alpha-linux-tdep.o): New dependency list.
7296         (alphafbsd-tdep.o): Likewise.
7297
7298 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
7299
7300         * alpha-linux-tdep.c: New file.  Move alpha_linux_sigtramp_offset
7301         to here...
7302         * alpha-tdep.c: ...from here.
7303         * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
7304
7305 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
7306
7307         * config/alpha/tm-alpha.h: Move alpha_software_single_step
7308         prototype from here...
7309         * alpha-tdep.h: ...to here.
7310
7311 2002-04-21  Andrew Cagney  <ac131313@redhat.com>
7312
7313         * frame.h (selected_frame_level): Document as deprecated.
7314         (frame_relative_level): Declare.
7315         * stack.c (frame_relative_level): New function.
7316         (selected_frame_level): Document as deprecated.
7317         (select_frame): Do not set the selected_frame_level.
7318
7319         * stack.c (frame_info, record_selected_frame): Update.
7320         (frame_command, current_frame_command): Update.
7321         (up_silently_base, up_command, down_silently_base): Update.
7322         (down_command): Update.
7323         * inflow.c (kill_command): Update.
7324         * tracepoint.c (finish_tfind_command): Update.
7325         * corelow.c (core_open): Update.
7326         * thread.c (info_threads_command): Update.
7327         (do_captured_thread_select): Update.
7328         * infcmd.c (finish_command): Update.
7329         * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
7330
7331 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
7332
7333         * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
7334
7335 2002-04-21  Andrew Cagney  <ac131313@redhat.com>
7336
7337         * arm-tdep.c (arm_breakpoint_from_pc): Make static.  Make return
7338         type const.
7339
7340 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
7341
7342         * alphafbsd-tdep.c: Update copyright years.  Include
7343         alpha-tdep.h.
7344         (alphafbsd_use_struct_convention): Make static.
7345         (alphafbsd_init_abi): New function.
7346         (_initialize_alphafbsd_tdep): New function.
7347         * config/alpha/tm-fbsd.h: Update copyright years.
7348         (USE_STRUCT_CONVENTION): Remove.
7349
7350 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
7351
7352         * alpha-tdep.c (alpha_abi_handler): New structure to describe
7353         an Alpha ABI variant.
7354         (alpha_abi_handler_list): Declare.
7355         (alpha_gdbarch_register_os_abi): New function.
7356         (alpha_gdbarch_init): Give registered ABI variant handlers a
7357         chance to tweak the gdbarch once we have set up defaults.
7358         * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
7359
7360 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
7361
7362         * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
7363         to standard_coerce_float_to_double.
7364         * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
7365
7366 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
7367
7368         * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
7369         * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
7370         from gdbarch_tdep rather than a constant.
7371         (alpha_gdbarch_init): Initialize tdep->vm_min_address to
7372         the default text address for all Alpha Unix ABIs.
7373         (alpha_dump_tdep): Report the value of tdep->vm_min_address.
7374         * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
7375
7376 2002-04-21  Jason Thorpe  <thorpej@wasabisystems.com>
7377
7378         * alpha-tdep.h: New file.  Includes several Alpha target constants
7379         taken from...
7380         * config/alpha/tm-alpha.h: ...here.  Remove macros that we now
7381         let gdbarch deal with.
7382         (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
7383         * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
7384         to dependency list.
7385         * alpha-nat.c: Include alpha-tdep.h.  Update for adjusted
7386         Alpha target register names.
7387         * alphabsd-nat.c: Likewise.
7388         * alpha-tdep.c: Include alpha-tdep.h.  Update for adjusted
7389         Alpha target register names.  Make serveral routines static.
7390         (alpha_get_saved_register): New function.
7391         (alpha_abi_names): New.
7392         (process_note_abi_tag_sections): New function.
7393         (get_elfosabi): New function.
7394         (alpha_gdbarch_init): New function.
7395         (alpha_dump_tdep): New function.
7396         (_initialize_alpha_tdep): Register alpha_gdbarch_init.
7397
7398 2002-04-21  Andrew Cagney  <ac131313@redhat.com>
7399
7400         * frame.c (find_saved_register): Delete #ifdef
7401         HAVE_REGISTER_WINDOWS code.
7402         * config/sparc/tm-sparc.h: Update comments.
7403         * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
7404
7405 2002-04-21  Andrew Cagney  <ac131313@redhat.com>
7406
7407         * i960-tdep.c (i960_find_saved_register): New function.
7408         (i960_get_saved_register): New function.
7409         * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
7410         (i960_get_saved_register): Declare.
7411         * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
7412
7413 2002-04-20  David S. Miller  <davem@redhat.com>
7414
7415         * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
7416
7417 2002-04-20  Andrew Cagney  <ac131313@redhat.com>
7418
7419         * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
7420         instead of NUM_PSEUDO_REGS.
7421
7422 2002-04-20  David S. Miller  <davem@redhat.com>
7423
7424         * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
7425         GDB_MULTI_ARCH_PARTIAL
7426         * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
7427         define, let tm-sp64.h do it.
7428
7429 2002-04-20  Jason Thorpe  <thorpej@wasabisystems.com>
7430
7431         * frame.c (find_saved_register): Avoid a NULL pointer
7432         dereference and actually walk the frame list.
7433
7434 2002-04-20  Andrew Cagney  <ac131313@redhat.com>
7435
7436         * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
7437         sorted in most most-recent-used order.  Document.
7438         * gdbarch.h, gdbarch.c: Regenerate.
7439
7440 2002-04-19  Andrew Cagney  <ac131313@redhat.com>
7441
7442         * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
7443         instead of ->prev.
7444         * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
7445         * s390-tdep.c (s390_frame_chain): Do not use ->prev.
7446         * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
7447         instead of ->prev.
7448
7449 2002-04-19  Elena Zannoni  <ezannoni@redhat.com>
7450
7451         Fix PR gdb/471.
7452         * gdbtypes.c (init_simd_type): Rewrite using new functions.
7453         (build_builtin_type_vec128): Ditto.
7454         (append_composite_type_field): Fix calculation of type length in
7455         union case.
7456
7457 2002-04-19  Eli Zaretskii  <eliz@is.elta.co.il>
7458
7459         * config/djgpp/README: Update.
7460
7461         * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
7462         compiler warnings.
7463
7464 2002-04-19  Jason Thorpe  <thorpej@wasabisystems.com>
7465
7466         * alpha-tdep.c (setup_arbitrary_frame): Rename...
7467         (alpha_setup_arbitrary_frame): ...to this.
7468         * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
7469         for alpha_setup_arbitrary_frame.
7470
7471 2002-04-18  Andrew Cagney  <cagney@redhat.com>
7472
7473         * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
7474         * gdbarch.h, gdbarch.c: Regenerate.
7475
7476         * defs.h (breakpoint_from_pc_fn): Delete type definition.
7477         * target.h (memory_breakpoint_from_pc): Update declaration.
7478         * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
7479
7480         * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
7481         * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
7482         * mem-break.c (memory_breakpoint_from_pc): Ditto.
7483         * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
7484         * s390-tdep.c (s390_breakpoint_from_pc): Ditto
7485         * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
7486         * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
7487         * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
7488         * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
7489         * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
7490         * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
7491         * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
7492
7493         * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
7494         const pointer.
7495         * monitor.c (monitor_insert_breakpoint): Ditto.
7496         * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
7497
7498         * config/mcore/tm-mcore.h: Update copyright.
7499         * mem-break.c: Ditto.
7500         * xstormy16-tdep.c: Ditto.
7501
7502 2002-04-18  Pierre Muller  <muller@ics.u-strasbg.fr>
7503
7504         * p-exp.y: Add precedence rule for '^' token.
7505         This removes the shift/reduce conflicts.
7506         Remove the comment concerning these shift/reduce conflicts.
7507
7508 2002-04-18  Elena Zannoni  <ezannoni@redhat.com>
7509
7510         * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
7511         (registers_powerpc_nofp): New register set for processors
7512         without floating point unit.
7513
7514 2002-04-18  David S. Miller  <davem@redhat.com>
7515
7516         * MAINTAINERS: Add myself to write-after-approval.
7517
7518 2002-04-17  Michael Snyder  <msnyder@redhat.com>
7519
7520         * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
7521
7522 2002-04-17  Andrew Cagney  <ac131313@redhat.com>
7523
7524         * rs6000-tdep.c (frame_initial_stack_address): Use
7525         frame_register_read to read the alloca_reg.
7526
7527 2002-04-17  Andrew Cagney  <ac131313@redhat.com>
7528
7529         * frame.c (find_saved_register): Find saved registers in the next
7530         not prev frame.
7531         Fix PR gdb/365.
7532
7533 2002-04-17  Andrew Cagney  <ac131313@redhat.com>
7534
7535         * gdbarch.sh (LANG): Set to ``c''.
7536
7537 2002-04-15  Andrew Cagney  <ac131313@redhat.com>
7538
7539         * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
7540
7541 2002-04-15  Andrew Cagney  <ac131313@redhat.com>
7542
7543         * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
7544         Update copyright.
7545
7546         * hpread.c (hpread_get_lntt): Add declaration.
7547         Also fix PR gdb/391.
7548
7549 2002-04-14  Andrew Cagney  <ac131313@redhat.com>
7550
7551         * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
7552         * aclocal.m4, configure: Re-generate.
7553         Fix PR gdb/391.
7554
7555 2002-04-14  Elena Zannoni  <ezannoni@redhat.com>
7556
7557         * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
7558         instead of tm_print_insn.
7559
7560 2002-04-14  Elena Zannoni  <ezannoni@redhat.com>
7561
7562         * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
7563
7564 2002-04-14  Andrew Cagney  <ac131313@redhat.com>
7565
7566         * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
7567         * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
7568         (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
7569
7570 2002-04-12  Don Howard  <dhoward@redhat.com>
7571
7572         * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
7573         max_user_call_depth.
7574         (init_cmd_lists): Initialize the new value;
7575         * cli/cli-script.c (execute_user_command): Limit the call depth of
7576         user defined commands.  This avoids a core-dump when user commands
7577         are infinitly recursive.
7578
7579 2002-04-12  Kevin Buettner  <kevinb@redhat.com>
7580
7581         * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
7582         * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
7583         from tdep struct instead of DEFAULT_LR_SAVE.
7584         (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
7585         * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
7586         * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
7587
7588 2002-04-12  Michael Snyder  <msnyder@redhat.com>
7589
7590         * Remote.c: Spelling fix.
7591         * gcore.c (default_derive_heap_segment): Use bfd_section_name.
7592         If no symbol found for "sbrk", try "_sbrk".
7593         (make_output_phdrs): Use bfd_section_name.
7594         (gcore_copy_callback): Use bfd_section_name.
7595         * eval.c: Indentation fix-ups.
7596         * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
7597         in case it gets applied to an address that is already
7598         in the instruction space.
7599         * cli/cli-decode.c (help_list): Allow long lines to wrap.
7600         * symfile.c: Fix indentation, long lines.
7601         * source.c: White space fix-up.
7602
7603 2002-04-12  Andrew Cagney  <cagney@redhat.com>
7604
7605         * defs.h (read_relative_register_raw_bytes): Delete declaration.
7606         * frame.c (frame_register_read): New function.  Return non-zero on
7607         success.
7608         (read_relative_register_raw_bytes_for_frame): Delete.
7609         (read_relative_register_raw_bytes): Delete.
7610         * frame.h (frame_register_read): Declare.
7611         * d30v-tdep.c: Update Copyright.  Use frame_register_read.
7612         * sh-tdep.c: Ditto.
7613         * infcmd.c (do_registers_info): Ditto.
7614         * hppa-tdep.c: Ditto.
7615         * rs6000-tdep.c: Ditto.
7616         * h8500-tdep.c: Ditto.
7617         * mips-tdep.c: Ditto.
7618         * h8300-tdep.c: Ditto.
7619         * z8k-tdep.c: Ditto.
7620
7621 2002-04-12  Kevin Buettner  <kevinb@redhat.com>
7622
7623         From Jimi X <jimix@watson.ibm.com>:
7624         * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
7625         64-bit SysV ABI.
7626
7627 2002-04-12  Kevin Buettner  <kevinb@redhat.com>
7628
7629         From Jimi X <jimix@watson.ibm.com>:
7630         * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
7631         bfd info.
7632
7633 2002-04-12  Kevin Buettner  <kevinb@redhat.com>
7634
7635         From Jimi X <jimix@watson.ibm.com>:
7636         * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
7637         register sets for these processor variants.
7638
7639 2002-04-11  Daniel Jacobowitz  <drow@mvista.com>
7640
7641         * regformats/reg-ppc.dat: Support FPSCR.
7642
7643 2002-04-11  Kevin Buettner  <kevinb@redhat.com>
7644
7645         * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
7646         * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
7647         Add fpscr as an invalid/unfetchable register.
7648         * ppc-linux-nat.c (ppc_register_u_addr, store_register)
7649         (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
7650         (fill_fpregset): Add support for register fpscr.
7651         (fetch_ppc_registers, store_ppc_registers, supply_gregset)
7652         (fill_gregset): Account for the fact that register ``mq'' might
7653         not exist.
7654         * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
7655         (registers_power): Add fpscr to register set at slot 71.
7656         (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
7657         exist on most PPC architectures.  Initialize ppc_fpscr_regnum.
7658
7659 2002-04-11  Michael Snyder  <msnyder@redhat.com>
7660
7661         * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
7662         * configure: Regenerate.
7663         * config.in: Regenerate.
7664         * acconfig.h: Add define for _SYSCALL32.
7665         * core-sol2.c: Remove #define _SYSCALL32.
7666         * solib-legacy.c: Remove #define _SYSCALL32.
7667
7668 2002-04-10  Andrew Cagney  <ac131313@redhat.com>
7669
7670         * stack.c (select_frame): Cleanup internal error message, do not
7671         use %p.
7672
7673 2002-04-10  Andrew Cagney  <ac131313@redhat.com>
7674
7675         * stack.c (select_frame): Check that selected_frame and the
7676         specified level are as expected.
7677         * blockframe.c (get_prev_frame): Set the `level' from next_frame.
7678         Update copyright.
7679         * frame.h (struct frame_info): Add field `level'.  Update
7680         copyright.
7681         Work-in-progress PR gdb/464.
7682
7683 2002-04-10  Andrew Cagney  <ac131313@redhat.com>
7684
7685         * maint.c (maint_print_section_info): Rename print_section_info.
7686         (print_bfd_section_info, print_objfile_section_info): Update.
7687         * inferior.h (struct gdbarch): Add opaque declaration.
7688         * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
7689         * gdbarch.h: Regenerate.
7690
7691 2002-04-10  Michal Ludvig  <mludvig@suse.cz>
7692
7693         * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
7694         (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
7695         (kernel_u_size): Added.
7696         * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
7697         (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
7698
7699 2002-04-04  Jim Ingham  <jingham@apple.com>
7700
7701        * valarith.c (find_size_for_pointer_math): New function, either returns
7702        the size for a pointer's target, returns 1 for void *, or errors for
7703        incomplete types.
7704        (value_add, value_sub): use find_size_for_pointer_math.
7705
7706 2002-04-09  Daniel Jacobowitz  <drow@mvista.com>
7707
7708         * linux-low.c (linux_look_up_symbols): New hook.
7709         (linux_target_ops): Add linux_look_up_symbols.
7710         * remote-utils.c (decode_address): New function.
7711         (look_up_one_symbol): New function.
7712         * server.c (handle_query): Call target look_up_symbols hook.
7713         * server.h (look_up_one_symbol): Add prototype.
7714         * target.h (struct target_ops): Add look_up_symbols hook.
7715
7716 2002-04-09  Andrew Cagney  <ac131313@redhat.com>
7717
7718         * frame.c (read_relative_register_raw_bytes_for_frame): Do not
7719         override FP_REGNUM with frame->fp.  Update copyright.
7720         * parse.c (num_std_regs, std_regs): Delete.
7721         (target_map_name_to_register): Do not search std_regs.  Update
7722         function description.
7723         * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
7724         declarations.  Update copyright.
7725         Fix PR gdb/251.
7726
7727 2002-04-09  Daniel Jacobowitz  <drow@mvista.com>
7728
7729         * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
7730         after the last symbol in a block.
7731
7732 2002-04-09  Pierre Muller  <muller@ics.u-strasbg.fr>
7733
7734         * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
7735         is non zero as a found symbol.
7736
7737 2002-04-08  Andrew Cagney  <ac131313@redhat.com>
7738
7739         * findvar.c: Include "builtin-regs.h".
7740         (value_of_register): Call value_of_builtin_reg when applicable.
7741         * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
7742         (target_map_name_to_register): Call
7743         builtin_reg_map_name_to_regnum.
7744         * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
7745         (COMMON_OBS): Add builtin-regs.o and std-regs.o.
7746         (builtin_regs_h): Define.
7747         (builtin-regs.o): New target.
7748         (findvar.o): Add $(builtin_regs_h).
7749         * builtin-regs.c, builtin-regs.h: New files.
7750         * std-regs.c: New file.
7751         Partial fix for PR gdb/251.
7752
7753 2002-04-08  Kevin Buettner  <kevinb@redhat.com>
7754
7755         * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
7756         it's no longer required.
7757
7758 2002-04-08  Andrew Cagney  <ac131313@redhat.com>
7759
7760         * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
7761
7762 2002-04-08  Kevin Buettner  <kevinb@redhat.com>
7763
7764         From Jimi X <jimix@watson.ibm.com>:
7765         * rs6000-tdep.c (rs6000_software_single_step): Use
7766         rs6000_breakpoint_from_pc() to fetch breakpoint instruction
7767         and size.  Use target_insert_breakpoint() and
7768         target_remove_breakpoint() to insert and remove breakpoints
7769         instead of explicit memory reads and writes.
7770
7771 2002-04-08  Kevin Buettner  <kevinb@redhat.com>
7772
7773         * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
7774         * rs6000-tdep.c (rs6000_push_arguments): Eliminate
7775         ELF_OBJECT_FORMAT ifdef.
7776
7777 2002-04-08  Kevin Buettner  <kevinb@redhat.com>
7778
7779         From Jimi X <jimix@watson.ibm.com>:
7780         * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
7781
7782 2002-04-08  Kevin Buettner  <kevinb@redhat.com>
7783
7784         From Jimi X <jimix@watson.ibm.com>:
7785         * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
7786         definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
7787
7788 2002-04-07  Mark Kettenis  <kettenis@gnu.org>
7789
7790         * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
7791         s/asprintf/xasprintf/.
7792         (fbsd_make_corefile_notes): s/strdup/xstrdup/.
7793
7794 2002-04-07  Andrew Cagney  <ac131313@redhat.com>
7795
7796         I believe Jeff Law denies responsability for this one:
7797         * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
7798         * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
7799         * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
7800         Work-around for PR gdb/366.
7801
7802 2002-04-07  Elena Zannoni  <ezannoni@redhat.com>
7803
7804         * remote-e7000.c (write_small, e7000_read_inferior_memory,
7805         e7000_read_inferior_memory_large, e7000_insert_breakpoint,
7806         e7000_remove_breakpoint): Use paddr_nz() to print addresses.
7807
7808 2002-04-07  Elena Zannoni  <ezannoni@redhat.com>
7809
7810         * sh-tdep.c (sh_fp_frame_init_saved_regs,
7811         sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
7812         information.
7813
7814 2002-04-07  Andrew Cagney  <ac131313@redhat.com>
7815
7816         * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
7817         maintainer.
7818
7819 2002-04-07  Andrew Cagney  <ac131313@redhat.com>
7820
7821         * README (Reporting Bugs in GDB): Document the bug web page as the
7822         prefered way of submitting bugs.
7823         Fix PR gdb/402.
7824
7825 2002-04-06  Andrew Cagney  <ac131313@redhat.com>
7826
7827         * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
7828         -1.  Update comment.
7829         * gdbarch.h, gdbarch.c: Re-generate.
7830
7831 2002-04-07  Andreas Schwab  <schwab@suse.de>
7832
7833         * m68klinux-nat.c (fill_fpregset): Properly pass address of
7834         buffer to regcache_collect.
7835
7836 2002-04-06  Andrew Cagney  <ac131313@redhat.com>
7837
7838         * gdbarch.sh (PS_REGNUM): Add.  Document.  Default to -1.
7839         * gdbarch.c, gdbarch.h: Re-generate.
7840
7841 2002-04-06  Andrew Cagney  <ac131313@redhat.com>
7842
7843         * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
7844         declaration.  Fix -Werror.
7845
7846 2002-04-05  Daniel Jacobowitz  <drow@mvista.com>
7847
7848         * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
7849         * gdbarch.c: Regenerate.
7850
7851 2002-04-05  Michael Snyder  <msnyder@redhat.com>
7852
7853         * breakpoint.c (clear_command): Rewrite middle section to
7854         combine two loops with identical control conditions.
7855         Add a cleanup to eliminate a memory leak.
7856         * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
7857
7858 2002-04-05  H.J. Lu  (hjl@gnu.org)
7859
7860         * solib-svr4.c (bkpt_names): Add "__start".
7861
7862 2002-04-04  Andrew Cagney  <ac131313@redhat.com>
7863
7864         * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
7865         as test for 64 bit target.
7866
7867 2002-04-05  Andrew Cagney  <ac131313@redhat.com>
7868
7869         * h8500-tdep.c (h8500_write_fp): Delete function.
7870         * dwarf2cfi.c (cfi_write_fp): Document as not used.
7871         * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
7872         * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
7873         * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
7874         * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
7875         * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
7876         (s390_write_fp):
7877         * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
7878         * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
7879         * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
7880         (d10v_write_fp): Delete function.
7881         * inferior.h (write_fp, generic_target_write_fp): Delete
7882         declarations.
7883         * regcache.c (generic_target_write_fp): Delete function.
7884         (write_fp): Delete function.
7885         * gdbarch.sh (TARGET_WRITE_FP): Delete.
7886         * gdbarch.h, gdbarch.c: Regenerate.
7887         * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
7888         * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
7889         (sparc64_write_fp): Delete declaration.
7890         * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
7891         (h8500_write_fp): Delete declaration.
7892
7893 2002-04-04  Andrew Cagney  <ac131313@redhat.com>
7894
7895         * sparc-tdep.c (sparc64_write_fp): Delete.
7896         (sparc_push_dummy_frame): Replace write_fp call with code to store
7897         the FP directly.
7898         (sparc_gdbarch_init): Do not initialize write_fp.
7899
7900 2002-04-05  Kevin Buettner  <kevinb@redhat.com>
7901
7902         * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
7903         clause.
7904
7905 2002-03-29  Jim Blandy  <jimb@redhat.com>
7906
7907         * stack.c (get_selected_block): Add new argument `addr_in_block',
7908         used to return the exact code address we used to select the block,
7909         not just the block.
7910         * blockframe.c (get_frame_block, get_current_block): Same.
7911         * frame.h (get_frame_block, get_current_block,
7912         get_selected_block): Update declarations.
7913         * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
7914         linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
7915
7916 2002-04-05  Michael Snyder  <msnyder@redhat.com>
7917
7918         * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
7919         warning message.
7920
7921 2002-04-05  J. Brobecker  <brobecker@gnat.com>
7922
7923         * utils.c (xfullpath): New function.
7924         * defs.h (xfullpath): Add declaration.
7925         * source.c (openp): Use xfullpath in place of gdb_realpath to
7926         avoid resolving the basename part of filenames when the
7927         associated file is a symbolic link. This fixes a potential
7928         inconsistency between the filenames known to GDB and the
7929         filenames it prints in the annotations.
7930         * symtab.c (lookup_symtab): Use the new xfullpath function, in order
7931         to be able to match a filename with either the real filename, or
7932         the name of any symbolic link to this file.
7933         (lookup_partial_symtab): Ditto.
7934
7935 2002-04-04  Michael Snyder  <msnyder@redhat.com>
7936
7937         * breakpoint.c: Add support for hardware breakpoints in overlays.
7938         (overlay_events_enabled): New state variable.
7939         (insert_breakpoints): Use overlay_events_enabled to decide
7940         whether to attempt to set a breakpoint at the overlay load addr.
7941         Handle bp_hardware_breakpoint as well as bp_breakpoint.
7942         (remove_breakpoint): Use overlay_events_enabled to decide
7943         whether breakpoints need to be removed from overlay load addr.
7944         Handle bp_hardware_breakpoint as well as bp_breakpoint.
7945         (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
7946         (create_overlay_event_breakpoint, enable_overlay_breakpoints,
7947         disable_overlay_breakpoints): Update overlay_events_enabled.
7948
7949 2002-04-04  Daniel Jacobowitz  <drow@mvista.com>
7950
7951         * dwarf2read.c (struct function_range): New.
7952         (cu_first_fn, cu_last_fn, cu_cached_fn): New.
7953         (check_cu_functions): New.
7954         (read_file_scope): Initialize global function lists.
7955         Call dwarf_decode_line after processing children.
7956         (read_func_scope): Add to global function list.
7957         (dwarf_decode_lines): Call check_cu_functions everywhere
7958         record_line is called.  Call record_line with a linenumber
7959         of 0 to mark sequence ends.
7960
7961 2002-04-04  Michal Ludvig  <mludvig@suse.cz>
7962
7963         * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
7964         change sync with glibc.
7965
7966 2002-04-03  Jim Blandy  <jimb@redhat.com>
7967
7968         * configure.in: Call AC_C_INLINE.
7969         * configure: Regenerated.
7970
7971 2002-04-01  Daniel Jacobowitz  <drow@mvista.com>
7972
7973         * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
7974         and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
7975
7976 2002-03-31  Mark Kettenis  <kettenis@gnu.org>
7977
7978         * NEWS: Mention gcore support on FreeBSD/i386.
7979
7980         * fbsd-proc.c: New file.
7981         * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
7982         * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
7983
7984         * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
7985         while statement.
7986
7987 2002-03-29  Jim Blandy  <jimb@redhat.com>
7988
7989         * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
7990         unescaped newlines in string literals, but newer ones don't.  So
7991         escape them.
7992
7993 2002-03-26  Michael Snyder  <msnyder@redhat.com>
7994             Andrew Cagney <cagney@redhat.com>
7995
7996         * cli/cli-dump.c: New file.  Dump memory to file,
7997         restore file to memory.
7998         * cli/cli-dump.h: New file.
7999         * Makefile.in: Add rules, dependencies for cli-dump.o.
8000         * NEWS: Mention new commands.
8001
8002 2002-03-28  Michael Snyder  <msnyder@redhat.com>
8003
8004         * symfile.c (symbol_file_add): Move test for null symbols to later.
8005
8006 2002-03-27  Andrew Cagney  <ac131313@redhat.com>
8007
8008         From veksler at il.ibm.com:
8009         * utils.c (gdb_realpath): If canonicalize_file_name fails, return
8010         the xstrduped original path.
8011         Fix PR gdb/417.
8012
8013 2002-03-27  Michael Snyder  <msnyder@redhat.com>
8014
8015         * breakpoint.c (_initialize_breakpoint): Clean up help string.
8016         * infcmd.c (_initialize_infcmd): Ditto.
8017         * language.c (_initialize_language): Ditto.
8018         * symfile.c (_initialize_symfile): Ditto.
8019         * top.c (_init_main): Ditto.
8020         * cli/cli-cmds.c (init_cli_cmds): Ditto.
8021
8022 2002-03-27  Elena Zannoni  <ezannoni@redhat.com>
8023
8024         * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
8025         vector registers handling.
8026         (skip_prologue): Handle new AltiVec instructions.  Fill in new
8027         fields of frame data.
8028         (frame_get_saved_regs): Fill in information for AltiVec registers.
8029
8030 2002-03-27  Jim Blandy  <jimb@redhat.com>
8031
8032         * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
8033         a function; leave this macro here to invoke that function.
8034         (symbol_init_mangled_name): Declaration for that function.
8035         * symtab.c (symbol_init_mangled_name): New function.
8036
8037 2002-03-27  Andrew Cagney  <ac131313@redhat.com>
8038
8039         * valarith.c: Replace strerror with safe_strerror.
8040         * tracepoint.c: Ditto.
8041         * lin-lwp.c: Ditto.
8042         * go32-nat.c: Ditto.
8043         * inflow.c: Ditto.
8044         * gnu-nat.c: Ditto.
8045
8046 2002-03-27  Andreas Schwab  <schwab@suse.de>
8047
8048         * event-top.c (command_line_handler): Remove useless if.
8049
8050 2002-03-27  Andreas Jaeger  <aj@suse.de>
8051
8052         * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
8053         comment.
8054
8055 2002-03-27  Michal Ludvig  <mludvig@suse.cz>
8056
8057         * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
8058         (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
8059         * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
8060         (x86_64_linux_dr_get_status, supply_gregset),
8061         (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
8062         * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
8063         (x86_64_register_info_table): Add.
8064         (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
8065         (x86_64_register_raw_size, x86_64_register_virtual_type),
8066         (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
8067         general x86_64_register_info_table.
8068         (i386_gdbarch_init): gdbarch_register_bytes is now set
8069         dynamicaly during initialization.
8070         * regformats/reg-x86-64.dat: Synced with changes to registers above.
8071         * gdbserver/linux-x86-64-low.c: Ditto.
8072
8073 2002-03-27  Daniel Jacobowitz  <drow@mvista.com>
8074
8075         * gdbserver/server.c (main): Call target_signal_to_host_p
8076         and target_signal_to_host on signals received from the remote.
8077         * gdbserver/remote-utils.c (prepare_resume_reply): Call
8078         target_signal_from_host on signals sent to the remote.
8079         * gdbserver/server.h: Add prototypes.  Include "gdb/signals.h".
8080         * gdbserver/Makefile.in: Add signals.o.  Add -I${INCLUDE_DIR}.
8081
8082 2002-03-27  Daniel Jacobowitz  <drow@mvista.com>
8083
8084         * signals/signals.c: Include "server.h" in gdbserver build.
8085         (target_signal_from_name): Don't use STREQ.
8086         (_initialize_signals): Likewise.  Don't include function in
8087         gdbserver build.
8088
8089 2002-03-27  Daniel Jacobowitz  <drow@mvista.com>
8090
8091         * signals.c: Moved to...
8092         * signals/signals.c: Here.
8093         * Makefile (signals.o): Update.
8094
8095 2002-03-26  Jeff Law (law@redhat.com)
8096
8097         * somread.c (som_symtab_read): Remove some commented out code and
8098         updated related comments.  Do not set the minimal symbol table to
8099         mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
8100         in a dynamic executable.
8101         * hppa-tdep.c (find_proc_framesize): Sanely handle the case
8102         where we are unable to find the minimal symbol for the given
8103         PC value.
8104
8105 2002-03-25  Jeff Law (law@redhat.com)
8106
8107         * linux-proc.c (read_mapping): Scan up to end of line for filename.
8108
8109 2002-03-25  Michal Ludvig  <mludvig@suse.cz>
8110
8111         * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
8112
8113 2002-03-23  Andrew Cagney  <ac131313@redhat.com>
8114
8115         * command.h: Update copyright.
8116         (struct cmd_list_element): Replace definition with opaque
8117         declaration.
8118         (enum cmd_types): Document that it will eventually be moved to
8119         cli/cli-decode.h
8120         (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
8121         (MALLOCED_REPLACEMENT): Delete macro.
8122         * Makefile.in (cli_decode_h): Add $(command_h).
8123         (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
8124         * top.c: Include "cli/cli-decode.h".
8125         * completer.c: Include "cli/cli-decode.h".
8126         * maint.c: Include "cli/cli-decode.h".
8127         * cli/cli-decode.h: Include "command.h".
8128         (enum command_class): Delete.
8129         (enum cmd_types): Comment out.
8130         (enum cmd_auto_boolean): Delete.
8131         (enum var_types): Delete.
8132
8133 2002-03-23  Andrew Cagney  <ac131313@redhat.com>
8134
8135         * cli/cli-decode.c: Include "gdb_assert.h".
8136         (add_set_or_show_cmd): New static function.
8137         (add_set_cmd): Rewrite.  Use add_set_or_show_cmd.
8138         (add_show_from_set): Rewrite. Use add_set_or_show_cmd.  Don't copy
8139         all fields, such as func, from the set command.
8140
8141 2002-03-23  Andrew Cagney  <ac131313@redhat.com>
8142
8143         * MAINTAINERS (sh-elf): Change warning flag to -w.
8144
8145 2002-03-23  Andrew Cagney  <cagney@redhat.com>
8146
8147         * defs.h (error): Add printf format attribute.
8148         * thread-db.c (thread_from_lwp): Fix error format string.
8149         * stack.c (parse_frame_specification): Ditto.
8150         * cli/cli-decode.c (undef_cmd_error): Ditto.
8151         * scm-lang.c (scm_lookup_name): Ditto.
8152         * tracepoint.c (trace_error): Ditto.
8153         * remote-utils.c (usage): Ditto.
8154         * remote.c (compare_sections_command): Ditto.
8155         Fix PR gdb/328.
8156
8157 2002-03-22  Andrew Cagney  <ac131313@redhat.com>
8158
8159         * gdbtypes.c (append_composite_type_field): New function.
8160         (init_composite_type): New function.
8161         * gdbtypes.h (append_composite_type_field): Declare.
8162         (init_composite_type): Ditto.
8163
8164 2002-03-22  Elena Zannoni  <ezannoni@redhat.com>
8165
8166         * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
8167         function.
8168         * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
8169         * rs6000-tdep.c (rs6000_gdbarch_init): Use different
8170         structure returning convention for SYSV ABI case, but not
8171         for GNU/Linux, FreeBSD, or NetBSD.
8172
8173 2002-03-22  Daniel Jacobowitz  <drow@mvista.com>
8174
8175         * symtab.h (lookup_block_symbol): Add mangled_name argument
8176         to prototype.
8177
8178         * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
8179         with new mangled_name argument.
8180         * linespec.c (decode_line_1): Likewise.
8181         * valops (value_of_this): Likewise.
8182         * symtab.c (lookup_transparent_type): Likewise.
8183         (lookup_symbol_aux): Likewise.  Accept new mangled_name argument.
8184         (lookup_symbol): If we are given a mangled name, pass it down
8185         to lookup_symbol_aux.
8186         (lookup_block_symbol): If we are given a mangled name to check
8187         against, only return symbols which match it.
8188
8189 2002-03-22  Christopher Faylor  <cgf@redhat.com>
8190
8191         * win32-nat.c (child_create_inferior): Check for proper shell to use
8192         here, in case the user changes it on the fly.
8193         (_initialize_inftarg): Remove shell path considerations.
8194
8195 2002-03-21  Elena Zannoni  <ezannoni@redhat.com>
8196
8197         * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
8198         for gdbarch_max_register_raw_size and max_register_virtual_size.
8199         Adjust copyright year.
8200
8201 2002-03-21  Daniel Jacobowitz  <drow@mvista.com>
8202
8203          * dbxread.c (process_one_symbol): Extend the first N_SLINE
8204          in a function to cover the entire beginning of the function
8205          as well if it does not already.
8206
8207 2002-03-21  Tom Rix  <trix@redhat.com>
8208
8209         * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
8210         (rs6000_ptrace64): Renamed from ptrace64.
8211
8212 2002-03-20  Martin M. Hunt  <hunt@redhat.com>
8213
8214         * gdbserver/remote-utils.c (remote_open): Don't call
8215         getprotobyname, we're all using TCP here so just use
8216         IPPROTO_TCP.
8217         * gdbserver/gdbreplay.c (remote_open): Ditto.
8218
8219 2002-03-20  Martin M. Hunt  <hunt@redhat.com>
8220
8221         * regcache.c (_initialize_regcache): No need to call
8222         build_regcache() at this time; it gets called whenever
8223         the gdbarch changes.
8224
8225 2002-03-20  David O'Brien  <obrien@FreeBSD.org>
8226
8227         * sparc-nat.c:  Include sys/param.h where possible.
8228
8229 2002-03-20  Daniel Jacobowitz  <drow@mvista.com>
8230
8231         Fix PR gdb/422.
8232         * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
8233         FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
8234         * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
8235         complex types.
8236         * stabsread.c (rs6000_builtin_type): Likewise.
8237         (read_sun_floating_type): Likewise.
8238
8239 2002-03-19  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
8240
8241         * stabsread.c (read_member_functions): Remove skip code for duplicate
8242         constructor/destructor methods.  Use standard parsing for these
8243         methods and just do not chain them to the list of methods after
8244         parsing.
8245
8246 2002-03-19  Alexandre Oliva  <aoliva@redhat.com>
8247
8248         * coffread.c: Remove redundant static declarations.  Replace
8249         occurrences of `PTR' with `void *'.
8250         * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
8251         * top.h (quit_cover): Likewise.
8252         * defs.h (catch_errors): Likewise.
8253
8254 2002-03-18  Andrew Cagney  <ac131313@redhat.com>
8255
8256         * defs.h (XMALLOC): Define.
8257         * gdb-events.sh (XMALLOC): Delete macro.
8258         * gdb-events.c, gdb-events.h: Regenerate.
8259         * gdbarch.sh (XMALLOC): Delete macro.
8260         * gdbarch.c: Regenerate.
8261         * serial.c (XMALLOC): Delete macro.
8262         * ui-file.c (XMALLOC): Ditto.
8263         * ser-unix.h (XMALLOC): Ditto.
8264         * sh-tdep.c (XMALLOC): Ditto.
8265         * ui-out.c (XMALLOC): Ditto.
8266         * utils.c (XMALLOC): Ditto.
8267         * i386-tdep.c (XMALLOC): Ditto.
8268         * gdb-events.c (XMALLOC): Ditto.
8269         * d10v-tdep.c (XMALLOC): Ditto.
8270         * cli-out.c (XMALLOC): Ditto.
8271
8272         * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
8273         * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
8274         * ui-file.c, ui-out.c: Ditto.
8275
8276 2002-03-18  Andrew Cagney  <ac131313@redhat.com>
8277
8278         * command.h (struct cmd_list_element): Add field context.
8279         (set_cmd_context, get_cmd_context): Declare.
8280         * cli/cli-decode.h: Ditto.
8281         * cli/cli-decode.c (get_cmd_context): New function.
8282         (set_cmd_context): New function.
8283         (add_cmd): Initialize context.
8284         Part of fixing PR gdb/145 and PR gdb/146.
8285
8286 2002-03-17  Andrew Cagney  <ac131313@redhat.com>
8287
8288         * cli/cli-decode.c (cmd_type): New function.
8289         * command.h (cmd_type): Declare.
8290         * infrun.c (set_schedlock_func): Call function cmd_type.
8291         * kod.c (kod_set_os): Call cmd_type.
8292         * cris-tdep.c (cris_version_update): Use function cmd_type.
8293         (cris_mode_update, cris_abi_update): Ditto.
8294
8295         * command.h: (execute_cmd_post_hook): Declare.
8296         (execute_cmd_pre_hook): Declare.
8297         * cli/cli-script.c (clear_hook_in_cleanup): New function.
8298         (execute_cmd_post_hook, execute_cmd_pre_hook): New
8299         functions. Execute pre/post hook while ensuring that afterwords
8300         hook_in is cleared.
8301         * top.c (execute_command): Use execute_cmd_post_hook, and
8302         execute_cmd_pre_hook to execute pre/post commands.
8303         * infrun.c (normal_stop): Pass stop_command and not pre_hook to
8304         hook_stop_stub.
8305         (hook_stop_stub): Call execute_cmd_pre_hook.
8306
8307 2002-03-17  Andrew Cagney  <ac131313@redhat.com>
8308
8309         * kod.c (kod_set_os): Revert previous change.  Is called by ``info
8310         set'' and this leads to a core dump.  Move xstrdup of
8311         operating_system to after check that it is not NULL.
8312
8313 2002-03-17  Andrew Cagney  <ac131313@redhat.com>
8314
8315         * kod.c (kod_set_os): Remove unnecessary check that
8316         ``command->type'' is set_cmd.
8317
8318         * valprint.c (set_input_radix): Use input_radix.
8319         (set_output_radix): Use output_radix.
8320         (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
8321         isn't reverted.
8322
8323 2002-03-16  Andrew Cagney  <ac131313@redhat.com>
8324
8325         * value.h (struct value): Delete field ``substring_addr''.  Change
8326         aligner fields to force_doublest_align, force_longest_align,
8327         force_core_addr_align and force_pointer_aligh.
8328
8329         * value.h (struct value): Fix typo in above change.
8330
8331 2002-03-16  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
8332
8333         * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
8334         to fix internal_error from ``maintenance print architecture''.
8335
8336 2002-03-16  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
8337
8338         * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
8339         for gcc versions after gcc-2.8.1.
8340
8341 2002-03-16  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
8342
8343         * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
8344         for method resolution.  Restore adjustment of ``this'' pointer after
8345         calling value_struct_elt, which was accidentally removed during the
8346         HP merge.
8347
8348 2002-03-15  Andrew Cagney  <ac131313@redhat.com>
8349
8350         * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
8351         value_of_register.
8352         * findvar.c (value_of_register): Add ``frame'' parameter.  Pass to
8353         get_saved_register.
8354         * value.h (value_of_register): Update.
8355
8356 2002-03-14  Richard Henderson  <rth@redhat.com>
8357
8358         * configure.in: Detect declaration for canonicalize_file_name.
8359         * utils.c (canonicalize_file_name): Declare, if needed.
8360         (gdb_realpath): Prefer realpath if available and usable.
8361         * config.in, configure: Rebuild.
8362
8363 2002-03-14  Richard Henderson  <rth@redhat.com>
8364
8365         * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
8366         a constant array bound.
8367
8368         * MAINTAINERS: Add myself to write-after-approval.
8369
8370 2002-03-14  Michael Snyder  <msnyder@redhat.com>
8371
8372         * symfile.c (syms_from_objfile): Return immediately if no syms.
8373         (symbol_file_add): Return immediately if no syms.
8374         (find_sym_fns): Return immediately if no syms.
8375
8376 2002-03-13  Michal Ludvig  <mludvig@suse.cz>
8377
8378         * gdbserver/remote-util.c (remote_open): Print remote-side's
8379         IP address when remote debugging over the network.
8380
8381 2002-03-12  David O'Brien  <obrien@FreeBSD.org>
8382
8383         * config/sparc/fbsd.mh: Fix copyright.
8384         * config/sparc/fbsd.mt: Likewise.
8385
8386 2002-03-11  Richard Earnshaw  <rearnsha@arm.com>
8387
8388         * MAINTAINERS: Fix typo in name of gdb warnings option.
8389         (x86-64): Fix formating so that this can be parsed by awk.
8390
8391 2002-03-10  Daniel Jacobowitz  <drow@mvista.com>
8392
8393         * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
8394         * defs.h: Include "gdb/signals.h".
8395         (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
8396
8397 2002-03-10  Michal Ludvig  <mludvig@suse.cz>
8398
8399         * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
8400         * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
8401         from x86-64-tdep.h
8402
8403 2002-03-10  Daniel Jacobowitz  <drow@mvista.com>
8404             Don Howard <dhoward@redhat.com>
8405
8406         * mips-tdep.c (ST0_FR): Define.
8407         (mips2_fp_compat): New function, temporarily disabled.
8408         (mips_read_fp_register_single): New function.
8409         (mips_read_fp_register_double): New function.
8410         (mips_print_register): Use them.
8411         (do_fp_register_row): Likewise.
8412
8413 2002-03-09  Andrew Cagney  <ac131313@redhat.com>
8414
8415         * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
8416         approval''.
8417
8418 2002-03-08  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
8419
8420         * stabsread.c (read_member_functions): Fix is_stub test for
8421         static member functions, improve comment.
8422
8423 2002-03-07  Richard Earnshaw  <rearnsha@arm.com>
8424
8425         * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
8426         (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
8427         (_initialize_remote_rdi): Use add_set_boolean_cmd to register
8428         commands that set boolean values.
8429         (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
8430         (arm_rdi_resume): Always initialize PC.
8431         (arm_rdi_open): Don't use rslt as a boolean.
8432         (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
8433         (arm_rdi_fetch_registers, arm_rdi_store_registers)
8434         (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
8435         (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
8436
8437 2002-03-06  Alexandre Oliva  <aoliva@redhat.com>
8438
8439         * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
8440         * configure: Rebuilt.
8441
8442 2002-03-06  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
8443
8444         * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
8445         (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
8446
8447 2002-03-06  Andrew Cagney  <ac131313@redhat.com>
8448
8449         * cli/cli-decode.c (set_cmd_completer): New function.
8450         * command.h (set_cmd_completer): Declare.
8451         * cli/cli-decode.h (set_cmd_completer): Ditto.
8452
8453         * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
8454         * cli/cli-cmds.c (init_cli_cmds): Ditto.
8455         * win32-nat.c (_initialize_inftarg): Ditto.
8456         * remote-rdi.c (_initialize_remote_rdi): Ditto.
8457         * proc-api.c (_initialize_proc_api): Ditto.
8458         * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
8459         * source.c (_initialize_source): Ditto.
8460         * exec.c (_initialize_exec): Ditto.
8461         * solib.c (_initialize_solib): Ditto.
8462         * top.c (init_main): Ditto.
8463         * tracepoint.c (_initialize_tracepoint): Ditto.
8464         * symfile.c (_initialize_symfile): Ditto.
8465         * printcmd.c (_initialize_printcmd): Ditto.
8466         * infcmd.c (_initialize_infcmd): Ditto.
8467         * corefile.c (_initialize_core): Ditto.
8468
8469 2002-03-05  Andrew Cagney  <ac131313@redhat.com>
8470
8471         * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
8472
8473 2002-03-05  Andrew Cagney  <ac131313@redhat.com>
8474
8475         * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
8476
8477 2002-03-05  Andrew Cagney  <ac131313@redhat.com>
8478
8479         * NEWS: Update headings, 5.2 has branched.
8480
8481 2002-03-04  Daniel Jacobowitz  <drow@mvista.com>
8482
8483         * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
8484         (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
8485         (register_addr, REGISTER_RAW_SIZE): Likewise.
8486         (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
8487         * gdbserver/linux-x86-64-low.c: Remove extra #endif.
8488
8489 2002-03-03  Michal Ludvig <mludvig@suse.cz>
8490
8491         * MAINTAINERS (x86-64): Add myself.
8492         * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
8493         changed value_ptr -> struct value *
8494
8495 2002-03-01  David O'Brien  <obrien@FreeBSD.org>
8496
8497         * configure.host (sparc64-*-freebsd): Add.
8498         * configure.tgt: Likewise.
8499         * config/sparc/fbsd.mh: New file.
8500         * config/sparc/fbsd.mt: Likewise.
8501         * config/sparc/nm-fbsd.h: Likewise.
8502         * config/sparc/tm-fbsd.h: Likewise.
8503
8504 2002-03-01  Daniel Jacobowitz  <drow@mvista.com>
8505
8506         * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
8507         regformats/reg-s390x.dat.
8508
8509 2002-03-01  Andrew Cagney  <ac131313@redhat.com>
8510
8511         * utils.c: Add FIXME explaining true/false problem.
8512
8513 2002-02-28  Andrew Cagney  <ac131313@redhat.com>
8514
8515         * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
8516
8517 2002-02-28  Michael Chastain  <mec@shout.net>
8518
8519         * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
8520
8521 2002-02-28  Daniel Jacobowitz  <drow@mvista.com>
8522
8523         * gdbserver/linux-s390-low.c: New file.
8524         * regformats/reg-s390.dat: New file.
8525         * regformats/reg-s390x.dat: New file.
8526         * gdbserver/configure.srv: Add S/390.
8527         * gdbserver/Makefile.in: Add S/390.
8528         * configure.tgt: Enable gdbserver for S/390.
8529
8530 2002-02-28  Eli Zaretskii  <eliz@is.elta.co.il>
8531
8532         * go32-nat.c (_initialize_go32_nat): Don't use periods in the
8533         first line of the doc string for "info dos", except at the end of
8534         the sentence, since the short help stops at the first period.
8535
8536 2002-02-28  Jason Merrill  <jason@redhat.com>
8537
8538         * dwarf2read.c (dwarf_cfi_name): Add new codes.
8539
8540 2002-02-27  Fred Fish  <fnf@redhat.com>
8541
8542         * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
8543         comment (dumy -> dummy).
8544
8545 2002-02-27  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
8546
8547         * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
8548
8549 2002-02-27  Rodney Brown  <rbrown64@csc.com.au>
8550
8551       * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
8552
8553 2002-02-27  Daniel Jacobowitz  <drow@mvista.com>
8554
8555         * gdbserver/acconfig.h: New file.
8556         * gdbserver/i387-fp.c: New file.
8557         * gdbserver/i387-fp.h: New file.
8558         * gdbserver/linux-x86-64.c: New file.
8559         * regformats/reg-x86-64.dat: New file.
8560         * configure.tgt: Add x86_64-*-linux* gdbserver support.
8561         * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
8562         * gdbserver/configure.in: Add support for regsets.
8563         * gdbserver/config.in: Regenerate.
8564         * gdbserver/configure: Regenerate.
8565         * gdbserver/Makefile.in: Likewise.  Add $(linux_low_h).
8566         * gdbserver/linux-low.h: New file.
8567         * gdbserver/linux-low.c: Include "linux-low.h".  Add support
8568         for regsets.
8569         * gdbserver/linux-arm-low.c: Include "linux-low.h".
8570         * gdbserver/linux-ia64-low.c: Include "linux-low.h".
8571         * gdbserver/linux-m68k-low.c: Include "linux-low.h".
8572         * gdbserver/linux-mips-low.c: Include "linux-low.h".
8573         * gdbserver/linux-ppc-low.c: Include "linux-low.h".
8574         * gdbserver/linux-sh-low.c: Include "linux-low.h".
8575         * gdbserver/linux-i386-low.c: Include "linux-low.h".  Include
8576         "i387-fp.h".  Add PTRACE_GETREGS and friends.
8577         * gdbserver/regcache.c (supply_register): New function.
8578         (supply_register_by_name): New function.
8579         (collect_register): New function.
8580         (collect_register_by_name): New function.
8581
8582 2002-02-27  Daniel Jacobowitz  <drow@mvista.com>
8583
8584         * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
8585         (config.status): Add configure.srv dependency.
8586         (server_h): Add config.h dependency.
8587
8588 2002-02-27  Daniel Jacobowitz  <drow@mvista.com>
8589
8590         * regformats/reg-i386-linux.dat: New file, with $orig_eax.
8591         * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
8592         * gdbserver/configure.srv: Change i386-*-linux* to use
8593         reg-i386-linux.o.
8594
8595 2002-02-26  Andrew Cagney  <ac131313@redhat.com>
8596
8597         * x86-64-tdep.c: Re-indent.  Update copyright date.
8598
8599 2002-02-26  Andrew Cagney  <ac131313@redhat.com>
8600
8601         From Michal Ludvig <mludvig@suse.cz>:
8602         * x86-64-tdep.c (value.h): Delete.
8603         (gdb_assert.h): Include.
8604         (x86_64_register_convert_to_virtual,
8605         x86_64_register_convert_to_raw ): Add check which lets only
8606         floating-point values to be converted.
8607         (value_push): Delete.
8608         (x86_64_push_arguments): Order of arguments pushed on stack fixed.
8609         (i386_gdbarch_init): Number of register_bytes fixed.
8610
8611 2002-02-26  Andrew Cagney  <ac131313@redhat.com>
8612
8613         * MAINTAINERS: Add x86-64 target.
8614
8615 2002-02-26  Andrew Cagney  <ac131313@redhat.com>
8616
8617         * memattr.c (mem_command): Eliminate ``true'' and ``false''.
8618         * osfsolib.c (solib_map_sections): Ditto.
8619         * irix5-nat.c (solib_map_sections): Ditto.
8620         * corelow.c (gdb_check_format): Ditto.
8621         * symfile.c (symfile_bfd_open): Ditto.
8622         * solib.c (solib_map_sections): Ditto.
8623         Fix PR gdb/354.
8624
8625 2002-02-26  Andrew Cagney  <ac131313@redhat.com>
8626
8627         * remote.c (_initialize_remote): By default, disable ``e'' and
8628         ``E'' step out-of-range packets.
8629
8630 2002-02-26  Andreas Schwab  <schwab@suse.de>
8631
8632         * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
8633         m68k_linux_frame_saved_pc.
8634         (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
8635         in_sigtramp.
8636         (SIGCONTEXT_PC_OFFSET): Remove.
8637         * m68klinux-nat.c (m68k_linux_frame_saved_pc,
8638         m68k_linux_sigtramp_saved_pc): New functions.
8639         (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
8640         (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
8641         (UCONTEXT_PC_OFFSET): Define.
8642         (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
8643         non-RT and RT signal trampolines.
8644
8645 2002-02-26  Richard Earnshaw  <rearnsha@arm.com>
8646
8647         * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
8648         (TARGET_NBPG, STACK_END_ADDR): Delete
8649         (VARIABLES_INSIDE_BLOCK): Delete.
8650
8651 2002-02-25  Andrew Cagney  <ac131313@redhat.com>
8652
8653         * utils.c (perror_with_name): Make string parameter constant.
8654         (print_sys_errmsg): Ditto.
8655         (query): Ditto.
8656         * defs.h (perror_with_name): Update.
8657         (print_sys_errmsg): Update.
8658         (query): Update.
8659
8660 2002-02-25  Daniel Jacobowitz  <drow@mvista.com>
8661
8662         From Eliot Dresselhaus <eliot@ayrnetworks.com>:
8663         * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
8664
8665 2002-02-25  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
8666
8667         * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
8668         if it already matches the current architecture from the exec file.
8669         Include arch-utils.h for gdbarch_info_init prototype.
8670         * Makefile.in (rs6000-nat.o): Update dependencies.
8671
8672 2002-02-25  Eli Zaretskii  <eliz@is.elta.co.il>
8673
8674         * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
8675          list of exported variables.
8676
8677 2002-02-24  Daniel Jacobowitz  <drow@mvista.com>
8678
8679         * gdbserver/configure.srv: New file.
8680         * gdbserver/configure.in: Use configure.srv instead
8681         of the host/target makefile fragments.  Set GDBSERVER_DEPFILES
8682         from it.
8683         * gdbserver/configure: Regenerated.
8684         * gdbserver/terminal.h: New file.
8685         * gdbserver/Makefile.in: Update for configure changes.  Remove
8686         more unneeded include paths.
8687
8688 2002-02-24  Andrew Cagney  <ac131313@redhat.com>
8689
8690         From wiz at danbala:
8691         * config/sparc/tm-sp64.h: Fix grammar and typos.
8692         Fix PR gdb/287.
8693
8694 2002-02-24  Andrew Cagney  <ac131313@redhat.com>
8695
8696         * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
8697         with either ``GNU/Linux'' or ``Linux kernel''.  Update copyright.
8698         * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
8699         * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
8700         * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
8701         * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
8702         * s390-tdep.c: Ditto.
8703         * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
8704         * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
8705         * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
8706         * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
8707         * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
8708         * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
8709         * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
8710         * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
8711         * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
8712         * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
8713         Fix PR gdb/378.
8714
8715 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
8716
8717         * lin-thread.c: Delete file.
8718         * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
8719         to gdb_proc_service.h.
8720         * configure: Re-generate.
8721
8722         * ocd.c (ocd_open): Do not try to open the "ocd" device.
8723         * serial.c (serial_open): Delete check for "ocd".
8724         Fix PR gdb/349.
8725
8726         * Makefile.in (linux-thread.o): Delete target.
8727         * linux-thread.c: Delete file.
8728
8729         * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c.  Tweak other
8730         renamed SH files to be consistent.
8731
8732         * symtab.c (sort_search_symbols): Use xfree.
8733
8734 2002-02-23  Richard Earnshaw  <rearnsha@arm.com>
8735
8736         * arm-linux-tdep.c (arm_linux_init_abi): Register
8737         IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
8738         * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
8739         definition with undef, since we don't want the sysvr4 definition.
8740         (SKIP_TRAMPOLINE_CODE): Likewise.
8741
8742 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
8743
8744         From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
8745
8746         * configure.in: (AC_CHECK_FUNCS) Added test for
8747         canonicalize_file_name Regenerated.
8748         * config.in, configure: Regenerated.
8749         * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
8750         defined use canonicalize_file_name.
8751
8752 2002-02-23  Michael Chastain  <mec@shout.net>
8753
8754         * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
8755
8756 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
8757
8758         * README: Remove references to cygnus.com.
8759         * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
8760         dot com'' form.  Remove references to cygnus.com and sourceware.
8761
8762 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
8763
8764         From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
8765         * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
8766         1003.1-2001 no longer allows "head -1".
8767         * gdb/Makefile.in (version.c): Likewise.
8768         * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
8769         * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
8770         equivalent.  POSIX 1003.1-2001 no longer allows "diff -c3".
8771
8772 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
8773
8774         * cli/cli-decode.c (cmd_cfunc_eq): New function.
8775         * command.h (cmd_cfunc_eq): Declare.
8776         * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
8777
8778         * cli/cli-cmds.h (is_complete_command): Change parameter to a
8779         ``struct cmd_list_element *''.
8780         * cli/cli-cmds.c (is_complete_command): Update.  Use
8781         cmd_cfunc_eq.
8782         * top.c (execute_command): Pass the command to
8783         is_complete_command.
8784         * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
8785
8786 2002-02-23  Andrew Cagney  <ac131313@redhat.com>
8787
8788         From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
8789         * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
8790         architecture defines.
8791         * s390-tdep.c (s390_gdbarch_init): Likewise.
8792
8793 2002-02-23  Richard Earnshaw  <rearnsha@arm.com>
8794
8795         * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
8796         (arm_linux_push_arguments): Likewise.
8797         (arm_linux_init_abi): Register them.  Also register linux-specific
8798         call_dummy_words.
8799         (find_minsym_and_objfile): Use strcmp, not STREQ.
8800         * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
8801         (arm_linux_call_dummy_words): Delete declaration.
8802         (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
8803         (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
8804         declarations.
8805         (LOWEST_PC): Delete.
8806
8807 2002-02-23  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
8808
8809         * maint.c (print_section_info): Do not prepend `0x' to filepos
8810         output, it will be handled by local_hex_string_custom.
8811
8812 2002-02-23  Richard Earnshaw  <rearnsha@arm.com>
8813
8814         * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
8815         (store_newfpe_double, store_newfpe_extended, store_fpregister)
8816         (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
8817
8818 2002-02-22  Jim Blandy  <jimb@redhat.com>
8819
8820         Indicate that the bcache functions don't change the strings
8821         they're passed.
8822         * bcache.h (bcache, hash): Add `const' keywords to declarations.
8823         * bcache.c (bcache, hash): Add `const' keywords to definitions.
8824
8825 2002-02-22  Pierre Muller  <muller@ics.u-strasbg.fr>
8826
8827         * win32-nat.c (child_create_inferior): Fix create flags setting bug.
8828
8829 2002-02-21  Christopher Faylor  <cgf@redhat.com>
8830
8831         * win32-nat.c (register_loaded_dll): Just use raw name when we can't
8832         find the complete path to a loaded DLL.
8833
8834 2002-02-21  Fred Fish  <fnf@redhat.com>
8835
8836         * dbxread.c (process_one_symbol): When finding an N_FUN symbol
8837         that marks the end of the range of a function, enter a line number
8838         entry that has a line number of zero and a PC offset that matches
8839         the end of the function.  This starts a range of PC's for which no
8840         line number information is known.
8841         * symtab.c (find_pc_sect_line): If our best fit is in a range of
8842         PC's for which no line number info is found (line number is zero)
8843         then we didn't find any valid line information.
8844         * symtab.h: Document use of zero line number entry.
8845
8846 2002-02-21  Elena Zannoni  <ezannoni@redhat.com>
8847
8848         * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
8849         (have_ptrace_getvrregs): Define for run time checks.
8850         (gdb_vrregset_t): New type for Altivec register handling.
8851         (fetch_register, store_register): Fetch/store altivec register
8852         when needed.
8853         (fetch_altivec_register, store_altivec_register): New functions.
8854         (supply_vrregset, fill_vrregset): New functions.
8855         (fetch_altivec_registers, store_altivec_registers): New functions.
8856         (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
8857         registers as well.
8858
8859 2002-02-21  Jiri Smid  <smid@suse.cz>
8860
8861         * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
8862
8863 2002-02-21  Richard Earnshaw  <rearnsha@arm.com>
8864
8865         * Makefile.in (armnbsd-nat.o): Update dependencies.
8866         * armnbsd-nat.c (supply_gregset): New function.  Common code to
8867         supply the integer register set.
8868         (supply_fparegset): New function.  Similar for FPA registers.
8869         (fetch_regs, fetch_fp_regs): Use them.
8870         (fetch_core_registers): Likewise.
8871         (fetch_elfcore_registers): New function.
8872         (arm_netbsd_elfcore_fns): New core-file type specification.
8873         (_initialize_arm_netbsd_nat): Register it.
8874
8875 2002-02-21  Richard Earnshaw  <rearnsha@arm.com>
8876
8877         * armnbsd-nat.c: Include gdbcore.h.
8878         (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
8879         (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
8880         'void' to declaration, to shut up ARI.
8881         (fetch_core_registers): Make static.  Rewrite using supply_register.
8882         (arm_netbsd_core_fns): New core-file type specification.
8883         (_initialize_arm_netbsd_nat): New function.
8884
8885 2002-02-21  Christopher Faylor  <cgf@redhat.com>
8886
8887         * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
8888         value.
8889
8890 2002-02-20  Christopher Faylor  <cgf@redhat.com>
8891
8892         * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
8893         fails.
8894
8895 2002-02-20  Daniel Jacobowitz  <drow@mvista.com>
8896
8897         * jv-exp.y (parse_number): Change type of implicit longs
8898         to builtin_type_uint64.
8899
8900 2002-02-20  Daniel Jacobowitz  <drow@mvista.com>
8901
8902         * gdbserver/linux-low.c (mywait): Change argument to waitpid
8903         to be an integer instead of a `union wait'.
8904
8905 2002-02-20  Daniel Jacobowitz  <drow@mvista.com>
8906
8907         * mips-linux-nat.c: Call the operating system GNU/Linux.
8908         * mips-linux-tdep.c: Likewise.
8909         * mips-tdep.c: Likewise.
8910
8911 2002-02-20  Daniel Jacobowitz  <drow@mvista.com>
8912
8913         Fix PR gdb/265.
8914         * jv-exp.y (parse_number): Handle 64-bit integers.
8915
8916 2002-02-20  Daniel Jacobowitz  <drow@mvista.com>
8917
8918         * gdbserver/configure.in: Remove AM_PROC_CC_STDC.  Change
8919         AC_STDC_HEADERS to AC_HEADER_STDC.
8920         * gdbserver/configure: Regenerated.
8921
8922 2002-02-20  Richard Earnshaw  <rearnsha@arm.com>
8923
8924         * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
8925         is defined.
8926         * sparc-tdep.c (get_longjmp_target): Likewise.
8927
8928 2002-02-20  Richard Earnshaw  <rearnsha@arm.com>
8929
8930         * News: Add news about ARM and Multi-arch.  Mention the new target
8931         arm*-*-netbsd*.
8932
8933 2002-02-19  Jim Blandy  <jimb@redhat.com>
8934
8935         * stabsread.c (error_type_complaint): Improve error message.
8936
8937 2002-02-19  Daniel Jacobowitz  <drow@mvista.com>
8938
8939         * gdbserver/README: Update documentation.
8940         * gdbserver/configure.in: Update configury to match documentation.
8941         * gdbserver/Makefile.in: Likewise.
8942         * gdbserver/configure: Regenerated.
8943         * gdbserver/aclocal.m4: New file, generated by aclocal.
8944         * gdbserver/config.in: New file, generated by autoheader.
8945
8946 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
8947
8948         * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
8949         armnbsd-nat.c.
8950
8951 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
8952
8953         * arm-tdep.h (enum arm_float_model): New enum.
8954         (struct gdbarch_tdep): Add fp_model.
8955         * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep.  Defer setting
8956         up floating-point conversions until we know the floating-point model
8957         in use by the inferior.  Don't complain about being unable to
8958         determine the ABI of the inferior when we don't have one.
8959         (arm_extract_return_value): Support different floating-point models.
8960         (arm_store_return_value): Likewise.
8961         * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
8962         ARM_FLOAT_SOFT.
8963         (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
8964
8965 2002-02-19  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
8966
8967         * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
8968         of ``current_gdbarch''.
8969
8970 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
8971
8972         * armnbsd-nat.c : ANSIfy all function declarations.
8973         (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
8974         (fetch_inferior_registers): Re-implement in terms of above.
8975         (store_register, store_regs, store_fp_register, store_fp_regs): New.
8976         (store_inferior_registers): Re-implement in terms of above.
8977
8978 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
8979
8980         * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
8981         kernel.
8982         * arm-linux-tdep.c: Likewise.
8983         * config/arm/tm-linux.h: Likewise.
8984
8985 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
8986
8987         * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
8988         * config/arm/nbsd.mt (TM_FILE): Delete.
8989         * config/arm/tm-nbsd.h: Delete.
8990
8991 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
8992
8993         * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
8994         Initialize CALL_DUMMY_LENGTH.
8995
8996 2002-02-19  Richard Earnshaw  <rearnsha@arm.com>
8997
8998         * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
8999         function.
9000         (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
9001         * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
9002         defines one thing and that is incorrect for this port.
9003         (IN_SOLIB_CALL_TRAMPOLINE): Delete.
9004
9005 2002-02-18  Pierre Muller  <muller@ics.u-strasbg.fr>
9006
9007         * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
9008
9009 2002-02-18  Pierre Muller  <muller@ics.u-strasbg.fr>
9010
9011         * win32-nat.c (display_selector): New function. Displays information
9012         about the information returned by GetThreadSelectorEntry API function.
9013         (display_selectors): New function. Displays the infomation of
9014         the selector given as argument, or of CS, DS ans FS selectors
9015         if no argument is given.
9016         ( _initialize_inftarg): Add "w32" as info prefix command.
9017         Add "info w32 selector" as command calling display_selectors.
9018
9019 2002-02-19  Pierre Muller  <muller@ics.u-strasbg.fr>
9020
9021         * i386-tdep.c (get_longjmp_target): Fix compilation failure
9022         by setting dummy values to JB_PC and JB_ELEMENT_SIZE
9023         if not defined.
9024
9025 2002-02-18  Richard Earnshaw  <rearnsha@arm.com>
9026
9027         * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
9028
9029 2002-02-18  Richard Earnshaw  <rearnsha@arm.com>
9030
9031         * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
9032         (arm_fix_call_dummy): Call it.
9033         (arm_call_dummy_breakpoint_offset): Delete.
9034         (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
9035         * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
9036
9037 2002-02-18  Andrew Cagney  <ac131313@redhat.com>
9038
9039         * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
9040         Default to func_frame_chain_valid.
9041         * gdbarch.h, gdbarch.c: Re-generate.
9042         * frame.h (FRAME_CHAIN_VALID): Delete definition.
9043
9044 2002-02-18  Elena Zannoni  <ezannoni@redhat.com>
9045
9046         * ppc-linux-nat.c: Update copyright.
9047         (fetch_register, store_register): Add tid parameter, don't compute
9048         tid here.
9049         (fetch_ppc_registers, store_ppc_registers): Add tid
9050         parameter. Pass it along to callees.
9051         (fetch_inferior_registers, store_inferior_registers): Compute tid
9052         here, and pass it to calleed functions.
9053         (fill_gregset, supply_fpregset): Clean up formatting.
9054
9055 2002-02-18  Richard Earnshaw  <rearnsha@arm.com>
9056
9057         * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
9058         * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
9059
9060 2002-02-18  Richard Earnshaw  <rearnsha@arm.com>
9061
9062         * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
9063         * gdbarch.c gdbarch.h: Regenerate.
9064         * breakpoint.c (create_longjmp_breakpoint): Always compile this
9065         function.
9066         (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
9067         * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
9068         (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
9069
9070         * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
9071         * arm-tdep.c (arm_get_longjmp_target): New function.
9072         (arm_gdbarch_init): Initialize jb_pc to -1.  If ABI handler changes
9073         this to a positive value register arm_get_longjmp_target as the
9074         longjmp handler.
9075         * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
9076         (arm_linux_init_abi): Set up longjmp description in tdep.
9077         * armnbsd-nat.c (get_longjmp_target): Delete.
9078         * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
9079         description in tdep.
9080         * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
9081         (get_longjmp_target): Delete declaration.
9082         (GET_LONGJMP_TARGET): Delete.
9083         * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
9084         (GET_LONGJMP_TARGET): Delete.
9085
9086 2002-02-17  Kevin Buettner  <kevinb@redhat.com>
9087
9088         From Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>:
9089         * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
9090         of ``current_gdbarch''.
9091
9092 2002-02-17  Tom Tromey  <tromey@redhat.com>
9093
9094         * cli/cli-cmds.c (compare_strings): New function.
9095         (complete_command): Only print each unique item once.
9096         * completer.h (complete_line): Declare.
9097         * completer.c (complete_line): New function.
9098         (line_completion_function): Use it.
9099
9100 2002-02-16  Andrew Cagney  <ac131313@redhat.com>
9101
9102         * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
9103         * gdbarch.h, gdbarch.c: Re-generate.
9104
9105 2002-02-16  Daniel Jacobowitz  <drow@mvista.com>
9106
9107         * valarith.c (value_x_unop): Fix decrement; support post-decrement.
9108
9109 2002-02-16  Daniel Jacobowitz  <drow@mvista.com>
9110
9111         From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
9112         * valops.c (value_arg_coerce): Don't take the address of a reference
9113         to convert an argument to a reference.
9114
9115 2002-02-15  Christopher Faylor  <cgf@redhat.com>
9116
9117         * win32-nat.c (get_image_name): New function.
9118         (handle_load_dll): Use get_image_name function.
9119         (get_child_debug_event): Avoid registering debug events until possibly
9120         execed process is started.
9121         (child_create_inferior): Allow invocation via shell so that command
9122         line redirection, etc.  works ok.
9123         (_initialize_inftarg): Add new command: "set shell" to control whether
9124         a shell is used to start a process.
9125
9126 2002-02-15  Daniel Jacobowitz  <drow@mvista.com>
9127
9128         * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
9129         instead of find_register_by_number.
9130         (cannot_store_register): Likewise.
9131
9132 2002-02-14  Pierre Muller  <muller@ics.u-strasbg.fr>
9133
9134         * dwarf2read.c: Replace fprintf (stderr, ...) by
9135         fprintf_unfiltered (gdb_stderr, ...).
9136
9137 2002-02-15  Daniel Jacobowitz  <drow@mvista.com>
9138
9139         * gdbserver/gdbserver.1: Document --attach.
9140
9141 2002-02-15  Richard Earnshaw  <rearnsha@arm.com>
9142
9143         * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
9144         descriptions.
9145         * arm-tdep.c (arm_default_arm_le_breakpoint)
9146         (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
9147         (arm_default_thumb_be_breakpoint): New.  Initialize them from
9148         traditional breakpoint defines.
9149         (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
9150         (arm_gdbarch_init): Initialize new breakpoint variables.
9151         * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
9152         (arm_linux_init_abi): Initialize linux-specific breakpoint.
9153         * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
9154         (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
9155         code out to ...
9156         (arm_netbsd_init_abi_common): ... here; new function.
9157         * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
9158         (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
9159         * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
9160         * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
9161
9162 2002-02-15  Richard Earnshaw  <rearnsha@arm.com>
9163
9164         * arm-tdep.h (enum arm_abi): New enum.
9165         (struct gdbarch_tdep): New structure.
9166         (LOWEST_PC): Provide a default.
9167         (arm_gdbarch_register_os_abi): Declare new function.
9168         * arm-tdep.c (arm_abi_names): New array.
9169         (process_note_abi_tag_sections): New function.
9170         (get_elfosabi): New function.
9171         (arm_gdbarch_register_os_abi): New function.
9172         (arm_gdbarch_init): Try to determine the ABI of the inferior.  If
9173         support for that ABI has been built in, then call the appropriate
9174         configuration routine.  Use gdbarch_num_regs() to get the number
9175         of registers.
9176         (arm_dump_tdep): New function.
9177         (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
9178         place-holder functions.
9179         (_initialize_arm_tdep): Register them.
9180         * config/arm/tm-arm.h (LOWEST_PC): Delete.
9181
9182         * armnbsd-tdep.c: New file.
9183         * Makefile.in (armnbsd-tdep.o): Add dependencies.
9184         * config/arm/nbsd.mt (TDEPFILES): Add it.
9185         * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
9186
9187         * armnbsd-nat.c: Include regcache.h.
9188         * Makefile.in (armnbsd-nat.o): Update dependency list.
9189
9190         * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
9191
9192 2002-02-14  Daniel Jacobowitz  <drow@mvista.com>
9193
9194         * gdbserver/Makefile.in: Fix typos in target rules.
9195
9196 2002-02-14  Daniel Jacobowitz  <drow@mvista.com>
9197
9198         Fix part of PR gdb/267.
9199         * linespec.c (find_methods): Handle constructors specially for now.
9200
9201 2002-02-14  Corinna Vinschen  <vinschen@redhat.com>
9202
9203         * arm-tdep.c (arm_push_arguments): Eliminate special float type
9204         handling.
9205         * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
9206         standard_coerce_float_to_double().
9207
9208 2002-02-14  Christopher Faylor  <cgf@redhat.com>
9209
9210         * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
9211         GDBINIT_FILENAME.
9212
9213 2002-02-14  Elena Zannoni  <ezannoni@redhat.com>
9214
9215         * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
9216         find_variant_by_name, because it confuses the multiarch
9217         framework. Return NULL if there isn't an architecture with the
9218         user supplied name, instead of forcing a different one without
9219         recording the change with the multiarch machinery.
9220         (find_variant_by_name): Delete.
9221
9222 2002-02-14  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
9223
9224         * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
9225         i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
9226
9227 2002-02-13  Martin M. Hunt  <hunt@redhat.com>
9228
9229         * stack.c (print_frame_info_base): When calling
9230         print_frame_info_listing_hook, set current_source_symtab.
9231
9232 2002-02-14  Daniel Jacobowitz  <drow@mvista.com>
9233
9234         * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
9235         and remove unused $(INCLUDE_DIR).
9236         Add regcache.c to OBS.
9237         Add generated register protocol files to clean target.
9238         Update dependencies for new objects, obsolete old target code.
9239
9240         * gdbserver/linux-low.c: Remove all platform-specific code to
9241         new files.  Remove various dead code.  Update to use regcache
9242         functionality.
9243         * gdbserver/remote-utils.c (fromhex): Add return statement
9244         to quiet warning.
9245         (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
9246         constant.
9247         (input_interrupt): Add integer parameter to match prototype
9248         of a signal handler.
9249         (outreg): Use register_data ().
9250         (prepare_resume_reply): Use gdbserver_expedite_regs.
9251         * gdbserver/server.c (main): Dynamically allocate own_buf because
9252         PBUFSIZ is no longer constant.  Use registers_to_string () and
9253         registers_from_string ().
9254         * gdbserver/server.h: No longer include "defs.h".  Add prototypes
9255         for error (), fatal (), and warning ().  Update definition of
9256         PBUFSIZ to use regcache functionality.  Add include guard.
9257         * gdbserver/utils.c (fatal): Add missing ``const''.
9258         (warning): New function.
9259
9260         * regformats/regdat.sh: Include "regcache.h" in generated files.
9261         Provide init_registers () function.
9262         * regformats/regdef.h: Add prototype for set_register_cache ().
9263         Add include guard.
9264
9265         * gdbserver/linux-arm-low.c: New file.
9266         * gdbserver/linux-i386-low.c: New file.
9267         * gdbserver/linux-ia64-low.c: New file.
9268         * gdbserver/linux-m68k-low.c: New file.
9269         * gdbserver/linux-mips-low.c: New file.
9270         * gdbserver/linux-ppc-low.c: New file.
9271         * gdbserver/linux-sh-low.c: New file.
9272
9273         * gdbserver/regcache.c: New file.
9274         * gdbserver/regcache.h: New file.
9275
9276         * gdbserver/low-linux.c: Removed obsolete file.
9277
9278 2002-02-14  Daniel Jacobowitz  <drow@mvista.com>
9279
9280         * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
9281         * config/i386/linux.mt: Likewise.
9282         * config/ia64/linux.mt: Likewise.
9283         * config/m68k/linux.mh: Likewise.
9284         * config/powerpc/linux.mh: Likewise.
9285         * config/mips/linux.mt: Likewise.
9286
9287         * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
9288
9289         * config/i386/i386lynx.mh: Mark gdbserver variables
9290         as (currently) obsolete for this target.
9291         * config/i386/nbsd.mt: Likewise.
9292         * config/i386/nbsdelf.mt: Likewise.
9293         * config/m32r/m32r.mt: Likewise.
9294         * config/m68k/m68klynx.mh: Likewise.
9295         * config/m68k/nbsd.mt: Likewise.
9296         * config/m68k/sun3os4.mh: Likewise.
9297         * config/mips/vr5000.mt: Likewise.
9298         * config/ns32k/nbsd.mt: Likewise.
9299         * config/pa/hppabsd.mh: Likewise.
9300         * config/pa/hppaosf.mh: Likewise.
9301         * config/powerpc/nbsd.mt: Likewise.
9302         * config/rs6000/rs6000lynx.mh: Likewise.
9303         * config/s390/s390.mt: Likewise.
9304         * config/s390/s390x.mt: Likewise.
9305         * config/sparc/sparclynx.mh: Likewise.
9306         * config/sparc/sun4os4.mh: Likewise.
9307         * config/i386/x86-64linux.mt: Likewise.
9308         * config/sparc/linux.mh: Likewise.
9309
9310 2002-02-14  Daniel Jacobowitz  <drow@mvista.com>
9311
9312         * configure.tgt: Configure gdbserver only for known working
9313         targets.  Set ${build_gdbserver} instead of modifying ${configdirs}.
9314         * configure.in: Check ${build_gdbserver}.  Put gdbserver/ into
9315         SUBDIRS if it is configured.  Update comment for ${nativefile}.
9316         * configure: Regenerated.
9317
9318 2002-02-13  Michael Snyder  <msnyder@redhat.com>
9319
9320         * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
9321
9322         * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
9323         (default_gcore_mach): Just return 0, work around a problem in bfd.
9324         (default_gcore_target): OK to return NULL if exec_bfd is null.
9325         (make_mem_sec): Use a cast, avoid a warning.
9326
9327         * procfs.c (find_memory_regions_callback): Use a cast instead of
9328         calling host_pointer_to_address (which complains if
9329         sizeof (host pointer) != sizeof (target pointer)).
9330         (procfs_make_note_section): Avoid overflow in psargs string.
9331
9332         * procfs.c (procfs_make_note_section): Make the default
9333         implementation return an error.
9334
9335 2002-02-13  Rodney Brown  <rbrown64@csc.com.au>
9336
9337         * procfs.c (procfs_make_note_section): Provide a default definition
9338         (for alpha-dec-osf4.0f). Fix typos.
9339
9340 2002-02-13  Elena Zannoni  <ezannoni@redhat.com>
9341
9342         * linux-proc.c: Add include of regcache.h.
9343         * Makefile.in (linux-proc.o): Add dependency on regcache.h.
9344
9345 2002-02-13  Andrew Cagney  <ac131313@redhat.com>
9346
9347         From 2002-01-18 Greg McGary <greg@mcgary.org>:
9348         * memattr.c (create_mem_region): Disallow useless empty region.
9349         Regions are half-open intervals, so allow [A..B) [B..C) as
9350         non-overlapping.
9351
9352 2002-02-13  Michael Chastain <mec@shout.net>
9353
9354         * defs.h: Kill CONST_PTR.
9355         * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
9356         * c-lang.c (c_builtin_types): Likewise.
9357         * ch-lang.c (ch_builtin_types): Likewise.
9358         * f-lang.c (f_builtin_types): Likewise.
9359         * language.c (unknown_builtin_types): Likewise.
9360         * m2-lang.c (m2_builtin_types): Likewise.
9361         * p-lang.c (pascal_builtin_types): Likewise.
9362         * scm-lang.c (c_builtin_types): Likewise.
9363
9364 2002-02-13  Keith Seitz  <keiths@redhat.com>
9365
9366         * arm-tdep.h (arm_get_next_pc): Add declaration.
9367
9368 2002-02-13  Richard Earnshaw  <rearnsha@arm.com>
9369
9370         * arm-tdep.c (arm_use_struct_convention): Make static.  Move to be
9371         with other related struct-returning functions.
9372         (arm_extract_struct_value_address): New function.
9373         (arm_gdbarch_init): Initialize the above in multi-arch vector.  Also
9374         initialize float_format, double_format and long_double_format as
9375         appropriate to the endianness of the target.
9376         * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
9377         (arm_use_struct_convention): Delete declaration.
9378         (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
9379
9380 2002-02-13  Keith Seitz  <keiths@redhat.com>
9381
9382         * defs.h (core_addr_to_string_nz): New function.
9383
9384 2002-02-13  Mark Kettenis  <kettenis@gnu.org>
9385
9386         Apply missing bits of 2002-01-15 patch.
9387         * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
9388         (fill_fpregset): Use i387_fill_fsave.
9389
9390 2002-02-12  Keith Seitz  <keiths@redhat.com>
9391
9392         * utils.c (core_addr_to_string): Use phex instead of phex_nz.
9393         (core_addr_to_string_nz): New function.
9394
9395 2002-02-11  Richard Earnshaw  <rearnsha@arm.com>
9396
9397         * arm-linux-nat.c: Really include arm-tdep.h.
9398         * config/arm/tm-linux.h (struct type, struct value): Declare.
9399
9400 2002-02-11  Michael Snyder  <msnyder@redhat.com>
9401
9402         * procfs.c: Include elf-bfd.h (for elfcore_write functions).
9403         (gcore section): Ifdef for Solaris and Unixware only.
9404         (procfs_do_thread_registers): Unixware needs one lwpstatus
9405         per thread (not one prstatus or pstatus).
9406         (procfs_make_note_section): Iterate only over kernel threads (lwps),
9407         not over all gdb threads.  For unixware, call elfcore_write_pstatus
9408         once before iterating over threads.
9409
9410 2002-02-11  Richard Earnshaw  <rearnsha@arm.com>
9411
9412         * arm-tdep.h: New file.
9413         * arm-tdep.c: Include arm-tdep.h.
9414         (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
9415         (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
9416         (arm_print_float_info, arm_register_type, convert_to_extended)
9417         (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
9418         (arm_extract_return_value, arm_register_name): Make static.
9419         (arm_software_single_step): Similarly.  Fix types in declaration.
9420         (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
9421         (arm_store_return_value, arm_store_struct_return): New functions.
9422         (arm_gdbarch_init): Register the above functions.  Also register
9423         call_dummy_start_offset, sizeof_call_dummy_words,
9424         function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
9425         sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
9426         max_register_virtual_size, register_size.  Set up
9427         prologue_cache.saved_regs here, rather than ...
9428         (_initialize_arm_tdep): ... here.
9429         * config/arm/tm-arm.h (struct type, struct value): Delete forward
9430         declarations.
9431         (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
9432         (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
9433         (arm_print_float_info, arm_register_type, convert_to_extended)
9434         (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
9435         (arm_extract_return_value, arm_register_name): Delete declarations.
9436         (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
9437         (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
9438         (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
9439         (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
9440         (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
9441         (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
9442         (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
9443         (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
9444         (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
9445         (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
9446         (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
9447         (arm_get_next_pc): No-longer static -- these are needed by the RDI
9448         interface.
9449         * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
9450         * remote-rdi.c remote-rdp.c: Likewise.
9451         * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
9452         (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
9453         * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
9454         definition.
9455
9456         * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
9457         (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
9458         (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
9459         from non-ARM_ prefixed definitions.
9460         * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
9461         all uses of above.
9462         * remote-rdi.c remote-rdp.c: Likewise.
9463         * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
9464
9465 2002-02-11  Richard Earnshaw  <rearnsha@arm.com>
9466
9467         * arm-tdep.c (arm_frameless_function_invocation)
9468         (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
9469         (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
9470         (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
9471         (arm_pop_frame, arm_get_next_pc): Make static.
9472         (arm_gdbarch_init): Register above in gdbarch structure.
9473         (arm_read_fp): Renamed from arm_target_read_fp.
9474         (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
9475         * config/arm/tm-arm.h (arm_frameless_function_invocation)
9476         (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
9477         (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
9478         (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
9479         (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
9480         (arm_pc_is_thumb_dummy): Delete declarations.
9481         (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
9482         (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
9483         (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
9484         (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
9485
9486 2002-02-10  Daniel Jacobowitz  <drow@mvista.com>
9487
9488         * symtab.c (compare_search_syms): New function.
9489         (sort_search_symbols): New function.
9490         (search_symbols): Sort symbols after searching rather than
9491         before.
9492
9493 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
9494
9495         * NEWS: Linux -> GNU/Linux.
9496
9497 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
9498
9499         * gdbarch.sh: For for level one methods, disallow a definition
9500         when partially multi-arched.  Add comments explaining rationale.
9501         * gdbarch.h: Re-generate.
9502
9503 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
9504
9505         * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
9506         multi-arch partial.
9507
9508 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
9509
9510         * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL.  Exit on bad
9511         field.  Use diff -u.
9512         * gdbarch.c: Re-generate.
9513
9514 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
9515
9516         * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
9517         * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
9518         partial.
9519
9520 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
9521
9522         * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
9523         multi-arch partial.
9524         (PUSH_ARGUMENTS): Switch to using predefault.
9525         * gdbarch.c: Regenerate.
9526
9527 2002-02-10  Andrew Cagney  <ac131313@redhat.com>
9528
9529         * valops.c (PUSH_ARGUMENTS): Delete definition.
9530         * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
9531         partial.  Default to default_push_arguments.
9532         * gdbarch.h, gdbarch.c: Regenerate.
9533
9534 2002-02-09  Andrew Cagney  <ac131313@redhat.com>
9535
9536         * defs.h (throw_exception): Rename return_to_top_level.  Update
9537         comments.
9538         * utils.c (error_stream, internal_verror, quit): Ditto.
9539         * top.c (throw_exception, catcher): Ditto.
9540         * sparclet-rom.c (sparclet_load): Ditto.
9541         * remote.c (interrupt_query, minitelnet): Ditto.
9542         * remote-sds.c (interrupt_query): Ditto.
9543         * remote-mips.c (mips_error, mips_kill): Ditto.
9544         * ocd.c (interrupt_query): Ditto.
9545         * monitor.c (monitor_interrupt_query): Ditto.
9546         * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
9547         * target.h: Update comment.
9548
9549         * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
9550
9551 2002-02-09  Andrew Cagney  <ac131313@redhat.com>
9552
9553         * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
9554         default_double_format.
9555         * gdbarch.h, gdbarch.c: Re-generate.
9556         * findvar.c (floatformat_unknown): Delete variable definition.
9557         * doublest.h (floatformat_unknown): Delete variable declaration.
9558
9559 2002-02-09  Jim Blandy  <jimb@redhat.com>
9560
9561         * stabsread.c (read_type): Add code to parse Sun's syntax for
9562         prototyped function types.
9563
9564 2002-02-09  Andrew Cagney  <ac131313@redhat.com>
9565
9566         * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
9567         (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
9568
9569 2002-02-09  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
9570
9571         * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
9572         _initialize_solib.  Fixes name clash with solib.c:_initialize_solib,
9573         now _initialize_xcoffsolib gets called again and overrides the
9574         commands from solib.c in a native configuration.
9575
9576 2002-02-09  Mark Kettenis  <kettenis@gnu.org>
9577
9578         * doublest.c (store_typed_floating): Don't try to return a value.
9579         Fixes PR gdb/290.
9580
9581 2002-02-08  Jim Blandy  <jimb@redhat.com>
9582
9583         * c-typeprint.c (c_type_print_varspec_suffix): If a function type
9584         is prototyped and has no arguments, print its argument list as
9585         `(void)'.
9586
9587 2002-02-08  Chris Demetriou  <cgd@broadcom.com>
9588
9589         * MAINTAINERS (write-after-approval): Add myself.
9590         (paper-trail): I've escaped!
9591
9592 2002-02-08  Christopher Faylor  <cgf@redhat.com>
9593
9594         * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
9595         changes.
9596         (_initialize_check_for_gdb_ini): Ditto.
9597
9598 2002-02-08  Martin M. Hunt  <hunt@redhat.com>
9599
9600         * win32-nat.c (cygwin_pid_to_str): Fix typo.
9601         xaprintf -> xasprintf.
9602
9603 2002-02-08  Pierre Muller  <muller@ics.u-strasbg.fr>
9604
9605         * win32-nat.c: Remove use of printf and sprintf functions.
9606
9607 2002-02-08  Richard Earnshaw  <rearnsha@arm.com>
9608
9609         * arm-tdep.c (arm_frame_chain_valid): Make static.
9610         (arm_push_arguments): Likewise.
9611         (arm_gdbarch_init): New function.
9612         (_initialize_arm_tdep): Call it.
9613         * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
9614         (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
9615         (FRAME_CHAIN_VALID): Delete.
9616         (arm_frame_chain_valid): Delete declaration.
9617         (PUSH_ARGUMENTS): Delete.
9618         (arm_push_arguments): Delete declaration.
9619         (CALL_DUMMY_P): Delete.
9620
9621 2002-02-08  Andrew Cagney  <ac131313@redhat.com>
9622             Corinna Vinschen  <vinschen@redhat.com>
9623
9624         * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
9625         on builtin float types.
9626
9627 2002-02-08  Daniel Jacobowitz  <drow@mvista.com>
9628
9629         * utils.c: Include <curses.h> before "bfd.h".
9630         * tui/tui-hooks.c: Likewise.
9631         * tui/tui.c: Likewise.
9632         * tui/tuiCommand.c: Likewise.
9633         * tui/tuiData.c: Likewise.
9634         * tui/tuiDataWin.c: Likewise.
9635         * tui/tuiDisassem.c: Likewise.
9636         * tui/tuiGeneralWin.c: Likewise.
9637         * tui/tuiIO.c: Likewise.
9638         * tui/tuiLayout.c: Likewise.
9639         * tui/tuiRegs.c: Likewise.
9640         * tui/tuiSource.c: Likewise.
9641         * tui/tuiSourceWin.c: Likewise.
9642         * tui/tuiStack.c: Likewise.
9643         * tui/tuiWin.c: Likewise.
9644
9645 2002-02-07  Elena Zannoni  <ezannoni@redhat.com>
9646
9647         * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
9648         to include space for pseudoregs as well. Update loops accordingly.
9649         (sh_fp_frame_init_saved_regs): Ditto.
9650         (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
9651
9652 2002-02-07  Andrew Cagney  <ac131313@redhat.com>
9653
9654         * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
9655         Add Richard Earnshaw to Arm maintainers.
9656
9657 2002-02-07  Andrew Cagney  <ac131313@redhat.com>
9658
9659         * defs.h (warning_begin): Delete declaration.
9660
9661         * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
9662         Delete macro.
9663
9664 2002-02-07  Michael Snyder  <msnyder@redhat.com>
9665
9666         * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
9667         Logic bug, remove misplaced else.
9668
9669 2002-02-07  Klee Dienes  <klee@apple.com>
9670
9671         * fork-inferior.c (fork_inferior): Add '!' to the list of
9672         characters that need to be quoted when building a string for the
9673         shell.  Quote '!' specifically with a backslash, since CSH chokes
9674         when trying to evaluate "str!str".
9675
9676 2002-02-06  Nick Clifton  <nickc@cambridge.redhat.com>
9677
9678         * rdi-share/host.h: Only provide a typedef for bool if it is not
9679         defined.
9680
9681 2002-02-04  Michael Snyder  <msnyder@redhat.com>
9682
9683         * breakpoint.h (enum bptype): Add new overlay event bp type.
9684         (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
9685
9686         * breakpoint.c (create_internal_breakpoint): New function.
9687         (internal_breakpoint_number): Moved into create_internal_breakpoint.
9688         (create_longjmp_breakpoint): Use create_internal_breakpoint.
9689         (create_thread_event_breakpoint): Ditto.
9690         (create_solib_event_breakpoint): Ditto.
9691         (create_overlay_event_breakpoint): New function.
9692         (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
9693         (update_breakpoints_after_exec): Delete and re-initialize
9694         overlay event breakpoints after an exec.  Add FIXME comment
9695         about longjmp breakpoint.
9696         (print_it_typical): Ignore overlay event breakpoints.
9697         (print_one_breakpoint): Ditto.
9698         (mention): Ditto.
9699         (bpstat_what): Do not stop for overlay event breakpoints.
9700         (delete_breakpoint): Don't delete overlay event breakpoints.
9701         (breakpoint_re_set_one): Delete the overlay event breakpoint.
9702         (breakpoint_re_set): Re-create overlay event breakpoint.
9703
9704         * symfile.c (overlay_auto_command): Enable overlay breakpoints.
9705         (overlay_manual_command): Disable overlay breakpoints.
9706         (overlay_off_command): Disable overlay breakpoints.
9707
9708 2002-02-06  Richard Earnshaw  <rearnsha@arm.com>
9709
9710         * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
9711         (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
9712         to here from config/tm-arm.h.
9713         (coff_sym_is_thumb): Make static.
9714         (arm_elf_make_msymbol_special): New function.
9715         (arm_coff_make_msymbol_special): New function.
9716         * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
9717         (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
9718         (coff_sym_is_thumb): Delete declaration.
9719         (arm_elf_make_msymbol_special): Declare.
9720         (arm_coff_make_msymbol_special): Declare.
9721         (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
9722         (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
9723
9724 2002-02-06  Richard Earnshaw  <rearnsha@arm.com>
9725
9726         * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
9727
9728 2002-02-06  Richard Earnshaw  <rearnsha@arm.com>
9729
9730         * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
9731         * gdbarch.c gdbarch.h: Regenerate.
9732         * arch-utils.c (default_print_float_info): New function.
9733         * arch-utils.h (default_print_float_info): Prototype it.
9734         * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
9735         * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
9736         (PRINT_FLOAT_INFO): Document it.
9737
9738         * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
9739         * config/arm/tm-arm.h (FLOAT_INFO): Delete.
9740         (PRINT_FLOAT_INFO): Define.
9741
9742 2002-02-06  Pierre Muller  <muller@ics.u-strasbg.fr>
9743
9744         * win32-nat.c (_initialize_check_for_gdb_ini):
9745         Add typecast to sprintf argument to suppress a warning.
9746
9747 2002-02-05  Pierre Muller  <muller@ics.u-strasbg.fr>
9748
9749         * win32-nat.c (last_sig): Changed type of variable to target_signal,
9750         to allow easier handling of pass state.
9751         (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
9752         that gives exception name and address.
9753         (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
9754         and set last_sig value to ourstatus->value.sig. Some missing
9755         exceptions added.
9756         (child_continue): Correctly report continue_status.
9757         (get_child_debug_event,do_initial_child_stuff): Set last_sig to
9758         TARGET_SIGNAL_0 (new default value).
9759         (child_resume): consider sig argument passed to decide if
9760         the exception should be passed to debuggee or not.
9761
9762 2002-02-05  Michael Snyder  <msnyder@redhat.com>
9763
9764         * regcache.c (fetch_register): Call target_fetch_register
9765         only if we don't call FETCH_PSEUDO_REGISTER.
9766         (store_register): Call target_store_register only if we
9767         don't call STORE_PSEUDO_REGISTER.
9768
9769 2002-02-05  Elena Zannoni  <ezannoni@redhat.com>
9770
9771         * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
9772         ELF_MAKE_MSYMBOL_SPECIAL.
9773         * gdbarch.c, gdbarch.h: Regenerate.
9774         * arch-utils.c (default_make_msymbol_special): New function.
9775         * arch-utils.h (default_make_msymbol_special): Export.
9776         * elfread.c (elf_symtab_read): Compile use of
9777         ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
9778         multiarched.
9779         * coffread.c (coff_symtab_read): Ditto, for
9780         COFF_MAKE_MSYMBOL_SPECIAL.
9781
9782 2002-02-05  Jim Blandy  <jimb@redhat.com>
9783
9784         * solib-svr4.c (svr4_truncate_ptr): New function.
9785         (svr4_relocate_section_addresses): Do the address arithmetic with
9786         the appropriate truncation for target addresses, even when
9787         CORE_ADDR is larger than a target address.
9788
9789 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
9790
9791         * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
9792         to (int *).
9793
9794 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
9795
9796         * gdbserver/linux-low.c (kill_inferior): Remove commented out
9797         code.
9798
9799 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
9800
9801         * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
9802
9803 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
9804
9805         * gdbserver/linux-low.c: Remove unused include files.
9806
9807 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
9808
9809         * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
9810         (read_inferior_memory): Use it.
9811         (write_inferior_memory): Likewise.
9812
9813 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
9814
9815         * gdbserver/linux-low.c (create_inferior): Call strerror instead of
9816         grubbing through sys_errlist.
9817
9818 2002-02-05  Daniel Jacobowitz  <drow@mvista.com>
9819
9820         * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
9821
9822 2002-02-04  Pierre Muller  <muller@ics.u-strasbg.fr>
9823         * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
9824
9825 2002-02-04  Andrew Cagney  <ac131313@redhat.com>
9826
9827         * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
9828         (do_sfunc, set_cmd_sfunc): New functions.
9829
9830         * command.h (struct cmd_list_element): Add field func.
9831         * cli/cli-decode.h (struct cmd_list_element): Ditto.
9832         * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
9833         * cli/cli-decode.h: Ditto.
9834
9835         * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
9836         (help_all, help_cmd_list): Ditto.
9837         (find_cmd, complete_on_cmdlist): Ditto.
9838         * top.c (execute_command): Ditto.
9839
9840         * cli/cli-setshow.c (do_setshow_command): Call func instead of
9841         function.sfunc.
9842
9843         * infcmd.c (notice_args_read): Fix function signature.
9844
9845         * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
9846         * cli/cli-decode.c (add_set_cmd): Ditto.
9847         * utils.c (initialize_utils): Ditto.
9848         * maint.c (_initialize_maint_cmds): Ditto.
9849         * infrun.c (_initialize_infrun): Ditto.
9850         * demangle.c (_initialize_demangler): Ditto.
9851         * remote.c (add_packet_config_cmd): Ditto.
9852         * mips-tdep.c (_initialize_mips_tdep): Ditto.
9853         * cris-tdep.c (_initialize_cris_tdep): Ditto.
9854         * proc-api.c (_initialize_proc_api): Ditto.
9855         * kod.c (_initialize_kod): Ditto.
9856         * valprint.c (_initialize_valprint): Ditto.
9857         * top.c (init_main): Ditto.
9858         * infcmd.c (_initialize_infcmd): Ditto.
9859         * corefile.c (_initialize_core): Ditto.
9860         * arm-tdep.c (_initialize_arm_tdep): Ditto.
9861         * arch-utils.c (initialize_current_architecture): Ditto.
9862         (_initialize_gdbarch_utils): Ditto.
9863         * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
9864
9865         * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
9866         * wince.c (_initialize_inftarg): Ditto.
9867         * symfile.c (_initialize_symfile): Ditto.
9868         * mips-tdep.c (_initialize_mips_tdep): Ditto.
9869         * language.c (_initialize_language): Ditto.
9870         * arc-tdep.c (_initialize_arc_tdep): Ditto.
9871
9872 2002-02-04  Michael Snyder  <msnyder@redhat.com>
9873
9874         * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
9875
9876 2002-02-04  Daniel Jacobowitz  <drow@mvista.com>
9877
9878         * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
9879         Add rules for building the register data files.
9880
9881 2002-02-04  Daniel Jacobowitz  <drow@mvista.com>
9882
9883         * regformats/regdat.sh: Add braces to the definition of
9884         expedite_regs_${arch}.
9885
9886 2002-02-04  Daniel Jacobowitz  <drow@mvista.com>
9887
9888         * regformats/regdef.h (struct reg): Add comment describing the
9889         requirements for offset and size fields.
9890
9891 2002-02-04  Andreas Schwab  <schwab@suse.de>
9892
9893         * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
9894         * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
9895
9896 2002-02-04  Richard Earnshaw  <rearnsha@arm.com>
9897
9898         * gdbarch.sh (copyright): Update years in generated header.
9899         (SMASH_TEXT_ADDRESS): Add rule.
9900         * gdbarch.h, gdbarch.c: Re-generate.
9901         * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
9902         * dbxread.c: Likewise.
9903         * dwarfread.c: Likewise.
9904         * elfread.c: Likewise.
9905         * somread.c: Likewise.
9906
9907         * arm-tdep.c (arm_smash_text_address): New function.
9908         * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
9909
9910 2002-02-04  Pierre Muller  <muller@ics.u-strasbg.fr>
9911
9912         Add support for hardware watchpoints on win32 native.
9913         * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
9914         CONTEXT_DEBUG_REGISTERS.
9915         (dr variable): New variable. Static array containing a local copy
9916         of debug registers.
9917         (debug_registers_changed): New variable.  Reflects when debug registers
9918         are changed and need to be written to inferior.
9919         (debug_registers_used): New variable. Reflects when any debug register
9920         was set, used when new threads are created.
9921         (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
9922         i386-nat code.
9923         (thread_rec): Set dr array if id is the thread of current_event .
9924         (child_continue, child_resume): Change the debug registers for all
9925         threads if debug_registers_changed.
9926         (child_add_thread): Change the debug registers if debug_registers_used.
9927         * config/i386/cygwin.mh: Add use of i386-nat.o file.
9928         Link nm.h to new nm-cygwin.h file.
9929         + config/i386/nm-cygwin.h: New file. Contains the macros used for use
9930         of hardware registers.
9931
9932 2002-02-03  Andrew Cagney  <ac131313@redhat.com>
9933
9934         * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
9935         Restore behavour broken by 2002-01-20 Andrew Cagney
9936         <ac131313@redhat.com> IEEE_FLOAT removal.
9937
9938 2002-02-03  Daniel Jacobowitz  <drow@mvista.com>
9939
9940         * c-valprint.c (c_val_print): Pass a proper valaddr to
9941         cp_print_class_method.
9942         * valops.c (search_struct_method): If there is only one method
9943         and args is NULL, return that method.
9944
9945 2002-02-03  Daniel Jacobowitz  <drow@mvista.com>
9946
9947         * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
9948         accessing tag_name directly.
9949
9950 2002-02-03  Daniel Jacobowitz  <drow@mvista.com>
9951
9952         * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
9953         of accessing tag_name directly.
9954
9955 2002-02-03  Daniel Jacobowitz  <drow@mvista.com>
9956
9957         PR gdb/280
9958         * gdbtypes.c (replace_type): New function.
9959         * gdbtypes.h (replace_type): Add prototype.
9960         * stabsread.c (read_type): Use replace_type.
9961
9962 2002-02-03  Richard Earnshaw  <rearnsha@arm.com>
9963
9964         * Makefile.in (memattr.o): Add missing dependencies rule.
9965
9966 2002-02-03  Peter Schauer  <pes@regent.e-technik.tu-muenchen.de>
9967
9968         * breakpoint.c (break_at_finish_command): Really export.
9969         (break_at_finish_at_depth_command): Ditto.
9970         (tbreak_at_finish_command): Ditto.
9971         * hppa-tdep.c: Include completer.h.
9972         * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
9973         (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
9974
9975 2002-02-01  Andrew Cagney  <ac131313@redhat.com>
9976
9977         * utils.c (do_write): New function.
9978         (error_stream): Rewrite combining the code from error_begin and
9979         verror.
9980         (verror): Rewrite using error_stream.
9981         (error_begin): Delete function.
9982
9983 2002-02-01  Andrew Cagney  <ac131313@redhat.com>
9984
9985         * utils.c (error_begin): Make static.
9986         * defs.h (error_begin): Delete declaration.
9987
9988         * linespec.c (cplusplus_error): Replace cplusplus_hint.
9989         (decode_line_1): Use cplusplus_error instead of error_begin,
9990         cplusplus_hint and return_to_top_level.
9991         * coffread.c (coff_symfile_read): Use error instead of error_begin
9992         and return_to_top_level.
9993         * infrun.c (default_skip_permanent_breakpoint): Ditto.
9994
9995 2002-02-01  Andrew Cagney  <ac131313@redhat.com>
9996
9997         * language.h (type_error, range_error): Make string parameter
9998         constant.
9999         * language.c (warning_pre_print): Delete extern declaration.
10000         * dwarfread.c (warning_pre_print): Ditto.
10001         * language.c (type_error, range_error): Rewrite to use verror and
10002         vwarning instead of warning_begin.
10003
10004 2002-02-01  Michael Snyder  <msnyder@redhat.com>
10005
10006         * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
10007         (set_ignore_count): Move misplaced comment back where it belongs.
10008
10009 2002-02-01  Andrew Cagney  <ac131313@redhat.com>
10010
10011         * command.h (NO_FUNCTION): Delete macro.
10012         * cli/cli-decode.h (NO_FUNCTION): Ditto.
10013         * top.c (execute_command): Replace NO_FUNCTION with NULL.
10014         * tracepoint.c (_initialize_tracepoint): Ditto.
10015         * cli/cli-decode.c (add_set_cmd): Ditto.
10016         * cli/cli-cmds.c (init_cli_cmds): Ditto.
10017
10018 2002-02-01  Daniel Jacobowitz  <drow@mvista.com>
10019
10020         * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
10021         Update ``this'' pointer when calling virtual functions.
10022
10023 2002-02-01  Michael Snyder  <msnyder@redhat.com>
10024
10025         * breakpoint.c (create_temp_exception_breakpoint): Delete.
10026         * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
10027
10028 2002-02-01  Daniel Jacobowitz  <drow@mvista.com>
10029
10030         * regformats/reg-arm.dat: New file.
10031         * regformats/reg-i386.dat: New file.
10032         * regformats/reg-ia64.dat: New file.
10033         * regformats/reg-m68k.dat: New file.
10034         * regformats/reg-mips.dat: New file.
10035         * regformats/reg-ppc.dat: New file.
10036         * regformats/reg-sh.dat: New file.
10037         * regformats/regdef.h: New file.
10038         * regformats/regdat.sh: New file.
10039
10040 2002-02-01  Richard Earnshaw  <reanrsha@arm.com>
10041
10042         * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
10043         (arm_frame_args_address, arm_frame_locals_address): New functions.
10044         (arm_frame_num_args): New function.
10045         * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
10046         (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
10047         (FRMA_NUM_ARGS): Call arm_frame_num_args.
10048
10049 2002-01-31  Michael Snyder  <msnyder@redhat.com>
10050
10051         * breakpoint.c (break_at_finish_command): Export.
10052         (break_at_finish_at_depth_command): Export.
10053         (tbreak_at_finish_command): Export.
10054         (_initialize_breakpoint): Delete "xbreak" and "tbreak" commands.
10055         * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
10056         "tbreak" commands, which are HPPA specific.
10057
10058         * printcmd.c (disassemble_command): Remove an ancient
10059         artifact of an old merge.
10060
10061         * symfile.h (enum overlay_debugging_state):
10062         Define enum constant values for overlay mode.
10063         * symfile.c (overlay_debugging): Use enums instead of literals.
10064         (overlay_is_mapped, overlay_auto_command,
10065         overlay_manual_command): Ditto.
10066
10067         * breakpoint.c (insert_breakpoints, remove_breakpoint,
10068         breakpoint_here_p, breakpoint_inserted_here_p,
10069         breakpoint_thread_match, bpstat_stop_status,
10070         describe_other_breakpoints, check_duplicates, clear_command):
10071         Coding standard fixes.
10072
10073         * target.c (target_xfer_memory): Add spaces, coding standard.
10074         (do_xfer_memory): Add missing line to trust-readonly
10075         code: check bfd SEC_READONLY flag for section.
10076
10077 2002-01-31  Andrew Cagney  <ac131313@redhat.com>
10078
10079         * PROBLEMS: Fix typo, 5.1->5.1.1.
10080
10081 2002-01-30  Daniel Jacobowitz  <drow@mvista.com>
10082
10083         * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
10084         data symbols, since we search based on textlow and texthigh.
10085         (find_pc_sect_symtab): Likewise.
10086
10087 2002-01-30  Andrew Cagney  <ac131313@redhat.com>
10088
10089         * defs.h (vwarning): Declare.
10090         * utils.c (vwarning): New function.
10091         (warning): Call vwarning.
10092         (warning_begin): Delete function.
10093
10094         * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
10095         the warning message.
10096         * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
10097         warning_begin.
10098
10099 2002-01-30  Michael Snyder  <msnyder@redhat.com>
10100
10101         * NEWS: Mention "set trust-readonly-sections" command.
10102         Mention generate-core-file command.
10103
10104 2002-01-15  Michael Snyder  <msnyder@redhat.com>
10105
10106         * target.c: New command, "set trust-readonly-sections on".
10107         (do_xfer_memory): Honor the suggestion to trust readonly sections
10108         by reading them from the object file instead of from the target.
10109         (initialize_targets): Register command "set trust-readonly-sections".
10110
10111 2002-01-29  Andrew Cagney  <ac131313@redhat.com>
10112
10113         * parse.c (target_map_name_to_register): Simplify, search regs and
10114         pseudo-regs using a single loop.
10115
10116 2002-01-30  Andrew Cagney  <ac131313@redhat.com>
10117
10118         * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
10119
10120 2002-01-15  Rodney Brown  <rbrown64@csc.com.au>
10121
10122         * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
10123         * config/i386/i386v42mp.mh: Add i387-nat.o .
10124         * i386v4-nat.c: Include i387-nat.h.
10125         (supply_fpregset): Use i387_supply_fsave.
10126         (fill_fpregset): Use i387_fill_fsave.
10127
10128 2002-01-30  Richard Earnshaw  <rearnsha@arm.com>
10129
10130         * arm-tdep.c (arm_call_dummy_words): Define.
10131         * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
10132         * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
10133         (CALL_DUMMY_WORDS): Define.
10134         (arm_call_dummy_words): Declare.
10135         * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
10136         (arm_linux_call_dummy_words): Declare.
10137
10138 2002-01-30  Andreas Schwab  <schwab@suse.de>
10139
10140         * m68klinux-nat.c: Fix last change to use regcache_collect
10141         instead of referencing registers[] directly.
10142
10143 2002-01-29  Andrew Cagney  <ac131313@redhat.com>
10144
10145         * parse.c (target_map_name_to_register): Delete code wrapped in
10146         #ifdef REGISTER_NAME_ALIAS_HOOK.
10147
10148 2002-01-28  Michael Snyder  <msnyder@redhat.com>
10149
10150         * regcache.c (legacy_read_register_gen): Need to be able to
10151         read pseudo-register as well as real register.
10152         (legacy_write_register_gen): Ditto.
10153
10154 2002-01-28  Andrew Cagney  <ac131313@redhat.com>
10155
10156         * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
10157         * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
10158         * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
10159         * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
10160         * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
10161         * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
10162         * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
10163         * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
10164         * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
10165         * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
10166         * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
10167         * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
10168         * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
10169         * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
10170         * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
10171         * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
10172         * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
10173         * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
10174         * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
10175         * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
10176
10177 2002-01-28  Andrew Cagney  <ac131313@redhat.com>
10178
10179         * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
10180         (target_byte_order): Initialize to BFD_ENDIAN_BIG.
10181         (initialize_current_architecture): Update target_byte_order using
10182         information from BFD.
10183         * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
10184         * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
10185
10186 2002-01-28  Andrew Cagney  <ac131313@redhat.com>
10187
10188         * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
10189         * vax-tdep.c (INVALID_FLOAT): To here.  Document why it is broken.
10190
10191         * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
10192         #ifdef INVALID_FLOAT.
10193         * infcmd.c (do_registers_info): Ditto.
10194         * values.c (unpack_double): Ditto.  Add comment.
10195
10196         * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
10197         already commented out.
10198
10199 2002-01-26  Andreas Schwab  <schwab@suse.de>
10200
10201         * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
10202         * m68klinux-nat.c: Update ptrace interface for fetching/storing
10203         registers and add support for PTRACE_GETREGS.
10204
10205 2002-01-24  Andrew Cagney  <ac131313@redhat.com>
10206
10207         GDB 5.1.1 released from 5.1 branch.
10208         * NEWS: Add 5.1.1 news.
10209         * README: Sync with 5.1 branch.
10210
10211 2002-01-23  Fred Fish  <fnf@redhat.com>
10212
10213         * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
10214         stabstring on initial malloc.  Reallocing will copy it for us,
10215         if necessary.
10216
10217 2002-01-23  Elena Zannoni  <ezannoni@redhat.com>
10218
10219         * Makefile.in (hpread_h): Delete.
10220         (HFILES_NO_SRCDIR): Remove hpread.h.
10221         (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
10222         (hpread.o): Update dependencies.
10223         (hp-psymtab-read.o, hp-symtab-read.o): Remove.
10224
10225         * hp-psymtab-read.c: Remove file.
10226         * hp-symtab-read.c: Remove file.
10227         * hpread.h: Remove file.
10228
10229         * hpread.c: Merge all contents of hp-psymtab-read.c,
10230         hp-symtab-read.c and hpread.h into this file, as it was prior to
10231         January 1999.
10232
10233         * config/pa/hpux11w.mh, config/pa/hpux11.mh,
10234         config/pa/hpux1020.mh, config/pa/hppaosf.mh,
10235         config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
10236         Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
10237
10238 2002-01-23  Elena Zannoni  <ezannoni@redhat.com>
10239
10240         * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
10241         fill_gregset): Call gdbarch_tdep() just once, assign result to
10242         variable and use that, instead of calling the function several
10243         times.
10244
10245 2002-01-24  Alexandre Oliva  <aoliva@redhat.com>
10246
10247         * configure.host: Accept sparcv9 as alias for sparc64.
10248         * configure.tgt: Likewise.
10249
10250 2002-01-22  Kevin Buettner  <kevinb@redhat.com>
10251
10252         * solib-aix5.c (build_so_list_from_mapfile)
10253         (aix5_relocate_main_executable): Fix xcalloc() calls so order of
10254         arguments is not reversed.
10255         * solib-sunos.c (sunos_relocate_main_executable): Likewise.
10256         * solib-svr4.c (svr4_relocate_main_executable): Likewise.
10257
10258 2002-01-22  Elena Zannoni  <ezannoni@redhat.com>
10259
10260         * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
10261         modified version of obsolete sh_fetch_pseudo_register.
10262         (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
10263         (sh4_register_read): New function.
10264         (sh_pseudo_register_write): New function. Renamed and modified
10265         version of obsolete sh_store_pseudo_register.
10266         (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
10267         (sh4_register_write): New function.
10268         (sh_gdbarch_init): Remove setting of gdbarch function
10269         fetch_pseudo_register and store_pseudo_register. Remove setting of
10270         register_convert_to_raw, register_convert_to_virtual,
10271         register_convertible.
10272         (sh_sh4_register_convertible): Delete. No longer needed. All is
10273         taken care by architecture specific functions
10274         register_read/register_write.
10275         (sh_sh4_register_convert_to_virtual): Make static.
10276         (sh_sh4_register_convert_to_raw): Ditto.
10277
10278 2002-01-22  Andrew Cagney  <ac131313@redhat.com>
10279
10280         * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
10281         (floatformat_is_nan, floatformat_mantissa): Ditto.
10282
10283         * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
10284         for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
10285         builtin_type_ieee_double_little,
10286         builtin_type_ieee_double_littlebyte_bigword,
10287         builtin_type_m68881_ext, builtin_type_i960_ext,
10288         builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
10289         builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
10290         builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
10291         builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
10292
10293 2002-01-22  Corinna Vinschen  <vinschen@redhat.com>
10294
10295         * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
10296         parameter.  Set frameless flag if it exists and depended of
10297         whether the scanned function is frameless or not.
10298         (xstormy16_skip_prologue): If function is frameless, return
10299         result of xstormy16_scan_prologue().
10300         (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
10301         call.
10302
10303 2002-01-21  Elena Zannoni  <ezannoni@redhat.com>
10304
10305         * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
10306         sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
10307         sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
10308         sh_sh4_register_byte, sh_sh4_register_raw_size,
10309         sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
10310         sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
10311         sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
10312         sh_store_pseudo_register, sh_do_pseudo_register): Call
10313         gdbarch_tdep() just once, assign result to variable and use that,
10314         instead of calling the function several times.
10315
10316 2002-01-20  Mark Kettenis  <kettenis@gnu.org>
10317
10318         * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
10319         macros instead of LAST_FPU_CTRL_REGNUM.
10320         (store_register): Likewise.
10321
10322 2002-01-21  Jim Blandy  <jimb@redhat.com>
10323
10324         * infcmd.c (run_command): Check that the `exec' target layer's BFD
10325         is up-to-date before running the program, not just when a program
10326         exits.
10327
10328 2002-01-21  Fred Fish  <fnf@redhat.com>
10329
10330         * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
10331         when we have found all instructions we are looking for.
10332
10333 2002-01-21  Richard Earnshaw  <rearnsha@arm.com>
10334
10335         * arm-tdep.c (arm_register_name): New function.
10336         (arm_registers_names): Make static.
10337         * config/arm/tm-arm.h (arm_register_names): Delete declaration.
10338         (arm_register_name): Declare.
10339         (REGISTER_NAME): Use it.
10340
10341 2002-01-21  Richard Earnshaw  <rearnsha@arm.com>
10342             Kevin Buettner  <kevinb@redhat.com>
10343
10344         Convert arm targets to new FRAME interface.
10345         * arm-tdep.c (struct frame_extra_info): Remove fsr.
10346         (arm_frame_find_save_regs): Delete.
10347         (arm_frame_init_saved_regs): New.
10348         (arm_init_extra_frame_info): Alloacte saved_regs as required.
10349         Allocate extra_info as required.  Convert all uses of fsr.regs
10350         to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
10351         to use extra_info.
10352         (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
10353         (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
10354         (check_prologue_cache, save_prologue_cache): Likewise.
10355         (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
10356         * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
10357         (FRAME_FIND_SAVED_REGS): Delete.
10358         (arm_frame_find_saved_regs): Delete prototype.
10359         (arm_frame_init_saved_regs): New prototype.
10360         (FRAME_INIT_SAVED_REGS): Define.
10361
10362 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
10363
10364         * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
10365
10366 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
10367
10368         From Jeff Law <law@redhat.com>:
10369         * infttrace.c: Include <sys/pstat.h>.
10370         (child_pid_to_exec_file): Revamp.  Use pstat call to get the
10371         exec file if the ttrace equivalent fails.
10372
10373 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
10374
10375         * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
10376         (closeLogFile): Ditto.
10377
10378 2002-01-20  Michael Chastain  <mec@shout.net>
10379
10380         * top.c (print_gdb_version): Bump copyright year to 2002.
10381
10382 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
10383
10384         * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
10385         Zannoni and Eli Zaretskii.
10386
10387 2002-01-20  Daniel Jacobowitz  <drow@mvista.com>
10388
10389         * buildsym.c: Update copyright years.
10390         * c-typeprint.c: Likewise.
10391         * dwarf2read.c: Likewise.
10392         * f-typeprint.c: Likewise.
10393         * gdbtypes.c: Likewise.
10394         * gdbtypes.h: Likewise.
10395         * hp-symtab-read.c: Likewise.
10396         * hpread.c: Likewise.
10397         * mdebugread.c: Likewise.
10398         * p-typeprint.c: Likewise.
10399
10400 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
10401
10402         * remote-sim.c (gdbsim_open): Simplify code testing the macro
10403         TARGET_BYTE_ORDER_SELECTABLE_P.  Assume the target is always
10404         byte-order selectable.
10405         * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
10406         * arch-utils.c: Ditto.
10407         (set_endian): Ditto.
10408         (set_endian_from_file): Ditto.
10409         * gdbserver/low-sim.c (create_inferior): Ditto.
10410         * gdbarch.sh: Ditto.
10411         * gdbarch.h: Re-generate.
10412         * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
10413         * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
10414         * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
10415         * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
10416         * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
10417         * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
10418         * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
10419         * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
10420         macro definition.
10421         * config/mips/tm-wince.h: Remove #undef of macro
10422         TARGET_BYTE_ORDER_SELECTABLE.
10423         * config/sh/tm-wince.h: Ditto.
10424
10425 2002-01-20  Daniel Jacobowitz  <drow@mvista.com>
10426
10427         * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
10428         member function fields.  Add accessor macro
10429         TYPE_FN_FIELD_ARTIFICIAL.
10430         * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
10431         * c-typeprint.c (c_type_print_base): Skip artificial member
10432         functions.
10433
10434 2002-01-20  Daniel Jacobowitz  <drow@mvista.com>
10435
10436         * f-typeprint.c: Delete unused function f_type_print_args.
10437         * p-typeprint.c: Delete unused function pascal_type_print_args.
10438
10439 2002-01-20  Daniel Jacobowitz  <drow@mvista.com>
10440
10441         * gdbtypes.h (struct type): Fix whitespace.  Remove obsolete
10442         comment.  Add ``artificial'' to ``union field_location''.
10443
10444         * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
10445
10446         * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
10447         * mdebugread.c (parse_symbol): Likewise.
10448         * stabsread.c (define_symbol): Likewise.
10449         * hp-symtab-read.c (hpread_function_type): Likewise, instead of
10450         initializing TYPE_FIELD_BITPOS to n (obsolete).
10451         (hpread_doc_function_type): Likewise.
10452         * hpread.c (hpread_function_type): Likewise.
10453
10454 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
10455
10456         * configure.in (host_makefile_frag): Only require a host makefile
10457         fragment when a native build.
10458         * configure: Re-generate.
10459
10460 2002-01-20  Andrew Cagney  <ac131313@redhat.com>
10461
10462         * doublest.h (floatformat_from_type): Declare.
10463         * doublest.c (floatformat_from_type): New function.
10464         (convert_typed_floating): Use.
10465
10466         * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
10467         call to function floatformat_from_type.
10468
10469         * gdbarch.sh (IEEE_FLOAT): Delete.
10470         * gdbarch.h, gdbarch.c: Re-generate.
10471         * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
10472         * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
10473         * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
10474         * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
10475         * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
10476         * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
10477         * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
10478         * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
10479         * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
10480         * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
10481         * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
10482         * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
10483
10484         * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
10485         * x86-64-tdep.c (i386_gdbarch_init): Ditto.
10486         * sparc-tdep.c (sparc_gdbarch_init): Ditto.
10487         * sh-tdep.c (sh_gdbarch_init): Ditto.
10488         * mips-tdep.c (mips_gdbarch_init): Ditto.
10489         * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
10490         * cris-tdep.c (cris_gdbarch_init): Ditto.
10491
10492 2002-01-20  Jiri Smid  <smid@suse.cz>
10493
10494         * configure.host, configure.tgt: Support x86-64.
10495         * NEWS: Note new target x86-64.
10496
10497         * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
10498         * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
10499         * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
10500         * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
10501         x86-64-linux-nat.o): Fix dependencies.
10502
10503 2002-01-19  Andrew Cagney  <ac131313@redhat.com>
10504
10505         * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
10506         * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
10507         * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
10508         * config/sparc/xm-sun4os4.h: Delete file.
10509         * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
10510
10511 2002-01-19  Andrew Cagney  <ac131313@redhat.com>
10512
10513         * config/sparc/sparclynx.mh (XM_FILE): Delete.
10514         * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
10515         * config/m68k/m68klynx.mh (XM_FILE): Delete.
10516         * config/i386/i386lynx.mh (XM_FILE): Delete.
10517         * config/rs6000/xm-rs6000ly.h: Delete file.
10518         * config/sparc/xm-sparclynx.h: Delete file.
10519         * config/m68k/xm-m68klynx.h: Delete file.
10520         * config/i386/xm-i386lynx.h: Delete file.
10521         * config/xm-lynx.h: Delete file.
10522         * config/djgpp/fnchange.lst: Update.
10523
10524 2002-01-19  Jason Thorpe  <thorpej@wasabisystems.com>
10525
10526         * alpha-tdep.c (alpha_register_byte): New function.
10527         (alpha_register_raw_size): Ditto.
10528         (alpha_register_virtual_size): Ditto.
10529         (alpha_skip_prologue_internal): Renamed from
10530         alpha_skip_prologue.
10531         (alpha_skip_prologue): New version that calls
10532         alpha_skip_prologue_internal.
10533         (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
10534         * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
10535         second argument from alpha_skip_prologue.
10536         (REGISTER_BYTE): Use alpha_register_byte.
10537         (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
10538         (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
10539         (FRAMELESS_FUNCTION_INVOCATION): Use
10540         generic_frameless_function_invocation_not.
10541         (FRAME_NUM_ARGS): Use frame_num_args_unknown.
10542         (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
10543
10544 2002-01-19  Andrew Cagney  <ac131313@redhat.com>
10545
10546         * config/mips/xm-news-mips.h: Delete file.
10547         * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
10548
10549         * config/m88k/xm-m88k.h: Delete file.
10550         * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
10551         * config/m88k/xm-delta88v4.h: Ditto.
10552         * config/m88k/xm-delta88.h: Ditto.
10553
10554         * config/alpha/xm-fbsd.h: Delete file.
10555         * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
10556
10557         * config/sparc/xm-sparc.h: Delete file.
10558         * Makefile.in (xm-sun4os4.h): Delete dependency.
10559         * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
10560         * config/sparc/xm-sun4os4.h: Ditto.
10561         * config/sparc/xm-linux.h: Ditto.
10562
10563         * config/i386/xm-windows.h: Delete file.
10564
10565 2002-01-19  Andrew Cagney  <ac131313@redhat.com>
10566
10567         * utils.c: Include <sys/param.h> for MAXPATHLEN.
10568         (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
10569
10570 2002-01-19  Jason Thorpe  <thorpej@wasabisystems.com>
10571
10572         * alpha-tdep.c (alpha_call_dummy_words): New.
10573         * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
10574         (CALL_DUMMY_P): Define.
10575         (CALL_DUMMY_WORDS): Define.
10576         (SIZEOF_CALL_DUMMY_WORDS): Define.
10577
10578 2002-01-19  Per Bothner  <per@bothner.com>
10579
10580         * gnu-v3-abi.c (gnuv3_rtti_type):  Guard that vtable_symbol_name
10581         isn't NULL, which can happen with some gcj-3.x-produced code.
10582
10583 2002-01-19  Jason Thorpe  <thorpej@wasabisystems.com>
10584
10585         * alpha-tdep.c (alpha_register_virtual_type): New function.
10586         (alpha_init_frame_pc_first): Ditto.
10587         (alpha_fix_call_dummy): Ditto.
10588         (alpha_store_struct_return): Ditto.
10589         (alpha_extract_struct_value_address): Ditto.
10590         * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
10591         alpha_register_virtual_type.
10592         (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
10593         (EXTRACT_STRUCT_VALUE_ADDRESS): Use
10594         alpha_extract_struct_value_address.
10595         (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
10596         (INIT_FRAME_PC): Use init_frame_pc_noop.
10597         (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
10598
10599 2002-01-19  Mark Kettenis  <kettenis@gnu.org>
10600
10601         * i386gnu-nat.c: Include "i386-tdep.h".
10602         (fetch_fpregs): Simplify code dealing with uninitialized floating
10603         point states such that it doesn't require FP7_REGNUM.
10604
10605 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
10606
10607         * alpha-tdep.c (frame_extra_info): New.
10608         (alpha_find_saved_regs): Make static.  Use
10609         frame->extra_info.
10610         (alpha_frame_init_saved_regs): New function.
10611         (alpha_frame_saved_pc): Use frame->extra_info.
10612         (temp_saved_regs): Don't declare as struct frame_saved_regs.
10613         (heuristic_proc_desc): Adjust for temp_saved_regs changes.
10614         (init_extra_frame_info): Rename to...
10615         (alpha_init_extra_frame_info): ...this.  Use frame->extra_info.
10616         (alpha_print_extra_frame_info): New function.
10617         (alpha_frame_locals_address): Ditto.
10618         (alpha_frame_args_address): Ditto.
10619         (alpha_pop_frame): Use frame->extra_info.
10620         * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
10621         alpha_frame_args_address.
10622         (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
10623         (alpha_find_saved_regs): Remove prototype.
10624         (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
10625         (EXTRA_FRAME_INFO): Remove.
10626         (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
10627         (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
10628
10629 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
10630
10631         * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
10632         (alpha_cannot_fetch_register): Ditto.
10633         (alpha_cannot_store_register): Ditto.
10634         (alpha_register_convertible): Ditto.
10635         (alpha_use_struct_convention): Ditto.
10636         * config/alpha/tm-alpha.h: Update copyright years.
10637         (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
10638         (INNER_THAN): Use core_addr_lessthan.
10639         (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
10640         (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
10641         (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
10642         (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
10643         (FRAME_CHAIN): Remove unnecessary cast.
10644
10645 2002-01-18  Andrew Cagney  <ac131313@redhat.com>
10646
10647         * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
10648         obsolete.
10649
10650 2002-01-18  Andrew Cagney  <ac131313@redhat.com>
10651
10652         * infptrace.c: Remove ATTRIBUTE_UNUSED.  Update copyright.
10653         * monitor.c, remote-array.c, remote-bug.c: Ditto.
10654         * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
10655         * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
10656         * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
10657         * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
10658         * x86-64-linux-nat.c: Ditto.
10659
10660 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
10661
10662         * alpha-tdep.c (alpha_register_name): New function.
10663         * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
10664         (REGISTER_NAME): Define.
10665
10666 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
10667
10668         * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
10669
10670 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
10671
10672         * alpha-tdep.c: Update copyright years.
10673         (alpha_next_pc): New function.
10674         (alpha_software_single_step): Ditto.
10675         * config/alpha/tm-alpha.h: Add prototype for
10676         alpha_software_single_step.
10677
10678 2002-01-18  Jason Thorpe  <thorpej@wasabisystems.com>
10679
10680         * alphabsd-nat.c: Update copyright years.
10681         (fill_gregset): Use regcache_collect.
10682         (fill_fpregset): Likewise.
10683         (fetch_inferior_registers): Only fetch integer registers
10684         if requested to do so.
10685         (store_inferior_registers): Only store integer registers
10686         if requested to do so.
10687
10688 2002-01-17  Andrew Cagney  <ac131313@redhat.com>
10689
10690         * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
10691         * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
10692         * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
10693         * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
10694         * config/alpha/fbsd.mh (XDEPFILES): Delete.
10695         * config/arm/linux.mh (XDEPFILES): Delete.
10696         * config/arm/nbsd.mh (XDEPFILES): Delete.
10697         * config/i386/i386dgux.mh (XDEPFILES): Delete.
10698         * config/i386/i386sol2.mh (XDEPFILES): Delete.
10699         * config/i386/i386m3.mh (XDEPFILES): Delete.
10700         (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
10701         * config/i386/i386gnu.mh (XDEPFILES): Delete.
10702         * config/i386/fbsd.mh (XDEPFILES): Delete.
10703         * config/i386/i386bsd.mh (XDEPFILES): Delete.
10704         * config/i386/i386sco5.mh (XDEPFILES): Delete.
10705         * config/i386/i386v4.mh (XDEPFILES): Delete.
10706         * config/i386/i386v42mp.mh (XDEPFILES): Delete.
10707         * config/i386/i386sco4.mh (XDEPFILES): Delete.
10708         * config/i386/i386aix.mh (XDEPFILES): Delete.
10709         * config/i386/go32.mh (XDEPFILES): Delete.
10710         * config/i386/cygwin.mh (XDEPFILES): Delete.
10711         * config/i386/i386lynx.mh (XDEPFILES): Delete.
10712         * config/i386/i386mach.mh (XDEPFILES): Delete.
10713         * config/i386/i386v32.mh (XDEPFILES): Delete.
10714         * config/i386/linux.mh (XDEPFILES): Delete.
10715         * config/i386/nbsdelf.mh (XDEPFILES): Delete.
10716         * config/i386/ncr3000.mh (XDEPFILES): Delete.
10717         * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
10718         * config/i386/i386sco.mh (XDEPFILES): Delete.
10719         * config/i386/i386v.mh (XDEPFILES): Delete.
10720         * config/i386/nbsd.mh (XDEPFILES): Delete.
10721         * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
10722         * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
10723         * config/i386/symmetry.mh (XDEPFILES): Delete.
10724         * config/i386/obsd.mh (XDEPFILES): Delete.
10725         * config/i386/x86-64linux.mh (XDEPFILES): Delete.
10726         * config/ia64/linux.mh (XDEPFILES): Delete.
10727         * config/ia64/aix.mh (XDEPFILES): Delete.
10728         * config/m68k/apollo68b.mh (XDEPFILES): Delete.
10729         * config/m68k/dpx2.mh (XDEPFILES): Delete.
10730         * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
10731         * config/m68k/apollo68v.mh (XDEPFILES): Delete.
10732         * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
10733         * config/m68k/linux.mh (XDEPFILES): Delete.
10734         * config/m68k/m68klynx.mh (XDEPFILES): Delete.
10735         * config/m68k/m68kv4.mh (XDEPFILES): Delete.
10736         * config/m68k/nbsd.mh (XDEPFILES): Delete.
10737         * config/m68k/sun2os3.mh (XDEPFILES): Delete.
10738         * config/m68k/sun2os4.mh (XDEPFILES): Delete.
10739         * config/m68k/sun3os3.mh (XDEPFILES): Delete.
10740         * config/m68k/sun3os4.mh (XDEPFILES): Delete.
10741         * config/m88k/delta88.mh (XDEPFILES): Delete.
10742         * config/m88k/delta88v4.mh (XDEPFILES): Delete.
10743         * config/m88k/m88k.mh (XDEPFILES): Delete.
10744         * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
10745         * config/mips/linux.mh (XDEPFILES): Delete.
10746         * config/mips/irix6.mh (XDEPFILES): Delete.
10747         * config/mips/irix5.mh (XDEPFILES): Delete.
10748         * config/mips/irix4.mh (XDEPFILES): Delete.
10749         * config/mips/irix3.mh (XDEPFILES): Delete.
10750         * config/mips/decstation.mh (XDEPFILES): Delete.
10751         * config/mips/mipsm3.mh (XDEPFILES): Delete.
10752         (NATDEPFILES): Move core-aout.o to here.
10753         * config/ns32k/nbsd.mh (XDEPFILES): Delete.
10754         * config/pa/hpux1020.mh (XDEPFILES): Delete.
10755         * config/pa/hppabsd.mh (XDEPFILES): Delete.
10756         * config/pa/hppahpux.mh (XDEPFILES): Delete.
10757         * config/pa/hpux11w.mh (XDEPFILES): Delete.
10758         * config/pa/hppaosf.mh (XDEPFILES): Delete.
10759         * config/pa/hpux11.mh (XDEPFILES): Delete.
10760         * config/powerpc/aix.mh (XDEPFILES): Delete.
10761         * config/powerpc/nbsd.mh (XDEPFILES): Delete.
10762         * config/powerpc/linux.mh (XDEPFILES): Delete.
10763         * config/romp/rtbsd.mh: Rename XDEPFILES.
10764         * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
10765         * config/rs6000/aix4.mh (XDEPFILES): Delete.
10766         * config/rs6000/rs6000.mh (XDEPFILES): Delete.
10767         * config/s390/s390.mh (XDEPFILES): Delete.
10768         * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
10769         * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
10770         * config/sparc/sun4os4.mh (XDEPFILES): Delete.
10771         * config/sparc/sparclynx.mh (XDEPFILES): Delete.
10772         * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
10773         * config/sparc/nbsd.mh (XDEPFILES): Delete.
10774         * config/sparc/linux.mh (XDEPFILES): Delete.
10775         * config/vax/vaxult.mh (XDEPFILES): Delete.
10776         * config/vax/vaxult2.mh (XDEPFILES): Delete.
10777         * Makefile.in (DEPFILES): Remove XDEPFILES.
10778
10779 2002-01-17  Andrew Cagney  <ac131313@redhat.com>
10780
10781         * utils.c (internal_verror): Fix comments, default is yes not no.
10782         Update queries to match.  Default to quit and dump core.
10783
10784 2002-01-17  Andrew Cagney  <ac131313@redhat.com>
10785
10786         * breakpoint.c: Update assuming #if UI_OUT is always true.  Update
10787         copyright.
10788         * defs.h, event-top.c, gdbcmd.h: Ditto.
10789         * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
10790         * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
10791         * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
10792         * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
10793         * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
10794         * mi/mi-main.c:Ditto.
10795
10796         * stack.c, symfile.c: Update copyright.
10797
10798 2002-01-17  Daniel Jacobowitz  <drow@mvista.com>
10799
10800         * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
10801         gdbserver/low-nbsd.c, gdbserver/low-sim.c,
10802         gdbserver/low-sparc.c, gdbserver/low-sun3.c,
10803         gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
10804
10805 2002-01-17  Daniel Jacobowitz  <drow@mvista.com>
10806
10807         * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
10808         * gdbserver/low-lynx.c (myattach): Likewise.
10809         * gdbserver/low-nbsd.c (myattach): Likewise.
10810         * gdbserver/low-sim.c (myattach): Likewise.
10811         * gdbserver/low-sparc.c (myattach): Likewise.
10812         * gdbserver/low-sun3.c (myattach): Likewise.
10813
10814         * gdbserver/low-linux.c (myattach): New function.
10815
10816         * gdbserver/server.c (attach_inferior): New function.
10817         (main): Handle "--attach".
10818
10819 2002-01-16  Andrew Cagney  <ac131313@redhat.com>
10820
10821         * MAINTAINERS (language support): Daniel Jacobwitz is C++
10822         maintainer.
10823
10824 2002-01-15  Daniel Jacobowitz  <drow@mvista.com>
10825
10826         * c-typeprint.c (is_type_conversion_operator): Add additional
10827         check for non-conversion operators.
10828
10829 2002-01-15  Michael Snyder  <msnyder@redhat.com>
10830
10831         * linux-proc.c: Add "info proc" command, a la procfs.c.
10832         (read_mapping): New function, abstract and re-use code.
10833         (linux_find_memory_regions): Use new func read_mapping.
10834         (linux_info_proc_cmd): New function, implement "info proc".
10835         (_initialize_linux_proc): Add new command "info proc".
10836
10837 2002-01-15  Michael Snyder  <msnyder@redhat.com>
10838
10839         * symfile.c (generic_load): Use bfd_map_over_sections method
10840         instead of manipulating bfd structure members directly.
10841         (add_section_size_callback): New function, bfd sections callback
10842         used by generic_load.
10843         (load_sections_callback): New function, bfd sections callback
10844         used by generic_load.
10845
10846 2002-01-15  Elena Zannoni  <ezannoni@redhat.com>
10847
10848         [Based on work by Jim Blandy]
10849         * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
10850         (builtin_type_vec128): Export.
10851         * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
10852         types.
10853         (builtin_type_vec128): New builtin type for 128 bit vector
10854         registers.
10855         (build_gdbtypes): Initialize builtin_type_v16qi and
10856         builtin_type_v8hi. Create the vec128 register builtin type
10857         structure.
10858         (build_builtin_type_vec128): New function.
10859         (_initialize_gdbtypes): Register builtin_type_v16qi and
10860         builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
10861         * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
10862         AltiVec register to new builtin type.
10863
10864 2001-01-15  Daniel Jacobowitz  <drow@mvista.com>
10865
10866         * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
10867         to make_cv_type.
10868
10869 2002-01-14  Andrew Cagney  <ac131313@redhat.com>
10870
10871         * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
10872         CLEAN_UP_REGISTER_VALUE.
10873         * regcache.c (supply_register): Update only call.
10874
10875 2002-01-14  Andrew Cagney  <ac131313@redhat.com>
10876
10877         * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
10878         a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
10879         a29k-*-vxworks* targets as obsolete.
10880
10881 2002-01-14  Michael Snyder  <msnyder@redhat.com>
10882
10883         * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
10884         until we can resolve portability issues.
10885         * gregset.h: Remove references to fpxregs.
10886         * gcore.c (gcore_command): Initialize note_sec to NULL.
10887
10888 2002-01-13  Andrew Cagney  <ac131313@redhat.com>
10889
10890         * signals.c (target_signal_to_name): Rewrite.  Only use
10891         signals[].name when in bounds and non-NULL.
10892
10893 2002-01-13  Andrew Cagney  <ac131313@redhat.com>
10894
10895         From Petr Ledvina <ledvinap@kae.zcu.cz>:
10896         * signals.c (target_signal_to_name): Verify that SIG is within the
10897         bounds of the signals array.
10898
10899 2002-01-13  Andrew Cagney  <ac131313@redhat.com>
10900
10901         * MAINTAINERS: Remove arm-coff and arm-pe from target list.
10902
10903 2002-01-13  Keith Seitz  <keiths@redhat.com>
10904
10905         * stack.c (print_frame_info_base): Print the frame's pc
10906         only if when print_frame_info_listing_hook is not defined.
10907
10908 2002-01-13  Keith Seitz  <keiths@redhat.com>
10909
10910         * varobj.c (varobj_set_value): Make sure that there were no
10911         errors evaluating the object before attempting to set its
10912         value.
10913         value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
10914         so this offset adjustment is no longer necessary.
10915         (create_child): Don't set the error flag if the child is
10916         a CPLUS_FAKE_CHILD.
10917         (value_of_child): If value_fetch_lazy fails, return NULL
10918         so that callers will be notified that an error occurred.
10919         (c_value_of_variable): Delay check of variable's validity
10920         until later. We actually want all structs and unions to have
10921         the value "{...}".
10922         Do not return "???" for variables which could not be evaluated.
10923         This error condition must be returned to the caller so that it
10924         can get the error condition from gdb.
10925         (cplus_name_of_child): Adjust index for vptr before figuring
10926         out the name of the child.
10927         (cplus_value_of_child): If a child's (real) parent is not valid,
10928         don't even bother trying to give a value for it. Just return
10929         an error. Change all instances in this function.
10930         (cplus_type_of_child): If our parent is one of the "fake"
10931         parents, we need to get at the type of the real parent, and
10932         derive the child's true type using this information.
10933
10934 2002-01-13  Andrew Cagney  <ac131313@redhat.com>
10935
10936         From 2002-01-09 John Marshall <johnm@falch.net>:
10937         * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
10938         sources.redhat.com, and tweak some related URLs which had
10939         suffered from linkrot.
10940
10941 2002-01-13  Andrew Cagney  <ac131313@redhat.com>
10942
10943         From Jeff law:
10944         * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
10945         structures passed in registers.
10946
10947 2002-01-13  Eli Zaretskii  <eliz@is.elta.co.il>
10948
10949         * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
10950         white space which prevented compilation.  Reported by DSK
10951         <dsk@student.unsw.edu.au>.
10952
10953 2002-01-11  Michael Snyder  <msnyder@redhat.com>
10954
10955         * symfile.c (build_section_addr_info_from_section_tab):
10956         Use bfd access method instead of manipulating bfd directly.
10957         (syms_from_objfile): Ditto.
10958         (simple_overlay_update_1): Ditto.
10959         (simple_overlay_update): Ditto.
10960         (generic_load): Ditto.
10961         (overlay_unmapped_address): FIXME comment, bfd access methods.
10962         (sections_overlap): FIXME comment, bfd access methods.
10963         (pc_in_mapped_range): FIXME comment, bfd access methods.
10964         (pc_in_unmapped_range): FIXME comment, bfd access methods.
10965         (section_is_mapped): FIXME comment, bfd access methods.
10966         (section_is_overlay): FIXME comment, bfd access methods.
10967
10968         * symfile.c (generic_load): Whitespace and long line cleanups.
10969         Remove duplicate variable, change several local variables to
10970         more appropriate data types.
10971         (print_transfer_performance): Use %lu instead of %ld for ulongs.
10972
10973 2002-01-12  Andrew Cagney  <ac131313@redhat.com>
10974
10975         From Peter Schauer:
10976         * language.c (longest_local_hex_string_custom): Use phex_nz to
10977         convert NUM to a hex string.
10978
10979 2002-01-12  Elena Zannoni  <ezannoni@redhat.com>
10980
10981         * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
10982         the function.
10983         Update Copyright year.
10984
10985 2002-01-12  Andrew Cagney  <ac131313@redhat.com>
10986
10987         * language.c (longest_raw_hex_string): Delete unused function.
10988
10989 2002-01-11  Petr Sorfa  <petrs@caldera.com>
10990
10991         * MAINTAINERS (write-after-approval): Add myself.
10992         * dwarf2read.c (read_tag_string_type): Handling of
10993         DW_AT_byte_size.
10994         (read_tag_string_type): FORTRAN fix to prevent propagation of
10995         first string size.
10996         (set_cu_language): Handling of DW_LANG_Fortran95
10997
10998 2002-01-11  Richard Earnshaw  <rearnsha@arm.com>
10999
11000         * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
11001         GETPID(inferior_ptid).
11002         (store_inferior_registers): Likewise.
11003
11004 2002-01-10  Jason Merrill  <jason@redhat.com>
11005
11006         * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
11007         Fix DW_OP_minus.
11008
11009 2002-01-10  Andrew Cagney  <ac131313@redhat.com>
11010
11011         * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
11012         and bfd/elf32-sh-nbsd.c.
11013
11014 2002-01-10  Michael Snyder  <msnyder@redhat.com>
11015
11016         * NEWS: Mention --pid and corefile/proc-id behavior change.
11017
11018         * Makefile.in: Add rules for gcore.o and linux-proc.o.
11019         * gcore.c: Include cli/cli-decode.h instead of command.h.
11020
11021         * main.c (captured_main): Add new command line option "--pid".
11022         If the second command line argument (following the symbol-file)
11023         begins with a digit, try to attach to it before trying to open
11024         it as a corefile.
11025         (print_gdb_help): Document the "--pid" argument.
11026
11027 2002-01-10  Eli Zaretskii  <eliz@is.elta.co.il>
11028
11029         * completer.c (command_completer): New function.
11030
11031         * completer.h <command_completer>: Add prototype.
11032
11033         * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
11034         completer for the "help" command.
11035
11036 2002-01-09  Jason Merrill  <jason@redhat.com>
11037
11038         * c-typeprint.c (is_type_conversion_operator): Fix thinko.
11039
11040 2002-01-09  Michael Snyder  <msnyder@redhat.com>
11041
11042         * i386-linux-nat.c (fill_fpxregset): Make global.
11043         (store_fpxregset): Ditto.
11044
11045         * gregset.h (gdb_fpxregset_t): Define.
11046         (supply_fpxregset): Prototype.
11047         (fill_fpxregset): Prototype.
11048
11049         * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
11050
11051 2002-01-09  Richard Earnshaw  <rearnsha@arm.com>
11052
11053         * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
11054         * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
11055         * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
11056
11057 2002-01-09  Andrew Cagney  <ac131313@redhat.com>
11058
11059         * MAINTAINERS: Update target maintainer rules so that any
11060         Maintainer can approve a tested patch for a maintenance-only
11061         target.
11062
11063 2002-01-09  Richard Earnshaw  <rearnsha@arm.com>
11064
11065         * MAINTAINERS (write-after-approval): Add myself.
11066
11067         * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
11068         IN_SIGTRAMP.
11069
11070 2002-01-08  Michael Snyder  <msnyder@redhat.com>
11071
11072         * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
11073         real name of the executable, rather than the /proc name.
11074
11075 2002-01-03  Michael Snyder  <msnyder@redhat.com>
11076
11077         Implement a "generate-core-file" command in gdb, save target state.
11078         * gcore.c: New file.  Implement new command 'generate-core-file'.
11079         Save a corefile image of the current state of the inferior.
11080         * linux-proc.c: Add linux-specific code for saving corefiles.
11081         * target.h (struct target_ops): Add new target vectors for saving
11082         corefiles; to_find_memory_regions and to_make_corefile_notes.
11083         (target_find_memory_regions): New macro.
11084         (target_make_corefile_notes): New macro.
11085         * target.c (update_current_target): Inherit new target methods.
11086         (dummy_find_memory_regions): New place-holder method.
11087         (dummy_make_corefile_notes): New place-holder method.
11088         (init_dummy_target): Initialize new dummy target vectors.
11089         * exec.c (exec_set_find_memory_regions): New function.
11090         Allow the exec_ops vector for memory regions to be taken over.
11091         (exec_make_note_section): New function, target vector method.
11092         * defs.h (exec_set_find_memory_regions): Export prototype.
11093         * procfs.c (proc_find_memory_regions): New function, corefile method.
11094         (procfs_make_note_section): New function, corefile method.
11095         (init_procfs_ops): Set new target vector pointers.
11096         (find_memory_regions_callback): New function.
11097         (procfs_do_thread_registers): New function.
11098         (procfs_corefile_thread_callback): New function.
11099         * sol-thread.c (sol_find_memory_regions): New function.
11100         (sol_make_note_section): New function.
11101         (init_sol_thread_ops): Initialize new target vectors.
11102         * inftarg.c (inftarg_set_find_memory_regions): New function.
11103         Allow to_find_memory_regions vector to be taken over.
11104         (inftarg_set_make_corefile_notes): New function.
11105         Allow to_make_corefile_notes vector to be taken over.
11106         * thread-db.c (thread_db_new_objfile): Don't activate thread-db
11107         interface layer if not target_has_execution (may be a corefile).
11108         * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
11109         * config/sparc/sun4sol2.mh: Ditto.
11110         * config/alpha/alpha-linux.mh: Ditto.
11111         * config/arm/linux.mh: Ditto.
11112         * config/i386/x86-64linux.mh: Ditto.
11113         * config/ia64/linux.mh: Ditto.
11114         * config/m68k/linux.mh: Ditto.
11115         * config/mips/linux.mh: Ditto.
11116         * config/powerpc/linux.mh: Ditto.
11117         * config/sparc/linux.mh: Ditto.
11118
11119 2002-01-07  Michael Snyder  <msnyder@redhat.com>
11120
11121         * arm-linux-nat.c: Remove references to regcache.c internal data
11122         (registers[] and register_valid[]).
11123
11124 2002-01-07  Michael Snyder  <msnyder@redhat.com>
11125
11126         * linux-proc.c: New file.  Implement child_pid_to_exec_file,
11127         so that attaching to a pid will automatically read the process's
11128         symbol file and shlibs.
11129         * Makefile.in: Add rule for linux-proc.o.
11130         * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
11131         * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
11132         * config/arm/linux.mh: Ditto.
11133         * config/i386/linux.mh: Ditto.
11134         * config/i386/x86-64linux.mh: Ditto.
11135         * config/ia64/linux.mh: Ditto.
11136         * config/m68k/linux.mh: Ditto.
11137         * config/mips/linux.mh: Ditto.
11138         * config/powerpc/linux.mh: Ditto.
11139         * config/sparc/linux.mh: Ditto.
11140
11141 2002-01-06  Pierre Muller  <muller@ics.u-strasbg.fr>
11142
11143         * win32-nat.c: Add i386-tdep.h dependency.
11144
11145 2002-01-07  Michael Snyder  <msnyder@redhat.com>
11146
11147         * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
11148         instead of bfd_get_arch_size.  Don't bail out just because
11149         there's no exec_bfd.
11150
11151         * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
11152         * p-valprint.c (pascal_object_print_value): Ditto.
11153         * somread.c (som_symtab_read): Ditto.
11154         * symfile.c (simple_free_overlay_region_table): Ditto.
11155         * valops.c (value_assign): Ditto.
11156
11157         * tracepoint.c (tracepoint_save_command): From Klee Dienes --
11158         use tilde_expand and strerror for opening save-tracepoints file.
11159
11160         * thread-db.c (thread_db_new_objfile): Indendation fix.
11161
11162         * infptrace.c (GDB_MAX_ALLOCA): New define.
11163         (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
11164         size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
11165         can be overridden with whatever value is appropriate to the host).
11166         * infttrace.c (child_xfer_memory): Add FIXME warning about use of
11167         alloca to allocate potentially large buffer.
11168         * rs6000-nat.c (child_xfer_memory): Ditto.
11169         * symm-nat.c (child_xfer_memory): Ditto.
11170         * x86-64-linux-nat.c (child_xfer_memory): Ditto.
11171
11172 2002-01-07  Jackie Smith Cashion  <jsmith@redhat.com>
11173
11174         From Nick Clifton  <nickc@redhat.com>
11175         * d10v-tdep.c: Set STACK_START to 0x200bffe.
11176
11177 2002-01-07  Michael Snyder  <msnyder@redhat.com>
11178
11179         * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
11180         Don't use exec_bfd if it's NULL.
11181
11182 2002-01-06  Mark Kettenis  <kettenis@gnu.org>
11183
11184         * valops.c (value_arg_coerce): Fix formatting.
11185
11186 2002-01-06  Andrew Cagney  <ac131313@redhat.com>
11187
11188         * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
11189         * gnu-nat.c: Ditto.
11190
11191 2002-01-06  Andrew Cagney  <ac131313@redhat.com>
11192
11193         * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
11194         arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
11195         i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
11196         ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
11197         z8k-coff have not been multi-arched.  Update z8k-coff build
11198         status.
11199
11200 2002-01-06  Andrew Cagney  <ac131313@redhat.com>
11201
11202         * MAINTAINERS: Mark a29k target as obsolete.
11203         * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
11204         (remote-mm.o, remote-udi.o): Obsolete.  Remove references in
11205         comments.
11206         * NEWS: Note that a29k targets are obsolete.
11207         * a29k-tdep.c: Mark as obsolete.
11208         * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
11209         a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
11210         a29k-*-vxworks* targets as obsolete.
11211         * remote-adapt.c: Obsolete.
11212         * remote-eb.c: Obsolete.
11213         * remote-mm.c: Obsolete.
11214         * remote-udi.c: Obsolete.
11215         * config/a29k/a29k-udi.mt: Obsolete.
11216         * config/a29k/a29k.mt: Obsolete.
11217         * config/a29k/tm-a29k.h: Obsolete.
11218         * config/a29k/tm-vx29k.h: Obsolete.
11219         * config/a29k/vx29k.mt: Obsolete.
11220
11221 2002-01-05  Andrew Cagney  <ac131313@redhat.com>
11222
11223         * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
11224         with BFD_ENDIAN_BIG.
11225
11226 2002-01-05  Andrew Cagney  <ac131313@redhat.com>
11227
11228         * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
11229         * configure, config.in: Re-generate.
11230         * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
11231         * defs.h: Do not include <endian.h>.
11232
11233 2002-01-05  Jason Thorpe  <thorpej@wasabisystems.com>
11234
11235         * acconfig.h (HAVE_PT_GETXMMREGS): New.
11236         * config.in: Regenerate.
11237         * configure.in: Update copyright years.
11238         Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
11239         * configure: Regenerate.
11240         * i386bsd-nat.c: Update copyright years.
11241         (fill_gregset): Use regcache_collect.
11242         (fetch_inferior_registers): Only fetch integer registers
11243         if requested to do so.  Add support for XMM registers
11244         using PT_GETXMMREGS.
11245         (store_inferior_registers): Only store integer registers
11246         if requested to do so.  Add support for XMM registers
11247         using PT_SETXMMREGS.
11248         * i386nbsd-nat.c (fetch_inferior_registers): Remove.
11249         (store_inferior_registers): Remove.
11250         (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
11251         (fetch_elfcore_registers): New function.
11252         (i386nbsd_elfcore_fns): New.
11253         (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
11254         * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
11255         i386bsd-nat.o.
11256         * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
11257         * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
11258         * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
11259         * config/i386/tm-nbsd.h: Update copyright years.
11260         (HAVE_SSE_REGS): Define.
11261         (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
11262         (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
11263         (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
11264         (SIGCONTEXT_PC_OFFSET): Remove.
11265         (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
11266
11267 2002-01-05  Andrew Cagney  <ac131313@redhat.com>
11268
11269         * configure.tgt: Remove powerpc-*-macos* target.
11270         * config/m68k/xm-mpw.h: Delete file.
11271         * config/xm-mpw.h: Delete file.
11272         * ser-mac.c: Delete file.
11273         * mpw-make.sed: Delete file.
11274         * mpw-config.in: Delete file.
11275         * mac-xdep.c: Delete file.
11276         * mac-gdb.r: Delete file.
11277         * mac-defs.h: Delete file.
11278         * mac-nat.c: Delete file.
11279         * config/powerpc/macos.mh: Delete file.
11280         * config/powerpc/macos.mt: Delete file.
11281         * config/powerpc/nm-macos.h: Delete file.
11282         * config/powerpc/tm-macos.h: Delete file.
11283         * source.c (openp, open_source_file): Remove obsolete code.
11284         * top.c (gdb_readline): Ditto.
11285         * utils.c (query): Ditto.
11286         * event-top.c (display_gdb_prompt): Ditto.
11287         * Makefile.in (ser-mac.o): Delete obsolete target.
11288         * NEWS: Update.
11289
11290 2002-01-04  Andrew Cagney  <ac131313@redhat.com>
11291
11292         * defs.h (BIG_ENDIAN): Delete macro definition.
11293         * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
11294         coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
11295         findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
11296         printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
11297         remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
11298         stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
11299         config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
11300         config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
11301         config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
11302         config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
11303         config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
11304         config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
11305         mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
11306         * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
11307         * gdbarch.c: Re-generate.
11308
11309 2002-01-04  Daniel Jacobowitz  <drow@mvista.com>
11310
11311         * thread-db.c (thread_db_new_objfile): Do not enable thread_db
11312         for core files.
11313
11314 2002-01-04  Jason Thorpe  <thorpej@wasabisystems.com>
11315
11316         * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
11317
11318 2002-01-04  Andrew Cagney  <ac131313@redhat.com>
11319
11320         * value.h (value_ptr): Delete typedef.
11321
11322 2002-01-04  Jason Thorpe  <thorpej@wasabisystems.com>
11323
11324         * i386nbsd-nat.c: Update copyright years.
11325         Include i386-tdep.h.
11326
11327 2002-01-04  Elena Zannoni  <ezannoni@redhat.com>
11328
11329         * stabsread.c: Update copyright years.
11330
11331         From Debashis Mahata <debashis.mahata@wipro.com>:
11332         (read_struct_fields): Deal with Sun C compiler erroneous stab
11333         output for structs and unions.
11334         Fix PR gdb/269.
11335
11336 2002-01-04  Daniel Jacobowitz  <drow@mvista.com>
11337
11338         * p-valprint.c: Include "cp-abi.h" for baseclass_offset
11339         prototype.
11340
11341 2002-01-04  Daniel Jacobowitz  <drow@mvista.com>
11342
11343         * cp-abi.c: Fix whitespace.
11344         (baseclass_offset): New wrapper function.
11345         * cp-abi.h (baseclass_offset): Add prototype.
11346         (struct cp_abi_ops): Add baseclass_offset pointer.
11347
11348         * valops.c (vb_match): Move to...
11349         * gnu-v2-abi.c (vb_match): here.
11350         * valops.c (baseclass_offset): Move to...
11351         * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
11352
11353         * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
11354
11355         * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
11356         * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
11357         * hpacc-abi.c (init_hpacc_ops): Likewise.
11358
11359 2002-01-04  Daniel Jacobowitz  <drow@mvista.com>
11360
11361         * valops.c (find_overload_match): Accept obj as a
11362         reference parameter.  Update it before returning.
11363         * value.h (find_overload_match): Update prototype.
11364         * eval.c (evaluate_subexp_standard): Pass object to
11365         find_overload_match by reference.
11366
11367 2002-01-03  Andrew Cagney  <ac131313@redhat.com>
11368
11369         * valarith.c: Replace value_ptr with struct value pointer.  Remove
11370         register attribute from value declarations.
11371         * valops.c: Ditto.
11372         * value.h: Ditto.
11373         * scm-lang.c (scm_lookup_name): Ditto.
11374
11375 2002-01-03  Michael Snyder  <msnyder@redhat.com>
11376
11377         Abstract the functionality of iterating over mapped memory
11378         regions into a general purpose iterator function.
11379         * procfs.c (iterate_over_mappings): New function, general purpose
11380         iterator for memory sections.
11381         (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
11382         (solib_mappings_callback): New function, callback for above.
11383         (info_proc_mappings): Reimpliment using iterate_over_mappings.
11384         (info_mappings_callback): New function, callback for above.
11385
11386         * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
11387
11388 2002-01-01  Mark Kettenis  <kettenis@gnu.org>
11389
11390         * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
11391         * i386-tdep.c: Include "elf-bfd.h".
11392         (process_note_abi_tag_sections): New function.
11393         (i386_gdbarch_init): Add code to recognize various OS/ABI
11394         combinations.
11395
11396         * maint.c (_initialize_maint_cmds): Add missing \ in
11397         string-literal.
11398
11399 For older changes see ChangeLog-2001
11400 \f
11401 Local Variables:
11402 mode: change-log
11403 left-margin: 8
11404 fill-column: 74
11405 version-control: never
11406 End: