* c-exp.y (THIS): Delete token and grammar rule.
[binutils-gdb.git] / gdb / ChangeLog
1 2002-10-11 Daniel Jacobowitz <drow@mvista.com>
2
3 * c-exp.y (THIS): Delete token and grammar rule.
4 (yylex): Don't return THIS.
5 * cp-valprint.c (vtbl_ptr_name_old): Delete.
6 (cp_is_vtbl_ptr_type): Don't check vtbl_ptr_name_old.
7 * demangle.c (cplus_markers): Update comment. Put '$'
8 first. Remove CPLUS_MARKER.
9 (_initialize_demangler): Don't call set_cplus_marker_for_demangling.
10 * jv-exp.y (THIS): Delete token and grammar rule.
11 (yylex): Don't return THIS.
12 * mips-tdep.c (mips_dump_tdep): Don't dump CPLUS_MARKER.
13 * objc-exp.y (THIS): Delete token and grammar rule.
14 (yylex): Don't return THIS.
15 * p-exp.y (yylex): Remove reference to CPLUS_MARKER.
16 * stabsread.c (vptr_name, vb_name): Replace CPLUS_MARKER with '$'.
17 (read_member_functions): Likewise for opname.
18 (read_tilde_fields): Use is_cplus_marker.
19
20 * defs.h (CPLUS_MARKER): Don't define.
21 * config/tm-sysv4.h (CPLUS_MARKER): Likewise.
22 * config/i386/xm-i386sco.h (CPLUS_MARKER): Likewise.
23 * config/mips/tm-irix3.h (CPLUS_MARKER): Likewise.
24 * config/mips/tm-irix6.h (CPLUS_MARKER): Likewise.
25 * config/rs6000/tm-rs6000.h (CPLUS_MARKER): Likewise.
26
27 * config/i386/tm-i386v4.h: Delete file.
28 * config/djgpp/fnchange.lst: Delete tm-i386v4.h.
29 * config/i386/tm-i386sol2.h: Include "i386/tm-i386.h" instead.
30 * config/i386/tm-i386v42mp.h: Include "i386/tm-i386.h" instead.
31 * config/i386/tm-ptx.h: Include "i386/tm-i386.h" instead.
32 * config/i386/i386gnu.mt (TM_FILE): Use tm-i386.h.
33 * config/i386/i386sco5.mt (TM_FILE): Likewise.
34 * config/i386/i386v4.mt (TM_FILE): Likewise.
35 * config/i386/ncr3000.mt (TM_FILE): Likewise.
36
37 2002-10-10 Marko Mlinar <markom@opencores.org>
38
39 * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C,
40 accidentially not commited 2002-10-09
41 * gdbarch.h, gdbarch.c: Re-generate.
42
43 2002-10-09 Marko Mlinar <markom@opencores.org>
44
45 * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C.
46 * gdbarch.sh (HAVE_NONSTEPPABLE_WATCHPOINT): Add.
47 * gdbarch.h, gdbarch.c: Re-generate.
48
49 2002-10-08 Petr Sorfa <petrs@caldera.com>
50
51 Revised and re-submitted by John Wolfe <jlw@caldera.com>
52
53 Move the Dwarf 2 abbrev table to a per-compilation-unit structure,
54 so we can work on more than one compilation unit at a time. This
55 helps prepare GDB to handle inter-CU die references.
56 * dwarf2read.c (ABBREV_HASH_SIZE): moved definition forward in
57 the code to be defined before struct comp_unit_head.
58 (comp_unit_head): Added new members - offset, cu_head,
59 begin_die, next and dwarf2_abbrevs.
60 (dwarf2_abbrevs): Removed single static var; now member of
61 struct comp_unit_head.
62 dwarf2_build_psymtabs_hard): Complete new struct comp_unit_head
63 members.
64 (psymtab_to_symtab_1): Changed to work with the new
65 struct comp_unit_head.
66 (dwarf2_read_abbrevs): Now accepts a cu_header parameter and
67 constructs the dwarf2_abbrevs[] inside the cu_header.
68 (dwarf2_empty_abbrev_table): Now expects a ptr to a
69 dwarf2_abbrev table to clean up.
70 (dwarf2_lookup_abbrev): Now accepts a cu_header parameter and
71 handling of dwarf2_abbrevs inside the cu_header.
72 (read_partial_die): Now supports the call to the new
73 dwarf2_lookup_abbrev.
74 (read_full_die): Now supports the call to the new
75 dwarf2_lookup_abbrev.
76
77 2002-10-06 Christopher Faylor <cgf@redhat.com>
78
79 * Makefile.in (install-gdbtk): Add missing continuation backslash to
80 insure that shell variables, such as "transformed_name" are propagated
81 to later shell statements in rule.
82
83 2002-10-06 Mark Kettenis <kettenis@gnu.org>
84
85 * config/i386/nm-i386sco.h: Add protection against
86 multiple-inclusion. Include "i386/nm-i386v.h".
87 (REGISTER_U_ADDR): Remove define.
88 (i386_register_u_addr): Remove prototype.
89
90 2002-10-04 Michael Snyder <msnyder@redhat.com>
91
92 * m32r-stub.c (handle_exception): Make sure exception is "trap"
93 before treating it as a single-step event.
94
95 2002-10-03 Adam Fedor <fedor@gnu.org>
96
97 * objc-lang.c: ARI fixes. Change string.h to gdb_string.h.
98 (objc_demangle): Remove assignment in if statements, Replace
99 free with xfree.
100 (add_msglist): Likewise.
101 (end_msglist): Likewise.
102 (complare_selectors): Likewise.
103 (selectors_info): Likewise.
104 (compare_classes): Likewise.
105 (classes_info): Likewise.
106 (print_object_command): Likewise.
107 (find_objc_msgcall_submethod): Replace PTR with void *.
108 * objc-lang.h: Remove check for __STDC__.
109
110 2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
111
112 * ui-out.h (ui_out_field_fmt_int): New prototype.
113 * ui-out.c (ui_out_field_fmt_int): New function allowing specification
114 of field width and alignment.
115 * stack.c (print_frame_info_base): When printing frame level, use
116 ui_out_field_fmt_int with a width of 2 and left alignment. Fix for
117 PR gdb/192
118
119 2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
120
121 * MAINTAINERS: Add self to Write After Approval list.
122
123 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
124
125 * infcmd.c (interrupt_target_command_wrapper): Delete.
126 (interrupt_target_command): Make non static.
127 (nofp_registers_info): Make static.
128 * stack.c (return_command_wrapper): Delete.
129 (return_command): Make non static.
130
131 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
132
133 * event-top.c (gdb_setup_readline): New function. Code moved from
134 _initialize_event_loop().
135 (_initialize_event_loop): Call gdb_setup_readline().
136
137 2002-10-02 Andrew Cagney <ac131313@redhat.com>
138
139 * infrun.c (resume): Convert #ifdef CANNOT_STEP_BREAKPOINT into C.
140 * gdbarch.sh (CANNOT_STEP_BREAKPOINT): Add.
141 * gdbarch.h, gdbarch.c: Re-generate.
142
143 2002-10-02 Daniel Jacobowitz <drow@mvista.com>
144
145 Fix PR gdb/778
146 * gdbtypes.c (fill_in_vptr_fieldno): Call check_typedef
147 before recursing.
148 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Check return value
149 of fill_in_vptr_fieldno.
150
151 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
152
153 * inferior.h (registers_info, stepi_command, nexti_command,
154 continue_command, interrupt_target_command): Export from infcmd.c.
155 * frame.h (args_info, selected_frame_level_changed_hook,
156 return_command): Export from stack.c.
157 * v850ice.c (stepi_command, nexti_command, continue_command): use
158 prototypes from inferior.h.
159 * tracepoint.c (registers_info, args_info, locals_info): Use
160 prototypes from frame.h and inferior.h.
161 * Makefile.in (mi-main.o): Add dependency on frame.h.
162
163 2002-10-02 Andrew Cagney <ac131313@redhat.com>
164
165 * rs6000-tdep.c (rs6000_store_struct_return): Store struct_return
166 value in register 3 adjusted by ppc_gp0_regnum.
167
168 * rs6000-tdep.c (skip_prologue): Bias alloca_reg by ppc_gp0_regnum.
169
170 2002-10-02 Marko Mlinar <markom@opencores.org>
171
172 * MAINTAINERS: Add myself to the Write After Approval list.
173
174 2002-10-01 Alexandre Oliva <aoliva@redhat.com>
175
176 * mips-tdep.c (mips_find_abi_section): .mdebug.abi64 is the name
177 of the section for the N64 ABI, fixed.
178
179 * config/mips/tm-irix6.h: Include solib.h.
180
181 2002-10-01 Elena Zannoni <ezannoni@redhat.com>
182
183 * dwarf2read.c (dwarf_stack_op_name): Recognize more dwarf3 and
184 GNU operators.
185
186 2002-10-01 Andrew Cagney <ac131313@redhat.com>
187
188 * NEWS: Mention that MI syntax, selected by "mi" changed to "mi2"
189 and that "mi0" syntax has been removed.
190
191 2002-09-30 David Carlton <carlton@math.stanford.edu>
192
193 * Makefile.in (ppc-sysv-tdep.o): Depend on gdb_string_h.
194 * ppc-sysv-tdep.c: #include "gdb_string.h".
195 * remote-sds.c (getmessage): Add semicolon after 'retry' label to
196 pacify GCC.
197
198 2002-10-01 Andrew Cagney <ac131313@redhat.com>
199
200 * rs6000-tdep.c (rs6000_gdbarch_init): For powerpc:7400, fix
201 "vrsave"'s register number.
202
203 2002-09-30 Andrew Cagney <ac131313@redhat.com>
204
205 * mips-tdep.c (mips_frame_saved_pc): When a generic dummy frame,
206 use frame_unwind_signed_register to obtain the PC.
207 (mips_frame_chain): Handle a generic dummy frame.
208 (mips_init_extra_frame_info): When a generic dummy frame, don't
209 re-compute the frame base.
210 (mips_pop_frame): Handle generic dummy frames.
211 (mips_gdbarch_init): When generic dummy frames, set
212 use_generic_dummy_frames, push_dummy_frame to
213 generic_push_dummy_frame, pc_in_call_dummy to
214 generic_pc_in_call_dummy, and save_dummy_frame_top_of_stack to
215 generic_save_dummy_frame_tos.
216
217 2002-09-30 Andrew Cagney <ac131313@redhat.com>
218
219 * blockframe.c (generic_find_dummy_frame): Rewrite. Only test
220 against TOP when TOP was explictly set.
221 (generic_push_dummy_frame): Set TOP to zero.
222
223 2002-09-30 Elena Zannoni <ezannoni@redhat.com>
224
225 * event-loop.c (start_event_loop): Rename variable 'result' to
226 'gdb_result', to avoid conflicts with upcoming intepreters changes.
227
228 2002-09-30 Keith Seitz <keiths@redhat.com>
229
230 * gdb-events.sh (selected_thread_changed): New event.
231 * gdb-events.c: Regenerated.
232 * gdb-events.h: Regenerated.
233
234 2002-09-30 Hans-Peter Nilsson <hp@bitrange.com>
235
236 * MAINTAINERS: Add self to Write After Approval list.
237
238 2002-09-30 Fernando Nasser <fnasser@redhat.com>
239
240 * disasm.c: New file.
241 * disasm.h: New file.
242 * mi/mi-cmd-disas.c (gdb_dis_asm_read_memory): Moved to disasm.c.
243 (compare_lines): Ditto.
244 (dump_insns): Ditto.
245 (do_mixed_source_and_assembly): Moved to disasm.c. Added uiout
246 argument.
247 (do_assembly_only): Ditto.
248 (do_disassembly): Renamed to gdb_disassembly and moved to
249 disasm.c. Sdded uiout argument.
250 * Makefile.in: Add new files. Reorder SFILES list. Update
251 dependencies. Include libgdb.a later in the insight executable.
252
253 2002-09-29 Andrew Cagney <ac131313@redhat.com>
254
255 * config/djgpp/fnchange.lst: Rename bfd/elf64-alpha.c and
256 bfd/elf64-alpha-fbsd.c.
257
258 2002-09-29 Andrew Cagney <ac131313@redhat.com>
259
260 * config/djgpp/fnchange.lst: Rename i386gnu-nat.c and
261 i386gnu-tdep.c.
262
263 2002-09-29 Andrew Cagney <ac131313@redhat.com>
264
265 * gnu-nat.h (debug): Use __FILE__ and __LINE__ instead of
266 __FUNCTION__.
267 * gnu-nat.c (do_mach_notify_no_senders): Replace __FUNCTION__ with
268 function name.
269 (do_mach_notify_port_deleted, do_mach_notify_msg_accepted): Ditto.
270 (do_mach_notify_port_destroyed, do_mach_notify_send_once): Ditto.
271 (S_proc_setmsgport_reply, S_proc_getmsgport_reply): Ditto.
272 (S_msg_sig_post_reply): Ditto.
273
274 2002-09-28 Corinna Vinschen <vinschen@redhat.com>
275
276 * sh-tdep.c (sh_use_struct_convention): Use definition according
277 to ABI.
278 (sh_push_arguments): Store in register with correct endianess.
279 (sh_default_store_return_value): Ditto.
280 (sh_gdbarch_init): Set sizeof long double to 8.
281
282 2002-09-27 Mark Kettenis <kettenis@gnu.org>
283
284 * defs.h: Move inclusion of "ansidecl.h" before "gdb_locale.h".
285 Fix some whitespace problems.
286
287 2002-09-27 David Carlton <carlton@math.stanford.edu>
288
289 * Makefile.in (cris-tdep.o): Depend on gdb_string_h.
290 (mcore-tdep.o): Ditto.
291 (ns32k-tdep.o): Ditto.
292 (ns32knbsd-tdep.o): Ditto.
293 (sh3-rom.o): Ditto.
294 (vax-tdep.o): Ditto.
295 * cris-tdep.c: #include "gdb_string.h"
296 * mcore-tdep.c: Ditto.
297 * ns32k-tdep.c: Ditto.
298 * ns32knbsd-tdep.c: Ditto.
299 * sh3-rom.c: Ditto.
300 * vax-tdep.c: Ditto.
301
302 2002-09-27 David Carlton <carlton@math.stanford.edu>
303
304 * config/djgpp/fnchange.lst: Add entries for
305 gdb/testsuite/gdb.c++/m-static files.
306
307 2002-09-27 Jim Wilson <wilson@redhat.com>
308
309 * MAINTAINERS: Add myself to the Write After Approval list.
310
311 2002-09-26 Martin M. Hunt <hunt@redhat.com>
312
313 * mips-tdep.c (find_proc_desc): Initialize startaddr.
314
315
316 2002-09-26 Andrew Cagney <ac131313@redhat.com>
317
318 * rs6000-tdep.c (rs6000_frame_chain): Don't chain past the dummy
319 frame.
320
321 2002-09-26 Andrew Cagney <ac131313@redhat.com>
322
323 * rs6000-tdep.c (rs6000_extract_struct_value_address): Return 0.
324 (rs6000_struct_return_address): Delete variable.
325 (rs6000_store_struct_return): Update.
326 (rs6000_gdbarch_init): Set extract_struct_value_address instead of
327 deprecated_extract_struct_value_address.
328 (rs6000_frame_align): New function.
329 (rs6000_gdbarch_init): Set frame_align.
330
331 2002-09-26 Andrew Cagney <ac131313@redhat.com>
332
333 From Grace Sainsbury <graces@redhat.com>:
334 * Makefile.in (gdbtk-main.o): New target.
335 (gdb.o): New target.
336 (main_h): Define.
337 (main.o): Update dependencies.
338 (gdb$(EXEEXT)): Add gdb.o.
339 (SUBDIR_GDBTK_SRCS): Add gdbtk-main.c.
340 (SUBDIR_GDBTK_ALL, SUBDIR_GDBTK_UNINSTALL): Set.
341 (SUBDIR_GDBTK_CLEAN): Set.
342 (install-gdbtk): Install the insight binary.
343 (uninstall-gdbtk): New target.
344 (all-gdbtk, clean-gdbtk): New rule.
345 * top.c (use_windows): Default to zero.
346 * main.c: Include "main.h".
347 (main): Delete.
348 (struct captured_main_args): Delete.
349 (gdb_main): New function.
350 * main.h: New file.
351 * gdb.c: New File.
352
353 2002-09-25 Andrew Cagney <cagney@redhat.com>
354
355 * frame.c: Include "gdb_string.h" and "builtin-regs.h".
356 (frame_map_regnum_to_name): New function.
357 (frame_map_name_to_regnum): New function.
358 * frame.h (frame_map_name_to_regnum): Declare.
359 (frame_map_regnum_to_name): Declare.
360 * builtin-regs.c (builtin_reg_map_regnum_to_name): New function.
361 * builtin-regs.h (builtin_reg_map_regnum_to_name): Declare.
362 * parse.c: Do not include "builtin-regs.h".
363 (target_map_name_to_register): Delete function.
364 (write_dollar_variable): Use frame_map_name_to_regnum.
365 * parser-defs.h (target_map_name_to_register): Delete declaration.
366 * expprint.c: Include "frame.h".
367 (print_subexp): Use frame_map_regnum_to_name.
368 * eval.c (evaluate_subexp_standard): Use frame_map_regnum_to_name.
369 * infcmd.c (registers_info): Use frame_map_name_to_regnum.
370
371 2002-09-25 Andrew Cagney <ac131313@redhat.com>
372
373 * rs6000-tdep.c (rs6000_frame_saved_pc): If the link register
374 wasn't saved, and the next innermost frame is a dummy, return the
375 dummy frame's link register.
376
377 2002-09-24 Jim Blandy <jimb@redhat.com>
378
379 Fix from Paul Breed:
380 * main.c (captured_main): Add a `break' after the case for 'b'.
381
382 2002-09-24 Keith Seitz <keiths@redhat.com>
383
384 * varobj.c (c_type_of_child): Use get_target_type instead
385 of TYPE_TARGET_TYPE.
386
387 2002-09-22 Fernando Nasser <fnasser@redhat.com>
388
389 * source.c (get_current_or_default_source_symtab_and_line): Remove
390 function.
391 (set_default_source_symtab_and_line): New function. Attempts to
392 determine a source file to list lines from if one is not currently
393 defined.
394 (get_current_source_symtab_and_line): Initialize sal.pc and
395 sal.end fields.
396 (set_current_source_symtab_and_line): Mark argument as const.
397 * source.h: Update declarations and comments.
398 * linespec.c (decode_line_1): Replace call to removed routine above.
399 * stack.c (print_frame_info_base): Ditto.
400 * cli/cli-cmds.c (edit_command): Ditto.
401 (list_command): Ditto.
402
403 2002-09-22 Fernando Nasser <fnasser@redhat.com>
404
405 * source.c (get_current_or_default_source_symtab_and_line): Initialize
406 sal.pc and sal.end fields.
407 (get_current_or_default_source_symtab_and_line): Ditto.
408 * breakpoint.c (parse_breakpoint_sals): Use correct accessor function
409 so we do not cause a new source symtab to be searched for (reverting an
410 unintentional change from the 2002-09-20 patch).
411 * scm-lang.c (scm_unpac): Ditto.
412
413 2002-09-21 Andrew Cagney <cagney@redhat.com>
414
415 * complaints.c (symfile_explanations): Remove new-line from
416 ``isolated_message''.
417 (vcomplaint): When ISOLATED_MESSAGE, force a line break.
418 (clear_complaints): When a SUBSEQUENT_MESSAGE, force a line break.
419
420 2002-09-20 Nick Clifton <nickc@redhat.com>
421
422 * NEWS: Announce that V850EA ISA is no longer supported.
423 * v850-tdep.c: Remove reference to bfd_mach_v850ea.
424
425 2002-09-20 David Carlton <carlton@math.stanford.edu>
426
427 * Makefile.in (c-lang.o): Correct dependencies.
428 (utils.o): Gather dependencies.
429 (charset.o): Move.
430 * c-lang.c: #include "gdb_string.h"
431
432 2002-09-20 Fernando Nasser <fnasser@redhat.com>
433
434 From 2002-07-02 George Helffrich <george@gly.bris.ac.uk>
435 * cli/cli-cmds.c (list_command): New function. Implements the new
436 cli edit command.
437 (_init_cli_cmds): Add new command definition.
438 * gdb.1: Document edit command.
439 * doc/gdb.texinfo: Document edit command.
440
441 2002-09-20 Fernando Nasser <fnasser@redhat.com>
442
443 * source.c: Make global variables current_source_symtab and
444 current_source_line static.
445 (list_command): Moved to cli/cli-cmds.c.
446 (ambiguous_line_spec): Moved to cli/cli-cmds.c.
447 (get_first_line_listed): New accessor function.
448 (get_lines_to_list): New accessor function.
449 (get_current_source_symtab_and_line): New function. Retrieves the
450 position in the source code that we consider current.
451 (get_current_or_default_source_symtab_and_line): New function.
452 Like the above but attempts to determine a default position if one
453 is not currently defined.
454 (set_current_source_symtab_and_line): New function. Sets the source
455 code position considered current and returns the previously set one.
456 (clear_current_source_symtab_and_line): Reset stored information about
457 a current source line.
458 (_initialize_source): Remove registration for the "list" command and
459 its alias.
460 * source.h: Add declarations for the new functions above.
461 * symtab.h: Remove declarations for the global variables mentioned
462 above.
463 * breakpoint.c (parse_breakpoint_sals): Use accessor functions to
464 obtain current source line.
465 * linespec.c (decode_line_1): Ditto.
466 * macroscope.c (default_macro_scope): Ditto.
467 * scm-lang.c (scm_unpac): Ditto.
468 * stack.c (print_frame_info_base): Ditto.
469 * symfile.c (clear_symtab_users): Ditto.
470 * symtab.c (decode_line_spec): Ditto.
471 * cli/cli-cmds.c (list_command): Moved here from source.c.
472 (ambiguous_line_spec): Moved here from source.c.
473 (_init_cli_cmds): Add definition for "list" and its alias.
474 * Makefile.in: Update dependencies.
475
476 2002-09-20 Corinna Vinschen <vinschen@redhat.com>
477
478 * h8300-tdep.c (h8300_examine_prologue): Match saved regs location
479 with what gcc thinks is correct.
480
481 2002-09-20 Corinna Vinschen <vinschen@redhat.com>
482
483 * h8300-tdep.c (h8300_examine_prologue): Fix loop for saved regs in
484 multiple register push instruction.
485
486 2002-09-19 Jim Blandy <jimb@redhat.com>
487
488 Add support for distinct host and target character sets.
489 * charset.c, charset.h: New files.
490 * c-exp.y: #include "charset.h".
491 (yylex): Convert character and string literals to the target
492 character set, before returning them as the semantic value of the
493 token.
494 * c-lang.c: #include "charset.h".
495 (c_emit_char): Use charset-specific methods to recognize
496 characters with backslash escape forms, to decide which characters
497 to print literally and which to print using numeric escape
498 sequences, and to convert target characters to host characters
499 before printing.
500 * utils.c: #include "charset.h".
501 (no_control_char_error): New function.
502 (parse_escape): Use charset-specific methods to recognize
503 backslash escapes, parse `control character' notation, and convert
504 characters from the host character set to the target character set.
505 * configure.in: Set the default host character set.
506 Check where to find iconv, and what its argument types might be.
507 * acinclude.m4 (AM_ICONV): New macro, borrowed from GCC.
508 * Makefile.in (SFILES): List charset.c.
509 (COMMON_OBS): List charset.o.
510 (charset.o): New rule.
511 (charset_h): New header dependency variable.
512 (c-lang.o, utils.o, c-exp.tab.o): Note dependency on $(charset_h).
513 (LIBICONV): New variable, set by configure.
514 (CLIBS): Include $(LIBICONV) here.
515 * aclocal.m4, config.in, configure: Regenerated.
516
517 2002-09-19 Joel Brobecker <brobecker@gnat.com>
518
519 * ada-exp.y: Add missing semicolons to end rules. Fixes a
520 bison 1.35 warning.
521
522 2002-09-19 Richard Earnshaw <rearnsha@arm.com>
523
524 * gdb_mbuild.sh: New file.
525
526 2002-09-19 Andrew Cagney <ac131313@redhat.com>
527
528 * objc-exp.y, objc-lang.h, objc-lang.c: Fix copyright notice.
529
530 2002-09-18 Andrew Cagney <ac131313@redhat.com>
531
532 * breakpoint.c, c-exp.y, defs.h, elfread.c, expression.h,
533 jv-exp.y, language.c, language.h, p-exp.y, parse.c, parser-defs.h,
534 printcmd.c, source.c, stabsread.c, symfile.c, symtab.h, utils.c,
535 valops.c, value.h: Revert previous change.
536
537 2002-09-18 Michael Snyder <msnyder@redhat.com>
538
539 Preliminary support for Objective-C:
540 * defs.h (language_objc): New enum value.
541 (puts_filtered_tabular): Declaration only, exported from utils.c.
542 (skip_quoted): Delete, declared in completer.h.
543 * c-exp.y: Include completer.h.
544 * p-exp.y: Ditto.
545 * jv-exp.y: Ditto.
546 * expression.h (OP_MSGCALL, OP_SELECTOR, OP_SELF, OP_NSSTRING):
547 New operator enum values.
548 * language.h (CAST_IS_CONVERSION): Test for language_objc.
549 * language.c (binop_result_type): Handle language_objc case.
550 (integral_type, character_type, string_type, boolean_type,
551 structured_type, binop_type_check): Ditto.
552 * symtab.h (SYMBOL_OBJC_DEMANGLED_NAME): Define.
553 (struct objc_specific): Add to general_symbol_info.
554 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Add objc initialization.
555 (SYMBOL_DEMANGLED_NAME): Handle objc case.
556 * parser-defs.h (struct objc_class_str): New struct type.
557 (start_msglist, end_msglist, add_msglist): Declaration only,
558 exported from objc-lang.c.
559 * value.h (value_of_local, value_nsstring,
560 call_function_by_hand_expecting_type): Exported from valops.c.
561 * valops.c (find_function_addr): Export.
562 (call_function_by_hand_expecting_type): New function.
563 (value_of_local): New function.
564 * symfile.c (init_filename_language_table): Add ".m" extension
565 for Objective-C.
566 * utils.c (puts_filtered_tabular): New function.
567 (fprintf_symbol_filtered): Add objc demangling support (disabled).
568 (set/show demangle): Extend help-string to refer to ObjC.
569 * elfread.c (elf_symtab_read): Skip Objective-C special symbols.
570 * stabsread.c (symbol_reference_defined): Objective-C symbols
571 may contain colons: make allowances when scanning stabs strings
572 for colons.
573 (objc_find_colon): New function.
574 * printcmd.c (address_info): If language == objc then print
575 "self" instead of "this".
576 * parse.c (length_of_subexp): Handle new operators OP_MSGCALL,
577 OP_NSSTRING, and OP_SELF.
578 (prefixify_subexp): Ditto.
579 * source.c (print_source_lines): Mention objc in comment.
580 * breakpoint.c (parse_breakpoint_sals): Recognize Objective-C
581 method names.
582
583 2002-09-18 Andrew Cagney <ac131313@redhat.com>
584
585 * complaints.h: Update copyright.
586 (struct complaints): Declare.
587 (struct complaint): Make `message' constant.
588 (internal_complaint): Declare.
589 (complaint): Declare.
590 (complaint_root): Delete declaration.
591 (symfile_complaints): Delete declaration.
592 (struct complaints): Add opaque declaration.
593 (clear_complaints): Add a complaints parameter.
594 * complaints.c: Update copyright.
595 (enum complaint_series): Define.
596 (complaint_root): Delete.
597 (struct complaints): Define.
598 (complaint_sentinel, symfile_complaint_book): New variables.
599 (symfile_explanations, symfile_complaints): New variables.
600 New variables.
601 (get_complaints): New function.
602 (vcomplaint): New function.
603 (complaint): New function.
604 (internal_complaint): New function.
605 (complain): Call vcomplain with symfile_complaint.
606 (clear_complaints): Rewrite.
607 (_initialize_complaints): Use add_setshow_command.
608 * Makefile.in (complaints.o): Update dependencies.
609 * symfile.c (syms_from_objfile): Add symfile_complaints parameter
610 to call to clear_complaints.
611 (new_symfile_objfile, reread_symbols): Ditto.
612 (oldsyms_complaint): Delete.
613 (empty_symtab_complaint, unknown_option_complaint): Delete.
614 (free_named_symtabs): Use complaint instead of complain.
615
616 2002-09-18 Michael Snyder <msnyder@redhat.com>
617
618 Contributed by Apple Computer, Inc. Merged with current sources
619 by Adam Fedor <fedor@doc.com> [cagney].
620
621 * objc-lang.c: First clean-up round: comments, indentation.
622 * objc-lang.h: Ditto.
623 * objc-lang.y: Ditto.
624
625 2002-09-18 Andrew Cagney <ac131313@redhat.com>
626
627 * maint.c (maintenance_internal_error): Print the parameter as the
628 error message.
629 (maintenance_internal_warning): New function.
630 (_initialize_maint_cmds): Add command `maint internal-warning'.
631
632 * defs.h (internal_warning, internal_vwarning): Declare.
633 * utils.c (struct internal_problem): Define.
634 (internal_vproblem): New function.
635 (internal_warning): New function.
636 (internal_vwarning): New function.
637 (internal_warning_problem, internal_error_problem): New variables.
638 (internal_verror): Just call internal_vproblem.
639
640 2002-09-18 Michael Snyder <msnyder@redhat.com>
641
642 * objc-lang.c: New file, support for Objective-C.
643 Preliminary check-in, not yet integrated into gdb.
644 * objc-lang.h: New file.
645 * objc-exp.y: New file.
646
647 2002-09-18 Andrew Cagney <ac131313@redhat.com>
648
649 * infrun.c (signal_stop_update): Convert definition to ISO C.
650 (signal_print_update): Ditto.
651 (signal_pass_update): Ditto.
652 * inflow.c (terminal_save_ours): Ditto.
653
654 * h8300-tdep.c (h8300_gdbarch_init): Use C instead of C++
655 comments.
656
657 * config/djgpp/fnchange.lst: Handle name clashes between
658 bfd/coff-tic30.c, bfd/coff-tic4x.c, bfd/coff-tic54x.c and
659 bfd/coff-tic80.c.
660
661 * i386-linux-tdep.h: Fix tipo.
662
663 2002-09-18 Adam Fedor <fedor@gnu.org>
664
665 * MAINTAINERS: Add myself to the Write After Approval list.
666
667 2002-09-18 Jim Blandy <jimb@redhat.com>
668
669 * dbxread.c, mdebugread.c: Revert my change of 2001-10-23. Moving
670 texthigh and textlow to reader-specific structs caused
671 objfile_relocate to miss them. This is fixable, but the work that
672 the change was supposed to prepare GDB for never got done anyway.
673
674 2002-09-18 David Carlton <carlton@math.stanford.edu>
675
676 * MAINTAINERS: Alphabetize Write After Approval list.
677
678 2002-09-18 Daniel Jacobowitz <drow@mvista.com>
679
680 Fix PR gdb/709
681 * values.c (value_static_field): Call read_var_value.
682
683 2002-09-18 Andrew Cagney <ac131313@redhat.com>
684
685 * valops.c (hand_function_call): Align the initial stack pointer
686 and STRUCT_ADDR using frame_align. When STRUCT_RETURN and
687 FRAME_ALIGN_P, use STRUCT_ADDR to obtain the called function's
688 return value.
689 * mips-tdep.c (mips_frame_align): New function.
690 (mips_gdbarch_init): Set frame_align.
691 * gdbarch.sh (FRAME_ALIGN): New method.
692 * gdbarch.h, gdbarch.c: Re-generate.
693
694 2002-09-18 Michal Ludvig <mludvig@suse.cz>
695
696 * x86-64-linux-nat.c (x86_64_regmap): Added CS and SS
697 registers.
698
699 2002-09-17 Andrew Cagney <ac131313@redhat.com>
700
701 * NEWS: Mention that MIPS $fp behavior changed.
702 * mipsnbsd-tdep.c (mipsnbsd_cannot_fetch_register): Delete
703 reference to FP_REGNUM.
704 (mipsnbsd_cannot_store_register): Ditto.
705 * mips-linux-nat.c: Update copyright.
706 (mips_linux_cannot_fetch_register): Delete reference to FP_REGNUM.
707 (mips_linux_cannot_store_register): Ditto.
708 * mips-linux-tdep.c (supply_gregset): Ditto. Update copyright.
709 * config/mips/tm-mips.h: Update copyright.
710 (FP_REGNUM): Delete macro.
711 (MIPS_REGISTER_NAMES): Replace "fp" with "".
712 * config/mips/tm-irix6.h (FP_REGNUM): Delete macro.
713 * mips-tdep.c (mips_gdbarch_init): Set read_fp to mips_read_sp.
714 (mips_r3041_reg_names, mips_r3051_reg_names)
715 (mips_r3081_reg_names): Replace "fp" with "".
716 Fix PR gdb/480.
717
718 2002-09-17 Theodore A. Roth <troth@verinet.com>
719
720 * gdb/avr-tdep.c(avr_scan_prologue): Fix bad call to
721 generic_read_register_dummy() (PR gdb/703).
722 (avr_push_return_address): #if 0 out unused vars.
723 (avr_gdbarch_init): Enable use of avr_push_return_address().
724
725 2002-09-17 Michael Snyder <msnyder@redhat.com>
726
727 * m32r-stub.c (restore_and_return): Postpone restoring of PSW.
728 RTE will take care of it.
729
730 2002-09-17 Andrew Cagney <ac131313@redhat.com>
731
732 * arch-utils.c (legacy_virtual_frame_pointer): If FP_REGNUM is
733 invalid, return SP_REGNUM.
734
735 2002-09-17 Michael Snyder <msnyder@redhat.com>
736
737 * mips-tdep.c (mips_pop_frame): Read saved values of floating
738 point registers without sign extension.
739
740 2002-09-17 Andrew Cagney <cagney@redhat.com>
741
742 * blockframe.c (deprecated_read_register_dummy): Rename
743 generic_read_register_dummy.
744 * frame.c (frame_unwind_signed_register): New function.
745 (frame_unwind_unsigned_register): New function.
746 * frame.h (frame_unwind_signed_register): Declare.
747 (frame_unwind_unsigned_register): Declare.
748 (deprecated_read_register_dummy): Rename
749 generic_read_register_dummy.
750
751 * h8300-tdep.c (h8300_frame_chain): Update.
752 (h8300_frame_saved_pc): Update.
753 * xstormy16-tdep.c (xstormy16_frame_saved_pc): Update.
754 * rs6000-tdep.c (rs6000_frame_saved_pc): Update.
755 * s390-tdep.c (s390_frame_saved_pc_nofix): Update.
756 (s390_frame_chain): Update.
757 * v850-tdep.c (v850_find_callers_reg): Update.
758 (v850_frame_saved_pc): Update.
759 * m32r-tdep.c (m32r_init_extra_frame_info): Update.
760 (m32r_find_callers_reg): Update.
761 (m32r_frame_saved_pc): Update.
762 * sh-tdep.c (sh_find_callers_reg): Update.
763 (sh64_get_saved_pr): Update.
764 (sh_init_extra_frame_info): Update.
765 (sh_init_extra_frame_info): Update.
766 (sh64_init_extra_frame_info): Update.
767 (sh64_init_extra_frame_info): Update.
768 * mcore-tdep.c (mcore_find_callers_reg): Update.
769 (mcore_frame_saved_pc): Update.
770 (mcore_init_extra_frame_info): Update.
771 * i386-tdep.c (i386_frame_saved_pc): Update.
772 * ia64-tdep.c (ia64_frame_saved_pc): Update.
773 (ia64_init_extra_frame_info): Update.
774 (ia64_init_extra_frame_info): Update.
775 * d10v-tdep.c (d10v_frame_saved_pc): Update.
776 * cris-tdep.c (cris_init_extra_frame_info): Update.
777 * avr-tdep.c (avr_frame_chain): Update.
778 (avr_init_extra_frame_info): Update.
779 (avr_frame_saved_pc): Update.
780 * arm-tdep.c (arm_find_callers_reg): Update.
781 (arm_init_extra_frame_info): Update.
782 (arm_frame_saved_pc): Update.
783
784 2002-09-17 Tom Tromey <tromey@redhat.com>
785
786 * c-lang.c (c_emit_char): Don't treat \0 specially unless quoter
787 is "'".
788
789 2002-09-17 Corinna Vinschen <vinschen@redhat.com>
790
791 * MAINTAINERS: Remove "non multi-arched" text from h8300.
792 * h8300-tdep.c (h8300_next_prologue_insn) Renamed from
793 NEXT_PROLOGUE_INSN.
794 (h8300_examine_prologue): Call h8300_next_prologue_insn instead of
795 NEXT_PROLOGUE_INSN.
796
797 2002-09-16 Joel Brobecker <brobecker@gnat.com>
798
799 * osfsolib.c: Remove file, replaced by solib-osf.c.
800 * Makefile.in: Remove compilation rules for osfsolib.c.
801
802 2002-09-16 David Carlton <carlton@math.stanford.edu>
803
804 * cp-valprint.c (cp_print_class_method): Correct args to
805 check_stub_method_group.
806
807 2002-09-16 Corinna Vinschen <vinschen@redhat.com>
808
809 * h8300-tdep.c: Multiarch. Drop `set machine' command in favor of
810 `set architecture'. Unify naming convention of functions.
811 (h8300_skip_prologue): Improve prologue analysis.
812 (h8300_push_arguments): Rewritten to more closely match GCC's
813 bizarre argument-passing behavior, along with the comment describing
814 said behavior.
815 * remote-hms.c (hms_regnames): Don't use NUM_REGS in definition.
816 * config/h8300/tm-h8300.h: Multiarch. Just keep stuff needed by
817 sim, remote-e7000.c, remote-hms.c and remote.c
818
819 2002-09-15 Mark Kettenis <kettenis@gnu.org>
820
821 * i386-tdep.c (gdb_print_insn_i386): Removed.
822 (i386_print_insn): New function.
823 (i386_gdbarch_init): Set print_insn to i386_print_insns.
824 (_initialize_i386_tdep): Don't initialize tm_print_insn and
825 tm_print_insn_info.
826
827 2002-09-14 Mark Kettenis <kettenis@gnu.org>
828
829 * gdbtypes.c (check_stub_method_group): Initialize found_stub to
830 zero.
831
832 2002-09-14 Corinna Vinschen <vinschen@redhat.com>
833
834 * arch-utils.c (legacy_pc_in_sigtramp): Move preprocessor expression
835 for IN_SIGTRAMP to here. Use IN_SIGTRAMP only if it's defined.
836 Guard usage of SIGTRAMP_START() by using SIGTRAMP_START_P.
837
838 2002-09-13 Christopher Faylor <cgf@redhat.com>
839
840 * win32-nat.c (child_create_inferior): Honor 'tty' command.
841
842 2002-09-13 Daniel Jacobowitz <drow@mvista.com>
843
844 * gdbtypes.c (check_stub_method): Make static.
845 (check_stub_method_group): New function.
846 * gdbtypes.h: Update prototypes.
847 * cp-support.c: New file.
848 * cp-support.h: New file.
849
850 * stabsread.c: Include "cp-abi.h" and "cp-support.h".
851 (update_method_name_from_physname): New function.
852 (read_member_functions): Correct method names for operators
853 and v3 constructors/destructors. Separate v2 constructors and
854 destructors.
855 * Makefile.in (stabsread.o): Update dependencies.
856 (SFILES): Add cp-support.c.
857 (COMMON_OBS): Add cp-support.o.
858 (cp_support_h, cp-support.o): Add.
859
860 * cp-valprint.c (cp_print_class_method): Call
861 check_stub_method_group instead of check_stub_method. Remove
862 extraneous QUITs.
863 * p-valprint.c (pascal_object_print_class_method): Likewise.
864 * valops.c (search_struct_method): Likewise.
865 (find_method_list, value_struct_elt_for_reference): Likewise.
866
867 2002-09-13 Andrew Cagney <cagney@redhat.com>
868
869 * gdbarch.sh (SIGTRAMP_END): Change to a predicate function.
870 * gdbarch.h, gdbarch.c: Regenerate.
871
872 2002-09-13 Andrew Cagney <ac131313@redhat.com>
873
874 * frame.c (find_saved_register): Delete function.
875 * frame.h (find_saved_register): Delete declaration.
876 Fix PR gdb/631.
877
878 Fri Sep 13 14:59:55 2002 Andrew Cagney <cagney@redhat.com>
879
880 * mips-tdep.c (read_next_frame_reg): Re-hack using
881 frame_register_unwind.
882
883 Fri Sep 13 07:42:09 2002 Andrew Cagney <cagney@redhat.com>
884
885 * mips-tdep.c (mips_get_saved_register): Re-hack using
886 frame_register_unwind.
887
888 2002-09-12 Joel Brobecker <brobecker@gnat.com>
889
890 * gdbarch.sh (NAME_OF_MALLOC): New variable in the architecture
891 vector. Will be useful for Interix.
892 * gdbarch.h, gdbarch.c: Regenerate.
893
894 * valops.c (value_allocate_space_in_inferior): Replace hard-coded
895 name of the malloc function by NAME_OF_MALLOC.
896
897 2002-09-12 Joel Brobecker <brobecker@gnat.com>
898
899 * value.h (find_function_in_inferior): Add const keyword to
900 one of the parameters. Allows us to invoke this function with
901 a const char *.
902 * valops.c (find_function_in_inferior): Likewise.
903
904 2002-09-12 Joel Brobecker <brobecker@gnat.com>
905
906 * exec.c (xfer_memory): Fix compilation warning with old versions
907 of GCC.
908 * tracepoint.c (trace_find_tracepoint_command): Likewise.
909
910 2002-09-12 David Carlton <carlton@math.stanford.edu>
911
912 * symtab.h: Run through gdb_indent.h.
913 Add 2002 to Copyright year list.
914
915 2002-09-12 Alan Modra <amodra@bigpond.net.au>
916
917 * x86-64-tdep.c (_initialize_x86_64_tdep): Don't use hard-coded
918 mach constants.
919 * MAINTAINERS: Add myself to write after approval list.
920
921 2002-09-11 J. Brobecker <brobecker@gnat.com>
922
923 * osabi.c (gdb_osabi_name): Add entry for GDB_OSABI_INTERIX.
924
925 2002-09-11 J. Brobecker <brobecker@gnat.com>
926
927 * osabi.h (gdb_osabi): Add new GDB_OSABI_INTERIX enum value for
928 Interix.
929
930 2002-06-05 Paul N. Hilfinger <hilfingr@otisco.mckusick.com>
931
932 * procfs.c (do_detach): Clear current signal, not just fault.
933 Corrects problem with breakpoint trap signal leaking to detached
934 process on Tru64.
935
936 2002-09-10 Michael Snyder <msnyder@redhat.com>
937
938 * buildsym.c (finish_block): Protect against null pointer.
939
940 2002-09-10 Andrew Cagney <cagney@redhat.com>
941
942 * infcmd.c (default_print_registers_info): Send all output to
943 ``file'' instead of ``gdb_stdout''.
944
945 2002-09-10 Michael Snyder <msnyder@redhat.com>
946
947 * mips-tdep.c (mips_extract_struct_value_address): Make val a
948 LONGEST, and use signed register read (addresses are sign-
949 extended for mips).
950
951 2002-09-10 Stephane Carrez <stcarrez@nerim.fr>
952
953 * event-loop.c (gdb_do_one_event): Make public.
954 * event-loop.h (gdb_do_one_event): Declare.
955
956 2002-09-10 Jeff Law <law@redhat.com>
957
958 * infttrace.c (child_resume): Simplify and rework to avoid
959 TT_PROC_CONTINUE.
960
961 2002-09-09 Fred Fish <fnf@intrinsity.com>
962
963 * printcmd.c (print_scalar_formatted): "len" is the number of
964 target bytes, NOT the number of target bits.
965
966 2002-09-09 Elena Zannoni <ezannoni@redhat.com>
967
968 From: Emmanuel Thome' <thome@lix.polytechnique.fr>
969 * top.c (init_main): Set rl_terminal_name.
970
971 2002-09-08 Aidan Skinner <aidan@velvet.net>
972
973 * ada-lang.c (ada_array_bound, ada_type_match,
974 _initialize_ada_language): Fix K&R definitions.
975 * ada-tasks.c (get_current_task): Fix K&R definitions.
976 * ada-valprint.c (adjust_type_signedness): Fix K&R definitions.
977
978 2002-09-07 Christopher Faylor <cgf@redhat.com>
979
980 * MAINTAINERS: Remove CE from list of maintainership responsibilities.
981 Add XP.
982
983 2002-09-06 Mark Kettenis <kettenis@gnu.org>
984
985 * i386-tdep.c (i386_register_virtual_type,
986 i386_register_convertible, i386_register_convert_to_virtual,
987 i386_register_comvert_to_raw): Use FP_REGNUM_P and SSE_REGNUM_P
988 instead of IS_FP_REGNUM and IS_SSE_REGNUM.
989 (i386_gdbarch_init): Fix comment. Add comments on calls that set
990 sp_regnum, fp_regnum, pc_regnum, ps_regnum and fp0_regnum.
991 Don't set push_arguments twice.
992
993 * i386bsd-tdep.c (i386bsd_init_abi): Set sigtramp_start and
994 sigtramp_end to i386bsd_sigtramp_start and i386bsd_sigtramp_end.
995 * i386nbsd-tdep.c (i386nbsd_init_abi): Set sigtramp_start and
996 sigtramp_end to NULL.
997 * config/i386/tm-fbsd.h (SIGTRAMP_START, SIGTRAMP_END): Remove
998 defines.
999 (i386bsd_sigtramp_start, i386_sigtramp_end): Remove prototypes.
1000
1001 * i386nbsd-tdep.c (i386nbsd_pc_in_sigtramp): Remove spurious
1002 whitespace.
1003
1004 * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): New methods.
1005 * gdbarch.h, gdbarch.c: Re-generate.
1006 * blockframe.c (find_pc_sect_partial_function): Convert to use
1007 SIGTRAMP_START_P predicate.
1008
1009 2002-09-05 Michael Snyder <msnyder@redhat.com>
1010
1011 * arm-tdep.c (arm_init_extra_frame_info): Distinguish between
1012 generic_dummy_frame method and old method. Also distinguish
1013 between ARM_FP_REGNUM and THUMB_FP_REGNUM.
1014 (arm_extract_return_value): Use new regcache method.
1015
1016 * mips-tdep.c (mips_n32n64_push_arguments): Remove alignment
1017 adjustment that doesn't conform to the ABI.
1018 (mips_extract_struct_value_address): Retrieve V0_REGNUM from
1019 saved regcache, not from current regcache.
1020
1021 2002-09-05 Andrew Cagney <ac131313@redhat.com>
1022
1023 * NEWS: Update for 5.3. Add new section ``Changes since 5.3''.
1024 * README: Update.
1025
1026 2002-09-04 Jason Thorpe <thorpej@wasabisystems.com>
1027
1028 * arm-tdep.c (arm_addr_bits_remove): Don't check for Thumb mode
1029 if arm_apcs_32 is false.
1030
1031 2002-09-04 Andrew Cagney <ac131313@redhat.com>
1032
1033 GDB 5.3 branch created.
1034
1035 2002-09-03 Theodore A. Roth <troth@verinet.com>
1036
1037 * gdb/avr-tdep.c (avr_gdbarch_init): Use
1038 generic_unwind_get_saved_register.
1039
1040 2002-09-03 David Carlton <carlton@math.stanford.edu>
1041
1042 * dwarf2read.c (dwarf2_add_member_fn): Add the 'type'
1043 argument (PR gdb/653). Update call to smash_to_method_type.
1044 (read_structure_scope): Update call to dwarf2_add_member_fn.
1045
1046 2002-09-03 Michal Ludvig <mludvig@suse.cz>
1047
1048 * x86-64-linux-tdep.c: Include gdb_string.h
1049 * x86-64-linux-nat.c: Ditto.
1050
1051 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
1052
1053 * ada-exp.y (yyname, yyrule): Remap global variables that appear
1054 when YYDEBUG is set to 1.
1055 * c-exp.y: Likewise.
1056 * f-exp.y: Likewise.
1057 * jv-exp.y: Likewise.
1058 * m2-exp.y: Likewise.
1059 * p-exp.y: Likewise.
1060
1061 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
1062
1063 * Makefile.in (i386nbsd-tdep.o): Add $(solib_svr4_h) to
1064 dependency list.
1065 * i386nbsd-tdep.c (i386nbsdelf_init_abi): Set
1066 solib_svr4_fetch_link_map_offsets to
1067 nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
1068 * config/i386/nbsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
1069 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
1070 * config/i386/nbsdelf.mh (NATDEPFILES): Remove solib.o,
1071 solib-svr4.o, and solib-legacy.o.
1072 * config/i386/tm-nbsd.h: Include solib.h.
1073
1074 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
1075
1076 * configure.tgt (i[3456]86-*-netbsdelf*): Merge with...
1077 (i[3456]86-*-netbsd*): ...this. Set gdb_target to nbsd.
1078 (i[3456]86-*-openbsd*): Make this a separate entry. Add a
1079 comment noting that this needs its own target configuration.
1080 * config/i386/nbsd.mt: New file.
1081 * config/i386/nbsdaout.mt: Remove.
1082 * config/i386/nbsdelf.mt: Ditto.
1083 * config/i386/tm-nbsdaout.h: Ditto.
1084
1085 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
1086
1087 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): New function.
1088 (i386nbsd_pc_in_sigtramp): Rewrite to use i386nbsd_sigtramp_offset.
1089 (i386nbsd_init_abi): Don't initialize tdep->sigtramp_start or
1090 tdep->sigtramp_end.
1091 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end): Remove.
1092 * config/i386/tm-nbsd.h (SIGTRAMP_START, SIGTRAMP_END)
1093 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove.
1094
1095 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
1096
1097 * Makefile.in (i386nbsd-tdep.o): Add $(arch_utils_h),
1098 $(i386_tdep_h), and $(nbsd_tdep_h) to dependency list.
1099 * i386-tdep.h (i386bsd_init_abi): New prototype.
1100 * i386bsd-tdep.c (i386bsd_init_abi): Remove "static" from
1101 function declaration.
1102 (_initialize_i386bsd_tdep): Don't register OS ABI handlers
1103 for NetBSD-a.out or NetBSD-ELF.
1104 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end)
1105 (i386nbsd_sc_pc_offset, i386nbsd_sc_sp_offset)
1106 (i386nbsd_init_abi, i386nbsdelf_init_abi): Move to...
1107 * i386nbsd-tdep.c: ...here. Include arch-utils.h, i386-tdep.h,
1108 and nbsd-tdep.h.
1109 (i386nbsd_pc_in_sigtramp): New function.
1110 (i386nbsd_init_abi): Set gdbarch_pc_in_sigtramp to
1111 i386nbsd_pc_in_sigtramp.
1112 (_initialize_i386nbsd_tdep): Register i386nbsd_init_abi
1113 and i386nbsdelf_init_abi OS ABI handlers.
1114 * config/i386/nbsdaout.mt (TDEPFILES): Add nbsd-tdep.o.
1115 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
1116
1117 2002-09-02 Mark Kettenis <kettenis@gnu.org>
1118
1119 * i386-linux-nat.c (dummy_sse_values): Only try to fill in the SSE
1120 registers if the target really has them.
1121
1122 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
1123
1124 * Makefile.in (mipsnbsd-tdep.o): Use $(nbsd_tdep_h) rather
1125 than nbsd-tdep.h.
1126
1127 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
1128
1129 * Makefile.in (alphanbsd-tdep.o): Add $(frame_h) to dependency
1130 list.
1131 * alphanbsd-tdep.c (alphanbsd_sigcontext_addr)
1132 (alphanbsd_skip_sigtramp_frame): New functions.
1133 (alphanbsd_init_abi): Set tdep->skip_sigtramp_frame to
1134 alphanbsd_skip_sigtramp_frame. Set tdep->sigcontext_addr
1135 to alphanbsd_sigcontext_addr.
1136
1137 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
1138
1139 * Makefile.in (mipsnbsd-tdep.o): Add nbsd-tdep.h to dependency
1140 list.
1141 (nbsd-tdep.o): Add $(gdb_string_h) to dependency list.
1142 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): Use
1143 nbsd_pc_in_sigtramp.
1144 * mipsnbsd-tdep.c: Include nbsd-tdep.h.
1145 (mipsnbsd_pc_in_sigtramp): Use nbsd_pc_in_sigtramp.
1146 * nbsd-tdep.c: Include gdb_string.h.
1147 (nbsd_pc_in_sigtramp): New function.
1148 * nbsd-tdep.h (nbsd_pc_in_sigtramp): New prototype.
1149 * ppcnbsd-tdep.c (ppcnbsd_pc_in_sigtramp): New function.
1150 (ppcnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
1151 ppcnbsd_pc_in_sigtramp.
1152 * shnbsd-tdep.c (shnbsd_pc_in_sigtramp): New function.
1153 (shnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
1154 shnbsd_pc_in_sigtramp.
1155 * sparcnbsd-tdep.c (sparcnbsd_init_abi_elf): Set
1156 gdbarch_pc_in_sigtramp to nbsd_pc_in_sigtramp.
1157 * config/mips/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
1158
1159 2002-08-30 Pierre Muller <muller@ics.u-strasbg.fr>
1160
1161 * breakpoint.c (breakpoint_init_inferior): Reset the val field of
1162 watchpoints to NULL.
1163 (insert_breakpoints): set val field of watchpoints if NULL.
1164
1165
1166 2002-08-29 Jim Blandy <jimb@redhat.com>
1167
1168 * symtab.c (lookup_symbol_aux): In the cases where we find a
1169 minimal symbol of an appropriate name and use its address to
1170 select a symtab to read and search, use `name' (as passed to us)
1171 as the demangled name when searching the symtab's global and
1172 static blocks, not the minsym's name.
1173
1174 2002-08-29 Keith Seitz <keiths@redhat.com>
1175
1176 * stack.c (print_frame_info_base): Always set current_source_symtab
1177 and current_source_line.
1178
1179 2002-08-29 Donn Terry <donnte@microsoft.com>
1180
1181 * proc-api.c (rw_table): Fix typo in #ifdef PCSHOLD (missing S).
1182
1183 2002-08-28 Keith Seitz <keiths@redhat.com>
1184
1185 * stack.c (select_frame): Add FIXME concerning selected-frame
1186 events.
1187 (select_frame_command): Send selected-frame-level-changed
1188 event notification, but only if the level actually changed.
1189 (up_silently_base): Add selected-frame-level-changed event
1190 notification.
1191 (down_silently_base): Likewise.
1192
1193 2002-08-28 Andrew Cagney <ac131313@redhat.com>
1194
1195 * Makefile.in: Update dependencies for all gdb/*.c files.
1196
1197 2002-08-27 Tom Tromey <tromey@redhat.com>
1198
1199 * Makefile.in (osabi.o, i387-tdep.o, i386-linux-nat.o, lin-lwp.o,
1200 ax-gdb.o, signals.o, jv-valprint.o, c-valprint.o, cp-abi.o):
1201 Update dependencies.
1202 * i387-tdep.c: Include gdb_string.h.
1203 * osabi.c: Likewise.
1204 * i386-linux-nat.c: Likewise.
1205 * lin-lwp.c: Likewise.
1206 * ax-gdb.c: Likewise.
1207 * signals/signals.c: Likewise.
1208 * jv-valprint.c: Likewise.
1209 * p-lang.c: Likewise.
1210 * c-valprint.c: Likewise.
1211 * cp-abi.c: Likewise.
1212
1213 2002-08-27 Elena Zannoni <ezannoni@redhat.com>
1214
1215 * cli/cli-script.h (copy_command_lines): Export.
1216 * breakpoint.c: Include cli/cli-script.h.
1217 * Makefile.in (breakpoint.o): Update dependencies.
1218
1219 2002-08-26 Michael Snyder <msnyder@redhat.com>
1220
1221 * breakpoint.c (insert_breakpoints): Protect all references
1222 to 'process_warning'. Shorten long lines.
1223
1224 2002-08-26 Joel Brobecker <brobecker@gnat.com>
1225
1226 * cli/cli-script.c (copy_command_lines): New function.
1227 * defs.h (copy_command_lines): Export.
1228 * testsuite/gdb.base/commands.exp: New tests for commands
1229 attached to a temporary breakpoint, and for commands that
1230 delete the breakpoint they are attached to.
1231
1232 2002-08-26 Michael Snyder <msnyder@redhat.com>
1233
1234 * breakpoint.c (bpstat_stop_status): Instead of copying the
1235 pointer to the breakpoint commands struct, make a new copy
1236 of the struct and point to that.
1237 (bpstat_clear): Free the commands struct.
1238 (bpstat_clear_actions): Free the commands struct.
1239 (bpstat_do_actions): Free the command actions. Also execute
1240 the local cleanups, instead of deleting them.
1241 (delete_breakpoint): Leave the commands field of the bpstat
1242 chain alone -- it will be freed later.
1243
1244 2002-08-26 Kevin Buettner <kevinb@redhat.com>
1245
1246 * rs6000-tdep.c (altivec_register_p): Restore function inadvertently
1247 deleted in 2002-08-20 commit. This function is still used by
1248 ppc-linux-nat.c.
1249
1250 2002-08-26 Keith Seitz <keiths@redhat.com>
1251
1252 * gdb-events.sh: Add selected-frame-level-changed event.
1253 * gdb-events.c: Regenerated.
1254 * gdb-events.h: Regenerated.
1255
1256 2002-08-26 Stephane Carrez <stcarrez@nerim.fr>
1257
1258 Fix PR gdb/393:
1259 * inflow.c (terminal_save_ours): New function to save terminal
1260 settings.
1261 * inferior.h (terminal_save_ours): Declare.
1262 * target.c (debug_to_terminal_save_ours): New function.
1263 (cleanup_target): Defaults to_terminal_save_ours.
1264 (update_current_target): Inherit to_terminal_save_ours.
1265 (setup_target_debug): Set to_terminal_save_ours.
1266 * target.h (target_terminal_save_ours): New to save terminal settings.
1267 (target_ops): New member to_terminal_save_ours.
1268 * gnu-nat.c (init_gnu_ops): Set to_terminal_save_ours.
1269 * hpux-thread.c (init_hpux_thread_ops): Likewise.
1270 * inftarg.c (init_child_ops): Likewise.
1271 * m3-nat.c (init_m3_ops): Likewise.
1272 * procfs.c (init_procfs_ops): Likewise.
1273 * wince.c (init_child_ops): Likewise.
1274 * win32-nat.c (init_child_ops): Likewise.
1275 * sol-thread.c (init_sol_thread_ops): Likewise.
1276
1277 2002-08-26 Mark Kettenis <kettenis@gnu.org>
1278
1279 * i386-tdep.c (i386_store_return_value): Undeprecate. Convert to
1280 use regcache_* functions.
1281 (i386_gdbarch_init): Set store_return_value instead of
1282 deprecated_store_return_value.
1283
1284 * regcache.c (regcache_raw_write_signed,
1285 regcache_raw_write_unsigned): New functions.
1286 * regcache.h (regcache_raw_write_signed,
1287 regcache_raw_write_unsigned): New prototypes.
1288
1289 2002-08-25 Andrew Cagney <ac131313@redhat.com>
1290
1291 * Makefile.in (c-exp.tab.o, jv-exp.tab.o, f-exp.tab.o)
1292 (m2-exp.tab.o, p-exp.tab.o, ada-exp.tab.o): Move to before the
1293 source file dependencies. Cleanup corresponding generator rules.
1294
1295 2002-08-25 Andrew Cagney <ac131313@redhat.com>
1296
1297 * regcache.h (register_offset_hack): Declare.
1298 (regcache_cooked_read_using_offset_hack): Declare.
1299 (regcache_cooked_write_using_offset_hack): Declare.
1300
1301 * regcache.c (register_offset_hack): New function.
1302 (regcache_cooked_read_using_offset_hack): New function.
1303 (regcache_cooked_write_using_offset_hack): New function.
1304 (regcache_dump): Check that the registers, according to their
1305 offset, are packed hard against each other.
1306 (cooked_xfer_using_offset_hack): New function.
1307
1308 2002-08-25 Andrew Cagney <ac131313@redhat.com>
1309
1310 * regcache.c (struct regcache_descr): Add field register_type.
1311 (init_legacy_regcache_descr): Pass a pre-allocated regcache_descr
1312 in as a parameter
1313 (init_regcache_descr): Initialize register_type. Pass the descr
1314 to init_legacy_regcache_descr. Use register_type instead of
1315 REGISTER_VIRTUAL_TYPE.
1316 (register_type): New function.
1317 (regcache_dump): Replace REGISTER_VIRTUAL_TYPE with register_type.
1318 * regcache.h (register_type): Declare.
1319
1320 2002-08-25 Andrew Cagney <ac131313@redhat.com>
1321
1322 * rs6000-tdep.c (rs6000_gdbarch_init): Set store_struct_return
1323 instead of deprecated_store_return_value. Fix fallout from
1324 2002-08-23 Andrew Cagney <cagney@redhat.com>.
1325
1326 2002-08-25 Andrew Cagney <ac131313@redhat.com>
1327
1328 * regcache.c (max_register_size): New function.
1329 (init_legacy_regcache_descr): Ensure that max_register_size is
1330 large enough for REGISTER_VIRTUAL_SIZE.
1331 * regcache.h (max_register_size): Declare.
1332
1333 2002-08-24 Andrew Cagney <ac131313@redhat.com>
1334
1335 * rs6000-tdep.c (rs6000_gdbarch_init): Use deprecated version of
1336 store_return_value.
1337 (e500_extract_return_value): Change type of valbuf pointer to
1338 void.
1339
1340 2002-08-24 Mark Kettenis <kettenis@gnu.org>
1341
1342 * PROBLEMS: Clarify problems with FreeBSD's compiler and suggest
1343 workaround.
1344
1345 * valprint.c (print_longest) [CC_HAS_LONG_LONG &&
1346 PRINTF_HAS_LONG_LONG]: Cast val_long to (long long) or (unsigned
1347 long long) to prevent compiler warning on 64-bit systems.
1348
1349 2002-08-23 Andrew Cagney <cagney@redhat.com>
1350
1351 * gdbarch.sh (STORE_RETURN_VALUE): Add regcache parameter.
1352 (DEPRECATED_STORE_RETURN_VALUE): New method.
1353 (EXTRACT_RETURN_VALUE): Make buffer parameter a void pointer.
1354 * gdbarch.h, gdbarch.c: Re-generate.
1355
1356 * values.c (set_return_value): Pass current_regcache to
1357 STORE_RETURN_VALUE.
1358 * arch-utils.h (legacy_store_return_value): Declare.
1359 * arch-utils.c (legacy_store_return_value): New function.
1360 (legacy_extract_return_value): Update parameters.
1361
1362 * config/pa/tm-hppa.h (DEPRECATED_STORE_RETURN_VALUE): Rename
1363 STORE_RETURN_VALUE.
1364 * config/pa/tm-hppa64.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1365 * config/sparc/tm-sparc.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1366 * config/z8k/tm-z8k.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1367 * config/sparc/tm-sparclet.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1368 * config/mn10200/tm-mn10200.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1369 * config/m68k/tm-linux.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1370 * config/m68k/tm-delta68.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1371 * config/m32r/tm-m32r.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1372 * config/h8500/tm-h8500.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1373 * config/h8300/tm-h8300.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1374
1375 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
1376 * i386-tdep.c (i386_extract_return_value): Update.
1377 * arch-utils.c (legacy_extract_return_value): Update.
1378 * frv-tdep.c (frv_gdbarch_init): Update.
1379 * cris-tdep.c (cris_gdbarch_init): Update.
1380 * d10v-tdep.c (d10v_gdbarch_init): Update.
1381 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
1382 * m68k-tdep.c (m68k_gdbarch_init): Update.
1383 * mcore-tdep.c (mcore_gdbarch_init): Update.
1384 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
1385 * s390-tdep.c (s390_gdbarch_init): Update.
1386 * sparc-tdep.c (sparc_gdbarch_init): Update.
1387 * sh-tdep.c (sh_gdbarch_init): Update.
1388 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
1389 * v850-tdep.c (v850_gdbarch_init): Update.
1390 * avr-tdep.c (avr_gdbarch_init): Update.
1391 * ia64-tdep.c (ia64_gdbarch_init): Update.
1392 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
1393 * vax-tdep.c (vax_gdbarch_init): Update.
1394 * alpha-tdep.c (alpha_gdbarch_init): Update.
1395 * arm-tdep.c (arm_gdbarch_init): Update.
1396 * mips-tdep.c (mips_gdbarch_init): Update.
1397 * i386-tdep.c (i386_gdbarch_init): Update.
1398
1399 2002-08-23 Andrew Cagney <ac131313@redhat.com>
1400
1401 * config/djgpp/fnchange.lst: Add entries for bfd/elf32-ppcqnx.c,
1402 bfd/elf32-ppc.c, bfd/elf32-sh.c and bfd/elf32-shqnx.c.
1403
1404 2002-08-24 Mark Kettenis <kettenis@gnu.org>
1405
1406 * PROBLEMS: Refer to GDB 5.3 instead of 5.2. Mention FreeBSD
1407 problems.
1408
1409 2002-08-23 Joel Brobecker <brobecker@gnat.com>
1410
1411 * infrun.c (handle_inferior_event): Move a comment outside of a
1412 function call, in order to avoid indent reformatting this part
1413 of the code in an unreadable way.
1414
1415 2002-08-23 Grace Sainsbury <graces@redhat.com>
1416
1417 * infrun.c (normal_stop, proceed): Remove call to print_sys_errmsg
1418 when breakpoints fail. Move general breakpoint error messages to
1419 insert_breakpoints.
1420 * breakpoint.c (insert_breakpoints): Change warnings when
1421 breakpoints are nto inserted to specify the type. Remove call to
1422 memory_error when hardware breakpoints can't be inserted. Remove
1423 multiple calls to warning so all messages are sent to the user at
1424 once.
1425 (delete_breakpoints): Make insert error messsages more explicit.
1426
1427 2002-08-23 Daniel Jacobowitz <drow@mvista.com>
1428
1429 * ChangeLog: Move gdbserver entries after GDB 5.2 to
1430 gdbserver/ChangeLog.
1431
1432 2002-08-23 Mark Kettenis <kettenis@gnu.org>
1433
1434 * i386-tdep.c: Include "objfiles.h".
1435 (i386_svr4_init_abi): Set in_solib_call_trampoline and
1436 skip_trampoline_code.
1437 * config/i386/tm-i386v4.h: Don't include "config/tm-sysv4.h".
1438 (CPLUS_MARKER): Define to '.'.
1439
1440 * linux-proc.c (struct linux_corefile_thread_data): Add num_notes
1441 member.
1442 (linux_corefile_thread_callback): Increase args->num_notes.
1443 (linux_make_note_section): Initialize thread_args.num_notes, and
1444 use it to determine whether notes for any threads were created.
1445
1446 2002-08-23 Donn Terry <donnte@microsoft.com>
1447
1448 * proc-api.c (rw_table): Do not include a row for PCDSTOP if the
1449 corresponding macro is not defined. Likewise for PCNICE, PCSHOLD
1450 and PCUNKILL.
1451 (write_with_trace): Conditionalize out the switch branch handling
1452 PCSHOLD if the corresponding macro is not defined. Likewise for
1453 PRSABORT and PRSTOP.
1454 This change will be needed by the Interix port.
1455
1456 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
1457
1458 * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): use
1459 write_register wherever possible instead of manipulating the
1460 register bytes directly.
1461 Assign VALUE_CONTENTS to a variable and use that.
1462 The GPR numbers are now dependent on the architecture.
1463
1464 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
1465
1466 * rs6000-tdep.c (struct rs6000_framedata): Add saved_ev and
1467 ev_offset fields.
1468 (skip_prologue): Add support for BookE/e500 instructions.
1469 (e500_extract_return_value): New function.
1470 (frame_get_saved_regs): Add support for saving ev registers and
1471 pseudo gpr's.
1472 (e500_store_return_value): New function.
1473 (rs6000_gdbarch_init): Move up default intializations of
1474 deprecated_extract_return_value and store_return_value. Overwrite
1475 init of store_return_value with e500 specific version.
1476 Set extract_return_value for e500.
1477
1478 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
1479
1480 * blockframe.c (generic_call_dummy_register_unwind): Use
1481 regcache_cooked_read to catch cases in which the variable is
1482 stored in a pseudo register.
1483
1484 2002-08-22 Andrew Cagney <cagney@redhat.com>
1485
1486 * NEWS: Mention that the i960 has been made obsolete.
1487 * Makefile.in (SFILES): Delete remote-nrom.c, remote-nindy.c and
1488 i960-tdep.c
1489 (remote-nrom.o): Obsolete target.
1490 (remote-nindy.o, i960-tdep.o): Ditto.
1491 * remote-nrom.c: Make file obsolete.
1492 * remote-nindy.c, remote-vx960.c: Ditto.
1493 * config/i960/vxworks960.mt, config/i960/nindy960.mt: Ditto.
1494 * config/i960/mon960.mt, config/i960/tm-i960.h: Ditto.
1495 * config/i960/tm-vx960.h, config/i960/tm-nindy960.h: Ditto.
1496 * config/i960/tm-mon960.h, i960-tdep.c: Ditto.
1497 * configure.tgt: Make i960-*-bout*, i960-nindy-coff*,
1498 i960-*-coff*, i960-nindy-elf*, i960-*-elf*, i960-*-nindy* and
1499 i960-*-vxworks* obsolete.
1500 * MAINTAINERS: Note that the i960 is obsolete.
1501
1502 2002-08-21 Corinna Vinschen <vinschen@redhat.com
1503
1504 * aix-thread.c (aix_thread_detach): Disable thread debugging on
1505 detach to allow reinitialization.
1506
1507 2002-08-22 Andrew Cagney <ac131313@redhat.com>
1508
1509 * MAINTAINERS: Change the s390 target to s390-linux-gnu (second
1510 attempt).
1511
1512 2002-08-22 Jim Blandy <jimb@redhat.com>
1513
1514 * coffread.c (coff_symfile_read): Don't try to read the line
1515 number table from disk if the image file doesn't have a symbol
1516 table; we'll never actually look at the info anyway, and Windows
1517 ships DLL's with bogus file offsets for the line number data.
1518
1519 2002-08-21 Elena Zannoni <ezannoni@redhat.com>
1520
1521 * rs6000-tdep.c (rs6000_gdbarch_init): Figure out whether we have
1522 an e500 executable.
1523
1524 2002-08-21 Michael Snyder <msnyder@redhat.com>
1525
1526 * mips-tdep.c (MSYMBOL_IS_SPECIAL): Replace macro with function.
1527 (MSYMBOL_SIZE): Replace macro with function.
1528 (DEFAULT_MIPS_TYPE): Delete unused macro.
1529 * config/mips/tm-mips.h (DEFAULT_MIPS_TYPE): Delete unused macro.
1530 * config/mips/tm-embed.h (DEFAULT_MIPS_TYPE): Delete unused macro.
1531
1532 2002-08-21 Jim Blandy <jimb@redhat.com>
1533
1534 * valops.c (value_cast): Simplify and correct logic for doing a
1535 static cast from a pointer to a base class to a pointer to a
1536 derived class.
1537
1538 2002-08-21 Andrew Cagney <ac131313@redhat.com>
1539
1540 * infcmd.c (default_print_registers_info): Replace
1541 do_registers_info.
1542 (registers_info): Use gdbarch_print_registers_info instead of
1543 DO_REGISTERS_INFO.
1544 * inferior.h (default_print_registers_info): Replace
1545 do_registers_info.
1546 * gdbarch.sh (PRINT_REGISTERS_INFO): New method.
1547 (DO_REGISTERS_INFO): Change to a predicate function.
1548 * gdbarch.h, gdbarch.c: Regenerate.
1549
1550 2002-08-21 Keith Seitz <keiths@redhat.com>
1551
1552 * gdb-events.sh: Add target-changed event.
1553 * gdb-events.c: Regenerated.
1554 * gdb-events.c: Regenerated.
1555 * valops.c (value_assign): Add target-changed event notification
1556 to inlval_register, lval_memory, and lval_reg_frame_relative.
1557
1558 2002-08-21 Joel Brobecker <brobecker@gnat.com>
1559
1560 * NEWS: Add an entry regarding the improvement of the next/step
1561 operation on Alpha Tru64 multi-processor machines.
1562
1563 2002-08-21 Andrew Cagney <ac131313@redhat.com>
1564
1565 * Makefile.in: Update dependencies for mi/ cli/ and tui/
1566 directores.
1567 * Makefile.in: Update all _h macro definitions.
1568 * Makefile.in (install-gdbtk): Move to install section.
1569 (rdi-share/libangsd.a): Move to end of file.
1570
1571 2002-08-19 Andrew Cagney <ac131313@redhat.com>
1572
1573 * frame.c (frame_register_unwind): When a register, set addrp to
1574 the register's byte.
1575
1576 2002-08-20 Michael Snyder <msnyder@redhat.com>
1577
1578 * mips-tdep.c (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): These are only
1579 used locally, so move them from the target machine header to here.
1580 (mips_set_processor_type, mips_register_name, mips32_next_pc,
1581 mips16_next_pc, cached_proc_desc, mips_set_processor_type):
1582 Make static.
1583 * config/mips/tm-mips.h (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Delete.
1584
1585 2002-08-20 Andrew Cagney <cagney@redhat.com>
1586
1587 * NEWS: Mention that the Apollo line was made obsolete.
1588 * configure.tgt: Make m68*-apollo*-bsd*, m68*-hp-bsd*, and
1589 m68*-hp-hpux* obsolete.
1590 * configure.host: Make m68*-apollo*-sysv*, m68*-apollo*-bsd*,
1591 m68*-hp-bsd* and m68*-hp-hpux* obsolete.
1592 * buildsym.c (make_blockvector): Make static.
1593 * buildsym.h (make_blockvector): Make extern declaration obsolete.
1594 * Makefile.in (HFILES_NO_SRCDIR): Remove dst.h
1595 (ALLDEPFILES): Remove dstread.c.
1596 (dstread.o): Obsolete make rule.
1597 * dstread.c: Makefile obsolete.
1598 * dst.h: Ditto.
1599 * config/m68k/hp300hpux.mt: Ditto.
1600 * config/m68k/hp300hpux.mh: Ditto.
1601 * config/m68k/hp300bsd.mt: Ditto.
1602 * config/m68k/hp300bsd.mh: Ditto.
1603 * config/m68k/apollo68b.mt: Ditto.
1604 * config/m68k/apollo68v.mh: Ditto.
1605 * config/m68k/apollo68b.mh: Ditto.
1606
1607 2002-08-20 Michael Snyder <msnyder@redhat.com>
1608
1609 * mips-tdep.c (mips_in_return_stub): Make static.
1610 (mips_gdbarch_init): Set in_solib_return_trampoline.
1611 * config/mips/tm-mips.h (IN_SOLIB_RETURN_TRAMPOLINE): Delete.
1612
1613 2002-08-20 Michael Snyder <msnyder@redhat.com>
1614
1615 * gdbarch.sh (IN_SOLIB_RETURN_TRAMPOLINE): Add.
1616 * gdbarch.c, gdbarch.h: Regenerate.
1617 * arch-utils.c, arch-utils.h (generic_in_solib_return_trampoline):
1618 Add.
1619 * infrun.c (IN_SOLIB_RETURN_TRAMPOLINE): Delete default definition.
1620
1621 2002-08-20 Michael Snyder <msnyder@redhat.com>
1622
1623 * mips-tdep.c (mips_skip_stub, mips_in_call_stub): Make static.
1624 (mips_gdbarch_init): Set skip_trampoline_code,
1625 in_solib_call_trampoline.
1626 * config/mips/tm-mips.h (REGISTER_NAME): Delete.
1627 (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE): Delete.
1628
1629 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
1630
1631 * ppc-tdep.h (struct gdbarch_tdep): Add ev registers.
1632
1633 * rs6000-tdep.c (rs6000_register_virtual_type): Return 64 bit
1634 vector type for ev registers.
1635 (e500_pseudo_register_read): New function.
1636 (e500_pseudo_register_write): New function.
1637 (e500_dwarf2_reg_to_regnum): New function.
1638 (PPC_UISA_NOFP_SPRS): New macro.
1639 (PPC_EV_REGS): New macro.
1640 (PPC_GPRS_PSEUDO_REGS): New macro.
1641 (registers_e500): New register set for e500.
1642 (variants): Add e500 variant.
1643 (rs6000_gdbarch_init): Move setting of pc, sp, fp regnums to
1644 before setting architectural dependent variations. Initialize ev
1645 registers numbers. Add case for e500 architecture. Set the
1646 number of pseudo registers.
1647
1648 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
1649
1650 * rs6000-tdep.c: Clean up comments.
1651
1652 2002-08-20 Andrew Cagney <cagney@redhat.com>
1653
1654 * h8300-tdep.c: Re-indent file.
1655
1656 2002-08-20 Jim Blandy <jimb@redhat.com>
1657
1658 * Makefile.in (LDFLAGS): Allow the configure script to establish a
1659 default for this.
1660
1661 2002-08-20 Keith Seitz <keiths@redhat.com>
1662
1663 * breakpoints.c (watch_command_1): Use internal breakpoint
1664 when setting a watchpoint_scope breakpoint.
1665
1666 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
1667
1668 * gdbtypes.c (build_builtin_type_vec64): Add name to type.
1669 (build_builtin_type_vec64i): Ditto.
1670 (build_builtin_type_vec128): Ditto.
1671 (build_builtin_type_vec128i): Ditto.
1672
1673 2002-08-19 Michael Snyder <msnyder@redhat.com>
1674
1675 * config/mips/tm-mips.h (ELF_MAKE_MSYMBOL_SPECIAL): Delete.
1676 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Change into functions.
1677 (FIX_CALL_DUMMY, PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME,
1678 POP_FRAME, INIT_EXTRA_FRAME_INFO): Delete.
1679 (CALL_DUMMY_START_OFFSET, CALL_DUMMY_BREAKPOINT_OFFSET,
1680 CALL_DUMMY_ADDRESS): Delete.
1681 * mips-tdep.c (mips_elf_make_msymbol_special, mips_msymbol_size,
1682 mips_msymbol_is_special, mips_fix_call_dummy): New functions.
1683 (mips_gdbarch_init): Set elf_make_msymbol_special, pop_frame,
1684 push_dummy_frame, fix_call_dummy, init_extra_frame_info,
1685 push_return_address.
1686 (mips_register_raw_size, mips_eabi_use_struct_convention,
1687 mips_n32n64_use_struct_convention, mips_o32_use_struct_convention,
1688 mips_o32_reg_struct_has_addr, mips_frame_saved_pc, mips_frame_chain,
1689 mips_init_extra_frame_info, mips_eabi_push_arguments,
1690 mips_n32n64_push_arguments, mips_push_return_address,
1691 mips_push_dummy_frame, mips_pop_frame, mips_skip_prologue,
1692 mips_breakpoint_from_pc, mips_call_dummy_address): Make static.
1693
1694 2002-08-19 Michael Snyder <msnyder@redhat.com>
1695
1696 * mips-tdep.c (mips_frame_num_args): New function.
1697 (mips_gdbarch_init): Set frame_chain, frameless_function_invocation,
1698 frame_saved_pc, frame_args_address, frame_locals_address,
1699 frame_num_args, and frame_args_skip.
1700 * config/mips/tm-mips.h (FRAME_CHAIN, FRAMELESS_FUNCTION_INVOCATION,
1701 FRAME_SAVED_PC, FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS,
1702 FRAME_NUM_ARGS, FRAME_ARGS_SKIP): Delete.
1703 * config/mips/tm-mipsv4.h (FRAME_CHAIN_VALID): Delete.
1704
1705 2002-08-20 Michael Snyder <msnyder@redhat.com>
1706
1707 * config/mips/tm-mips.h (STORE_STRUCT_RETURN): Delete.
1708 (EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
1709 * mips-tdep.c (mips_store_struct_return): New function.
1710 (mips_extract_struct_value_address): New function.
1711 (mips_gdbarch_init): Set store_struct_return and
1712 extract_struct_value_address.
1713
1714 2002-08-20 David Carlton <carlton@math.stanford.edu>
1715
1716 * dwarf2read.c (dwarf2_build_psymtabs): Check that
1717 dwarf_line_offset is nonzero before creating dwarf_line_buffer.
1718 (read_file_scope): Check that line_header is nonzero before
1719 decoding macro information.
1720
1721 2002-08-20 Mark Kettenis <kettenis@gnu.org>
1722
1723 * i386-tdep.h (FP_REGNUM_P): Change such that we don't incorrectly
1724 flag the general-purpose registers as floating-point on targets
1725 that don't support the floating-point registers.
1726
1727 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
1728
1729 * rs6000-tdep.c (altivec_register_p): Delete.
1730 (rs6000_do_altivec_registers): Delete.
1731 (rs6000_altivec_registers_info): Delete.
1732 (rs6000_do_registers_info): Delete.
1733 (_initialize_rs6000_tdep): Remove command 'info powerpc altivec'.
1734 (rs6000_gdbarch_init): Remove setting of do_registers_info.
1735
1736 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
1737
1738 * infcmd.c (do_registers_info): Print vector registers in hex
1739 format only.
1740 (print_vector_info): Check that printing registers
1741 makes sense.
1742 (print_float_info): Ditto.
1743
1744 2002-08-20 Andrew Cagney <ac131313@redhat.com>
1745
1746 * mips-tdep.c (mips_gdbarch_init): Update.
1747 (mips_o32_extract_return_value): Rewrite.
1748 (mips_o32_store_return_value): Rewrite.
1749 (mips_o32_xfer_return_value): New function.
1750 (mips_xfer_register): Tweak debug print message. Allow for
1751 buf_offset when dumping the value transfered.
1752
1753 2002-08-20 Andrew Cagney <ac131313@redhat.com>
1754
1755 * config/mips/tm-nbsd.h (MIPS_DEFAULT_ABI): Delete.
1756 * config/mips/tm-linux.h (MIPS_DEFAULT_ABI): Delete.
1757 * config/mips/tm-irix5.h (MIPS_DEFAULT_ABI): Delete.
1758 * config/mips/tm-irix6.h (MIPS_DEFAULT_ABI): Delete.
1759 * mips-tdep.c (mips_gdbarch_init) [MIPS_DEFAULT_ABI]: Delete code.
1760
1761 2002-08-14 Michael Snyder <msnyder@redhat.com>
1762
1763 * mips-tdep.c (mips_frame_chain): Check for call-dummy frames.
1764
1765 2002-08-19 Elena Zannoni <ezannoni@redhat.com>
1766
1767 * rs6000-tdep.c (struct reg): Add field to indicate a pseudo
1768 register.
1769 (P): New macro to define a register as a pseudo register.
1770 (R, R4, R8, R16, FR32, R64, R0): Updated.
1771 (struct variant): Add new fields for number of pseudo registers
1772 and number of total registers.
1773 (tot_num_registers): New macro replacing....
1774 (num_registers): ...deleted macro.
1775 (num_registers): New function.
1776 (num_pseudo_registers): New function.
1777 (variants): Update all variants to intialize new fields correctly.
1778 Postpone initialization of number of pseudo regs and real regs.
1779 (init_variants): New function.
1780 (rs6000_gdbarch_init): Initialize variants. Update calculation of
1781 registers offsets.
1782
1783 2002-08-19 David Carlton <carlton@math.stanford.edu>
1784
1785 * valops.c (search_struct_field): Change error message to treat
1786 return value of 0 from value_static_field as meaning that field is
1787 optimized out.
1788 (value_struct_elt_for_reference): Ditto.
1789 * values.c (value_static_field): Treat an unresolved location the
1790 same as a nonexistent symbol. Fix PR gdb/635.
1791 * gnu-v2-abi.c (gnuv2_value_rtti_type): Eliminate test for being
1792 enclosed. Fix PR gdb/574.
1793 * MAINTAINERS: Add self to Write After Approval list.
1794
1795 2002-08-19 Andrew Cagney <ac131313@redhat.com>
1796
1797 * mips-tdep.c (mips_xfer_register): New function.
1798 (mips_n32n64_extract_return_value): Rewrite.
1799 (mips_gdbarch_init): For N32 and N64, set extract_return_value
1800 instead of deprecated_extract_return_value.
1801
1802 2002-08-19 Elena Zannoni <ezannoni@redhat.com>
1803
1804 * rs6000-tdep.c (TDEP): Delete macro.
1805 (branch_dest): Replace use of TDEP macro with its body.
1806 (rs6000_pop_frame): Ditto.
1807 (rs6000_push_arguments): Ditto.
1808 (rs6000_skip_trampoline_code): Ditto.
1809 (rs6000_frame_saved_pc): Ditto.
1810 (rs6000_frame_chain): Ditto.
1811 (rs6000_register_name): Ditto.
1812 (rs6000_register_byte): Ditto.
1813 (rs6000_register_raw_size): Ditto.
1814 (rs6000_register_virtual_type): Ditto.
1815 (rs6000_register_convertible): Ditto.
1816 (rs6000_convert_from_func_ptr_addr): Ditto.
1817
1818 2002-08-19 Daniel Jacobowitz <drow@mvista.com>
1819
1820 * config/mips/tm-linux.h (REALTIME_LO, REALTIME_HI): Define
1821 conditionally.
1822 (JB_PC, JB_ELEMENT_SIZE): Rename to MIPS_LINUX_JB_PC and
1823 MIPS_LINUX_JB_ELEMENT_SIZE.
1824 * mips-linux-tdep.c (supply_gregset, fill_gregset): Use alloca
1825 for MAX_REGISTER_RAW_SIZE arrays.
1826 (mips_linux_get_longjmp_target): Use MIPS_LINUX_JB_PC and
1827 MIPS_LINUX_JB_ELEMENT_SIZE.
1828
1829 2002-08-19 Pierre Muller <muller@ics.u-strasbg.fr>
1830
1831 * i387-tdep.c (i387_print_float_info): Fix typo in comment.
1832
1833 2002-08-19 Aidan Skinner <aidan@velvet.net>
1834
1835 * Makefile.in (SFILES): Add ada-exp.y ada-lang.c ada-typeprint.c
1836 ada-valprint.c ada-tasks.c.
1837 (YYFILES): Add ada-exp.y.
1838 (ada-exp.tab.c ada-lex.c ada-lang.o): New target.
1839 (ada-tasks.o ada-typeprint.o ada-valprint.o): New target.
1840 (ada-exp.tab.o): New target.
1841
1842 2002-08-18 Andrew Cagney <ac131313@redhat.com>
1843
1844 * regcache.c (regcache_xfer_part): New function.
1845 (regcache_raw_read_part): New function.
1846 (regcache_raw_write_part): New function.
1847 (regcache_cooked_read_part): New function.
1848 (regcache_cooked_write_part): New function.
1849 * regcache.h (regcache_raw_read_part): Declare.
1850 (regcache_raw_write_part): Declare.
1851 (regcache_cooked_read_part): Declare.
1852 (regcache_cooked_write_part): Declare.
1853
1854 2002-08-18 Daniel Jacobowitz <drow@mvista.com>
1855
1856 * remote.c (remote_open_1): Add async_p.
1857 (remote_async_open_1): Delete.
1858 (open_remote_target): Delete.
1859 (remote_open, extended_remote_open): Update calls to remote_open_1.
1860 (remote_async_open, extended_remote_async_open): Call
1861 remote_open_1 instead of remote_async_open_1.
1862
1863 2002-08-19 Mark Kettenis <kettenis@gnu.org>
1864
1865 * blockframe.c: Fix a few coding standard violations.
1866
1867 2002-08-19 Mark Kettenis <kettenis@gnu.org>
1868
1869 * config/i386/nm-i386sco5.h (START_INFERIOR_TRAPS_EXPECTED): Moved
1870 here from ...
1871 * config/i386/tm-i386sco5.h: ... here. File removed.
1872 * config/i386/i386sco5.mt (TM_FILE): Set to tm-i386v4.h.
1873
1874 * config/i386/nm-i386v.h (START_INFERIOR_TRAPS_EXPECTED): New define.
1875 * config/i386/i386aout.mt (TDEPFILES): Add i387-tdep.o
1876 (TM_FILE): Set to tm-i386.h.
1877 * config/i386/i386v.mt (TM_FILE): Set to tm-i386.h.
1878 * config/i386/tm-i386v.h: Remove file.
1879 * config/i386/tm-ptx.h [!SEQUENT_PTX4]: Include "i386/tm-i386.h"
1880 instead of "i386/tm-i386v.h".
1881 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
1882 * config/i386/tm-symmetry: Include "i386/tm-i386.h" instead of
1883 "i386/tm-i386v.h".
1884 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
1885 * config/i386/tm-vxworks.h: Include "i386/tm-i386.h" instead of
1886 "i386/tm-i386.h".
1887
1888 2002-08-18 Mark Kettenis <kettenis@gnu.org>
1889
1890 * config/i386/nm-i386v.h: Add protection against
1891 multiple-inclusion.
1892 (i386_register_u_addr): Remove prototype.
1893 (register_u_addr): New prototype.
1894 (REGISTER_U_ADDR): Redefine accordingly.
1895 * i386v-nat.c: Improve several comments.
1896 (i386_register_u_addr): Change signature and rename to
1897 register_u_addr. Use FP_REGNUM_P. Rewrite slightly to get rid of
1898 ubase variable.
1899
1900 2002-08-18 Andrew Cagney <ac131313@redhat.com>
1901
1902 * config/mips/tm-mips.h (STORE_RETURN_VALUE): Delete macro.
1903 (DEPRECATED_EXTRACT_RETURN_VALUE): Delete macro.
1904 * mips-tdep.c (mips_gdbarch_init): Set store_return_value and
1905 deprecated_extract_return_value.
1906 (mips_o32_push_arguments, mips_o64_push_arguments): Clone and
1907 rename mips_o32o64_push_arguments.
1908 (mips_gdbarch_init): Update.
1909 (mips_extract_return_value): Delete.
1910 (mips_o32_extract_return_value): Clone mips_extract_return_value.
1911 (mips_o64_extract_return_value): Clone mips_extract_return_value.
1912 (mips_eabi_extract_return_value): Clone mips_extract_return_value.
1913 (mips_n32n64_extract_return_value): Clone
1914 mips_extract_return_value.
1915 (mips_store_return_value): Delete.
1916 (mips_o32_store_return_value): Clone mips_store_return_value.
1917 (mips_o64_store_return_value): Clone mips_store_return_value.
1918 (mips_eabi_store_return_value): Clone mips_store_return_value.
1919 (mips_n32n64_store_return_value): Clone mips_store_return_value.
1920
1921 2002-08-18 Aidan Skinner <aidan@velvet.net>
1922
1923 * ada-lang.c: Use gdb_string.h instead of <string.h>.
1924 * ada-typeprint.c: Use gdb_string.h instead of <string.h>.
1925
1926 2002-08-18 Aidan Skinner <aidan@velvet.net>
1927
1928 * ada-lang.c: Run through gdb_indent.sh.
1929 * ada-lang.h: Run through gdb_indent.sh.
1930 * ada-tasks.c: Run through gdb_indent.sh.
1931 * ada-typeprint.c: Run through gdb_indent.sh.
1932 * ada-valprint.c: Run through gdb_indent.sh.
1933
1934 2002-08-18 Andrew Cagney <ac131313@redhat.com>
1935
1936 * osabi.c (gdbarch_init_osabi): Don't complain about an unknown
1937 ABI.
1938
1939 2002-08-18 Mark Kettenis <kettenis@gnu.org>
1940
1941 * i386b-nat.c [FETCH_INFERIOR_REGISTERS]: Remove dead code.
1942
1943 * config/i386/nm-i386bsd.h (FLOAT_INFO): Remove redundant #undef.
1944 * i386b-nat.c [FLOAT_INFO]: Remove dead code.
1945
1946 * i386-tdep.c (i386_do_pop_frame, i386_store_return_value): Call
1947 write_register_gen instead of write_register_bytes.
1948
1949 * NEWS: Mention that the i[3456]-*mach3*, i[3456]-*-mach* and
1950 i[3456]-*-osf1mk* configurations have been made obsolete.
1951 * configure.host: Make i[3456]86-*-mach3*, i[3456]86-*mach* and
1952 i[3456]86-*-osf1mk* hosts obsolete.
1953 * confighure.tgt: Make i[3456]86-*-mach3*, i[3456]86-*-osf1mk*
1954 targets obsolete.
1955 * config/i386/i386mach.mh, config/i386/nm-i386mach.h,
1956 config/i386/xm-i386mach.h, config/i386/i386m3.mh,
1957 config/i386/i386m3.mt, config/i386/nm-m3.h,
1958 config/i386/tm-i386m3.h, config/i386/xm-i386m3.h,
1959 config/i386/i386mk.mh, config/i386/i386mk.mt,
1960 config/i386/tm-i386mk.h, config/i386/xm-i386mk.h: Make files
1961 obsolete.
1962 * i386mach-nat.c, i386m3-nat.c: Make files obsolete.
1963 * Makefile.in (ALLDEPFILES): Remove i386mach.c i386m3-nat.c
1964 (i386mach-nat.o, i386m3-nat.o):Make targets obsolete.
1965
1966 2002-08-18 Andrew Cagney <ac131313@redhat.com>
1967
1968 * config/pa/tm-hppa.h (hppa_store_return_value): Declare.
1969 (hppa_value_returned_from_stack): Declare.
1970 (hppa_extract_return_value): Declare.
1971 * config/pa/hppa.mt: New file.
1972 * configure.tgt: Recognize hppa*-*-*.
1973 * MAINTAINERS: Change HPPA target to hppa-elf. Still broken.
1974
1975 2002-08-18 Mark Kettenis <kettenis@gnu.org>
1976
1977 * i386-sol2-tdep.c (_initialize_i386_sol2_tdep): Fix typo in
1978 comment.
1979
1980 2002-08-17 Mark Kettenis <kettenis@gnu.org>
1981
1982 * top.c (gdb_rl_operate_and_get_next): Make sure
1983 operate-and-get-next functions correctly even when the history
1984 list is completely filled.
1985
1986 2002-08-18 Andrew Cagney <ac131313@redhat.com>
1987
1988 * MAINTAINERS (Target Instruction Set Architectures): Rename
1989 Target/Architectures. Replace vax-dec-vms5.5 with vax-netbsd.
1990 Replace s390-linux with s390-linux-gnu. Remove i386-aout,
1991 mcore-pe, mips64-elf, sparc64-elf. Remove i586-pc-msdosdjgpp,
1992 already listed under Host/Native.
1993
1994 * configure.tgt: Combine i[3456]86-*-coff*, i[3456]86-*-elf*,
1995 i[3456]86-*-pe*, and i[3456]86-*-aout* into i[3456]86-*-*. Add
1996 mips*-*-*.
1997
1998 2002-08-17 Andrew Cagney <ac131313@redhat.com>
1999
2000 * config/ia64/ia64.mt: New file.
2001 * config/alpha/alpha.mt: New file.
2002 * MAINTAINERS: Change the alpha target to alpha-elf and IA-64 to
2003 ia64-linux-gnu. Mention that ia64-elf is broken.
2004 * configure.tgt: Add alpha*-*-* and ia64*-*-* patterns.
2005
2006 2002-08-17 Mark Kettenis <kettenis@elgar.kettenis.dyndns.org>
2007
2008 * i386-tdep.c (i386_svr4_init_abi, i386_nw_init_abi): Use
2009 generic_func_frame_valid instead of func_frame_valid.
2010
2011 2002-08-16 Joel Brobecker <brobecker@gnat.com>
2012
2013 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Unfortunately,
2014 procfs appears to be broken when debugging on multi-processor
2015 machines. So enable software single stepping in order to avoid
2016 using the procfs interface to do next/step operations, using
2017 internal breakpoints instead.
2018
2019 * infrun.c (handle_inferior_event): Readjust the stop_pc by
2020 DECR_PC_AFTER_BREAK when hitting a single step breakpoint, to
2021 make this pc address equal to the value it would have if the
2022 system stepping capability was used. Also set a new flag used
2023 to ensure that we don't readjust the PC one more time later.
2024
2025 * breakpoint.c (bpstat_stop_status): Do not adjust the PC
2026 address by DECR_PC_AFTER_BREAK when software single step is
2027 in use for this architecture, as this has already been taken
2028 care of in handle_inferior_event().
2029
2030 2002-08-16 Joel Brobecker <brobecker@gnat.com>
2031
2032 * infrun.c (handle_inferior_event): Minor reformatting, to make
2033 a rather long condition expression easier to read.
2034
2035 2002-08-16 Andrew Cagney <ac131313@redhat.com>
2036
2037 * Makefile.in (gdbtk.o): Move to end of file.
2038 (gdbtk-bp.o, gdbtk-cmds.o): Ditto.
2039 (gdbtk-hooks.o, gdbtk-register.o): Ditto.
2040 (gdbtk-stack.o, gdbtk-varobj.o): Ditto.
2041 (gdbtk-wrapper.o, gdbres.o): Ditto.
2042
2043 2002-08-16 Andrew Cagney <ac131313@redhat.com>
2044
2045 * Makefile.in (copying.o): Separate out compile rule.
2046 (hpux-thread.o, procfs.o, signals.o): Ditto.
2047 (v850ice.o, z8k-tdep.o): Ditto.
2048 (tui-file.o): Move to TUI section.
2049 (xdr_ptrace.o, xdr_rdb.o, xdr_ld.o): Move to separate section.
2050 (nindy.o, Onindy.o, ttyflush.o): Move to separate section.
2051
2052 2002-08-16 Joel Brobecker <brobecker@gnat.com>
2053
2054 * i386-tdep.c (i386_pe_skip_trampoline_code): renamed from
2055 skip_trampoline_code, for better namespace-proofing.
2056
2057 * i386-tdep.h (i386_pe_skip_trampoline_code): Add declaration.
2058
2059 2002-08-16 Joel Brobecker <brobecker@gnat.com>
2060
2061 * config/i386/tm-cygwin.h: Remove some "#if 0"'ed macros.
2062
2063 2002-08-16 Joel Brobecker <brobecker@gnat.com>
2064
2065 * infrun.c (handle_inferior_event): When receiving a SIGTRAP
2066 signal, check whether we hit a breakpoint before checking for a
2067 single step breakpoint. Otherwise, GDB fails to notice that a
2068 breakpoint has been hit when stepping onto a breakpoint.
2069
2070 2002-08-16 Keith Seitz <keiths@redhat.com>
2071
2072 * gdb-events.sh (clear_gdb_event_hooks): New function.
2073 * gdb-events.c: Regenerate.
2074 * gdb-events.h: Regenerate.
2075
2076 2002-08-16 Andrew Cagney <ac131313@redhat.com>
2077
2078 * breakpoint.c (bpstat_stop_status): Rename not_a_breakpoint to
2079 not_a_sw_breakpoint.
2080 * breakpoint.h (bpstat_stop_status): Add parameter names.
2081
2082 2002-08-16 Grace Sainsbury <graces@redhat.com>
2083
2084 * remote.c (remote_insert_hw_breakpoint)
2085 (remote_remove_hw_breakpoint): Fix calculation of length field
2086 for Z-packet.
2087
2088 2002-08-15 Michael Snyder <msnyder@redhat.com>
2089
2090 * irix5-nat.c (supply_gregset): Allocate plenty-big buffer
2091 (32 bytes) instead of using MAX_REGISTER_RAW_SIZE.
2092 (supply_fpregset): Ditto.
2093
2094 * config/mips/tm-mips.h (REGISTER_CONVERT_TO_VIRTUAL,
2095 REGISTER_CONVERT_TO_RAW, REGISTER_CONVERTIBLE,
2096 MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE): Delete.
2097 (TARGET_READ_SP): Delete.
2098 (DO_REGISTERS_INFO): Delete.
2099 (FUNCTION_START_OFFSET, IN_SIGTRAMP, REGISTER_VIRTUAL_SIZE):
2100 Delete.
2101 (REGISTER_CONVERT_FROM_TYPE, REGISTER_CONVERT_TO_TYPE): Convert
2102 from macros to functions.
2103
2104 * mips-tdep.c (mips_gdbarch_init): Set the above in the gdbarch.
2105 (mips_register_convertible, mips_register_convert_to_virtual,
2106 mips_register_convert_to_raw): Make static.
2107 (mips_read_sp): New function.
2108 (mips_gdbarch_init): Set gdbarch read_sp to mips_read_sp.
2109 (mips_do_registers_info): Make static.
2110 (mips_gdbarch_init): Insert mips_do_registers_info into gdbarch.
2111 (in_sigtramp): Make static, rename to mips_pc_in_sigtramp.
2112 (mips_register_convert_from_type, mips_register_convert_to_type):
2113 New functions.
2114 (mips_gdbarch_init): Set up function_start_offset,
2115 register_virtual_size, pc_in_sigtramp.
2116
2117 2002-08-15 Andrew Cagney <ac131313@redhat.com>
2118
2119 * infcmd.c (vector_info): New function.
2120 (_initialize_infcmd): Add command "info vector".
2121 (print_vector_info): New function.
2122
2123 * gdbarch.sh (PRINT_VECTOR_INFO): New method
2124 * gdbarch.h, gdbarch.c: Regenerate.
2125
2126 2002-08-15 Andrew Cagney <ac131313@redhat.com>
2127
2128 * infcmd.c (do_registers_info): Rename parameter ``fpregs'' to
2129 ``print_all''. Only print vector registers when ``print_all''.
2130
2131 2002-08-15 Andrew Cagney <ac131313@redhat.com>
2132
2133 * i387-tdep.h (i387_print_float_info): Add `args' parameter.
2134 * i387-tdep.c (i387_print_float_info): Add `args' parameter.
2135
2136 * gdbarch.sh (PRINT_FLOAT_INFO): Change to a predicate method.
2137 Add `args' parameter.
2138 * gdbarch.h, gdbarch.c: Regenerate.
2139
2140 * arm-tdep.c (arm_print_float_info): Add the parameter `args'.
2141
2142 * infcmd.c (float_info): Call print_float_info.
2143 (print_float_info): New function. By default, print the
2144 floating-point registers.
2145
2146 * arch-utils.h (default_print_float_info): Delete declaration.
2147 * arch-utils.c (default_print_float_info): Delete function.
2148
2149 2002-08-16 Mark Kettenis <kettenis@gnu.org>
2150
2151 * config/i386/nm-i386v.h (FLOAT_INFO): Remove already commented
2152 out define.
2153
2154 * i387-tdep.c (i387_print_float_info): Add comment about ignoring
2155 FRAME.
2156
2157 * NEWS: Mention that the i[3456]-*-aix target has been made obsolete.
2158 * configure.host: Make i[3456]86-*-aix host obsolete.
2159 * configure.tgt: Make i[3456]86-*-aix target obsolete.
2160 * config/i386/i386aix.mh, config/i386/i386aix.mt,
2161 config/i386/nm-i386aix.h, condig/i386/tm-i386aix.h,
2162 config/i386/xm-i386aix.h: Make files obsolete.
2163 * i386aix-nat.c: Make file obsolete.
2164 * Makefile.in (ALLDEPFILES): Remove i386aix-nat.c.
2165 (i386aix-nat.o): Make target obsolete.
2166
2167 * config/i386/nm-gnu.h: Removed.
2168 * config/i386/nm-i386gnu.h: New file.
2169 (THREAD_STATE_FLAVOR, THREAD_STATE_SIZE,
2170 THREAD_STATE_SET_TRACED, THREAD_STATE_CLEAR_STATE, ATTACH_DETACH):
2171 Moved here from ...
2172 * config/i386/tm-i386gnu.h: ... here. Removed.
2173 * config/i386/xm-i386gnu.h: Removed.
2174 * config/i386/i386gnu.mh (XM_FILE): Set to xm-i386.h.
2175 (NAT_FILE): Set to nm-i386gnu.h.
2176 * config/i386/i386gnu.mt (TDEPFILES): Add i386gnu-tdep.o.
2177 * i386-tdep.c: New file.
2178 * Makefile.in (ALLDEPFILES): Add i386gnu-nat.c and i386gnu-tdep.c.
2179 (i386gnu-tdep.o): Specify dependencies.
2180
2181 2002-08-15 Mark Kettenis <kettenis@gnu.org>
2182
2183 * config/i386/tm-i386sco5.h: Include "i386/tm-i386v4.h" instead of
2184 "i386/tm-i386.h", "i386/tm-i386v.h" and "config/tm-sysv.h".
2185 Adjust a few comments to reflect reality a bit closer.
2186 (KERNEL_U_SIZE, TARGET_HAS_HARDWARE_WATCHPOINTS,
2187 TARGET_CAN_USE_HARDWARE_WATCHPOINT, HAVE_CONTINUEABLE_WATCHPOINT,
2188 HAVE_STEPPABLE_WATCHPOINT, STOPPED_BY_WATCHPOINT,
2189 target_insert_watchpoint, target_remove_watchpoint):
2190 Move defines to ...
2191 * config/i386/nm-i386sco5.h: ... here.
2192 (kernel_u_size): Add prototype. Improve a few comments and add
2193 protection against multiple inclusion.
2194
2195 * config/i386/nm-i386sco.h (FLOAT_INFO): Remove already commented
2196 out define.
2197
2198 * uw-thread.c (SP_ARG0): Define if not already defined.
2199 * config/i386/tm-i386.h (SO_ARG0): Remove define.
2200
2201 * config/i386/tm-i386v4.h (HAVE_I387_REGS): Remove define.
2202
2203 * config/i386/tm-i386.h: Don't include "regcache.h".
2204
2205 * i387-tdep.h (i387_print_float_info): New prototype.
2206 * i387-tdep.c (print_i387_value, print_i387_ext,
2207 print_i387_status_word, print_i387_control_word): Add `struct
2208 ui_file *' argument and use it for output.
2209 (i387_print_float_info): Renamed from i387_float_info. Add
2210 `struct gdbarch *' and `struct ui_file *' arguments and use the
2211 latter for output.
2212 * i386-tdep.c: Include "i387-tdep.h".
2213 (i386_gdbarch_init): Set print_float_info.
2214 * config/i386/tm-i386.h (i387_float_info): Remove prototype.
2215 (FLOAT_INFO): Remove define.
2216
2217 2002-08-13 Michael Snyder <msnyder@redhat.com>
2218
2219 * mips-tdep.c (mips_push_arguments): Rename to
2220 mips_eabi_push_arguments, and tune for EABI.
2221 (MIPS_REGS_HAVE_HOME_P): Delete.
2222 (struct gdbarch_tdep): Remove mips_regs_have_home_p field.
2223 (mips_gdbarch_init): Set gdbarch push_arguments for eabi.
2224 Delete references to mips_regs_have_home_p.
2225
2226 2002-08-14 Keith Seitz <keiths@redhat.com>
2227
2228 * Makefile.in (install-gdbtk): Create insight plugin directory.
2229 Install plugins.tcl file.
2230
2231 2002-08-14 Keith Seitz <keiths@redhat.com>
2232
2233 * configure.in: Move SUBDIRS to near top of the file so that
2234 --enable options may add things to it.
2235 If gdbtk is enabled, add gdbtk directory to SUBDIRS and configdirs.
2236 * configure: Regenerate.
2237
2238 2002-08-13 Michael Snyder <msnyder@redhat.com>
2239
2240 * mips-tdep.c (mips_o32o64_push_arguments): New function,
2241 cloned from mips_push_arguments, tuned for o32/o64 ABI.
2242 (mips_gdbarch_init): Set gdbarch_push_arguments to new func.
2243
2244 2002-08-13 Andrew Cagney <ac131313@redhat.com>
2245
2246 * vax-tdep.c (vax_get_saved_register): Delete function.
2247 (vax_gdbarch_init): Update.
2248 * ns32k-tdep.c (ns32k_get_saved_register): Delete function.
2249 (ns32k_gdbarch_init): Update.
2250 * alpha-tdep.c (alpha_get_saved_register): Delete function.
2251 (alpha_gdbarch_init): Update.
2252
2253 2002-08-13 Andrew Cagney <cagney@redhat.com>
2254
2255 * regcache.c (init_regcache_descr): Overallocate the
2256 raw_register_valid_p array including space for NUM_PSEUDO_REGS.
2257 (registers_changed): Replace NUM_REGS+NUM_PSEUDO_REGS with
2258 nr_raw_registers.
2259 (set_register_cached): Add range checking assertions. Use
2260 current_regcache.
2261
2262 2002-08-13 Mark Kettenis <kettenis@gnu.org>
2263
2264 * i386-tdep.c (i386_stab_reg_to_regnum): Return correct register
2265 numbers for MMX registers.
2266
2267 2002-08-13 Andrew Cagney <cagney@redhat.com>
2268
2269 * i386-tdep.c (i386_gdbarch_init): Use
2270 generic_unwind_get_saved_register.
2271
2272 2002-08-13 Kevin Buettner <kevinb@redhat.com>
2273
2274 * procfs.c (procfs_can_use_hw_breakpoint): New function.
2275 (init_procfs_ops): Define ``to_can_use_hw_breakpoint'' for procfs
2276 target vector.
2277 * config/mips/nm-irix5.h (TARGET_CAN_USE_HARDWARE_WATCHPOINT):
2278 Delete. Add comment regarding this now-deleted target method.
2279
2280 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
2281
2282 * m68hc11-tdep.c (M68HC12_NUM_PSEUDO_REGS): New define.
2283 (M68HC12_HARD_PC_REGNUM): Define specific PC for 68HC12 (pseudo reg).
2284 (m68hc11_pseudo_register_read): Compute the 68HC12 PC using the
2285 real PC and the page number (if it's within the memory bank window).
2286 (m68hc11_pseudo_register_write): Likewise when saving.
2287 (m68hc11_register_name): Name the virtual pc 'pc' and the real one ppc.
2288 (m68hc11_register_virtual_type): Return uint32 for virtual pc.
2289 (m68hc11_register_raw_size): And use 32-bit for it.
2290 (m68hc11_gdbarch_init): Use 32-bit address for 68HC12 if the
2291 16K memory bank is used by the prog; also use the virtual pc.
2292
2293 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
2294
2295 * m68hc11-tdep.c (m68hc11_elf_make_msymbol_special): New function.
2296 (m68hc11_gdbarch_init): Install it in gdbarch.
2297 (MSYMBOL_SET_RTC, MSYMBOL_SET_RTI): New to set symbol specific flags.
2298 (MSYMBOL_IS_RTC, MSYMBOL_IS_RTI): New to test these flags.
2299 (MSYMBOL_SIZE): New for documentation.
2300 (insn_return_kind): Enum to specify how a function returns.
2301 (frame_extra_info): Cleanup and record the return mode.
2302 (gdbarch_tdep, USE_PAGE_REGISTER): New to control the use of page
2303 register in address computation.
2304 (m68hc11_get_return_insn): New to obtain the return instruction used
2305 by the function.
2306 (m68hc11_frame_init_saved_regs): Take into account the return
2307 instruction used by the function for far and interrupt functions.
2308 (m68hc11_init_extra_frame_info): Take into account page register.
2309 (m68hc11_frame_args_address): Adjust according to the return mode.
2310 (show_regs): Print page register only when it's used.
2311
2312 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
2313
2314 * m68hc11-tdep.c (HARD_PAGE_REGNUM): Define for 68HC12 page register.
2315 (M68HC11_LAST_HARD_REG, m68hc11_register_names): Update.
2316 (m68hc11_register_virtual_type): Return a 8-bit type for 8-bit
2317 registers.
2318 (m68hc11_register_raw_size): Likewise.
2319
2320 2002-08-13 Andrew Cagney <cagney@redhat.com>
2321
2322 * i386-tdep.c (i386_register_name): Handle mmx registers.
2323 (mmx_regnum_p): New function.
2324 (i386_mmx_names): New array.
2325 (mmx_num_regs): New variable.
2326 (i386_pseudo_register_read): New function.
2327 (i386_pseudo_register_write): New function.
2328 (mmx_regnum_to_fp_regnum): New function. Code from Fernando Nasser.
2329
2330 * regcache.c (regcache_raw_read_unsigned): New function.
2331 (regcache_raw_read_signed): New function.
2332 * regcache.h (regcache_raw_read_unsigned): Declare.
2333 (regcache_raw_read_signed): Declare.
2334
2335 2002-08-13 Andrew Cagney <cagney@redhat.com>
2336
2337 * regcache.c (regcache_raw_read_as_address): Delete function.
2338 (regcache_cooked_read_signed): New function.
2339 (regcache_cooked_read_unsigned): New function.
2340 * regcache.h (regcache_cooked_read_signed): Declare.
2341 (regcache_cooked_read_unsigned): Declare.
2342 (regcache_raw_read_as_address): Delete declaration.
2343
2344 * blockframe.c (generic_read_register_dummy): Use
2345 regcache_cooked_read_unsigned.
2346 * i386-tdep.c (i386_extract_struct_value_address): Use
2347 regcache_cooked_read_unsigned.
2348
2349 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
2350
2351 * m68hc11-tdep.c (m68hc11_gdbarch_init): Set int, double and long
2352 double sizes according to ELF ABI flags.
2353 (gdbarch_tdep): Record elf_flags.
2354
2355 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
2356
2357 * m68hc11-tdep.c (M6812_OP_PSHX, M6812_OP_PSHY): New defines.
2358 (m6812_prolog): They can appear in 68HC12 function prologue.
2359 (m68hc11_frame_chain): Cleanup.
2360
2361 2002-08-12 Andrew Cagney <cagney@redhat.com>
2362
2363 * i386-tdep.h (i386_register_byte, i386_register_raw_size): Delete
2364 declarations.
2365 * i386-linux-tdep.c (i386_linux_register_byte): Delete function.
2366 (i386_linux_register_raw_size): Delete function.
2367 (i386_linux_init_abi): Update.
2368 * i386-tdep.c (i386_register_raw_size): Delete function.
2369 (i386_register_byte): Delete function.
2370 (i386_gdbarch_init): Update.
2371 (i386_register_size): Delete array.
2372 (i386_register_offset): Delete array.
2373
2374 * config/i386/tm-symmetry.h (REGISTER_BYTE): Delete macro.
2375 (REGISTER_RAW_SIZE): Delete macro.
2376 * config/i386/tm-ptx.h (REGISTER_RAW_SIZE): Delete macro.
2377 (REGISTER_BYTE): Delete macro.
2378
2379 2002-08-11 Aidan Skinner <aidan@velvet.net>
2380
2381 * ada-lang.c (ada_lookup_partial_symbol)
2382 (to_fixed_variant_branch_type) (find_line_in_linetable): Fix
2383 prototype names so that grep ^func works properly.
2384
2385 * ada-lang.c (ada_array_element_type)
2386 (ada_lookup_partial_symbol): Fix typos in parameter list.
2387
2388 * ada-valprint.c (val_print_packed_array_elements) (ada_val_print_1):
2389 Fix prototype names so that grep ^func works properly.
2390
2391 2002-08-10 Andrew Cagney <cagney@redhat.com>
2392 Elena Zannoni <ezannoni@redhat.com>
2393 Martin M. Hunt <hunt@redhat.com>
2394
2395 * gdbtypes.c (build_builtin_type_vec128): Set the vector bit.
2396 (build_builtin_type_vec128i): Set the vector bit.
2397 * gdbtypes.h (builtin_type_vec64, builtin_type_vec64i): Declare.
2398 * gdbtypes.c (builtin_type_vec64, builtin_type_vec64i): Define.
2399 (build_builtin_type_vec64): New function.
2400 (build_builtin_type_vec64i): New function.
2401 (build_gdbtypes): Initialize builtin_type_vec64 and
2402 builtin_type_vec64i.
2403
2404 2002-08-09 Andrew Cagney <cagney@redhat.com>
2405
2406 * regcache.c (regcache_dump): Compare the register offset
2407 with REGISTER_BYTE.
2408 * arch-utils.c (generic_register_byte): New function.
2409 * arch-utils.h (generic_register_byte): Declare.
2410 * gdbarch.sh (REGISTER_BYTE): Default to generic_register_byte.
2411 * gdbarch.h, gdbarch.c: Regenerate.
2412
2413 2002-08-09 Andrew Cagney <cagney@redhat.com>
2414
2415 * regcache.c: Include "gdbcmd.h"
2416 (_initialize_regcache): Add commands "maintenance print
2417 registers", "maintenance print raw-registers" and "maintenance
2418 print cooked-registers".
2419 (enum regcache_dump_what): Define.
2420 (dump_endian_bytes): New function.
2421 (regcache_dump): New function.
2422 (regcache_print): New function.
2423 (maintenance_print_registers): New function.
2424 (maintenance_print_raw_registers): New function.
2425 (maintenance_print_cooked_registers): New function.
2426 * Makefile.in (regcache.o): Update dependencies.
2427
2428 2002-08-09 Michael Snyder <msnyder@redhat.com>
2429
2430 * mips-tdep.c (ROUND_DOWN, ROUND_UP): Move to global scope.
2431 (mips_push_arguments): Correct some comments. Use paddr_nz
2432 for printing addresses in debug output. Replace static
2433 allocation using MAX_REGISTER_RAW_SIZE with alloca.
2434 (mips_n32n64_push_arguments): New function, cloned from
2435 mips_push_arguments and tuned for the n32/n64 ABI.
2436 (mips_push_register): Buffer needs dynamic allocation.
2437 (mips_print_register): Ditto.
2438 (do_gp_register_row): Ditto.
2439 (mips_store_return_value): Ditto.
2440 (mips_gdbarch_init): Set gdbarch_push_arguments per ABI.
2441
2442 2002-08-09 Don Howard <dhoward@redhat.com>
2443
2444 * memattr.c (mem_info_command): Print special case of upper bound
2445 as max CORE_ADDR + 1.
2446
2447 2002-08-08 Michael Snyder <msnyder@redhat.com>
2448
2449 * mips-tdep.c (mips_n32n64_use_struct_convention): N32 only
2450 returns structs by ref if they're too big to fit in two registers.
2451
2452 2002-08-09 Kevin Buettner <kevinb@redhat.com>
2453
2454 * mips-tdep.c (mips_init_extra_frame_info): Initialize SP_REGNUM's
2455 saved regs value.
2456 (read_next_frame_reg): Call FRAME_INIT_SAVED_REGS instead of
2457 mips_find_saved_regs().
2458 (mips_pop_frame): Likewise.
2459
2460 2002-08-09 Kevin Buettner <kevinb@redhat.com>
2461
2462 * blockframe.c (frame_saved_regs_register_unwind): Revise
2463 PC_IN_CALL_DUMMY assertion to only apply when generic dummy
2464 frames are in use.
2465
2466 2002-08-09 Grace Sainsbury <graces@redhat.com>
2467
2468 * remote.c: (remote_wait, remote_async_wait): Add check for awatch
2469 T-packets; the 'a' is not taken as a register number.
2470 (remote_check_watch_resources, remote_stopped_by_watchpoint)
2471 (remote_stopped_data_address): New functions; add to target
2472 vector.
2473 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Change
2474 prototypes to match other implementations of this
2475 function. replace integer argument with pointer -- the length
2476 field in the Z-packet is the length of what is pointed to or 1 if
2477 pointer is null. Add to target vector.
2478 (remote_insert_watchpoint, remote_remove_watchpoint): Add to
2479 target vector.
2480
2481 From Mark Salter:
2482 * remote.c (remote_wait): Add support to extract optional
2483 watchpoint information from T-packet. Ignore unrecognized
2484 optional info in T-packet.
2485 (remote_async_wait): Ditto.
2486
2487 2002-08-09 Corinna Vinschen <vinschen@redhat.com>
2488
2489 * cli/cli-dump.c: Change fopen modes to use binary open modes
2490 as defined in include/fopen-bin.h throughout.
2491
2492 2002-08-08 Michael Snyder <msnyder@redhat.com>
2493
2494 * mips-tdep.c: Minor whitespace and indentation clean-ups.
2495
2496 2002-08-08 Kevin Buettner <kevinb@redhat.com>
2497
2498 * doublest.c (store_floating): Avoid floatformat_from_doublest()
2499 assertion failure by returning early after a warning.
2500
2501 2002-08-08 Kevin Buettner <kevinb@redhat.com>
2502
2503 * mips-tdep.c (mips_find_saved_regs): Make static.
2504 (mips_frame_init_saved_regs): New function.
2505 (mips_gdbarch_init): Setup FRAME_INIT_SAVED_REGS method.
2506 * config/mips/tm-mips.h (FRAME_INIT_SAVED_REGS): Delete macro.
2507 (mips_find_saved_regs): Delete declaration.
2508
2509 2002-08-08 Grace Sainsbury <graces@redhat.com>
2510
2511 * remote.c (remote_wait, remote_async_wait): Change
2512 thread_num from int to ULONGEST.
2513 (unpack_varlen_hex): Change result parameter from
2514 int * to ULONGEST *.
2515
2516 2002-08-08 Andrew Cagney <ac131313@redhat.com>
2517
2518 * configure.tgt: Replace powerpc-*-sysv*, powerpc-*-elf*,
2519 powerpcle-*-eabi*, powerpcle-*-sysv* and powerpcle-*-elf* with
2520 powerpc*-*-*.
2521 * MAINTAINERS: Remove redundant rs6000-ibm-aix4.1 target.
2522
2523 2002-08-08 Andrew Cagney <cagney@redhat.com>
2524
2525 * gcore.c (override_derive_stack_segment): Delete variable.
2526 (preempt_derive_stack_segment): Delete function.
2527 (derive_stack_segment): Delete function.
2528 (default_derive_stack_segment): Renamed to derive_stack_segment.
2529 (override_derive_heap_segment): Delete variable.
2530 (preempt_derive_heap_segment): Delete function.
2531 (derive_heap_segment): Delete function.
2532 (default_derive_heap_segment): Rename to derive_heap_segment.
2533
2534 2002-08-06 Michael Snyder <msnyder@redhat.com>
2535
2536 * config/mips/tm-mips.h: Remove #define USE_STRUCT_CONVENTION.
2537 * mips-tdep.c (mips_EABI_use_struct_convention,
2538 mips_OABI_use_struct_convention, mips_NABI_use_struct_convention):
2539 New functions. (mips_use_struct_convention): Delete.
2540 (mips_gdbarch_init): set use_gdbarch_convention.
2541
2542 2002-08-06 Michael Snyder <msnyder@redhat.com>
2543
2544 * mips-tdep.c: gdbarch-ify reg_struct_has_addr.
2545 (mips_eabi_reg_struct_has_addr, mips_n32n64_reg_struct_has_addr,
2546 mips_o32_reg_struct_has_addr): New functions.
2547 (mips_gdbarch_init): Set gdbarch reg_struct_has_addr.
2548
2549 2002-08-07 Andrew Cagney <ac131313@redhat.com>
2550
2551 * regcache.c (pseudo_register): Delete function.
2552 (fetch_register): Delete function.
2553 (store_register): Delete function.
2554 (regcache_raw_read, legacy_read_register_gen): Use
2555 target_fetch_registers instead of fetch_register.
2556 (legacy_write_register_gen, regcache_raw_write): Use
2557 target_store_register instead of store_register.
2558 (write_register_bytes): Ditto.
2559
2560 * gdbarch.sh (FETCH_PSEUDO_REGISTER): Delete.
2561 (STORE_PSEUDO_REGISTER): Delete.
2562 * gdbarch.h, gdbarch.c: Regenerate.
2563
2564 2002-08-06 Corinna Vinschen <vinschen@redhat.com>
2565
2566 * cli/cli-dump.c (add_dump_command): Explicitely use "b" flag to
2567 write dump file binary.
2568
2569 2002-08-05 Michael Snyder <msnyder@redhat.com>
2570
2571 * mips-tdep.c (mips_find_saved_regs): Adjust stack according
2572 to MIPS_SAVED_REGSIZE, not GDB_TARGET_IS_MIPS64. Enhance comment.
2573 (mips_gdbarch_init): Set N32 target to be mips64.
2574
2575 2002-08-06 Kevin Buettner <kevinb@redhat.com>
2576
2577 * frame.c (find_saved_register): Break out of loop once saved
2578 register address is found. Don't mention sparc in loop comment
2579 anymore.
2580
2581 2002-08-06 Kevin Buettner <kevinb@redhat.com>
2582
2583 * mips-tdep.c (mips_gdbarch_init): For the N32 ABI, set
2584 mips_default_saved_regsize to 8.
2585
2586 2002-08-06 Andrew Cagney <ac131313@redhat.com>
2587
2588 * gcore.c: Do not include <sys/procfs.h>.
2589 * Makefile.in (gcore.o): Update dependencies.
2590
2591 2002-08-06 Andrew Cagney <cagney@redhat.com>
2592
2593 * configure.tgt: Make arc-*-* obsolete.
2594 * NEWS: Mention that arc-*-* has been identifed as obsolete.
2595 * MAINTAINERS: Make arc-elf obsolete.
2596 * arc-tdep.c: Make file obsolete.
2597 * config/arc/arc.mt: Ditto.
2598 * config/arc/tm-arc.h: Ditto.
2599
2600 2002-08-05 Theodore A. Roth <troth@verinet.com>
2601
2602 * avr-tdep.c (avr_skip_prologue): Fix to return the correct pc.
2603
2604 2002-08-05 Andrew Cagney <ac131313@redhat.com>
2605
2606 * mcore-tdep.c (mcore_gdbarch_init): Use
2607 generic_unwind_get_saved_register instead of
2608 generic_get_saved_register.
2609 * v850-tdep.c (v850_gdbarch_init): Ditto.
2610 * frv-tdep.c (frv_gdbarch_init): Ditto.
2611 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
2612 * s390-tdep.c (s390_gdbarch_init): Ditto.
2613 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
2614 * config/mn10200/tm-mn10200.h (GET_SAVED_REGISTER): Ditto.
2615 * config/h8300/tm-h8300.h (GET_SAVED_REGISTER): Ditto.
2616
2617 2002-08-05 Joel Brobecker <brobecker@gnat.com>
2618
2619 * objfiles.h: Add missing #include "symfile.h"
2620
2621 * Makefile.in (objfiles_h): Add dependency on symfile.h and dependents.
2622
2623 2002-08-04 Andrew Cagney <ac131313@redhat.com>
2624
2625 From 2002-08-01 david carlton <carlton@math.stanford.edu>:
2626 * hpread.c (hpread_read_struct_type): Deleted superfluous setting
2627 of FIELD_BITSIZE.
2628
2629 2002-08-04 Daniel Jacobowitz <drow@mvista.com>
2630
2631 * NEWS: Cleanup and nitpick.
2632
2633 2002-08-03 Andrew Cagney <ac131313@redhat.com>
2634
2635 * NEWS: Cleanup. Use *-linux*-gnu*. Only use `*' for headings.
2636
2637 2002-08-03 Andrew Cagney <ac131313@redhat.com>
2638
2639 * Makefile.in (gdbtk-bp.o): Update dependencies.
2640 (gdbtk-register.o): Ditto.
2641 (gdbtk-varobj.o): Ditto.
2642
2643 2002-08-03 Andrew Cagney <cagney@redhat.com>
2644
2645 * m68hc11-tdep.c (m68hc11_pseudo_register_read): Replace
2646 m68hc11_fetch_pseudo_register.
2647 (m68hc11_pseudo_register_write): Replace
2648 m68hc11_store_pseudo_register.
2649 (m68hc11_gdbarch_init): Update.
2650
2651 Fri Aug 2 15:53:50 2002 Andrew Cagney <cagney@redhat.com>
2652
2653 * gdbarch.sh: Include "gdb_string.h".
2654 * gdbarch.c: Regenerate.
2655
2656 * regcache.c: Include "gdb_string.h".
2657 * ax-general.c: Ditto.
2658 * varobj.c: Ditto.
2659 * std-regs.c: Ditto.
2660 * fbsd-proc.c: Ditto.
2661 * thread.c: Ditto.
2662
2663 * Makefile.in (regcache.o): Update dependencies.
2664 (thread.o, gdbarch.o): Ditto.
2665 (ax-general.o, gdbarch.o): Ditto.
2666 (varobj.o, std-regs.o): Ditto.
2667 (fbsd-proc.o): Specify dependencies.
2668
2669 2002-08-02 Andrew Cagney <cagney@redhat.com>
2670
2671 * regcache.c (regcache_cooked_read): Rename rawnum parameter to
2672 regnum.
2673 (regcache_cooked_write): Ditto.
2674
2675 2002-08-02 Andrew Cagney <ac131313@redhat.com>
2676
2677 * regcache.c (regcache_cooked_read): New function.
2678 (regcache_cooked_write): New function.
2679 (read_register_gen): Rewrite using regcache_cooked_read.
2680 (write_register_gen): Rewrite using regcache_cooked_write.
2681
2682 * regcache.h (regcache_cooked_read, regcache_cooked_write):
2683 Declare.
2684
2685 2002-08-02 Andrew Cagney <cagney@redhat.com>
2686
2687 * gdbarch.sh (pseudo_register_read, pseudo_register_write):
2688 Replace the architecture methods register_read and register_write.
2689 * gdbarch.h, gdbarch.c: Regenerate.
2690 * regcache.c (init_regcache_descr): Update.
2691 (read_register_gen): Update.
2692 (write_register_gen): Update.
2693 (supply_register): Update comment.
2694
2695 * sh-tdep.c (sh_gdbarch_init): Update.
2696 (sh_pseudo_register_read, sh64_pseudo_register_read): Add
2697 `regcache' and `gdbarch' parameters. Make `buffer' a void
2698 pointer. Update code.
2699 (sh_pseudo_register_write, sh64_pseudo_register_write): Add
2700 `regcache' and `gdbarch' parameters. Make `buffer' a constant
2701 void pointer. Update code.
2702 (sh64_register_write): Delete.
2703 (sh4_register_read): Delete.
2704 (sh64_register_read): Delete.
2705 (sh4_register_write): Delete.
2706 (sh_sh4_register_convert_to_raw): Make `from' parameter a constant
2707 void pointer, `to' parameter a void pointer.
2708 (sh_sh64_register_convert_to_raw): Ditto.
2709
2710 2002-08-01 Kevin Buettner <kevinb@redhat.com>
2711
2712 * mips-tdep.c (mips_register_virtual_type): Use architecture
2713 invariant return values.
2714
2715 2002-08-01 Andrew Cagney <cagney@redhat.com>
2716
2717 * linux-proc.c: Include "gdb_string.h".
2718 * Makefile.in (linux-proc.o): Update dependency list.
2719
2720 2002-08-01 Kevin Buettner <kevinb@redhat.com>
2721
2722 * mips-tdep.c (mips_gdbarch_init): Add comments. Fix typo in
2723 comment.
2724
2725 2002-08-01 Grace Sainsbury <graces@redhat.com>
2726
2727 * target.h: Add to_insert_hw_breakpoint, to_remove_hw_breakpoint,
2728 to_insert_watchpoint, to_remove_watchpoint,
2729 to_stopped_by_watchpoint, to_stopped_data_address,
2730 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint to
2731 target vecctor. Define their corresponding macros so they call
2732 them.
2733
2734 * target.c: Add default and debug versions of for
2735 to_insert_hw_breakpoint, to_remove_hw_breakpoint,
2736 to_insert_watchpoint, to_remove_watchpoint,
2737 to_stopped_by_watchpoint, to_stopped_data_address,
2738 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint.
2739
2740 2002-08-01 Kevin Buettner <kevinb@redhat.com>
2741
2742 * mips-tdep.c (mips_register_virtual_type): New function.
2743 (mips_gdbarch_init): Register mips_register_virtual_type()
2744 with gdbarch machinery.
2745 * config/mips/tm-irix6.h (mips/tm-bigmips64.h): Include
2746 this file instead of tm-bigmips.h.
2747 (MIPS_REGSIZE): Delete this macro.
2748 (REGISTER_VIRTUAL_TYPE): Delete macro. Undef macro so that
2749 multiarch version in mips-tdep.c will be found.
2750
2751 2002-08-01 Andrew Cagney <cagney@redhat.com>
2752
2753 * NEWS: Menion that CHILL has been made obsolete.
2754
2755 * gdbtypes.c (chill_varying_type): Make chill references obsolete.
2756 * stabsread.c (read_range_type): Ditto.
2757 * gdbtypes.h: Ditto.
2758 * language.c (binop_type_check): Ditto.
2759 (binop_result_type): Ditto.
2760 (integral_type): Ditto.
2761 (character_type): Ditto.
2762 (string_type): Ditto.
2763 (boolean_type): Ditto.
2764 (structured_type): Ditto.
2765 (lang_bool_type): Ditto.
2766 (binop_type_check): Ditto.
2767 * language.h (_LANG_chill): Ditto.
2768 * dwarfread.c (set_cu_language): Ditto.
2769 * dwarfread.c (CHILL_PRODUCER): Ditto.
2770 * dwarfread.c (handle_producer): Ditto.
2771 * expression.h (enum exp_opcode): Ditto.
2772 * eval.c: Ditto for comments.
2773 * typeprint.c (typedef_print) [_LANG_chill]: Ditto.
2774 * expprint.c (print_subexp): Ditto.
2775 (print_subexp): Ditto.
2776 * valops.c (value_cast): Ditto.
2777 (search_struct_field): Ditto.
2778 * value.h (COERCE_VARYING_ARRAY): Ditto.
2779 * symfile.c (init_filename_language_table): Ditto.
2780 (add_psymbol_with_dem_name_to_list): Ditto.
2781 * valarith.c (value_binop): Ditto.
2782 (value_neg): Ditto.
2783 * valops.c (value_slice): Ditto.
2784 * symtab.h (union language_specific): Ditto.
2785 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Ditto.
2786 (SYMBOL_DEMANGLED_NAME): Ditto.
2787 (SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
2788 * defs.h (enum language): Ditto.
2789 * symtab.c (got_symtab): Ditto.
2790 * utils.c (fprintf_symbol_filtered): Ditto.
2791
2792 * ch-typeprint.c: Make file obsolete.
2793 * ch-valprint.c: Make file obsolete.
2794 * ch-lang.h: Make file obsolete.
2795 * ch-exp.c: Make file obsolete.
2796 * ch-lang.c: Make file obsolete.
2797
2798 * Makefile.in (FLAGS_TO_PASS): Do not pass CHILL or CHILLFLAGS or
2799 CHILL_LIB.
2800 (TARGET_FLAGS_TO_PASS): Ditto.
2801 (CHILLFLAGS): Obsolete.
2802 (CHILL): Obsolete.
2803 (CHILL_FOR_TARGET): Obsolete.
2804 (CHILL_LIB): Obsolete.
2805 (SFILES): Remove ch-exp.c, ch-lang.c, ch-typeprint.c and
2806 ch-valprint.c.
2807 (HFILES_NO_SRCDIR): Remove ch-lang.h.
2808 (COMMON_OBS): Remove ch-valprint.o, ch-typeprint.o, ch-exp.o and
2809 ch-lang.o.
2810 (ch-exp.o, ch-lang.o, ch-typeprint.o, ch-valprint.o): Delete
2811 targets.
2812
2813 2002-07-31 Joel Brobecker <brobecker@gnat.com>
2814
2815 * dwarf2read.c (set_cu_language): Add handler for LANG_Ada95.
2816 This does not change anything at the moment, but will be helpful
2817 later when full Ada support is integrated.
2818
2819 2002-07-31 Kevin Buettner <kevinb@redhat.com>
2820
2821 * mips-tdep.c (_initialize_mips_tdep): Add "n64" to "set mips abi"
2822 help message.
2823
2824 2002-07-31 Kevin Buettner <kevinb@redhat.com>
2825
2826 * mips-tdep.c (mips_push_arguments): Fetch gdbarch_tdep struct
2827 and save it in a local variable. Use variable in later test.
2828
2829 2002-07-31 Kevin Buettner <kevinb@redhat.com>
2830
2831 * mips-tdep.c (mips_find_abi_section): Add N64 ABI recognition
2832 test. (Thanks to Daniel Jacobowitz.)
2833
2834 2002-07-31 Kevin Buettner <kevinb@redhat.com>
2835
2836 * mips-tdep.c (enum mips_abi): Add MIPS_ABI_N64.
2837 (mips_abi_strings): Add "n64".
2838 (mips_gdbarch_init): Add test for n64 abi. Add MIPS_ABI_N64 case.
2839
2840 2002-07-31 Kevin Buettner <kevinb@redhat.com>
2841
2842 * config/mips/tm-irix6.h (MIPS_REGSIZE): Define to be 8.
2843 (REGISTER_VIRTUAL_TYPE): Some registers are now 64 bits wide.
2844
2845 2002-07-31 Kevin Buettner <kevinb@redhat.com>
2846
2847 * utils.c (host_pointer_to_address, address_to_host_pointer):
2848 Use gdb_assert() instead of explicit call to internal_error().
2849
2850 2002-07-30 Kevin Buettner <kevinb@redhat.com>
2851
2852 * Makefile.in (rs6000-nat.o): Update dependencies.
2853
2854 From Nicholas Duffek:
2855 * Makefile.in (ALLDEPFILES): Add aix-thread.c.
2856 (aix-thread.o): New rule.
2857 * configure.host (gdb_host): Set to aix432 on AIX 4.3.2+.
2858 * config/powerpc/aix432.mh: New file.
2859
2860 2002-07-30 Daniel Jacobowitz <drow@mvista.com>
2861
2862 * ppc-linux-tdep.c (ELF_NGREG, ELF_NFPREG, ELF_NVRREG)
2863 (ELF_FPREGSET_SIZE, ELF_GREGSET_SIZE): New enums.
2864 (fetch_core_registers, ppc_linux_supply_gregset)
2865 (ppc_linux_supply_fpregset): New functions.
2866 (ppc_linux_regset_core_fns): New.
2867 (_initialize_ppc_linux_tdep): Call add_core_fns.
2868 * ppc-tdep.h: Add prototypes for ppc_linux_supply_fpregset
2869 and ppc_linux_supply_gregset.
2870 * ppc-linux-nat.c (supply_gregset): Call ppc_linux_supply_gregset.
2871 (supply_fpregset): Call ppc_linux_supply_fpregset.
2872 * config/powerpc/linux.mh (NATDEPFILES): Remove core-regset.o and
2873 corelow.o.
2874 * config/powerpc/linux.mt (TDEPFILES): Add corelow.o.
2875
2876 2002-07-30 Daniel Jacobowitz <drow@mvista.com>
2877
2878 * symtab.c (lookup_symbol): Demangle before lowercasing.
2879
2880 2002-07-30 Andrew Cagney <ac131313@redhat.com>
2881
2882 * symtab.h: Replace #include "gdb_obstack.h" with opaque
2883 declaration.
2884 * cli/cli-cmds.c, cli/cli-script.c: Include "gdb_string.h".
2885 * gnu-v3-abi.c, arc-tdep.c, cli/cli-decode.c: Ditto.
2886 * avr-tdep.c, mon960-rom.c, i960-tdep.c: Ditto.
2887 * arch-utils.c, cli/cli-setshow.c: Unconditionally include
2888 "gdb_string.h".
2889 * Makefile.in (cli-script.o, cli-cmds.o): Update dependencies.
2890 (gnu-v3-abi.o, cli-setshow.o, i960-tdep.o): Ditto.
2891 (cli-decode.o, mi-cmd-var.o, mi-cmd-disas.o): Ditto.
2892 (avr-tdep.o, mon960-rom.o): Ditto.
2893 (aout_stabs_gnu_h): Define.
2894 (symtab_h): Remove $(gdb_obstack_h).
2895
2896 2002-07-30 Jim Blandy <jimb@redhat.com>
2897
2898 Patch from David Carlton <carlton@math.stanford.edu>:
2899 * gdbinit.in: Move the `dir' commands that add GDB's own source
2900 directory to the search path to the end, so that the `gdb' source
2901 directory will be searched first.
2902
2903 2002-07-29 Andrew Cagney <ac131313@redhat.com>
2904
2905 * gdb_obstack.h: New file.
2906 * symtab.h: Include "gdb_obstack.h" instead of "obstack.h".
2907 (obstack_chunk_alloc, obstack_chunk_free): Delete macros.
2908 * objfiles.h: Include "gdb_obstack.h".
2909 * Makefile.in (gdb_obstack_h): Define.
2910 (symtab_h): Add $(gdb_obstack_h).
2911 (objfiles_h): Add $(gdb_obstack_h).
2912
2913 * objfiles.c: Include "gdb_obstack.h" instead of "obstack.h".
2914 * macrotab.c, cp-valprint.c, dbxread.c: Ditto.
2915 * ch-typeprint.c, ch-valprint.c, dstread.c: Ditto.
2916 * macroexp.c, p-typeprint.c, stabsread.c: Ditto.
2917 * symtab.c, f-typeprint.c, mdebugread.c: Ditto.
2918 * p-valprint.c, symmisc.c, typeprint.c: Ditto.
2919 * symfile.c, coffread.c, c-typeprint.c: Ditto.
2920 * buildsym.c, bcache.c, ada-typeprint.c: Ditto.
2921
2922 * Makefile.in (bcache.o): Update dependencies.
2923 (buildsym.o, c-typeprint.o, ch-typeprint.o): Ditto.
2924 (ch-valprint.o, coffread.o, cp-valprint.o): Ditto.
2925 (dbxread.o, dstread.o, f-typeprint.o): Ditto.
2926 (objfiles.o, p-typeprint.o, p-valprint.o): Ditto.
2927 (stabsread.o, symfile.o, symmisc.o): Ditto.
2928 (symtab.o, typeprint.o, macroexp.o): Ditto.
2929 (macrotab.o, mdebugread.o): Ditto.
2930 (f_lang_h, coff_sym_h, coff_symconst_h): Define.
2931 (coff_ecoff_h, aout_aout64_h): Define.
2932 (aout_stabs_gnu_h, libaout_h): Define.
2933
2934 2002-07-29 Andrew Cagney <cagney@redhat.com>
2935
2936 * regcache.c (struct regcache_descr): Rename nr_registers to
2937 nr_cooked_registers. Revise comments describing the structure
2938 member fields.
2939 (init_regcache_descr): Update.
2940 (init_legacy_regcache_descr): Update.
2941 (read_register_gen, write_register_gen): When a cooked register in
2942 the raw register range, directly access the value from the raw
2943 register cache.
2944
2945 2002-07-29 Andrew Cagney <ac131313@redhat.com>
2946
2947 * z8k-tdep.c: Do not include "obstack.h".
2948 * h8300-tdep.c, h8500-tdep.c: Ditto.
2949 * m68hc11-tdep.c, sh-tdep.c: Ditto.
2950 * valprint.c, v850-tdep.c: Ditto.
2951 * d10v-tdep.c, mn10300-tdep.c: Ditto.
2952 * mn10200-tdep.c: Ditto.
2953
2954 * Makefile.in (z8k-tdep.o): Update dependencies.
2955 (m68hc11-tdep.o, valprint.o): Ditto.
2956 (v850-tdep.o, d10v-tdep.o): Ditto.
2957 (mn10300-tdep.o, sparc-tdep.o): Ditto.
2958 (sh-tdep.o, h8500-tdep.o, h8300-tdep.o): Ditto.
2959 (m32r-tdep.o, mn10200-tdep.o): Specify dependencies.
2960 (sh_opc_h, gdb_sim_sh_h): Define.
2961 (elf_sh_h, elf_bfd_h): Define.
2962 (opcode_m68hc11_h): Define.
2963 (OPCODES_SRC, OPCODES_DIR): define.
2964 (OPCODES): Use $(OPCODES_DIR).
2965 (gdb_sim_d10v_h): Rename sim_d10v_h.
2966 (gdb_sim_arm_h): Rename sim_arm_h.
2967
2968 2002-07-26 Kevin Buettner <kevinb@redhat.com>
2969
2970 * utils.c (host_pointer_to_address, address_to_host_pointer):
2971 Change internal_error() message to indicate function responsible
2972 for the error.
2973
2974 2002-07-26 Kevin Buettner <kevinb@redhat.com>
2975
2976 * ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in
2977 calls to local_hex_string_custom().
2978
2979 2002-07-26 Kevin Buettner <kevinb@redhat.com>
2980
2981 * irix5-nat.c: Move IRIX shared library support from here...
2982 * solib-irix.c: ...to here. Revised substantially to work with
2983 generic solib framework.
2984
2985 * osabi.h (gdb_osabi): Add new enum constant GDB_OSABI_IRIX.
2986 * osabi.c (gdb_osabi_names): Add corresponding string for Irix.
2987 * mips-irix-tdep.c: New file.
2988
2989 * Makefile.in (ALLDEPFILES): Add mips-irix-tdep.c and solib-irix.c.
2990 (mips-irix-tdep.o, solib-irix.o): New rules.
2991 * config/mips/irix5.mt (TDEPFILES): Add mips-irix-tdep.o, solib.o,
2992 solib-irix.o.
2993 * config/mips/irix6.mt (TDEPFILES): Likewise.
2994 * config/mips/irix6.mh (NATDEPFILES): Remove solib.o.
2995
2996 2002-07-26 Kevin Buettner <kevinb@redhat.com>
2997
2998 * aix-thread.c (coff/internal.h, bfd/libcoff.h, pthread.h): Remove
2999 disabled (via ``#if 0'') includes.
3000
3001 2002-07-26 Kevin Buettner <kevinb@redhat.com>
3002
3003 * aix-thread.c (special_register_p, supply_sprs64, supply_sprs32)
3004 (fetch_regs_user_thread, fetch_regs_kernel_thread, fill_sprs64)
3005 (fill_sprs32, store_regs_user_thread, store_regs_kernel_thread):
3006 Add support for the fpscr register.
3007 * rs6000-nat.c (regmap, fetch_inferior_registers)
3008 (store_inferior_registers, fetch_core_registers): Likewise.
3009
3010 2002-07-26 Kevin Buettner <kevinb@redhat.com>
3011
3012 * rs6000-nat.c (language.h): Include.
3013 (special_regs): Delete this array.
3014 (regmap): New function.
3015 (fetch_register, store_register): Use regmap() to map gdb
3016 register numbers to ptrace register numbers. Also, use
3017 outputs from regmap() to make decisions regarding type of
3018 ptrace() call to make. In particular, don't compare against
3019 FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
3020 (fetch_inferior_registers, store_inferior_registers): Where
3021 possible, obtain register numbers from tdep struct. Don't
3022 refer to FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
3023 * config/rs6000/tm-rs6000.h (FIRST_UISA_SP_REGNUM)
3024 (LAST_UISA_SP_REGNUM): Delete.
3025
3026 2002-07-25 Kevin Buettner <kevinb@redhat.com>
3027
3028 * rs6000-nat.c (ppc-tdep.h): Include.
3029 (fetch_registers, store_register, fetch_core_registers): Don't
3030 access registers[] directly. Instead, use supply_register() or
3031 regcache_collect() as appropriate.
3032 (find_toc_address): Format hex address with local_hex_string().
3033
3034 2002-07-25 Andrew Cagney <ac131313@redhat.com>
3035
3036 * config/djgpp/fnchange.lst: Rename bfd/elf32-fr30.c and
3037 bfd/elf32-frv.c.
3038
3039 2002-07-24 Tom Tromey <tromey@redhat.com>
3040
3041 * jv-exp.y: Marked all strings with _().
3042 (ClassInstanceCreationExpression, ArrayCreationExpression): Use
3043 internal_error.
3044 (MethodInvocation, CastExpression, parse_number, yyerror,
3045 java_type_from_name, push_expression_name, yylex): Typo fixes.
3046
3047 2002-07-24 Daniel Jacobowitz <drow@mvista.com>
3048
3049 * ui-file.c (struct tee_file, tee_file_new, tee_file_delete)
3050 (tee_file_flush, tee_file_write, tee_file_fputs)
3051 (tee_file_isatty): New.
3052 * ui-file.h (tee_file_new): Add prototype.
3053
3054 2002-07-24 Aidan Skinner <aidan@velvet.net>
3055
3056 * ada-lang.c: Change k&r style function definitions to prototyped
3057 form.
3058 * ada-typeprint.c: Change k&r style function definitions to prototyped
3059 form.
3060 * ada-valprint.c: Change k&r style function definitions to prototyped
3061 form.
3062
3063 2002-07-24 Andrew Cagney <cagney@redhat.com>
3064
3065 * README: Remove reference to remote-bug.
3066 * Makefile.in (ALLDEPFILES): Remove m88k-nat.c, m88k-tdep.c and
3067 remote-bug.c.
3068 (m88k-nat.o): Delete rule.
3069 (m88k-tdep.o): Delete rule.
3070 (remote-bug.o): Delete rule.
3071 * MAINTAINERS: Mark as obsolete.
3072 * elfread.c (elf_symtab_read): Mention that m88k is obsolete.
3073 * m88k-tdep.c: Make file obsolete.
3074 * config/m88k/m88k.mh: Ditto.
3075 * config/m88k/delta88v4.mh: Ditto.
3076 * config/m88k/delta88v4.mt: Ditto.
3077 * config/m88k/delta88.mt: Ditto.
3078 * config/m88k/delta88.mh: Ditto.
3079 * remote-bug.c: Ditto.
3080 * config/m88k/tm-delta88.h: Ditto.
3081 * config/m88k/nm-delta88v4.h: Ditto.
3082 * config/m88k/xm-delta88.h: Ditto.
3083 * config/m88k/xm-dgux.h: Ditto.
3084 * config/m88k/tm-m88k.h: Ditto.
3085 * config/m88k/nm-m88k.h: Ditto.
3086 * config/m88k/tm-delta88v4.h: Ditto.
3087 * m88k-nat.c: Ditto.
3088 * cxux-nat.c: Ditto.
3089 * configure.host: Make m88*-motorola-sysv4*, m88*-motorola-sysv*
3090 and m88*-*-* obsolete.
3091 * configure.tgt: Make m88*-motorola-sysv4*, m88*-motorola-* and
3092 m88*-*-* obsolete.
3093
3094 2002-07-24 Andrew Cagney <cagney@redhat.com>
3095
3096 * findvar.c (extract_unsigned_integer): Make `addr' parameter
3097 constant. Same for local pointer variables.
3098 (extract_signed_integer): Ditto.
3099 * defs.h (extract_unsigned_integer): Update.
3100 (extract_signed_integer): Update.
3101
3102 2002-07-24 Andrew Cagney <cagney@redhat.com>
3103
3104 * regcache.c (regcache_raw_write): Change buf parameter to a
3105 constant void pointer.
3106 (regcache_raw_read): Change buf parameter to a void pointer.
3107 (legacy_write_register_gen): Change myaddr parameter a constant
3108 void pointer.
3109 (supply_register): Change val parameter to a const void pointer.
3110 * regcache.h (regcache_raw_write): Update declaration.
3111 (regcache_raw_read): Update declaration.
3112 (supply_register): Update declaration.
3113
3114 2002-07-24 Tom Tromey <tromey@redhat.com>
3115
3116 * defs.h (gdb_readline_wrapper): Declare.
3117 * utils.c (prompt_for_continue): Use gdb_readline_wrapper.
3118 * tracepoint.c (read_actions): Use gdb_readline_wrapper.
3119 * top.c (gdb_readline_wrapper): New function.
3120 (command_line_input): Use it.
3121
3122 2002-07-24 Andrew Cagney <cagney@redhat.com>
3123
3124 * regcache.h (regcache_raw_read, regcache_raw_write): Replace
3125 regcache_read and regcache_write.
3126 (regcache_raw_read_as_address): Replace regcache_read_as_address.
3127 * regcache.c: Update.
3128 * sh-tdep.c (sh64_push_arguments): Update comment.
3129 (sh_pseudo_register_read): Update.
3130 (sh_pseudo_register_write): Update.
3131 (sh4_register_read): Update.
3132 (sh4_register_write): Update.
3133 (sh64_pseudo_register_read): Update.
3134 (sh64_pseudo_register_write): Update.
3135 (sh64_register_read): Update.
3136 (sh64_register_write): Update.
3137 * i386-tdep.c (i386_extract_return_value): Update.
3138 (i386_extract_struct_value_address): Update.
3139 (i386_extract_return_value): Update.
3140 * blockframe.c (generic_read_register_dummy): Update.
3141 (generic_call_dummy_register_unwind): Update
3142 * infrun.c (write_inferior_status_register): Update.
3143
3144 2002-07-23 Jim Blandy <jimb@redhat.com>
3145
3146 * parser-defs.h (expression_context_pc): Make this extern.
3147 (Thanks to Michael Snyder.)
3148
3149 2002-07-23 Andrew Cagney <ac131313@redhat.com>
3150
3151 GDB 5.2.1 released from 5.2 branch.
3152 * NEWS: Mention changes in 5.2.1 including addition of AVR target.
3153 * README: Update to mention 5.2.1.
3154
3155 2002-07-23 Mark Salter <msalter@redhat.com>
3156
3157 * remote.c (remote_read_bytes): Fix check for error.
3158
3159 2002-07-22 Kevin Buettner <kevinb@redhat.com>
3160
3161 * aix-thread.c (language.h): Include.
3162 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
3163 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
3164 Print newlines at end of debug messages.
3165 (pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
3166 (pdc_write_data): Use local_hex_string() instead of %llx formats.
3167
3168 2002-07-22 Kevin Buettner <kevinb@redhat.com>
3169
3170 * aix-thread.c (ppc-tdep.h): Include.
3171 (special_register_p): New function.
3172 (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32)
3173 (store_regs_user_thread): Use register number information from
3174 gdbarch_tdep struct instead of hardcoded offsets relative to
3175 FIRST_UISA_SP_REGNUM.
3176 (fetch_regs_kernel_thread, store_regs_kernel_thread): Call
3177 special_register_p() instead of using FPLAST_REGNUM and
3178 LAST_UISA_SP_REGNUM as lower and upper bounds on the special
3179 register numbers. Also, don't assume that LAST_UISA_SP_REGNUM
3180 will be MQ's register number.
3181
3182 2002-07-22 Michael Snyder <msnyder@redhat.com>
3183
3184 * aix-thread.c (ops): Rename to aix_thread_ops.
3185 (base_ops): Rename to base_target.
3186 (ops_attach): Rename to aix_thread_attach.
3187 (ops_detach): Rename to aix_thread_detach.
3188 (ops_resume): Rename to aix_thread_detach.
3189 (ops_wait): Rename to aix_thread_wait.
3190 (ops_kill): Rename to aix_thread_kill.
3191 (init_ops): Rename to init_aix_thread_ops.
3192 (ops_fetch_register): Rename to aix_thread_fetch_register.
3193 (ops_store_register): Rename to aix_thread_store_register.
3194 (ops_mourn_inferior): Rename to aix_thread_mourn_inferior.
3195 (ops_thread_alive): Rename to aix_thread_thread_alive.
3196 (ops_extra_thread_info: Rename to aix_thread_extra_thread_info.
3197 (ops_pid_to_str): Rename to aix_thread_pid_to_str.
3198 (ops_xfer_memory): Rename to aix_thread_xfer_memory.
3199 (fetch_regs_lib): Rename to fetch_regs_user_thread.
3200 (fetch_regs_kern): Rename to fetch_regs_kernel_thread.
3201 (store_regs_lib): Rename to store_regs_user_thread.
3202 (store_regs_kern): Rename to store_regs_kernel_thread.
3203
3204 2002-07-22 Michael Snyder <msnyder@redhat.com>
3205
3206 * aix-thread.c (ops_prepare_to_store): Eliminate.
3207 (init_ops): Don't initialize ops.prepare_to_store.
3208 (store_regs_kern): Pre-fetch register buffers from child,
3209 because some registers may not be in the cache. Copy
3210 regs from register cache only if they are cached.
3211 (store_regs_lib): Copy regs from register cache only
3212 if they are cached.
3213 (fill_sprs32, (fill_sprs64, fill_fprs, fill_gprs32,
3214 fill_gprs64): Ditto.
3215
3216 2002-07-22 Kevin Buettner <kevinb@redhat.com>
3217
3218 * aix-thread.c (gdb_assert.h): Include.
3219 (fill_sprs64, fill_sprs32): Add selected asserts to make sure that
3220 register sizes (from register cache) match size of buffer holding
3221 register data.
3222 (fill_sprs32): Change parameter types to match those in the ptrace()
3223 buffer.
3224 (store_regs_lib): Likewise, but for 32-bit temporary variables.
3225 (ops_prepare_to_store): Rename loop variable ``i'' to ``regno''.
3226
3227 2002-07-22 Michael Snyder <msnyder@redhat.com>
3228
3229 * aix-thread.c (supply_sprs64): Cosmetic change.
3230 (supply_sprs32): Cosmetic change.
3231 (fill_gprs64, fill_gprs32, fill_fprs, fill_sprs32): New funcs.
3232 (fill_sprs64): Use regcache_collect instead of read_register.
3233 (store_regs_lib): Use regcache_collect instead of
3234 read_register. Use fill_sprs32 instead of fill_sprs64,
3235 if debugging a 32-bit architecture.
3236 (store_regs_kern): Use fill_gprs64 etc. to pull the values
3237 out of the register cache, instead of passing a pointer into
3238 the register cache directly to ptrace. Use regcache_collect
3239 insteaad of read_register.
3240 (ops_prepare_to_store): Use target_read_registers instead
3241 of read_register_bytes.
3242
3243 2002-07-20 Aidan Skinner <aidan@velvet.net>
3244
3245 * MAINTAINERS: Add self under write after approval.
3246
3247 2002-07-20 Aidan Skinner <aidan@velvet.net>
3248
3249 * ada-tasks.c: Change k&r style function definitions to prototyped
3250 form.
3251
3252 2002-07-19 Andrew Cagney <ac131313@redhat.com>
3253
3254 * Makefile.in (x86-64-tdep.o): Add $(objfiles_h).
3255 * x86-64-tdep.c: Include "objfiles.h".
3256 (x86_64_gdbarch_init): Set in_solib_call_trampoline to
3257 in_plt_section. From 2002-07-18 Michal Ludvig <mludvig@suse.cz>.
3258
3259 2002-07-17 Michal Ludvig <michal@suse.cz>
3260
3261 * dwarf2cfi.c (execute_stack_op): Complain on unknown DW_OP_ value.
3262 (update_context): Initialise cfa variable.
3263
3264 2002-07-17 Michael Snyder <msnyder@redhat.com>
3265
3266 * aix-thread.c: Shorten some long lines.
3267 Bring comments into line with code spec.
3268
3269 2002-07-18 Joel Brobecker <brobecker@gnat.com>
3270
3271 * infrun.c: Re-indent using gdb_indent.sh.
3272
3273 2002-07-18 Joel Brobecker <brobecker@gnat.com>
3274
3275 * infrun.c (handle_inferior_event): Remove unneeded extra brace.
3276 Leave the indentation temporarily untouched, to minimize the diffs.
3277
3278 2002-07-18 Elena Zannoni <ezannoni@redhat.com>
3279
3280 * stabsread.c: Make os9k sections of the code obsolete,
3281 for real this time.
3282 * stabsread.h: Make os9k sections of the code obsolete.
3283
3284 2002-07-18 Michal Ludvig <mludvig@suse.cz>
3285
3286 * linux-low.c (regsets_store_inferior_registers): Add free()
3287 at the end of a loop to prevent memory leak.
3288 * linux-x86-64-low.c (x86_64_regmap): Add CS, SS registers.
3289 (X86_64_NUM_GREGS): Count it from the size of x86_64_regmap.
3290 * config/sparc/tm-sp64linux.h: Make the rest of #endif
3291 line a comment.
3292 * Makefile.in (x86-64-linux-nat.o): Remove dependency on i387-tdep.h
3293
3294 2002-07-17 Jim Blandy <jimb@redhat.com>
3295
3296 * macrocmd.c (info_macro_command): Remove newline from error
3297 message.
3298
3299 2002-07-17 J"orn Rennecke <joern.rennecke@superh.com>
3300
3301 * sh-tdep.c (sh_dsp_register_sim_regno): New function.
3302 (sh_gdbarch_init): Use it for sh-dsp.
3303
3304 2002-07-16 Kevin Buettner <kevinb@redhat.com>
3305
3306 * dwarf2read.c (read_initial_length): Handle older, non-standard,
3307 64-bit DWARF2 format.
3308
3309 2002-07-16 Joel Brobecker <brobecker@gnat.com>
3310
3311 * proc-api.c: use HAVE_SYS_PROC_H macro to avoid including
3312 <sys/proc.h> when not available.
3313
3314 2002-07-16 Andrew Cagney <ac131313@redhat.com>
3315
3316 * NEWS: Mention that the i[34]86-*-os9k has been made obsolete.
3317 * stabsread.c: Make os9k sections of the code obsolete.
3318 * configure.tgt: Make i[3456]86-*-os9k target obsolete.
3319 * config/i386/i386os9k.mt: Make file obsolete.
3320 * Makefile.in (ALLDEPFILES): Remove remote-os9k.c.
3321 (COMMON_OBS): Remove os9kread.o
3322 (SFILES): Remove os9kread.c.
3323 (os9kread.o, remote-os9k.o): Make target obsolete.
3324 * remote-os9k.c: Make file obsolete.
3325 * os9kread.c: Make file obsolete.
3326 * Makefile.in
3327
3328 2002-07-16 Andrew Cagney <ac131313@redhat.com>
3329
3330 * NEWS: Mention that the FR30 has been made obsolete.
3331 * fr30-tdep.c: Make file obsolete.
3332 * config/fr30/tm-fr30.h: Ditto.
3333 * config/fr30/fr30.mt: Ditto.
3334 * configure.tgt: Make fr30-*-elf obsolete.
3335 * MAINTAINERS: Make fr30-elf obsolete.
3336
3337 2002-07-16 Pierre Muller <muller@ics.u-strasbg.fr>
3338
3339 * blockframe.c (get_pc_function_start): return 0 if the minimal symbol
3340 found is not inside a section.
3341
3342 2002-07-15 Kevin Buettner <kevinb@redhat.com>
3343
3344 * aix-thread.c (ptrace_check): Use safe_strerror() instead of
3345 strerror().
3346 (pdc_realloc): Use xrealloc() instead of realloc().
3347
3348 2002-07-15 Kevin Buettner <kevinb@redhat.com>
3349
3350 * aix-thread.c (PD_ERROR, CALL_BASE): Delete.
3351 (ops_resume, ops_wait, fetch_regs_lib, store_regs_lib)
3352 (ops_xfer_memory, ops_kill): Don't use PD_ERROR or CALL_BASE
3353 macros.
3354
3355 2002-07-15 Kevin Buettner <kevinb@redhat.com>
3356
3357 * aix-thread.c (ptrace_check): Eliminate goto.
3358 (sync_threadlists): Eliminate gotos. Also, fix array overrun
3359 problem.
3360
3361 2002-07-15 Kevin Buettner <kevinb@redhat.com>
3362
3363 * aix-thread.c (gdbcmd.h): Include.
3364 (DEBUG, DBG, DBG2, dbg): Eliminate.
3365 (debug_aix_thread): New static global.
3366 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
3367 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
3368 (fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
3369 invocations to DBG and DBG2 macros to test against
3370 ``debug_aix_thread'' and call fprintf_unfiltered().
3371 (_initialize_aix_thread): Add new command "set debug aix-thread".
3372
3373 2002-07-15 Andrew Cagney <ac131313@redhat.com>
3374
3375 From Gerhard Tonn <TON@de.ibm.com>:
3376 * s390-nat.c (fill_fpregset, fill_gregset): Use regcache_collect
3377 instead of supply_register.
3378
3379 2002-07-15 Andrew Cagney <ac131313@redhat.com>
3380
3381 * dwarf2cfi.c: Include "gdb_assert.h".
3382 (frame_state_for): Use gdb_assert to check that fde->cie_ptr is
3383 non-NULL.
3384 (update_context): Do not use __func__. Add missing ``break''.
3385 (update_context): Do not use __func__.
3386
3387 2002-07-15 Elena Zannoni <ezannoni@redhat.com>
3388
3389 * rs6000-tdep.c (rs6000_gdbarch_init): Remove variable print_insn
3390 and its setting. Set gdbarch instruction printing functions
3391 directly. For non-rs6000 case use new function
3392 gdb_print_insn_powerpc.
3393 (gdb_print_insn_powerpc): New function.
3394
3395 2002-07-13 Andrew Cagney <ac131313@redhat.com>
3396
3397 * NEWS: Mention that the d30v has been marked obsolete.
3398 * MAINTAINERS: Note that d30v / d30v-elf has been made obsolete.
3399 * configure.tgt: Mark d30v-*-* as obsolete.
3400 * d30v-tdep.c: Mark file as obsolete.
3401 * config/d30v/d30v.mt: Ditto.
3402 * config/d30v/tm-d30v.h: Ditto.
3403
3404 2002-07-13 Aidan Skinner <aidan@velvet.net>
3405
3406 * ada-tasks.c (add_task_entry): replace calls to
3407 malloc() with xmalloc
3408 * ada-tasks.c (init_task_list): replace calls to free with xfree()
3409
3410 * ada-lang.c (replace_operator_with_call, fill_in_ada_prototype,
3411 ada_finish_decode_line_1, all_sals_for_line
3412 ada_breakpoint_rewrite): replace calls to free() with xfree()
3413
3414 2002-07-12 Kevin Buettner <kevinb@redhat.com>
3415
3416 From Nicholas Duffek (with minor changes by Martin Hunt,
3417 Louis Hamilton, and Kevin Buettner):
3418 * aix-thread.c: New file.
3419
3420 2002-07-12 Petr Sorfa <petrs@caldera.com>
3421
3422 * dwarf2read.c (dwarf2_invalid_attrib_class): New
3423 complaint for invalid attribute class or form.
3424 (read_func_scope): DW_AT_frame_base
3425 better handling of DW_AT_block*.
3426 (dwarf2_add_member_fn): DW_AT_vtable_elem_location
3427 better handling of DW_AT_block*.
3428 (read_common_block): DW_AT_location
3429 better handling of DW_AT_block*.
3430 (read_partial_die): DW_AT_location better handling
3431 of DW_AT_block*.
3432 (new_symbol): DW_AT_external better handling of
3433 DW_AT_block*. Proper initialization of variable
3434 "addr".
3435 (attr_form_is_block): New function that returns true
3436 if the attribute's form is of DW_FORM_block*.
3437
3438 2002-07-12 Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
3439
3440 * valops.c (find_method_list): Remove comment about
3441 removed STATIC_MEMFUNCP argument.
3442 (value_find_oload_method_list): Likewise.
3443
3444 2002-07-12 Kevin Buettner <kevinb@redhat.com>
3445
3446 From Nicholas Duffek:
3447 * rs6000-nat.c (vmap_ldinfo, xcoff_relocate_core): Call
3448 target_new_objfile_hook.
3449
3450 2002-07-12 Kevin Buettner <kevinb@redhat.com>
3451
3452 From Nicholas Duffek:
3453 * xcoffread.c (scan_xcoff_symtab): Recognize XMC_TD as a data storage
3454 csect.
3455
3456 2002-07-12 Andrew Cagney <cagney@redhat.com>
3457
3458 * MAINTAINERS: Mention --enable-sim-build-warnings.
3459 (m68hc11-elf): Disable sim build warnings.
3460 (m32r-elf): Mark as broken obsolete candidate.
3461 (x86_64-linux-gnu): Mark as buildable with -Werror.
3462 (arm-elf): Change -w to ``,'' which enables warnings but not
3463 -Werror.
3464
3465 2002-07-12 Andrew Cagney <ac131313@redhat.com>
3466
3467 * bcache.h: Update copyright.
3468 (struct bstring, struct bcache): Move definition to "bcache.c".
3469 Replaced by opaque declaration.
3470 (bcache_xfree): Replace free_bcache.
3471 (bcache_xmalloc, bcache_memory_used): Declare.
3472
3473 * bcache.c: Update copyright.
3474 (struct bstring, struct bcache): Moved to here from "bcache.h".
3475 Update comments.
3476 (bcache_xmalloc, bcache_memory_used): New functions.
3477 (bcache_xfree): Replace function free_bcache.
3478
3479 * Makefile.in (objfiles.o): Add $(bcache_h).
3480 (objfiles_h): Remove $(bcache_h).
3481 (symfile.o): Add $(bcache_h).
3482
3483 * symmisc.c: Update copyright.
3484 (print_symbol_bcache_statistics): Pass psymbol_cache by value.
3485 (print_objfile_statistics): Use bcache_memory_used.
3486
3487 * symfile.c: Include "bcache.h".
3488 (reread_symbols): Use bcache_xfree.
3489 (reread_symbols): Use bcache_xmalloc and bcache_xfree.
3490 (add_psymbol_to_list): Pass psymbol_cache by value.
3491 (add_psymbol_with_dem_name_to_list): Ditto.
3492
3493 * objfiles.h: Update copyright.
3494 (struct bcache): Declare opaque. Do not include "bcache.h".
3495 (struct objfile): Change psymbol_cache and macro_cache to ``struct
3496 bcache'' pointers.
3497 * dwarf2read.c (macro_start_file): Pass macro_cache by value.
3498
3499 * objfiles.c: Include "bcache.h". Update copyright.
3500 (allocate_objfile): Use bcache_xmalloc to create psymbol_cache and
3501 macro_cache.
3502 (free_objfile): Use bcache_xfree.
3503
3504 2002-07-11 Grace Sainsbury <graces@redhat.com>
3505
3506 * monitor.c (monitor_fetch_register): Make name a constant.
3507 (monitor_store_register): Same.
3508
3509 2002-07-11 Daniel Jacobowitz <drow@mvista.com>
3510
3511 Based on patch from Daniel Berlin <dberlin@dberlin.org>.
3512 * buildsym.c: Include "demangle.h" for SYMBOL_INIT_DEMANGLED_NAME.
3513 (finish_block) For non-function blocks, hash the symbol table. For
3514 function blocks, mark the symbol table as unhashed.
3515 * minsyms.c (msymbol_hash): Return hash value without taking modulus.
3516 (msymbol_hash_iw): Likewise.
3517 (add_minsym_to_hash_table): Take modulus of msymbol_hash's return
3518 value.
3519 (add_minsym_to_demangled_hash_table): Likewise for msymbol_hash_iw.
3520 (lookup_minimal_symbol): Likewise for both.
3521 * symtab.h (struct block): Add `hashtable' flag. Comment the
3522 hashtable.
3523 (BLOCK_HASHTABLE, BLOCK_BUCKETS, BLOCK_BUCKET): New macro.
3524 (ALL_BLOCK_SYMBOLS): Update.
3525 (BLOCK_SHOULD_SORT): Do not sort hashed blocks.
3526 (struct symbol): Add `hash_next' pointer.
3527 * symtab.c (lookup_block_symbol): Search using the hash table when
3528 possible.
3529 (find_pc_sect_symtab): Use ALL_BLOCK_SYMBOLS.
3530 (search_symbols, find_addr_symbol): Likewise.
3531
3532 * dstread.c (process_dst_block): Clear hashtable bit for new block.
3533 (read_dst_symtab): Likewise.
3534 * jv-lang.c (get_java_class_symtab): Likewise.
3535 * mdebugread.c: Include "gdb_assert.h".
3536 (shrink_block): Assert that the block being modified is not hashed.
3537 * coffread.c (patch_opaque_types): Use ALL_BLOCK_SYMBOLS.
3538 * symmisc.c (free_symtab_block): Walk the hash table when freeing
3539 symbols.
3540 (dump_symtab): Recognize hashed blocks.
3541 * printcmd.c (print_frame_args): Assert that function blocks do not
3542 have hashed symbol tables.
3543 * ada-lang.c (symtab_for_sym): Use ALL_BLOCK_SYMBOLS.
3544 (fill_in_ada_prototype, debug_print_block): Likewise.
3545 (ada_add_block_symbols): Use ALL_BLOCK_SYMBOLS. Handle hash tables.
3546
3547 2002-07-11 Corinna Vinschen <vinschen@redhat.com>
3548
3549 * stack.c (print_frame): Use result of frame_address_in_block()
3550 instead of fi->pc when evaluating symbols.
3551 (backtrace_command_1): Ditto.
3552
3553 2002-07-11 Andrew Cagney <cagney@redhat.com>
3554
3555 * cris-tdep.c (cris_saved_pc_after_call): Fix parameter type.
3556 Make static.
3557
3558 * arm-tdep.c (arm_register_name): Make return type constant.
3559
3560 2002-07-10 Andrew Cagney <ac131313@redhat.com>
3561
3562 * win32-nat.c (has_detach_ability): Convert to strict ISO C
3563 prototype.
3564 * top.c (gdb_rl_operate_and_get_next_completion): Ditto.
3565 * s390-tdep.c (s390_fp_regnum): Ditto.
3566 (s390_read_fp): Ditto.
3567 (s390_pop_frame): Ditto.
3568 (_initialize_s390_tdep): Ditto.
3569 * remote.c (get_remote_state): Ditto.
3570 * procfs.c (mappingflags): Ditto.
3571 * memattr.c (_initialize_mem): Ditto.
3572 * mcore-tdep.c (mcore_pop_frame): Ditto.
3573 * m68klinux-nat.c (_initialize_m68k_linux_nat): Ditto.
3574 * m68k-tdep.c (m68k_register_bytes_ok): Ditto.
3575 * language.c (set_case_str): Ditto.
3576 * gnu-v3-abi.c (vtable_address_point_offset): Ditto.
3577 * frv-tdep.c (new_variant): Ditto.
3578 (frv_stopped_data_address): Ditto.
3579 * dwarf2cfi.c (fde_chunks_need_space): Ditto.
3580 (context_alloc): Ditto.
3581 (frame_state_alloc): Ditto.
3582 (unwind_tmp_obstack_init): Ditto.
3583 (unwind_tmp_obstack_free): Ditto.
3584 (cfi_read_fp): Ditto.
3585 * cris-tdep.c (cris_saved_pc_after_call): Ditto.
3586 (cris_pop_frame): Ditto.
3587 * c-lang.c (scanning_macro_expansion): Ditto.
3588 (finished_macro_expansion): Ditto.
3589 (c_preprocess_and_parse): Ditto.
3590 * gdbarch.sh: Ditto.
3591 * gdbarch.h, gdbarch.c: Regenerate.
3592 * config/mn10200/tm-mn10200.h: Adjust indentation.
3593 * target.c: Adjust indentation.
3594 * symtab.h: Adjust indentation.
3595 * stabsread.h: Adjust indentation.
3596 * remote-es.c: Adjust indentation.
3597 * os9kread.c: Adjust indentation.
3598
3599 2002-07-10 Andrew Cagney <ac131313@redhat.com>
3600
3601 * wince.c (_initialize_wince): Rename _initialize_inftarg.
3602 * win32-nat.c (_initialize_win32_nat): Rename _initialize_inftarg.
3603
3604 2002-07-10 Grace Sainsbury <graces@redhat.com>
3605
3606 * NEWS: Mention m68k, mcore multi-arching.
3607 * MAINTAINERS: Change status of m68k, mcore to reflect
3608 multi-arching.
3609
3610 2002-07-10 Daniel Jacobowitz <drow@mvista.com>
3611
3612 * valops.c (find_overload_match): Free oload_syms.
3613
3614 2002-07-09 Joel Brobecker <brobecker@gnat.com>
3615
3616 Define HAVE_SYS_PROC_H if sys/proc.h exists
3617 * configure.in: Add check for sys/proc.h
3618 * config.in: Regenerate.
3619 * configure: Regenerate.
3620
3621 2002-07-09 Grace Sainsbury <graces@redhat.com>
3622
3623 * config/m68k/tm-m68k.h: Remove macros wrapped in
3624 #if !GDB_MULTI_ARCH.
3625
3626 2002-07-08 Andrew Cagney <ac131313@redhat.com>
3627
3628 * config.in, configure: Regenerate.
3629
3630 2002-07-08 Mark Kettenis <kettenis@gnu.org>
3631
3632 * dwarf2cfi.c: Include "gcore.h".
3633 (execute_stack_op): Fix implementation of the
3634 DW_OP_deref and DW_OP_deref_size operators by letting do their
3635 lookup in the target.
3636
3637 2002-07-07 Mark Kettenis <kettenis@gnu.org>
3638
3639 From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de>:
3640 * i386-sol2-tdep.c (i386_sol2_init_abi): Correct value for
3641 tdep->sc_sp_offset.
3642
3643 2002-07-05 Daniel Jacobowitz <drow@mvista.com>
3644
3645 Fix PR gdb/595, gdb/602
3646 * gnu-v3-abi.c (gnuv3_baseclass_offset): Remove unused variables.
3647 Don't call value_cast, just read the vtable pointer; update comments
3648 to match.
3649
3650 2002-07-05 Grace Sainsbury <graces@redhat.com>
3651
3652 * config/mcore/tm-mcore.h: Remove file.
3653 * config/mcore/mcore.mt: Remove definition of TM_FILE
3654 * configure.tgt: Set gdb_multi_arch to yes for the mcore target.
3655
3656 2002-07-05 Mark Kettenis <kettenis@gnu.org>
3657
3658 * i386bsd-tdep.c: Include "gdb_string.h".
3659
3660 2002-07-04 Grace Sainsbury <graces@redhat.com>
3661
3662 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Set to 2.
3663 (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG,RETVAL_REGNUM): Move to
3664 mcore-tdep.
3665 (REG_STRUCT_HAS_ADDR, USE_STRUCT_CONVENTION, GET_SAVED_REGISTER)
3666 (TARGET_VIRTUAL_FRAME_POINTER, BELIEVE_PCC_PROMOTION): Remove.
3667 * mcore-tdep.c (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG)
3668 (RETVAL_REGNUM): Move macros from tm-mcore.h
3669 (mcore_reg_struct_has_addr): New function.
3670 (mcore_gdbarch_init): Added initializations for the macros removed
3671 from tm-mcore.h.
3672
3673 2002-07-04 Mark Kettenis <kettenis@gnu.org>
3674
3675 * osabi.c (generic_elf_osabi_sniffer): Add check for FreeBSD 3.x's
3676 traditonal string branding within the ELF header.
3677
3678 2002-07-04 Daniel Jacobowitz <drow@mvista.com>
3679
3680 * symtab.c (remove_params): New function.
3681 (make_symbol_overload_list): Use it instead of cplus_demangle.
3682 (overload_list_add_symbol): Likewise. Reorder. Fix memory leak.
3683
3684 2002-07-04 Mark Kettenis <kettenis@gnu.org>
3685
3686 * i386obsd-nat.c (_initialize_i386obsd_nat): Fix typo in prototype.
3687
3688 * i386bsd-tdep.c (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end):
3689 New variables.
3690 (i386nbsd_init_abi): Use these to initialize tdep->sigtramp_start
3691 and tdep->sigtramp_end.
3692 * i386obsd-nat.c: New file.
3693 * config/i386/obsd.mh (NATDEPFILES): Add i386obsd-nat.o.
3694
3695 * dwarf2cfi.c (cfi_pop_frame): Use alloca() for regbuf.
3696 Don't call get_current_frame().
3697
3698 2002-07-04 Pierre Muller <muller@ics.u-strasbg.fr>
3699
3700 * i386-nat.c (child_post_startup_inferior): New function
3701 calling i386_cleanup_dregs if
3702 I386_USE_GENERIC_WATCHPOINTS is defined.
3703 * config/i386/nm-i386.h: define CHILD_POST_STARTUP_INFERIOR
3704 conditional to acknowledge that i386-nat.c has its
3705 own child_post_startup_inferior function.
3706
3707 2002-07-04 Mark Kettenis <kettenis@gnu.org>
3708
3709 * i386-tdep.h (I386_MAX_REGISTER_SIZE): New define.
3710 * i386-tdep.c (i386_do_pop_frame): Use I386_MAX_REGISTER_SIZE
3711 instead of MAX_REGISTER_RAW_SIZE.
3712 (i386_extract_return_value, i386_extract_struct_value_address):
3713 Convert to use regcache.
3714 (i386_gdbarch_init): Set max_register_raw_size and
3715 max_register_virtual_size to I386_MAX_REGISTER_SIZE.
3716 Set extract_return_value and extract_struct_value_address instead
3717 of their deprecated variants.
3718
3719 Convert i386 target to generic dummy frames.
3720 * i386-tdep.c: Include "symfile.h".
3721 (i386_frameless_signal_p): Consider a function to be frameless if
3722 the pc points at the first instruction of the function.
3723 (i386_frame_chain): Handle (generic) call dummies.
3724 (i386_frame_saved_pc): Likewise.
3725 (i386_frame_init_saved_regs): Remove code dealing with call
3726 dummies on the stack.
3727 (i386_push_dummy_frame): Removed.
3728 (i386_call_dummy_words): Removed.
3729 (i386_fix_call_dummy): Removed.
3730 (i386_push_return_address): New function.
3731 (i386_do_pop_frame): Renamed from i386_pop_frame. Add FRAME
3732 parameter, and don't call get_current_frame.
3733 (i386_pop_frame): New function.
3734 (i386_gdbarch_init): Set use_generic_dummy_frames to 1, set
3735 call_dummy_location to AT_ENTRY_POINT, set call_dummy_address to
3736 entry_point_address, set call_dummy_breakpoint_offset to 0, set
3737 call_dummy_length to 0, set call_dummy_words to NULL, set
3738 sizeof_call_dummy_words to 0, set fix_call_dummy to
3739 generic_fix_call_dummy, set pc_in_call_dummy to
3740 pc_in_call_dummy_at_entry_point, set push_dummy_frame to
3741 generic_push_dummy_frame, set push_return_address to
3742 i386_push_return_address and set frame_chain_valid to
3743 generic_file_frame_chain_valid.
3744
3745 2002-07-03 Andrew Cagney <ac131313@redhat.com>
3746
3747 * gdbarch.sh (struct regcache): Add opaque declaration.
3748 (EXTRACT_RETURN_VALUE): New architecture method.
3749 (EXTRACT_STRUCT_VALUE_ADDRESS): Ditto.
3750 * gdbarch.h, gdbarch.c: Regenerate.
3751 * arch-utils.c (legacy_extract_return_value): New function.
3752 * arch-utils.h (legacy_extract_return_value): Declare.
3753 * values.c (value_being_returned): Re-enable code handling
3754 EXTRACT_STRUCT_VALUE_ADDRESS. Move
3755 deprecated_grub_regcache_for_registers call to block handling
3756 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
3757 (EXTRACT_RETURN_VALUE): Do not define.
3758
3759 2002-07-03 Grace Sainsbury <graces@redhat.com>
3760
3761 * config/mcore/tm-mcore.h (REGISTER_BYTES, NUM_REGS, PC_REGNUM)
3762 (SP_REGNUM, FP_REGNUM, FUNCTION_START_OFFSET, DECR_PC_AFTER_BREAK)
3763 (BREAKPOINT_FROM_PC, INNER_THAN, SAVED_PC_AFTER_CALL)
3764 (INIT_EXTRA_FRAME_INFO, FRAME_INIT_SAVED_REGS, INIT_FRAME_PC)
3765 (FRAME_CHAIN, FRAME_CHAIN_VALID, FRAME_SAVED_PC)
3766 (STORE_RETURN_VALUE, DEPRECATED_EXTRACT_RETURN_VALUE)
3767 (STORE_STRUCT_RETURN, DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
3768 (SKIP_PROLOGUE, FRAME_ARGS_SKIP, FRAME_ARGS_ADDRESS)
3769 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, POP_FRAME)
3770 (PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME, PUSH_ARGUMENTS): Remove.
3771 * mcore-tdep.c (mcore_init_extra_frame_info): Add fromleaf
3772 argument so the function fits the prototype in the architecture
3773 vector.
3774 (mcore_pop_frame): Remove argument so the function fits the
3775 prototype. Use get_current_frame instead of the argument.
3776 (mcore_push_arguments): Change type of struct_return so the
3777 function can be used in the architecture vector.
3778 (mcore_store_struct_return): Add.
3779 (mcore_frame_init_saved_regs): Add.
3780 (mcore_gdbarch_init): Add function calls to replace the macros
3781 removed from tm-mcore.h
3782
3783 2002-07-03 Andrew Cagney <ac131313@redhat.com>
3784
3785 * infcmd.c (print_return_value): Remove compatibility code calling
3786 deprecated_grub_regcache_for_registers.
3787
3788 * values.c: Include "regcache.h".
3789 (value_being_returned): Update. Use
3790 deprecated_grub_regcache_for_registers to extract the register
3791 buffer address.
3792 * value.h (value_being_returned): Change ``retbuf'' parameter to a
3793 ``struct regcache''.
3794 * Makefile.in (values.o): Add dependency on $(regcache_h).
3795
3796 * inferior.h (run_stack_dummy): Change type of second parameter to
3797 a ``struct regcache''.
3798 * valops.c (hand_function_call): Change type of retbuf to ``struct
3799 regcache''. Allocate using regcache_xmalloc, clean using
3800 make_cleanup_regcache_xfree.
3801 * infcmd.c (run_stack_dummy): Update. Use
3802 regcache_cpu_no_passthrough instead of memcpy to copy the buffer.
3803
3804 * regcache.c (do_regcache_xfree): New function.
3805 (make_cleanup_regcache_xfree): New function.
3806 * regcache.h (make_cleanup_regcache_xfree): Declare.
3807
3808 2002-07-03 Martin M. Hunt <hunt@redhat.com>
3809
3810 * event-top.c (command_line_handler): Don't read past
3811 beginning of buffer.
3812
3813 2002-07-03 Martin M. Hunt <hunt@redhat.com>
3814
3815 * varobj.c (struct varobj_root): Change frame from CORE_ADDR to
3816 struct frame_id.
3817 (varobj_create): Store frame_id for root.
3818 (varobj_gen_name): Use xasprintf.
3819 (varobj_update): Save and restore frame using get_frame_id() and
3820 frame_find_by_id().
3821 (create_child): Use xasprintf.
3822 (new_root_variable): Initialize frame_id.
3823 (c_name_of_child): Use xasprintf. Call find_frame_by_id().
3824 (c_value_of_variable): Use xasprintf. Move mem_fileopen call
3825 to prevent memory leak.
3826
3827 2002-07-03 Andrew Cagney <ac131313@redhat.com>
3828
3829 * valops.c (hand_function_call): Move declaration of retbuf to
3830 start of function, allocate using malloc, add a cleanup but before
3831 the inf_status cleanup, cleanup the buffer. Rename local variable
3832 old_chain to inf_status_cleanup.
3833
3834 2002-07-03 Martin M. Hunt <hunt@redhat.com>
3835
3836 * top.c (execute_command): Use cmd_func() and cmd_func_p().
3837
3838 * cli/cli-decode.c (cmd_func_p): New function.
3839 (cmd_func): New function.
3840
3841 * command.h: Add cmd_func() and cmd_func_p().
3842
3843 2002-07-03 Grace Sainsbury <graces@redhat.com>
3844
3845 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Add macro. Set to 0.
3846 (REGISTER_SIZE): Remove.
3847 (MAX_REGISTER_RAW_SIZE): Remove.
3848 (REGISTER_VIRTUAL_TYPE): Remove.
3849 (MAX_REGISTER_VIRTUAL_SIZE): Remove.
3850 (REGISTER_NAME): Remove.
3851 (USE_GENERIC_DUMMY_FRAMES): Remove.
3852 (CALL_DUMMY): Remove.
3853 (CALL_DUMMY_START_OFFSET): Remove.
3854 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
3855 (CALL_DUMMY_LOCATION): Remove.
3856 (FIX_CALL_DUMMY): Remove.
3857 (CALL_DUMMY_ADDRESS): Remove.
3858 (SIZEOF_CALL_DUMMY_WORDS): Remove.
3859 (SAVE_DUMMY_FRAME_TOS): Remove.
3860 * mcore-tdep.c (MCORE_REG_SIZE, MCORE_NUM_REGS): Add macros.
3861 (mcore_register_virtual_type): New function.
3862 (mcore_register_byte): New function.
3863 (mcore_register_size): New function.
3864 (mcore_register_name): New function.
3865 (mcore_gdbarch_init): New function. Add set_gdbarch calls for
3866 macros removed from tm-mcore.h.
3867 (mcore_dump_tdep): Add.
3868 (_initialize_mcore_tdep): Add gdbarch_register call.
3869
3870 2002-07-03 Mark Kettenis <kettenis@gnu.org>
3871
3872 * i386-tdep.c (i386_frameless_signal_p): Provide an argument in to
3873 frameless_look_for_prologue, such that we actually call this
3874 function.
3875
3876 2002-07-02 Joel Brobecker <brobecker@gnat.com>
3877
3878 * frame.h (frame_address_in_block): New function.
3879
3880 * blockframe.c (frame_address_in_block): New function extracted
3881 from get_frame_block().
3882 (get_frame_block): Use frame_address_in_block().
3883 (block_innermost_frame): Use frame_address_in_block() to match
3884 the frame pc address against the block boundaries rather than
3885 the frame pc directly. This prevents a failure when a frame pc
3886 is actually a return-address pointing immediately after the end
3887 of the given block.
3888
3889 2002-07-02 Grace Sainsbury <graces@redhat.com>
3890
3891 * MAINTAINERS: Add self under write after approval.
3892
3893 2002-07-02 Grace Sainsbury <graces@redhat.com>
3894
3895 * m68k-tdep.c (m68k_remote_breakpoint_from_pc): Add. Currently not
3896 used in architecture vector. The default is
3897 m68k_local_breakpoint_from_pc.
3898 (m68k_local_breakpoint_from_pc): Add.
3899 (enum): Add register numbers from tm-m68k.h.
3900 (m68k_gdbarch_init): Add breakpoint_from_pc to architecture
3901 vector.
3902 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Set to
3903 GDB_MULTI_ARCH_PARTIAL.
3904 (BPT_VECTOR, REGISTER_BYTES_FP, REGISTER_BYTES_NOFP)
3905 (NUM_FREGS, SIG_PC_FP_OFFSET, SP_ARG0, REMOTE_BPT_VECTOR): Move to
3906 m68k-tdep.c.
3907 (BREAKPOINT, REMOTE_BREAKPOINT): Remove.
3908 (A1_REGNUM, FP0_REGNUM, FPC_REGNUM, FPS_REGNUM, FPI_REGNUM): Move
3909 to enum in m68k-tdep.c
3910
3911 2002-07-02 Joel Brobecker <brobecker@gnat.com>
3912
3913 * solib-osf.c (open_map): Compute the list of shared libraries
3914 loaded by the inferior, rather than the list of libraries loaded
3915 by GDB itself. Otherwise, GDB ends up reading the symbols from
3916 the wrong shared libraries...
3917
3918 2002-07-02 Mark Kettenis <kettenis@gnu.org>
3919
3920 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Make static.
3921 (LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONEXT_SP_OFFSET): Remove
3922 macros.
3923 (i386_linux_sigtramp_saved_pc, i386_linux_sigtramp_saved_sp):
3924 Remove functions.
3925 (FRAMELESS_SIGNAL): Remove function.
3926 (i386_linux_frame_chain, i386_linux_frame_saved_pc,
3927 i386_linux_saved_pc_after_call): Removed.
3928 (i386_linux_init_abi): Initialize tdep->sigcontext_addr,
3929 tdep->sc_pc_offset and tdep->sc_sp_offset. Don't override
3930 frame_chain, frame_saved_pc and saved_pc_after_call any longer.
3931
3932 * i386-tdep.c (i386_frameless_signal_p): New function.
3933 (i386_frame_chain): Deal with frameless signals.
3934 (i386_sigtramp_saved_sp): New function.
3935 (i386_frame_saved_pc): Deal with frameless signals.
3936 (i386_saved_pc_after_call): Make sure the correct value is
3937 returned just after entry into a sigtramp.
3938 * i386bsd-tdep.c (i386bsd_sc_sp_offset, i386nbsd_sc_sp_offset,
3939 i386fbsd4_sc_sp_offset): New variables.
3940 (i386bsd_init_abi, i386nbsd_init_abi, i386fbsd4_init_abi): Use
3941 these variables to initialize tdep->sc_sp_offset. * i386bsd-nat.c
3942 (_initialize_i386bsd_nat): Add sanity check for sc_sp_offset
3943 similiar to what we already did for sc_pc_offset.
3944 * i386-sol2-tdep.c (i386_sol2_init_abi): Initialize
3945 tdep->sc_sp_offset.
3946
3947 * i386nbsd-tdep.c (fetch_elfcore_registers): Wrap long line.
3948
3949 2002-07-02 Michal Ludvig <mludvig@suse.cz>
3950
3951 * config/i386/tm-x86-64linux.h: New.
3952 * config/i386/x86-64linux.mt: Add GDB_MULTI_ARCH and TM_FILE
3953 definitions.
3954 * config/i386/nm-x86-64.h: Rename to ...
3955 * config/i386/nm-x86-64linux.h: ... this one.
3956 * config/i386/x86-64linux.mh: Reflect the above change.
3957
3958 2002-07-01 Mark Kettenis <kettenis@gnu.org>
3959
3960 * i386-tdep.h (struct gdbarch_tdep): Replace sigtramp_saved_pc
3961 with sigcontext_addr. Add sc_sp_offset.
3962 (i386bsd_sigtramp_saved_pc): Remove prototype.
3963 (i386bsd_sicontext_addr): Add prototype.
3964 * i386-tdep.c (i386_sigtramp_saved_pc): New function.
3965 (i386_frame_saved_pc): Rewrite to call i386_sigtramp_saved_pc.
3966 (i386_svr4_sigtramp_saved_pc): Removed.
3967 (i386_svr4_sigcontext_addr): New function.
3968 (i386_svr4_init_abi): Don't initialize tdep->sigtramp_saved_pc.
3969 Initialize tdep->sigcontext_addr instead. Initialize
3970 tdep->sc_pc_offset and tdep->sc_sp_offset.
3971 (i386_gdbarch_init): Likewise.
3972 * i386bsd-tdep.c (i386bsd_sigcontext_addr): Don't make it static
3973 any more.
3974 (i386bsd_sigtramp_saved_pc): Remove function.
3975 (i386bsd_init_abi): Don't initialize tdep->sigtramp_saved_pc.
3976 Initialize tdep->sigcontext_addr instead. Initialize
3977 tdep->sc_pc_offset.
3978 * i386-linux-tdep.c (i386_linux_init_abi): Remove initialization
3979 of tdep->sigtramp_saved_pc.
3980 * i386-sol2-tdep.c (i386_sol2_init_abi): Don't initialize
3981 tdep->sigtramp_saved_pc. Initialize tdep->sigcontext_addr
3982 instead.
3983
3984 * i386-tdep.c (i386_frameless_function_invocation,
3985 i386_frame_num_args, i386_frame_init_saved_regs,
3986 i386_skip_prologue, i386_push_dummy_frame, i386_fix_call_dummy,
3987 i386_pop_frame, i386_push_arguments, i386_store_struct_return,
3988 i386_extract_return_value, i386_store_return_value,
3989 i386_extract_struct_value_address, i386_register_virtual_type,
3990 i386_register_convertible, i386_register_convert_to_virtual,
3991 i386_register_convert_to_raw, i386_svr4_sigtramp_saved_pc,
3992 i386_go32_init_abi, i386_nw_init_abi, i386_gdbarch_init): Make
3993 static.
3994
3995 2002-07-01 Mark Kettenis <kettenis@gnu.org>
3996
3997 * i386bsd-tdep.c (i386bsd_frame_saved_pc): Removed.
3998
3999 * config/i386/tm-i386sol2.h (COERCE_FLOAT_TO_DOUBLE): Removed.
4000 * i386-sol2-tdep.c (i386_sol2_init_abi): Adjust for the removal of
4001 this macro. Include "value.h".
4002
4003 2002-06-30 Aidan Skinner <aidan@velvet.net>
4004
4005 * ada-exp.tab.c: remove as it's a generated file
4006 * ada-lex.c: remove as it's a generated file
4007
4008 2002-06-30 Mark Kettenis <kettenis@gnu.org>
4009
4010 * config/i386/tm-i386.h (struct frame_info, struct
4011 frame_saved_regs, struct value, struct type): Remove forward
4012 declarations.
4013
4014 * config/i386/tm-linux.h [HAVE_PTRACE_GETFPXREGS]
4015 (FILL_FPXREGSET, HAVE_SSE_REGS): Remove define.
4016 * config/i386/nm-linux.h [HAVE_PTRACE_GETFPXREGS]
4017 (FILL_FPXREGSET): Define.
4018
4019 * config/i386/tm-nbsd.h (HAVE_SSE_REGS): Remove define.
4020
4021 * configure.tgt (i[3456]86-*-openbsd*): Fold into
4022 i[3456]86-*-netbsd* case.
4023 * config/i386/tm-obsd.h: Removed.
4024 * config/i386/obsd.mt: Removed.
4025 * config/i386/obsd.mh (NATDEPFILES): Remove corelow.o and
4026 core-aout.o.
4027 (MH_CFLAGS): Add -DYYDEBUG=0.
4028
4029 * i386bsd-nat.c (_initialize_i386bsd_nat): Define SC_PC_OFFSET to
4030 i386nbsd_sc_pc_offset on OpenBSD too.
4031
4032 * config/i386/tm-fbsd.h [!SVR4_SHARED_LIBS]
4033 (IN_SOLIB_CALL_TRAMPOLINE): Remove define.
4034 * config/i386/tm-nbsdaout.h (IN_SOLIB_CALL_TRAMPOLINE): Remove
4035 define.
4036 * i386bsd-tdep.c: Include "arch-utils.h".
4037 (i386bsd_aout_in_solib_call_trampoline): New function.
4038 (i386bsd_init_abi): Set in_solib_call_trampoline to
4039 i386bsd_aout_in_solib_call_trampoline.
4040 (i386nbsdelf_init_abi, i386fbsd_init_abi): Set
4041 in_solib_call_trampoline to generic_in_solib_call_trampoline.
4042
4043 2002-06-28 Andrew Cagney <ac131313@redhat.com>
4044
4045 * macrotab.h: Do not include "obstack.h" or "bcache.h".
4046 (struct obstack, struct bcache): Add opaque declarations.
4047 * Makefile.in (macrotab_h): Update
4048
4049 2002-06-28 Andrew Cagney <ac131313@redhat.com>
4050
4051 * blockframe.c (generic_find_dummy_frame): Change return type to
4052 ``struct regcache''.
4053 (struct dummy_frame): Replace field ``registers'' with regcache, a
4054 struct regcache object.
4055 (generic_find_dummy_frame): Update.
4056 (generic_push_dummy_frame): Update. Use regcache_xfree,
4057 regcache_xmalloc and regcache_cpy.
4058 (generic_pop_dummy_frame): Update. Use regcache_cpy and
4059 regcache_xfree.
4060 (deprecated_generic_find_dummy_frame): Update.
4061 (generic_read_register_dummy): Update. Use
4062 regcache_read_as_address.
4063 (generic_call_dummy_register_unwind): Update. Use regcache_read.
4064 (generic_get_saved_register): Update. Use regcache_read.
4065
4066 2002-06-28 Andrew Cagney <ac131313@redhat.com>
4067
4068 * Makefile.in (objfiles_h): Add $(bcache_h).
4069 * objfiles.h: Include "bcache.h".
4070
4071 * Makefile.in (symtab_h): Remove $(bcache_h).
4072 * symtab.h: Do not include "bcache.h".
4073
4074 2002-06-28 Andrew Cagney <ac131313@redhat.com>
4075
4076 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Set frame_chain_valid to
4077 generic_func_frame_chain_valid.
4078
4079 2002-06-28 David O'Brien <obrien@FreeBSD.org>
4080
4081 * config/i386/nm-fbsd.h: Include <sys/param.h>.
4082 * config/i386/tm-fbsd.h: Likewise.
4083
4084 2002-06-28 Andrew Cagney <ac131313@redhat.com>
4085
4086 * rs6000-tdep.c (rs6000_gdbarch_init): Use
4087 generic_unwind_get_saved_register.
4088
4089 2002-06-27 Andrew Cagney <ac131313@redhat.com>
4090
4091 From 2002-06-27 John David Anglin <dave@hiauly1.hia.nrc.ca>:
4092 * regcache.c (supply_register): Add missing argument to
4093 register_buffer call.
4094
4095 2002-06-27 Andrew Cagney <ac131313@redhat.com>
4096
4097 * Makefile.in (init.c): Drop -e option to grep. Not necessary and
4098 Solaris /bin/grep does not not like it. From Peter Schauer.
4099
4100 2002-06-26 Tom Tromey <tromey@redhat.com>
4101
4102 * command.h (add_setshow_cmd): Declare.
4103 (add_setshow_cmd_full): Declare.
4104 * cli/cli-decode.c (add_setshow_cmd): No longer static. Now
4105 returns void. Use add_setshow_cmd_full.
4106 (add_setshow_cmd_full): New function.
4107 (add_setshow_auto_boolean_cmd): Use add_setshow_cmd_full.
4108 (add_setshow_boolean_cmd): Likewise.
4109
4110 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
4111
4112 * config/vax/tm-vax.h: Protect from multiple inclusion.
4113 (TARGET_UPAGES, TARGET_NBPG, STACK_END_ADDR)
4114 (SIGTRAMP_START, SIGTRAMP_END, SIGCONTEXT_PC_OFFSET): Move to...
4115 * config/vax/tm-vaxbsd.h: ...here. New file.
4116 * config/vax/vax.mt (TM_FILE): Set to tm-vaxbsd.h.
4117
4118 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
4119
4120 * config/vax/tm-vax.h (BREAKPOINT): Remove.
4121 (BELIEVE_PCC_PROMOTION): Remove.
4122 (AP_REGNUM): Move to...
4123 * config/vax/nm-vax.h: ...here.
4124 * vax-tdep.c: Use VAX_AP_REGNUM instead of AP_REGNUM.
4125 (vax_breakpoint_from_pc): New function.
4126 (vax_gdbarch_init): Initialize gdbarch_breakpoint_from_pc
4127 and gdbarch_believe_pcc_promotion.
4128
4129 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
4130
4131 * Makefile.in (vax_tdep_h): Define.
4132 (vax-tdep.o): Use $(vax_tdep_h).
4133 * vax-tdep.c (vax_gdbarch_init): Use generic OS ABI framework.
4134 (vax_dump_tdep): New function.
4135 (_initialize_vax_tdep): Register vax_dump_tdep.
4136 * vax-tdep.h: Include osabi.h.
4137 (struct gdbarch_tdep): New.
4138
4139 2002-06-26 Andrew Cagney <cagney@redhat.com>
4140
4141 * frame.h (deprecated_generic_find_dummy_frame): Rename
4142 generic_find_dummy_frame.
4143 * blockframe.c (generic_find_dummy_frame): Make static.
4144 (deprecated_generic_find_dummy_frame): New function.
4145 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Replace
4146 generic_find_dummy_frame with deprecated_find_dummy_frame.
4147 (sh64_nofp_frame_init_saved_regs): Ditto.
4148 (sh_fp_frame_init_saved_regs): Ditto.
4149 * s390-tdep.c (s390_frame_saved_pc_nofix): Ditto.
4150 (s390_frame_chain): Ditto.
4151 * cris-tdep.c (cris_frame_init_saved_regs): Ditto.
4152
4153 2002-06-26 Grace Sainsbury <graces@redhat.com>
4154
4155 * config/m68k/tm-m68k.h: Rearrange code so macros not in the
4156 gdbarch vector are at the top.
4157 (NUM_REGS): Remove.
4158 (FP_REGNUM, SP_REGNUM, PS_REGNUM, PC_REGNUM, FP0_REGNUM): Remove.
4159 (FRAME_ARGS_ADDRESS): Remove.
4160 (FRAME_LOCALS_ADDRESS): Remove.
4161 (FRAME_NUM_ARGS): Remove.
4162 (FRAME_ARGS_SKIP): Remove.
4163 * m68k-tdep.c (enum): Add eumeration of special register numbers.
4164 (m68k_gdbarch_init): Add gdbarch initializations for macros
4165 undefined in tm-m68k.h
4166
4167 2002-06-26 Grace Sainsbury <graces@redhat.com>
4168
4169 * monitor.h: Add the function regname to monitor_ops
4170 structure. This way NUM_REGS does not have to be a constant.
4171 * monitor.c (monitor_fetch_register): Added support for regname
4172 function. The function is called if the array regnames is NULL.
4173 (monitor_store_register): Same.
4174 * cpu32bug-rom.c (cpu32bug_regname): Add function. Replaces
4175 regnames array.
4176 (init_cpu32bug_cmds): set cpu32bug_cmds.regnames to NULL,
4177 cpu32bug_cmds.regname to point to new function.
4178 * abug-rom.c (abug_regname): Same as above.
4179 (init_abug_cmds): Same.
4180 * dbug-rom.c (dbug_regname): Same as above.
4181 (init_dbug_cmds): Same.
4182 * remote-est.c (est_regname): Same.
4183 (init_est_cmds): Same.
4184 * rom68k-rom.c (rom68k_regname): Same.
4185 (init_rom68k_cmds): Same.
4186
4187 2002-06-25 Tom Tromey <tromey@redhat.com>
4188
4189 * breakpoint.c (delete_command): Don't repeat `delete' commands.
4190
4191 2002-06-25 Andrew Cagney <cagney@redhat.com>
4192
4193 * infrun.c (stop_registers): Change variable's type to ``struct
4194 regcache'''.
4195 (xmalloc_inferior_status): Delete function.
4196 (free_inferior_status): Delete function.
4197 (normal_stop): Use regcache_cpy.
4198 (struct inferior_status): Change type of fields ``stop_registers''
4199 and ``registers'' to ``struct regcache''.
4200 (write_inferior_status_register): Use regcache_write.
4201 (save_inferior_status): Instead of calling
4202 xmalloc_inferior_status, allocate the inf_status buffer directly.
4203 Use regcache_dup_no_passthrough and regcache_dup to save the
4204 buffers.
4205 (restore_inferior_status): Use regcache_xfree and regcache_cpy.
4206 Replace the stop_registers regcache instead of overriding it. Use
4207 regcache_xfree. Instead of calling free_inferior_status, xfree
4208 the buffer directly.
4209 (discard_inferior_status): Use regcache_xfree. Instead of calling
4210 free_inferior_status, xfree the buffer directly.
4211 (build_infrun): Use regcache_xmalloc.
4212 (_initialize_infrun): Delete redundant call to build_infrun.
4213
4214 * Makefile.in (infcmd.o): Add $(regcache_h).
4215
4216 * infcmd.c: Include "regcache.h".
4217 (run_stack_dummy): Use deprecated_grub_regcache_for_registers to
4218 obtain the address of `stop_registers' register buffer.
4219 (print_return_value): Ditto.
4220
4221 * inferior.h (struct regcache): Add opaque declaration.
4222 (stop_registers): Change variable's declared type to ``struct
4223 regcache''.
4224
4225 2002-06-24 Tom Tromey <tromey@redhat.com>
4226
4227 * cli/cli-decode.c (add_show_from_set): Fixed typo in comment.
4228 * target.c (initialize_targets): Fixed typo in
4229 trust-readonly-sections `show' documentation.
4230
4231 * main.c: Marked all strings with _().
4232
4233 2002-06-24 Don Howard <dhoward@redhat.com>
4234
4235 * memattr.c (create_mem_region): Treat hi == 0 as a special case
4236 that means max CORE_ADDR+1.
4237 (lookup_mem_region): Ditto.
4238 (mem_info_command): Ditto.
4239
4240 2002-06-24 Grace Sainsbury <graces@redhat.com>
4241
4242 * config/m68k/tm-m68k.h (DECR_PC_AFTER_BREAK): Remove.
4243 (REGISTER_BYTES_OK): Remove.
4244 (REGISTER_BYTES): Remove.
4245 (STORE_STRUCT_RETURN): Remove.
4246 (DEPRECATED_EXTRACT_RETURN_VALUE): Remove.
4247 (STORE_RETURN_VALUE): Remove.
4248 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Remove.
4249 (FRAME_CHAIN): Remove.
4250 (FRAMELESS_FUNCTION_INVOCATION): Remove.
4251 (FRAME_SAVED_PC): Remove.
4252 * m68k-tdep.c (m68k_register_bytes_ok):Add.
4253 (m68k_store_struct_return): Add.
4254 (m68k_deprecated_extract_return_value): Add.
4255 (m68k_deprecated_extract_struct_value_address): Add.
4256 (m68k_store_return_value): Add.
4257 (m68k_frame_chain): Add.
4258 (m68k_frameless_function_invocation): Add.
4259 (m68k_frame_saved_pc): Add.
4260 (m68k_gdbarch_init): added set_gdbarch calls for new
4261 functions and deleted macros.
4262
4263 2002-06-23 Tom Tromey <tromey@redhat.com>
4264
4265 * Makefile.in (HFILES_NO_SRCDIR): Remove old files.
4266 (ALLDEPFILES): Likewise.
4267 (udiheaders): Removed.
4268 (udip2soc.o): Likewise.
4269 (udi2go32.o): Likewise.
4270 (udr.o): Likewise.
4271 (HFILES_WITH_SRCDIR): Don't mention udiheaders.
4272
4273 2002-06-22 Andrew Cagney <ac131313@redhat.com>
4274
4275 * infrun.c (_initialize_infrun): Delete unnecessary call to
4276 build_infrun.
4277
4278 * regcache.h: Update comments describing the regcache_cpy family
4279 of functions.
4280 (regcache_save, regcache_restore): Delete declaration.
4281 (regcache_save_no_passthrough): Delete declaration.
4282 (regcache_restore_no_passthrough): Delete declaration.
4283 * regcache.c (regcache_save): Delete function.
4284 (regcache_save_no_passthrough): Delete function.
4285 (regcache_restore): Delete function.
4286 (regcache_restore_no_passthrough): Delete function.
4287
4288 2002-06-21 Andrew Cagney <ac131313@redhat.com>
4289
4290 * config/m68k/tm-m68k.h: Fix typo.
4291 (FRAME_INIT_SAVED_REGS): Define when non-multi-arch.
4292 (m68k_frame_init_saved_regs): Declare.
4293
4294 2002-06-21 Jim Blandy <jimb@redhat.com>
4295
4296 Remove some vestiges of Harris 88k support.
4297 * dwarf2read.c (decode_locdesc): Remove `#if' block for Harris 88k
4298 register numbering quirk.
4299 * elfread.c (elf_symtab_read): Remove `#if' block for skipping
4300 odd symbols occurring in Harris 88k ELF targets.
4301
4302 2002-06-21 Tom Tromey <tromey@redhat.com>
4303
4304 * gdb_locale.h: New file.
4305 * Makefile.in (GDB_CFLAGS): Define LOCALEDIR.
4306 (defs_h): Added gdb_locale.h.
4307 * configure, config.in: Rebuilt.
4308 * configure.in (PACKAGE): Define.
4309 * defs.h: Include gdb_locale.h.
4310 * main.c (captured_main): Call setlocale, bindtextdomain,
4311 textdomain.
4312
4313 2002-06-21 Dave Brolley <brolley@redhat.com>
4314
4315 From Stan Shebs, Jim Blandy, Mark Salter, Kevin Buettner:
4316 * config/frv/frv.mt: New file.
4317 * config/frv/tm-frv.h: New file.
4318 * configure.tgt: Support frv-*-*.
4319 * Makefile.in (frv-tdep.o): New target.
4320 * frv-tdep.c: New file.
4321 * NEWS: Mention frv.
4322
4323 2002-06-21 Dave Brolley <brolley@redhat.com>
4324
4325 * MAINTAINERS: Add self to "Write After Approval" list.
4326
4327 2002-06-21 Grace Sainsbury <graces@redhat.com>
4328
4329 * config/m68k/tm-m68k.h (REGISTER_BYTE, REGISTER_RAW_SIZE)
4330 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
4331 (REGISTER_VIRTUAL_TYPE, REGISTER_NAMES, TARGET_LONG_DOUBLE_FORMAT)
4332 (FUNCTION_START_OFFSET, SKIP_PROLOGUE, SAVED_PC_AFTER_CALL)
4333 (INNER_THAN, STACK_ALIGN, REGISTER_SIZE): Remove macros.
4334
4335 * m68k-tdep.c: Include arch-utils.h
4336 (m68k_register_raw_size): Add.
4337 (m68k_register_virtual_size): Add.
4338 (m68k_register_virtual_type): Add.
4339 (m68k_register_name): Add.
4340 (m68k_stack_align): Add.
4341 (m68k_register_byte): Add.
4342 (m68k_gdbarch_init): Add set_gdbarch calls for macros removed in
4343 tm-m68k.h.
4344
4345 2002-06-21 Grace Sainsbury <graces@redhat.com>
4346
4347 * m68k-tdep.c (m68k_frame_init_saved_regs): Replace
4348 m68k_find_saved_regs.
4349 (m68k_pop_frame): Removed saved_regs structure, and replaced
4350 references to it with frame->saved_regs.
4351 (m68k_gdbarch_init): Added function calls to initialize the
4352 gdbarch structure.
4353 (m68k_fix_call_dummy): Add.
4354 * config/m68k/tm-m68k.h: (FRAME_FIND_SAVED_REGS): Remove.
4355 (CALL_DUMMY): Remove.
4356 (CALL_DUMMY_LENGTH): Remove.
4357 (CALL_DUMMY_START_OFFSET): Remove.
4358 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
4359 (FIX_CALL_DUMMY): Remove.
4360 (PUSH_DUMMY_FRAME): Remove.
4361 (POP_FRAME): Remove.
4362
4363 2002-06-19 Pierre Muller <muller@ics.u-strasbg.fr>
4364
4365 * parse.c (parse_fprintf): New function used to avoid calls to
4366 fprintf in bison parser generated debug code.
4367 * parser-defs.h: Declaration of new parse_fprintf function.
4368 * ada-exp.y, c-exp.y, f-exp.y, jv-exp.y, m2-exp.y, p-exp.y:
4369 Set YYDEBUG to 1 by default.
4370 Set YYFPRINTF as parse_fprintf.
4371
4372 2002-06-21 Michal Ludvig <mludvig@suse.cz>
4373
4374 * dwarf2cfi.c (read_encoded_pointer): Don't handle pointer
4375 encoding anymore.
4376 (pointer_encoding, enum ptr_encoding): New.
4377 (execute_cfa_program): Take care about pointer encoding.
4378 (dwarf2_build_frame_info): Only call parse_frame_info for
4379 .debug_frame and .eh_frame.
4380 (parse_frame_info): New, derived from former dwarf2_build_frame_info.
4381 fixed augmentation handling, added relative addressing,
4382 ignore duplicate FDEs. Added comments.
4383 * dwarf2cfi.c: Reindented.
4384
4385 2002-06-20 Elena Zannoni <ezannoni@redhat.com>
4386
4387 * event-top.c (command_handler): Don't use space_at_cmd_start
4388 unless there is sbrk() on the host. Assign time and space data
4389 to union fields of the appropriate length.
4390
4391 2002-06-20 Michal Ludvig <mludvig@suse.cz>
4392
4393 * x86-64-tdep.c (x86_64_register_nr2name): Rename to
4394 x86_64_register_name. Return type changed to 'const char *'.
4395 (x86_64_register_name2nr): Rename to x86_64_register_number.
4396 (x86_64_gdbarch_init): Update to reflect the change.
4397 * x86-64-tdep.h: Ditto.
4398 * x86-64-linux-nat.c (x86_64_fxsave_offset)
4399 (supply_fpregset): Ditto.
4400
4401 2002-06-19 Andrew Cagney <cagney@redhat.com>
4402
4403 * regcache.h: Update copyright.
4404 (struct regcache, struct gdbarch): Add opaque declarations.
4405 (current_regcache): Declare global variable.
4406 (regcache_read, regcache_write): Add gdbarch parameter.
4407 (regcache_save, regcache_save_no_passthrough)
4408 (regcache_restore, regcache_restore_no_passthrough)
4409 (regcache_dup, regcache_dup_no_passthrough)
4410 (regcache_cpy, regcache_cpy_no_passthrough)
4411 (deprecated_grub_regcache_for_registers)
4412 (deprecated_grub_regcache_for_register_valid)
4413 (regcache_valid_p): Add function declarations.
4414
4415 * regcache.c: Update copyright.
4416 (regcache_descr_handle): New global variable.
4417 (struct regcache_descr): Define.
4418 (init_legacy_regcache_descr, init_regcache_descr): New functions.
4419 (regcache_descr, xfree_regcache_descr): New functions.
4420 (struct regcache): Define.
4421 (regcache_xmalloc, regcache_xfree): New functions.
4422 (regcache_cpy, regcache_cpy_no_passthrough): New functions.
4423 (regcache_dup, regcache_dup_no_passthrough): New functions.
4424 (regcache_valid_p, regcache_read_as_address): New functions.
4425 (deprecated_grub_regcache_for_registers): New function.
4426 (deprecated_grub_regcache_for_register_valid): New function.
4427 (current_regcache): New global variable.
4428 (register_buffer): Add regcache parameter. Update calls.
4429 (regcache_read, regcache_write): Add regcache parameter. Rewrite.
4430 (read_register_gen, write_register_gen): Update register_buffer
4431 call. Test for legacy_p instead of gdbarch_register_read_p or
4432 gdbarch_register_write_p.
4433 (regcache_collect): Update register_buffer call.
4434 (build_regcache): Rewrite. Use deprecated grub functions.
4435 (regcache_save, regcache_save_no_passthrough): New functions.
4436 (regcache_restore, regcache_restore_no_passthrough): New
4437 functions.
4438 (_initialize_regcache): Create the regcache_data_handle. Swap
4439 current_regcache global variable.
4440
4441 * sh-tdep.c (sh_pseudo_register_read): Add current_regcache
4442 parameter to regcache_read and regcache_write calls.
4443 (sh4_register_read): Ditto.
4444 (sh64_pseudo_register_read): Ditto.
4445 (sh64_register_read): Ditto.
4446 (sh_pseudo_register_write): Ditto.
4447 (sh4_register_write): Ditto.
4448 (sh64_pseudo_register_write): Ditto.
4449 (sh64_register_write): Ditto.
4450
4451 * defs.h (XCALLOC): Define.
4452
4453 2002-06-19 Grace Sainsbury <graces@redhat.com>
4454
4455 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Added (set to 0).
4456 * m68k-tdep.c (m68k_gdbarch_init): Added.
4457 (m68k_dump_tdep): Added.
4458
4459 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
4460
4461 * ada-lang.c (fill_in_ada_prototype): Update comment.
4462
4463 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
4464
4465 * mips-tdep.c (enum mips_abi): Explicitly start at 0. Add
4466 MIPS_ABI_LAST.
4467 (mips_abi_string, mips_abi_strings): New.
4468 (struct gdbarch_tdep): Remove mips_abi_string, add found_abi.
4469 (mips_gdbarch_init): Set tdep->found_abi. Don't set
4470 tdep->mips_abi_string. Honor mips_abi_string. Default to
4471 O32 if no ABI is found.
4472 (mips_dump_tdep): Use mips_abi_strings.
4473 (mips_abi_update): New function.
4474 (_initialize_mips_tdep): Initialize mips_abi_string. Add
4475 ``set mips abi'' and ``show mips abi''. Check the size of
4476 mips_abi_strings.
4477
4478 2002-06-19 Andrew Cagney <cagney@redhat.com>
4479
4480 * i386-linux-tdep.c (i386_linux_register_name): Make return type
4481 constant.
4482
4483 2002-06-18 Joel Brobecker <brobecker@gnat.com>
4484
4485 * alpha-tdep.c (heuristic_proc_desc): Compute the size of the
4486 current frame using only the first stack size adjustment. All
4487 subsequent size adjustments are not considered to be part of
4488 the "static" part of the current frame.
4489 Compute the address of the saved registers relative to the
4490 Frame Pointer ($fp) instead of the Stack Pointer if $fp is
4491 in use in this frame.
4492
4493 2002-06-18 Don Howard <dhoward@redhat.com>
4494
4495 * valops.c (value_ind): Use value_at_lazy() when dereferencing
4496 type int expressions. Thanks to Jim Blandy <jimb@redhat.com> for
4497 suggesting this solution.
4498
4499 2002-06-18 Andrew Cagney <ac131313@redhat.com>
4500
4501 * config/romp/xm-rtbsd.h: Delete file.
4502 * config/romp/rtbsd.mh: Delete file.
4503
4504 2002-06-18 Keith Seitz <keiths@redhat.com>
4505
4506 * breakpoint.c (condition_command): Post breakpoint_modify
4507 when a condition is added to an existing breakpoint.
4508 (commands_command): Likewise for commands.
4509 (set_ignore_count): Likewise for ignore counts.
4510 If no tty, do not simply return, still need to send event
4511 notification.
4512 (ignore_command): Only print a newline if the command came
4513 from a tty.
4514 Don't call breakpoints_changed, since this is now properly
4515 handled by set_ignore_count.
4516
4517 2002-06-18 Andrew Cagney <cagney@redhat.com>
4518
4519 * MAINTAINERS: Note that cris-elf target can be compiled with
4520 -Werror.
4521 * cris-tdep.c (cris_register_name): Make return type constant.
4522 (cris_breakpoint_from_pc): Ditto.
4523
4524 2002-06-18 Michal Ludvig <mludvig@suse.cz>
4525
4526 * frame.h (struct frame_info): Change type of context to
4527 'struct context'.
4528
4529 2002-06-17 Andrew Cagney <cagney@redhat.com>
4530
4531 * gdbarch.sh (REGISTER_NAME): Change return type a constant string
4532 pointer.
4533 * gdbarch.h, gdbarch.c: Regenerate.
4534 * config/mips/tm-mips.h (mips_register_name): Update.
4535 * i386-tdep.h (i386_register_name): Update.
4536 * mips-tdep.c (mips_register_name): Update
4537 * alpha-tdep.c (alpha_register_name): Update.
4538 * arch-utils.c (legacy_register_name): Update.
4539 * arch-utils.h (legacy_register_name): Update.
4540 * avr-tdep.c (avr_register_name): Update.
4541 * ia64-tdep.c (ia64_register_name): Update.
4542 * i386-tdep.c (i386_register_name): Update.
4543 * sparc-tdep.c (sparc32_register_name): Update.
4544 (sparc64_register_name): Update.
4545 (sparclite_register_name): Update.
4546 (sparclet_register_name): Update.
4547 * sh-tdep.c (sh_generic_register_name): Update.
4548 (sh_sh_register_name): Update.
4549 (sh_sh3_register_name): Update.
4550 (sh_sh3e_register_name): Update.
4551 (sh_sh_dsp_register_name): Update.
4552 (sh_sh3_dsp_register_name): Update.
4553 (sh_sh4_register_name): Update.
4554 (sh_sh64_register_name): Update.
4555 * s390-tdep.c (s390_register_name): Update.
4556 * rs6000-tdep.c (rs6000_register_name): Update.
4557 * ns32k-tdep.c (ns32k_register_name_32082): Update.
4558 (ns32k_register_name_32382): Update.
4559 * d10v-tdep.c (d10v_ts2_register_name): Update.
4560 (d10v_ts3_register_name): Update.
4561 * xstormy16-tdep.c (xstormy16_register_name): Update.
4562 * vax-tdep.c (vax_register_name): Update.
4563 * v850-tdep.c (v850_register_name): Update.
4564 * m68hc11-tdep.c (m68hc11_register_name): Update.
4565 * mn10300-tdep.c (mn10300_generic_register_name): Update.
4566 (am33_register_name): Update.
4567
4568 2002-06-17 Grace Sainsbury <graces@redhat.com>
4569
4570 * m68k-tdep.c: Reindented.
4571
4572 2002-06-17 Andrew Cagney <ac131313@redhat.com>
4573
4574 * gdb_indent.sh: Add prgregset_t, fpregset_t, and gregset_t to the
4575 list of predefined types.
4576
4577 2002-06-16 Mark Kettenis <kettenis@gnu.org>
4578
4579 * config/i386/tm-i386.h (REGISTER_VIRTUAL_TYPE,
4580 REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL,
4581 REGISTER_CONVERT_TO_RAW): Remove defines.
4582 (i386_register_virtual_type, i386_register_convertible,
4583 i386_register_convert_to_virtual, i386_register_convert_to_raw):
4584 Remove prototypes.
4585 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
4586 macros mentioned above.
4587
4588 * config/i386/tm-i386lynx.h (SAVED_PC_AFTER_CALL): Remove define.
4589 (i386lynx_saved_pc_after_call): Remove prototype.
4590 * i386ly-tdep.c: Include "i386-tdep.h".
4591 (i386lynx_saved_pc_after_call): Make static. Use
4592 read_memory_nobpt instead of read_memory. Use
4593 read_memory_unsigned_integer instead of read_memory_integer.
4594 (i386lynx_init_abi): New function.
4595 (i386lynx_coff_osabi_sniffer): New function.
4596 (_initialize_i386bsd_tdep): New function.
4597
4598 * config/i386/tm-i386.h (PARM_BOUNDARY, CALL_DUMMY,
4599 CALL_DUMMY_LENGTH, CALL_DUMMY_START_OFFSET,
4600 CALL_DUMMY_BREAKPOINT_OFFSET, FIX_CALL_DUMMY): Remove defines.
4601 (i386_fix_call_dummy): Remove prototype.
4602 * i386-tdep.c (i386_call_dummy_words): New variable.
4603 (i386_gdbarch_init): Adjust for removal of the
4604 macros mentioned above.
4605
4606 2002-06-15 Andrew Cagney <ac131313@redhat.com>
4607
4608 * command.h (add_setshow_auto_boolean_cmd): Replace
4609 add_set_auto_boolean_cmd.
4610 * cli/cli-decode.c (add_setshow_auto_boolean_cmd): Replace
4611 add_set_auto_boolean_cmd.
4612 * cli/cli-decode.h (add_set_auto_boolean_cmd): Delete declaration.
4613 * mips-tdep.c (_initialize_mips_tdep): Update ``set mips
4614 mask-address'' command.
4615 (show_mask_address): Add cmd parameter.
4616 * remote.c (add_packet_config_cmd): Update. Change type of
4617 set_func and show_func to cmd_sfunc_ftype.
4618 (_initialize_remote): Update `set remote Z-packet'
4619 (show_remote_protocol_qSymbol_packet_cmd): Add cmd parameter.
4620 (show_remote_protocol_e_packet_cmd): Ditto.
4621 (show_remote_protocol_E_packet_cmd): Ditto.
4622 (show_remote_protocol_P_packet_cmd): Ditto.
4623 (show_remote_protocol_Z_software_bp_packet_cmd): Ditto.
4624 (show_remote_protocol_Z_hardware_bp_packet_cmd): Ditto.
4625 (show_remote_protocol_Z_write_wp_packet_cmd): Ditto.
4626 (show_remote_protocol_Z_read_wp_packet_cmd): Ditto.
4627 (show_remote_protocol_Z_access_wp_packet_cmd): Ditto.
4628 (show_remote_protocol_Z_packet_cmd): Ditto.
4629 (show_remote_protocol_binary_download_cmd): Ditto.
4630 (show_remote_cmd): Pass NULL to all of above.
4631
4632 2002-06-15 Mark Kettenis <kettenis@gnu.org>
4633
4634 * config/i386/tm-i386.h (PUSH_ARGUMENTS, STORE_STRUCT_RETURN,
4635 DEPRECATED_EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE,
4636 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS, PUSH_DUMMY_FRAME,
4637 POP_FRAME): Remove defines.
4638 (i386_push_arguments, i386_store_struct_return,
4639 i386_extract_return_value, i386_store_return_value,
4640 i386_extract_struct_value_address, i386_push_dummy_frame,
4641 i386_pop_frame): Renove prototypes.
4642 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
4643 macros mentioned above.
4644
4645 2002-06-15 Andrew Cagney <ac131313@redhat.com>
4646
4647 * cli/cli-decode.c (add_setshow_boolean_cmd): Replace
4648 add_set_boolean_cmd.
4649 (add_setshow_cmd): New function.
4650 * command.h (add_setshow_boolean_cmd): Replace
4651 add_set_boolean_cmd.
4652 * remote-rdi.c (_initialize_remote_rdi): Update ``set rdiheartbeat''
4653 and ``set rdiromatzero''.
4654 * maint.c (_initialize_maint_cmds): Update commented out code.
4655 * cli/cli-decode.h (add_set_boolean_cmd): Delete declaration.
4656 * target.c (initialize_targets): Update `set
4657 trust-readonly-sections'.
4658 * remote.c (_initialize_remote): Update `set remotebreak'.
4659
4660 2002-06-15 Mark Kettenis <kettenis@gnu.org>
4661
4662 * config/i386/tm-i386.h (FUNCTION_START_OFFSET, INNER_THAN,
4663 BREAKPOINT, DECR_PC_AFTER_BREAK): Removed.
4664 * i386-tdep.c (i386_skip_prologue): Adjust function signature to
4665 fit into multi-arch framework.
4666 (i386_breakpoint_from_pc): New function.
4667 (i386_gdbarch_init): Adjust for removal of the macros mentioned
4668 above.
4669
4670 * config/i386/tm-i386.h (FRAMELESS_FUNCTION_INVOCATION,
4671 FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS,
4672 FRAME_ARGS_SKIP, FRAME_INIT_SAVED_REGS): Remove defines.
4673 (i386_frameless_function_invocation, i386_frame_num_args,
4674 i386_frame_init_saved_regs): Remove prototypes.
4675 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
4676 macros mentioned above.
4677
4678 2002-06-15 Andrew Cagney <ac131313@redhat.com>
4679
4680 * cli/cli-decode.c (set_cmd_cfunc): Update.
4681 (set_cmd_sfunc): Update.
4682 * command.h (cmd_cfunc_ftype, cmd_sfunc_ftype): Declare.
4683 (set_cmd_sfunc, set_cmd_cfunc): Update.
4684 * cli/cli-decode.h: Update.
4685
4686 2002-06-15 Mark Kettenis <kettenis@gnu.org>
4687
4688 * i386-sol2-tdep.c (i386_sol2_osabi_sniffer): New function.
4689 (_initialize_i386_sol2_tdep): Register i386_sol2_osabi_sniffer.
4690
4691 2002-06-15 Andrew Cagney <ac131313@redhat.com>
4692
4693 * defs.h (auto_boolean): Declare enum.
4694 * command.h (cmd_auto_boolean): Delete enum.
4695 * mips-tdep.c (mask_address_var): Update.
4696 (mips_mask_address_p): Update.
4697 (show_mask_address): Update.
4698 * remote.c (struct packet_config): Update.
4699 (update_packet_config): Update.
4700 (show_packet_config_cmd): Update.
4701 (packet_ok): Update.
4702 (add_packet_config_cmd): Update.
4703 (_initialize_remote):
4704 * command.h: Update.
4705 * cli/cli-setshow.c (parse_auto_binary_operation): Update.
4706 (do_setshow_command): Update.
4707 * cli/cli-decode.c (add_set_auto_boolean_cmd): Update.
4708 * cli/cli-decode.h: Update.
4709
4710 2002-06-15 Mark Kettenis <kettenis@gnu.org>
4711
4712 * config/i386/tm-cygwin.h, config/i386/tm-fbsd.h,
4713 config/i386/tm-go32.h, config/i386/tm-i386gnu.h,
4714 config/i386/tm-i386sol2.h, config/i386/tm-i386v4.h,
4715 config/i386/tm-linux.h, config/i386/tm-nbsd.h,
4716 config/i386/tm-obsd.h (HAVE_I387_REGS): Remove define.
4717 * config/i386/tm-i386.h: Unconditionally define FLOAT_INFO.
4718
4719 * i386-tdep.c (i386_coff_osabi_sniffer): Add "coff-go32" to the
4720 list of DJGPP COFF targets.
4721
4722 * config/i386/tm-i386.h (REGISTER_SIZE): Remove define.
4723 (NUM_GREGS, NUM_FREGS, NUM_SSE_REGS): Remove defines.
4724 (FP_REGNUM, SP_REGNUM, PC_REGNUM, PS_REGNUM): Remove defines.
4725 (FP0_REGNUM): Remove define.
4726 (MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE,
4727 MAX_REGISTER_VIRTUAL_SIZE): Remove define.
4728 (i386_register_virtual_size): Remove protoype.
4729 * i386-tdep.c (i386_register_virtual_size): Removed.
4730 (i386_extract_return_value, i386_store_return_value): Use
4731 FP0_REGNUM instead of NUM_FREGS to determine whether the
4732 floating-point registers are available.
4733 (i386_gdbarch_init): Tweak FIXME about FPU registers.
4734 Adjust for removal of macros mentioned above.
4735
4736 2002-06-15 Mark Kettenis <kettenis@gnu.org>
4737
4738 * i386v4-nat.c: Include "i386-tdep.h". Reformat and tweak various
4739 comments.
4740 (fill_gregset, supply_gregset, supply_fpregset, fill_fpregset):
4741 Remove prototypes.
4742 (supply_gregset, fill_gregset): Remove use of register keyword and
4743 remove declaration for regmap. Use I386_NUM_GREGS instead of
4744 NUM_REGS and NUM_FREGS.
4745 (FPREGSET_FSAVE_OFFSET): Remove.
4746 (supply_fpregset, fill_fpregset): Use FPO_REGNUM instead of
4747 NUM_FREGS to determine whether the floating-point registers are
4748 available.
4749
4750 * i386gnu-nat.c (supply_gregset, gnu_fetch_registers,
4751 gnu_store_registers): Replace usage of NUM_GREGS with
4752 I386_NUM_GREGS.
4753
4754 * i386-linux-nat.c (OLD_CANNOT_FETCH_REGISTER,
4755 OLD_CANNOT_STORE_REGISTER, supply_gregset, fill_gregset): Replace
4756 usage of NUM_GREGS with I386_NUM_GREGS.
4757
4758 * i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
4759
4760 * i386bsd-nat.c: Include "i386-tdep.h".
4761 (supply_gregset, fill_gregset): Replace usage of NUM_GREGS with
4762 I386_NUM_GREGS.
4763
4764 * i386v-nat.c: Remove copnditional inclusion of <asm/debugreg.h>,
4765 and associated comment. They no longer make any sense, since we
4766 don't use this file anymore on Linux.
4767
4768 * config/i386/tm-i386.h (MAX_NUM_REGS): Removed.
4769 * i386-tdep.c (i386_register_offset, i386_register_size): Use
4770 I386_SSE_NUM_REGS instead of MAX_NUM_REGS for the number of
4771 elements in these arrays.
4772 (_initialize_i386_tdep): Use I386_SSE_NUM_REGS instead of
4773 MAX_NUM_REGS.
4774
4775 2002-06-15 Mark Kettenis <kettenis@gnu.org>
4776
4777 * osabi.h (gdb_osabi): Add GDB_OSABI_LYNXOS.
4778 * osabi.c (gdb_osabi_names): Add entry for "LynxOS".
4779
4780 2002-06-14 Andrew Cagney <cagney@redhat.com>
4781
4782 * gdbarch.sh (DEPRECATED_EXTRACT_RETURN_VALUE): Rename
4783 EXTRACT_RETURN_VALUE.
4784 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Rename
4785 EXTRACT_STRUCT_VALUE_ADDRESS.
4786 * gdbarch.h, gdbarch.c: Regenerate.
4787
4788 * values.c (value_being_returned): Handle
4789 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
4790 (EXTRACT_RETURN_VALUE): Define as DEPRECATED_EXTRACT_RETURN_VALUE.
4791
4792 * arm-linux-tdep.c (arm_linux_init_abi): Update.
4793 * arm-tdep.c (arm_gdbarch_init): Update.
4794 * avr-tdep.c (avr_gdbarch_init): Update.
4795 * cris-tdep.c (cris_gdbarch_init): Update.
4796 * d10v-tdep.c (d10v_gdbarch_init): Update.
4797 * ia64-tdep.c (ia64_gdbarch_init): Update.
4798 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
4799 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
4800 * s390-tdep.c (s390_gdbarch_init): Update.
4801 * sh-tdep.c (sh_gdbarch_init): Update.
4802 * s390-tdep.c (s390_gdbarch_init): Update.
4803 * sparc-tdep.c (sparc_gdbarch_init): Update.
4804 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
4805 * v850-tdep.c (v850_gdbarch_init): Update.
4806 * vax-tdep.c (vax_gdbarch_init): Update.
4807 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
4808 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
4809
4810 * config/arc/tm-arc.h: Update.
4811 * config/d30v/tm-d30v.h: Update.
4812 * config/fr30/tm-fr30.h: Update.
4813 * config/h8300/tm-h8300.h: Update.
4814 * config/h8500/tm-h8500.h: Update.
4815 * config/i386/tm-i386.h: Update.
4816 * config/i386/tm-ptx.h: Update.
4817 * config/i386/tm-symmetry.h: Update.
4818 * config/i960/tm-i960.h: Update.
4819 * config/m32r/tm-m32r.h: Update.
4820 * config/m68k/tm-delta68.h: Update.
4821 * config/m68k/tm-linux.h: Update.
4822 * config/m68k/tm-m68k.h: Update.
4823 * config/m88k/tm-m88k.h: Update.
4824 * config/mcore/tm-mcore.h: Update.
4825 * config/mips/tm-mips.h: Update.
4826 * config/mn10200/tm-mn10200.h: Update.
4827 * config/pa/tm-hppa.h: Update.
4828 * config/pa/tm-hppa64.h: Update.
4829 * config/sparc/tm-sp64.h: Update.
4830 * config/sparc/tm-sparc.h: Update.
4831 * config/sparc/tm-sparclet.h: Update.
4832 * config/z8k/tm-z8k.h: Update.
4833
4834 2002-06-14 Andrew Cagney <cagney@redhat.com>
4835
4836 * Makefile.in (i386_linux_tdep_h): Define.
4837 (i386_tdep_h, i387_tdep_h): Define.
4838 (i386-linux-nat.o): Add $(i386_linux_tdep_h),
4839 $(i386_tdep_h) and $(i387_tdep_h).
4840 * i386-linux-nat.c: Include "i386-linux-tdep.h".
4841
4842 2002-06-14 Mark Kettenis <kettenis@gnu.org>
4843
4844 * config/i386/tm-i386.h (START_INFERIOR_TRAPS_EXPECTED): Removed.
4845 Already covered by the default.
4846
4847 * config/i386/tm-i386.h (TARGET_LONG_DOUBLE_FORMAT,
4848 TARGET_LONG_DOUBLE_BIT): Remove. * i386-tdep.c
4849 (i386_gdbarch_init): Initialize long_double_format and long_double
4850 bit.
4851
4852 * config/i386/i386sol2.mt (TDEPFILES): Add i386-sol2-tdep.o and
4853 i386bsd-tdep.o. Remove solib.o, solib-svr4.o and solib-legacy.o.
4854 Move these to ...
4855 * config/i386/i386sol2.mh: ... here.
4856 * config/i386/tm-i386sol2.h (STAB_REG_TO_REGNUM): Remove define.
4857 (sigtramp_saved_pc, I386V4_SIGTRAMP_SAVED_PC): Don't #undef.
4858 (SIGCONTEXT_PC_OFFSET): Remove define.
4859 (IN_SIGTRAMP): Remove define.
4860 * i386-sol2-tdep.c: New file.
4861
4862 * config/i386/i386nw.mt (TM_FILE): Change to tm-i386.h.
4863 * config/i386/tm-i386nw.h: Removed.
4864
4865 * config/i386/tm-fbsd.h (STAB_REG_TO_REGNUM,
4866 USE_STRUCT_CONVENTION): Remove defines.
4867 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
4868 (get_longjmp_target): Remove prototype.
4869 (IN_SIGTRAMP): Remove define.
4870 (i386bsd_in_sigtramp): Remove prototype.
4871 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
4872 function. Update comment accordingly
4873 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
4874 (FRAME_SAVED_PC): Remove define.
4875 (i386bsd_frame_saved_pc): Remove prototype.
4876 * config/i386/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC,
4877 GET_LONGJMP_TARGET): Remove defines.
4878 (get_longjmp_target): Remove prototype.
4879 (IN_SIGTRAMP): Remove define.
4880 (i386bsd_in_sigtramp): Remove prototype.
4881 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
4882 function. Update comment accordingly
4883 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
4884 (FRAME_SAVED_PC): Remove define.
4885 (i386bsd_frame_saved_pc): Remove prototype.
4886 * config/i386/tm-nbsdaout.h (i386nbsd_aout_use_struct_convention):
4887 Remove prototype.
4888 (USE_STRUCT_CONVENTION): Remove prototype.
4889 * i386bsd-nat.c (i386bsd_sigcontext_pc_offset): Remove
4890 declaration.
4891 (_initialize_i386bsd_nat): Revise logic to determine some
4892 constants at compile time when compiling a native GDB. Warn if
4893 things don't match up with what we expect.
4894 * i386bsd-tdep.c (i386bsd_sigtramp_start, i386bsd_sigtramp_end):
4895 Remove variables.
4896 (i386bsd_in_sigtramp): Rename tp i386bsd_pc_in_sigtramp. Rewrite
4897 to use date stored in `struct gdbarch_tdep'.
4898 (i386bsd_sigcontext_offset): Remove varaible.
4899 (i386bsd_sigtramp_saved_pc): Make public. Rewrite to use data
4900 stored in `struct gdbarch_tdep'.
4901 (i386bsd_frame_saved_pc): Make static.
4902 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): New functions.
4903 (i386bsd_sc_pc_offset, i386nbsd_sc_pc_offset,
4904 i386fbsd_sigtramp_start, i386fbsd_sigtramp_end,
4905 i386fbsd4_sc_pc_offset): New variables.
4906 (i386bsd_init_abi, i386nbsd_init_abi, i386nbsdelf_init_abi,
4907 i386fbsdaout_init_abi, i386fbsd_init_abi, i386fbsd4_init_abi): New
4908 functions.
4909 (i386bsd_aout_osabi_sniffer, _initialize_i386bsd_tdep): New
4910 functions.
4911 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Fix type in comment.
4912 Modify the value of i386fbsd_sigtramp_start and
4913 i386fbsd_sigtramp_end instead of i386bsd_sigtramp_start and
4914 i386fbsd_sigtramp_end.
4915 * i386nbsd-tdep.c: (i386nbsd_aout_use_struct_convention): Remove
4916 function.
4917
4918 * config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): Move
4919 define to i386-linux-tdep.h.
4920 (NUM_REGS, MAX_NUM_REGS, REGISTER_BYTES, REGISTER_NAME,
4921 REGISTER_BYTE, REGISTER_RAW_SIZE, STAB_REG_TO_REGNUM): Remove
4922 defines.
4923 (i386_linux_register_name, i386_linux_register_byte,
4924 i386_linux_register_raw_size): Remove prototypes.
4925 (i386_linux_svr4_fetch_link_map_offsets): Remove prototype.
4926 (SVR4_FETCH_LINK_MAP_OFFSETS): Remove define.
4927 (IN_SIGTRAMP, FRAME_CHAIN, FRAME_SAVED_PC, SAVED_PC_AFTER_CALL,
4928 TARGET_WRITE_PC): Remove defines.
4929 (i386_linux_in_sigtramp, i386_linux_frame_chain,
4930 i386_linux_frame_saved_pc, i386_linux_saved_pc_after_call,
4931 i386_linux_write_pc): Remove prototypes.
4932 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
4933 (get_longjmp_target): Remove prototype.
4934 * i386-linux-tdep.h: New file.
4935 * i386-linux-nat.c: Include "i386-linux-tdep.h".
4936 * i386-linux-tdep.c: Include "i386-tdep.h" and
4937 "i386-linux-tdep.h".
4938 (i386_linux_register_name, i386_linux_register_byte,
4939 i386_linux_register_raw_size, i386_linux_in_sigtramp,
4940 i386_linux_write_pc, i386_linux_svr4_fetch_link_map_offsets):
4941 Make static.
4942 (i386_linux_init_abi): New function.
4943 (_initialize_i386_linux_tdep): New function.
4944
4945 * config/i386/tm-i386.h (SAVED_PC_AFTER_CALL): Remove define.
4946 (i386_saved_pc_after_call): Remove prototype.
4947 (MAX_NUM_REGS): Increase to deal with Linux's orig_eax "register".
4948 (REGISTER_NAME, STAB_REG_TO_REGNUM, SDB_REG_TO_REGNUM,
4949 DWARF_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM): Remove defines.
4950 (i386_register_name, i386_stab_reg_to_regnum,
4951 i386_dwarf_reg_to_regnum): Remove prototypes.
4952 (SIZEOF_GREGS, SIZEOF_FPU_REGS, SIZEOF_FPU_CTL_REGS,
4953 SIZEOF_SSE_REGS): Remove defines.
4954 (REGISTER_BYTES): Remove define.
4955 (REGISTER_BYTE, REGISTER_RAW_SIZE): Remove defines.
4956 (i386_register_byte, i386_register_raw_size): Remove prototypes.
4957 (FRAME_CHAIN, FRAME_SAVED_PC): Remove defines.
4958 (i386_frame_chain, i386_frame_saved_pc): Remove prototypes.
4959 * config/i386/tm-i386v4.h (FRAME_CHAIN_VALID): Remove define.
4960 (JB_ELEMENT_SIZE, JB_PC, JB_EBX, JB_ESI, JB_EDI, JB_EBP, JB_ESP,
4961 JB_EDX, GET_LONGJMP_TARGET): Remove defines.
4962 (get_longjmp_target): Remove prototype.
4963 (I386V4_SIGTRAMP_SAVED_PC, IN_SIGTRAMP): Remove defines.
4964 (sigtramp_saved_pc): Remove define.
4965 (i386v4_sigtramp_saved_pc): Remove prototype.
4966 * config/i386/tm-go32.h (FRAME_CHAIN,
4967 FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC): Remove defines.
4968 (i386go32_frame_saved_pc): Remove prototype.
4969 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
4970 (get_longjmp_target): Remove prototype.
4971 * i386-tdep.h: Include "osabi.h".
4972 (enum i386_abi): Removed.
4973 (enum struct_return): New enum.
4974 (struct gdbarch_tdep): Remove abi member, add osabi, jb_pc_offset,
4975 struct_return, sigtramp_saved_pc, sigtramp_start, sigtramp_end and
4976 sc_pc_offset members.
4977 (i386_gdbarch_register_os_abi): Remove prototype.
4978 (I386_NUM_GREGS, I386_NUM_FREGS, I386_NUM_XREGS,
4979 I386_SSE_NUM_REGS): New defines.
4980 (I386_SIZEOF_GREGS, I386_SIZEOF_FREGS, I386_SIZEOF_XREGS,
4981 I386_SSE_SIZEOF_REGS): New defines.
4982 (i386_register_name, i386_register_byte, i386_register_raw_size):
4983 New prototypes.
4984 (i386_elf_init_abi, i386_svr4_init_abi): New prototypes.
4985 (i386bsd_sigtramp_saved_pc): New prototype.
4986 * i386-tdep.c: Don't include "elf-bfd.h".
4987 (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum,
4988 i386_frame_chain, i386_saved_pc_after_call): Make static.
4989 (i386_frame_saved_pc): Rewrite to call architecture dependent
4990 function to deal with signal handlers. Make static.
4991 (i386go32_frame_saved_pc): Removed.
4992 [GET_LONGJMP_TARGET] (JB_PC, JB_ELEMENT_SIZE, get_longjmp_target):
4993 Removed.
4994 (i386_get_longjmp_target): New function.
4995 (default_struct_convention, pcc_struct_convention,
4996 reg_struct_convention, valid_conventions, struct_convention): New
4997 variables.
4998 (i386_use_struct_convention): New function.
4999 (i386v4_sigtramp_saved_pc): Renamed to
5000 i386_svr4_sigtramp_saved_pc. Made static. Moved.
5001 (i386_pc_in_sigtramp): New function.
5002 (i386_abi_names): Removed.
5003 (ABI_TAG_OS_GNU_LINUX, ABI_TAG_OS_GNU_HURD,
5004 ABI_TAG_OS_GNU_SOLARIS, ABI_TAG_OS_FREEBSD, ABI_TAG_OS_NETBSD):
5005 Removed.
5006 (process_note_sections, i386_elf_abi_from_note, i386_elf_abi,
5007 i386_gdbarch_register_os_abi): Removed.
5008 (struct i386_abi_handler): Removed.
5009 (i386_abi_handler_list): Removed.
5010 (i386_svr4_pc_in_sigtramp, i386_go32_pc_in_sigtramp): New
5011 functions.
5012 (i386_elf_init_abi, i386_svr4_init_abi, i386_go32_init_abi,
5013 i386_nw_init_abi): New functions.
5014 (i386_gdbarch_init): Rewritten to use generic OS ABI framework.
5015 Use set_gdbarch_xxx() calls instead of relying on macros for a
5016 number of calls.
5017 (i386_coff_osabi_sniffer, i386_nlm_osabi_sniffer): New functions.
5018 (_initialize_i386_tdep): Add new 'struct-convcention' command.
5019 Register the various architecture variants defined in this file.
5020
5021 2002-06-14 Daniel Jacobowitz <drow@mvista.com>
5022
5023 * gdbtypes.h (TYPE_FLAG_VARARGS): Update comment.
5024 (struct main_type): Remove arg_types member. Update comments for
5025 struct field.
5026 (TYPE_ARG_TYPES): Remove.
5027 (TYPE_FN_FIELD_ARGS): Update.
5028 (smash_to_method_type): Update prototype.
5029
5030 * c-typeprint.c (cp_type_print_method_args): Take method type
5031 instead of argument list. Use new argument layout. Simplify.
5032 (c_type_print_args): Use new argument layout. Simplify.
5033 (c_type_print_base): Update call to cp_type_print_method_args.
5034 * dwarf2read.c (dwarf2_add_member_fn): Remove unneeded type
5035 argument; use die->type instead. Update call to
5036 smash_to_method_type.
5037 (read_structure_scope): Update call to dwarf2_add_member_fn.
5038 * gdbtypes.c (allocate_stub_method): Update comment.
5039 (smash_to_method_type): Take new NARGS and VARARGS arguments.
5040 Use new argument layout.
5041 (check_stub_method): Use new argument layout. Don't count
5042 void as an argument.
5043 (print_arg_types): Update comments. Use new argument layout.
5044 (recursive_dump_type): Don't print arg_types member.
5045 * hpread.c (hpread_read_struct_type): Use new argument layout.
5046 (fixup_class_method_type): Likewise.
5047 (hpread_type_lookup): Likewise.
5048 * stabsread.c (read_type): Update calls to read_args and
5049 smash_to_method_type.
5050 (read_args): Use new argument layout. Simplify.
5051 * valops.c (typecmp): Use new argument layout. Update parameters
5052 and comments. Simplify.
5053 (hand_function_call): Use new argument layout.
5054 (search_struct_method): Update call to typecmp.
5055 (find_overload_match): Use new argument layout.
5056
5057 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
5058
5059 * NEWS: Mention multithreaded debug support for gdbserver.
5060
5061 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
5062
5063 * MAINTAINERS: Mention NEWS.
5064
5065 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
5066
5067 * mips-tdep.c (PROC_SYMBOL): Add warning comment.
5068 (struct mips_objfile_private, compare_pdr_entries): New.
5069 (non_heuristic_proc_desc): Read the ".pdr" section if it
5070 is present.
5071
5072 2002-06-12 Andrew Cagney <ac131313@redhat.com>
5073
5074 * arm-tdep.c (arm_push_arguments): Rewrite using a two-pass loop.
5075 (arm_debug): New static variable.
5076 (_initialize_arm_tdep): Add ``set debug arm'' command.
5077
5078 2002-06-12 Andrew Cagney <ac131313@redhat.com>
5079
5080 * Makefile.in (sim_arm_h): Define.
5081 (arm-tdep.o): Add $(sim_arm_h) and $(gdb_assert_h).
5082 * arm-tdep.c: Include "gdb/sim-arm.h" and "gdb_assert.h".
5083 (arm_register_sim_regno): New function, map an internal REGNUM
5084 onto a simulator register number.
5085 (arm_gdbarch_init): Set register_sim_regno.
5086
5087 2002-06-09 Aldy Hernandez <aldyh@redhat.com>
5088
5089 * MAINTAINERS: Add self.
5090
5091 2002-06-11 Jim Blandy <jimb@redhat.com>
5092
5093 * source.c (source_info): Mention whether the symtab has
5094 information about preprocessor macros.
5095
5096 Call the command `info macro', not `show macro'.
5097 * macrocmd.c (info_macro_command): Renamed from `show_macro_command'.
5098 Fix error message.
5099 (_initialize_macrocmd): Register `info_macro_command' in
5100 `infolist', not `showlist'.
5101
5102 2002-06-11 Daniel Jacobowitz <drow@mvista.com>
5103
5104 * mips-tdep.c (MIPS_FPU_TYPE, FP_REGISTER_DOUBLE, MIPS_EABI)
5105 (MIPS_LAST_FP_ARG_REGNUM, MIPS_LAST_ARG_REGNUM)
5106 (MIPS_DEFAULT_SAVED_REGSIZE, MIPS_REGS_HAVE_HOME_P)
5107 (MIPS_DEFAULT_STACK_ARGSIZE, GDB_TARGET_IS_MIPS64)
5108 (MIPS_DEFAULT_MASK_ADDRESS_P): Remove obsolete definitions. Define
5109 unconditionally.
5110 (set_mipsfpu_single_command, set_mipsfpu_double_command)
5111 (set_mipsfpu_none_command): Remove if (GDB_MULTI_ARCH).
5112 (_initialize_mips_tdep): Remove dead code.
5113 * config/mips/tm-irix5.h (MIPS_LAST_ARG_REGNUM)
5114 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
5115 * config/mips/tm-irix6.h (MIPS_LAST_ARG_REGNUM)
5116 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
5117 * config/mips/tm-mips.h (MIPS_EABI, MIPS_LAST_ARG_REGNUM,
5118 MIPS_LAST_FP_ARG_REGNUM): Remove.
5119
5120 2002-06-11 Michal Ludvig <mludvig@suse.cz>
5121
5122 * dwarf2cfi.c (unwind_tmp_obstack_init): New.
5123 (unwind_tmp_obstack_free, parse_frame_info)
5124 (update_context, cfi_read_fp, cfi_write_fp)
5125 (cfi_frame_chain, cfi_init_extra_frame_info)
5126 (cfi_virtual_frame_pointer): Use the above function.
5127 * dwarf2cfi.c: Reindented (using 'indent dwarf2cfi.c').
5128
5129 2002-06-11 Corinna Vinschen <vinschen@redhat.com>
5130
5131 * v850-tdep.c (v850_type_is_scalar): New function.
5132 (v850_use_struct_convention): Match current gcc implementation
5133 as close as possible.
5134 (v850_push_arguments): Fix stack_offset handling. Don't write
5135 struct_addr into register. This is done by v850_store_struct_return.
5136 (v850_extract_return_value): Care for structs.
5137 (v850_store_return_value): Ditto.
5138 (v850_store_struct_return): Actually write address.
5139
5140 2002-06-11 Michal Ludvig <mludvig@suse.cz>
5141
5142 * x86-64-tdep.c (x86_64_skip_prologue): Fix to work on functions
5143 without debug information too.
5144
5145 2002-06-10 Andrew Cagney <ac131313@redhat.com>
5146
5147 * gdbarch.sh (PRINT_FLOAT_INFO): Add frame and ui_file parameters.
5148 Make multi-arch pure.
5149 * gdbarch.h, gdbarch.c: Re-generate.
5150 * arm-tdep.c (arm_print_float_info): Update.
5151 * arch-utils.h (default_print_float_info): Update.
5152 * arch-utils.c (default_print_float_info): Update.
5153 * infcmd.c (float_info): Update call.
5154
5155 2002-06-10 Andrew Cagney <ac131313@redhat.com>
5156
5157 * Makefile.in (init.c): Move the call to _initialize_gdbtypes to
5158 the front of the initialize list.
5159
5160 2002-06-10 Andrew Cagney <ac131313@redhat.com>
5161
5162 * infrun.c (struct inferior_status): Replace fields
5163 selected_frame_address and selected_level with field
5164 selected_frame_id.
5165 (save_inferior_status): Update. Use get_frame_id.
5166 (struct restore_selected_frame_args): Delete.
5167 (restore_selected_frame): Update. Use frame_find_by_id.
5168 (restore_inferior_status): Update.
5169
5170 * breakpoint.h (struct breakpoint): Change type of
5171 watchpoint_frame to frame_id.
5172 * breakpoint.c (insert_breakpoints): Use frame_find_by_id. Remove
5173 call to get_current_frame.
5174 (do_enable_breakpoint): Use frame_find_by_id. Remove call to
5175 get_current_frame.
5176 (watchpoint_check): Use frame_find_by_id.
5177
5178 * frame.h (record_selected_frame): Delete declaration.
5179 * stack.c (record_selected_frame): Delete function.
5180
5181 * frame.h (struct frame_id): Define.
5182 (get_frame_id): Declare.
5183 (frame_find_by_id): Declare.
5184 * frame.c (frame_find_by_id): New function.
5185 (get_frame_id): New function.
5186
5187 2002-06-10 Andrey Volkov <avolkov@transas.com>
5188
5189 * ser-e7kpc.c: Fix duplicated define and call of
5190 _initialize_ser_e7000pc
5191
5192 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
5193
5194 * signals/signals.c (target_signal_from_host): Fix #ifdef
5195 SIGRTMIN case.
5196 (do_target_signal_to_host): Likewise.
5197
5198 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
5199
5200 * mips-tdep.c (mips_find_abi_section): New function.
5201 (mips_gdbarch_init): Call it.
5202
5203 2002-06-09 Mark Kettenis <kettenis@gnu.org>
5204
5205 * solib-svr4.c (init_fetch_link_map_offsets): Simply return
5206 legacy_fetch_link_map_offsets. Adjust comment to reflect reality
5207 after Andrew's 2002-06-08 gdbarch change.
5208
5209 2002-06-09 Mark Kettenis <kettenis@gnu.org>
5210
5211 * i386-linux-nat.c (suppy_gregset): Don't supply
5212 I386_LINUX_ORIG_EAX_REGNUM if there isn't room for it in GDB's
5213 register cache.
5214 (fill_gregset): Don't fetch it under the same circumstances.
5215
5216 2002-06-09 Andrew Cagney <cagney@redhat.com>
5217
5218 * Makefile.in (callback_h): Define.
5219 (remote_sim_h): Update path to remote-sim.h.
5220 (remote-rdp.o): Add $(callback_h).
5221 (remote-sim.o): Use $(callback_h).
5222 * remote-sim.c: Include "gdb/callback.h" and "gdb/remote-sim.h".
5223 * remote-rdp.c: Include "gdb/callback.h".
5224
5225 2002-06-09 Mark Kettenis <kettenis@gnu.org>
5226
5227 * osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
5228 * osabi.c (gdb_osabi_names): Add "DJGPP" and "NetWare".
5229
5230 2002-06-08 Andrew Cagney <ac131313@redhat.com>
5231
5232 * sparcl-tdep.c: Use __CYGWIN__ instead of __CYGWIN32__.
5233 * rdi-share/serpardr.c: Ditto.
5234 * rdi-share/unixcomm.c: Ditto.
5235 * rdi-share/serdrv.c: Ditto.
5236 * rdi-share/hostchan.h: Ditto.
5237 * rdi-share/hostchan.c: Ditto.
5238 * rdi-share/host.h: Ditto.
5239 * rdi-share/devsw.c: Ditto.
5240
5241 * objfiles.h: Change type of obj_private to void pointer.
5242 * pa64solib.c: Update copyright. Don't include "assert.h", use
5243 strcmp instead of STREQ, use LONGEST, do not use PTR
5244 * somsolib.c: Ditto.
5245
5246 * config/djgpp/fnchange.lst: Fix problems with bfd/elf32-i386.c,
5247 bfd/elf32-i386qnx.c, bfd/elf32-sh.c, bfd/elf32-sh64-nbsd.c,
5248 bfd/elf64-sh64-nbsd.c bfd/elf64-sh64.c.
5249
5250 2002-06-08 Andrew Cagney <ac131313@redhat.com>
5251
5252 * frame.c (GET_SAVED_REGISTER): Delete macro definition.
5253 (default_get_saved_register): Delete function.
5254 * gdbarch.sh (GET_SAVED_REGISTER): Set default to
5255 generic_unwind_get_saved_register.
5256 * gdbarch.h, gdbarch.c: Re-generate.
5257
5258 2002-06-08 Andrew Cagney <ac131313@redhat.com>
5259
5260 * gdbarch.sh (FRAME_CHAIN_VALID): Set default to
5261 generic_func_frame_chain_valid.
5262 * gdbarch.h, gdbarch.c: Re-generate.
5263 * blockframe.c (generic_func_frame_chain_valid): Only check
5264 PC_IN_CALL_DUMMY when generic dummy frames. Don't worry about
5265 passing FP to PC_IN_CALL_DUMMY.
5266 Fix PR gdb/360.
5267
5268 2002-06-08 Andrew Cagney <ac131313@redhat.com>
5269
5270 * gdbarch.sh (struct gdbarch_data): Add field init_p.
5271 (register_gdbarch_data): Initialize init_p.
5272 (gdbarch_data): Initialize data pointer using the init function.
5273 (init_gdbarch_data): Delete function.
5274 (gdbarch_update_p): Update.
5275 (initialize_non_multiarch): Update.
5276 (struct gdbarch): Add field initialized_p.
5277 * gdbarch.h, gdbarch.c: Re-generate.
5278
5279 2002-06-07 Michal Ludvig <mludvig@suse.cz>
5280
5281 * x86-64-linux-nat.c (x86_64_fxsave_offset): New.
5282 (supply_fpregset, fill_fpregset): Don't call i387_*_fxsave,
5283 better do the things actually here.
5284 * x86-64-tdep.c (x86_64_register_name2nr): New.
5285 (x86_64_register_name): Renamed to x86_64_register_nr2name.
5286 (x86_64_gdbarch_init): Respect the above change.
5287 * x86-64-tdep.h (x86_64_register_name2nr)
5288 (x86_64_register_nr2name): Add prototypes.
5289 * config/i386/x86-64linux.mt (TDEPFILES): Remove i387-tdep.o.
5290
5291 2002-06-06 Michael Snyder <msnyder@redhat.com>
5292
5293 * d10v-tdep.c (d10v_push_arguments): Handle struct_return.
5294 Delete extra braces and re-indent.
5295 (d10v_store_return_value): Char return values
5296 must be shifted over by one byte in R0.
5297 (d10v_extract_return_value): Delete extra braces, re-indent.
5298
5299 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
5300
5301 * d10v-tdep.c (d10v_read_sp, d10v_read_fp): Add prototype.
5302 (d10v_register_virtual_type): Make $fp and $sp be pointer to data.
5303 (d10v_integer_to_address): Rewrite.
5304 (d10v_frame_init_saved_regs): When reading fp and sp registers use
5305 the d10v specific functions which take care of converting to the
5306 correct space.
5307
5308 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
5309
5310 * config/djgpp/fnchange.lst: Add testsuite files altivec-abi.c,
5311 altivec-abi.exp, altivec-regs.c, altivec-regs.exp.
5312
5313 2002-06-02 Andrew Cagney <ac131313@redhat.com>
5314
5315 * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm
5316 includes.
5317 * config/tm-linux.h: Ditto.
5318 * config/alpha/tm-alphalinux.h: Ditto.
5319 * config/arm/nm-linux.h, config/arm/tm-linux.h: Ditto.
5320 * config/arm/xm-nbsd.h, config/i386/nm-gnu.h: Ditto.
5321 * config/i386/nm-i386lynx.h, config/i386/nm-i386sol2.h: Ditto.
5322 * config/i386/nm-i386v4.h, config/i386/nm-i386v42mp.h: Ditto.
5323 * config/i386/nm-linux.h, config/i386/nm-m3.h: Ditto.
5324 * config/i386/nm-ptx4.h, config/i386/nm-x86-64.h: Ditto.
5325 * config/i386/tm-i386gnu.h, config/i386/tm-i386lynx.h: Ditto.
5326 * config/i386/tm-i386m3.h, config/i386/tm-i386sco5.h: Ditto.
5327 * config/i386/tm-i386v4.h, config/i386/tm-linux.h: Ditto.
5328 * config/i386/tm-ptx4.h, config/i386/tm-vxworks.h: Ditto.
5329 * config/i386/xm-i386v4.h, config/i386/xm-nbsd.h: Ditto.
5330 * config/i386/xm-ptx.h, config/i386/xm-ptx4.h: Ditto.
5331 * config/i960/tm-vx960.h, config/ia64/nm-aix.h: Ditto.
5332 * config/ia64/nm-linux.h, config/ia64/tm-aix.h: Ditto.
5333 * config/ia64/tm-linux.h, config/ia64/xm-aix.h: Ditto.
5334 * config/m68k/nm-linux.h, config/m68k/nm-m68klynx.h: Ditto.
5335 * config/m68k/nm-sysv4.h, config/m68k/tm-linux.h: Ditto.
5336 * config/m68k/tm-m68klynx.h, config/m68k/tm-m68kv4.h: Ditto.
5337 * config/m68k/tm-sun2os4.h, config/m68k/tm-sun3os4.h: Ditto.
5338 * config/m68k/tm-vx68.h, config/m68k/xm-m68kv4.h: Ditto.
5339 * config/m68k/xm-nbsd.h, config/m88k/nm-delta88v4.h: Ditto.
5340 * config/m88k/tm-delta88v4.h, config/m88k/xm-delta88v4.h: Ditto.
5341 * config/mips/nm-irix5.h, config/mips/nm-linux.h: Ditto.
5342 * config/mips/tm-linux.h, config/mips/tm-mips64.h: Ditto.
5343 * config/mips/tm-mipsm3.h, config/mips/tm-mipsv4.h: Ditto.
5344 * config/mips/tm-vxmips.h, config/mips/xm-irix5.h: Ditto.
5345 * config/mips/xm-mipsv4.h, config/ns32k/xm-nbsd.h: Ditto.
5346 * config/pa/nm-hppao.h, config/powerpc/nm-linux.h: Ditto.
5347 * config/powerpc/tm-linux.h, config/powerpc/tm-vxworks.h: Ditto.
5348 * config/powerpc/xm-aix.h, config/rs6000/nm-rs6000ly.h: Ditto.
5349 * config/rs6000/tm-rs6000ly.h, config/rs6000/xm-aix4.h: Ditto.
5350 * config/sh/tm-linux.h, config/sparc/nm-linux.h: Ditto.
5351 * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4sol2.h: Ditto.
5352 * config/sparc/tm-linux.h, config/sparc/tm-sp64linux.h: Ditto.
5353 * config/sparc/tm-sp64sim.h, config/sparc/tm-sparclynx.h: Ditto.
5354 * config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h: Ditto.
5355 * config/sparc/tm-vxsparc.h, config/sparc/xm-sun4sol2.h: Ditto.
5356
5357 2002-05-04 Aidan Skinner <aidan@velvet.net>
5358
5359 * ada-exp.tab.c: New file
5360 * ada-exp.y: New file
5361 * ada-lang.c: New file
5362 * ada-lang.h: New file
5363 * ada-lex.c: New file
5364 * ada-lex.l: New file
5365 * ada-tasks.c: New file
5366 * ada-typeprint.c: New file
5367 * ada-valprint.c: New file
5368
5369 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
5370
5371 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Don't set
5372 use_struct_convention to ppc_sysv_abi_broken_use_struct_convention.
5373
5374 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
5375
5376 * config/rs6000/aix4.mt (TDEPFILES): Use ppc-sysv-tdep.o
5377 insetead of ppc-linux-tdep.o.
5378 * config/rs6000/rs6000.mt (TDEPFILES): Likewise.
5379 * config/rs6000/rs6000lynx.mt (TDEPFILES): Likewise.
5380
5381 2002-06-02 Andrew Cagney <ac131313@redhat.com>
5382
5383 2002-05-07 Christian Groessler <chris@groessler.org>
5384 * z8k-tdep.c (z8k_print_register_hook): Fix display of 32 and 64
5385 bit register contents for little endian hosts.
5386
5387 2002-06-01 Andrew Cagney <ac131313@redhat.com>
5388
5389 * MAINTAINERS: Mention that any `HP/UX reader' can be changed by
5390 any maintainer.
5391
5392 2002-06-01 Andrew Cagney <ac131313@redhat.com>
5393
5394 * gdbarch.h: Regenerate.
5395
5396 2002-06-01 Andrew Cagney <ac131313@redhat.com>
5397
5398 * MAINTAINERS: Add everyone to write-after-approval list.
5399
5400 2002-06-01 Andrew Cagney <ac131313@redhat.com>
5401
5402 * stack.c (frame_info): Use frame_register_unwind instead of
5403 saved_regs. Mention when the SP is on the stack or in a register.
5404
5405 * frame.h (frame_register_unwind_ftype): Define. Document.
5406 (struct frame_info): Add field register_unwind and
5407 register_unwind_cache.
5408 (frame_register_unwind): Declare.
5409 (generic_unwind_get_saved_register): Declare.
5410
5411 * frame.c (frame_register_unwind): New function.
5412 (generic_unwind_get_saved_register): New function.
5413
5414 * blockframe.c (generic_call_dummy_register_unwind): New function.
5415 (frame_saved_regs_register_unwind): New function.
5416 (set_unwind_by_pc): New function.
5417 (create_new_frame): New function.
5418 (get_prev_frame): New function.
5419
5420 2002-05-30 Andrew Cagney <ac131313@redhat.com>
5421
5422 * a29k-share/: Delete directory.
5423 * remote-vx29k.c: Delete file.
5424
5425 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
5426
5427 * config/djgpp/fnchange.lst: Add ns32knbsd-nat.c, ns32knbsd-tdep.c,
5428 ppcnbsd-nat.c, ppcnbsd-tdep.c, sparcnbsd-nat.c, and sparcnbsd-tdep.c.
5429
5430 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
5431
5432 * Makefile.in (ALLDEPFILES): Add sparc64nbsd-nat.c,
5433 sparcnbsd-nat.c, and sparcnbsd-tdep.c.
5434 (sparc64nbsd-nat.o)
5435 (sparcnbsd-nat.o)
5436 (sparcnbsd-tdep.o): New dependency lists.
5437 * NEWS: Note new UltraSPARC NetBSD native configuration.
5438 * configure.host (sparc64-*-netbsd*): New host.
5439 * configure.tgt (sparc-*-netbsdelf*)
5440 (sparc-*-netbsd*): Set gdb_target to nbsd.
5441 (sparc64-*-netbsd*): New target.
5442 * sparc64nbsd-nat.c: New file.
5443 * sparcnbsd-nat.c: New file.
5444 * sparcnbsd-tdep.c: New file.
5445 * sparcnbsd-tdep.h: New file.
5446 * config/sparc/nbsd.mt: New file.
5447 * config/sparc/nbsd64.mh: New file.
5448 * config/sparc/nbsd64.mt: New file.
5449 * config/sparc/nbsdaout.mh (NATDEPFILES): Remove corelow.o,
5450 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
5451 (HOST_IPC): Remove.
5452 * config/sparc/nbsdaout.mt: Remove.
5453 * config/sparc/nbsdelf.mh (NATDEPFILES): Remove corelow.o,
5454 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
5455 (HOST_IPC): Remove.
5456 * config/sparc/nbsdelf.mt: Remove.
5457 * config/sparc/nm-nbsd.h: Update copyright years. Remove all
5458 sparc-nat.c compatiblity defines.
5459 * config/sparc/tm-nbsd.h: Update copyright years. Include solib.h.
5460 (GDB_MULTI_ARCH): Set to GDB_MULTI_ARCH_PARTIAL.
5461 * config/sparc/tm-nbsd64.h: New file.
5462 * config/sparc/tm-nbsdaout.h: Remove.
5463 * config/sparc/xm-nbsd.h: Remove.
5464
5465 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
5466
5467 * Makefile.in (sparc-tdep.o): Add osabi.h to dependency list.
5468 * sparc-tdep.c: Include osabi.h.
5469 (gdbarch_tdep): Add osabi member.
5470 (_initialize_sparc_tdep): Use gdbarch_register.
5471 (sparc_gdbarch_init): Use generic OS ABI framework.
5472 (sparc_dump_tdep): New function.
5473
5474 2002-05-30 Kevin Buettner <kevinb@redhat.com>
5475
5476 * corefile.c (do_captured_read_memory_integer): Return non-zero
5477 result.
5478 (safe_read_memory_integer): Copy result of memory read when
5479 status is non-zero. Also, add comments.
5480
5481 2002-05-20 Jason Thorpe <thorpej@wasabisystems.com>
5482
5483 * Makefile.in (ppc_tdep_h): Define.
5484 (ppc-linux-nat.o)
5485 (ppc-linux-tdep.o)
5486 (rs6000-tdep.o): Use $(ppc_tdep_h).
5487 (ppc-sysv-tdep.o)
5488 (ppcnbsd-nat.o)
5489 (ppcnbsd-tdep.o): New dependency lists.
5490 * ppc-tdep.h: Use generic OS ABI framework.
5491 * ppc-linux-tdep.c (_initialize_ppc_linux_tdep)
5492 (ppc_linux_init_abi): New functions.
5493 (ppc_sysv_abi_broken_use_struct_convention)
5494 (ppc_sysv_abi_use_struct_convention)
5495 (ppc_sysv_abi_push_arguments): Move to...
5496 * ppc-sysv-tdep.c: ...here.
5497 * ppcnbsd-nat.c: Don't include gdbcore.h and regcache.h.
5498 * rs6000-tdep.c (process_note_abi_tag_sections)
5499 (get_elfosabi): Remove.
5500 (rs6000_gdbarch_init): Use generic OS ABI framework.
5501 (rs6000_dump_tdep): New function.
5502 (_initialize_rs6000_tdep): Use gdbarch_register.
5503 * config/powerpc/linux.mt (TDEPFILES): Add ppc-sysv-tdep.o.
5504 * config/powerpc/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
5505 * config/powerpc/aix.mt (TDEPFILES): Use ppc-sysv-tdep.o instead
5506 of ppc-linux-tdep.o.
5507 * config/powerpc/nbsd.mt (TDEPFILES): Likewise.
5508 * config/powerpc/ppc-eabi.mt (TDEPFILES): Likewise.
5509 * config/powerpc/ppc-sim.mt (TDEPFILES): Likewise.
5510 * config/powerpc/ppcle-eabi.mt (TDEPFILES): Likewise.
5511 * config/powerpc/ppcle-sim.mt (TDEPFILES): Likewise.
5512 * config/powerpc/vxworks.mt (TDEPFILES): Likewise.
5513
5514 2002-05-29 Jim Blandy <jimb@redhat.com>
5515
5516 * macroscope.c (default_macro_scope): Put `void' in empty argument
5517 list.
5518
5519 2002-05-29 Andrew Cagney <ac131313@redhat.com>
5520
5521 * Makefile.in (arch-utils.o): Add $(sim_regno_h).
5522 * arch-utils.c: Include "sim-regno.h".
5523 * gdbarch.sh: Don't include "sim-regno.h".
5524 * gdbarch.h, gdbarch.c: Regenerate.
5525 * sim-regno.h (legacy_register_sim_regno): Move declaration from
5526 here.
5527 * arch-utils.h (legacy_register_sim_regno): To here.
5528 * remote-sim.c (legacy_register_sim_regno): Move function from
5529 here.
5530 * arch-utils.c (legacy_register_sim_regno): To here.
5531
5532 2002-05-28 Andrew Cagney <ac131313@redhat.com>
5533
5534 * sim-regno.h: New file.
5535 * Makefile.in (sim_regno_h): Define.
5536 (d10v-tdep.o, remote-sim.o): Add dependency on $(sim_regno_h).
5537 * remote-sim.c: Include "sim-regno.h" and "gdb_assert.h".
5538 (legacy_register_sim_regno): New function.
5539 (one2one_register_sim_regno): New function.
5540 (gdbsim_fetch_register): Rewrite.
5541 (gdbsim_store_register): Only store a register when
5542 REGISTER_SIM_REGNO is valid.
5543 * d10v-tdep.c: Include "sim-regno.h".
5544 (d10v_ts2_register_sim_regno): Add legacy_regiter_sim_regno check.
5545 (d10v_ts3_register_sim_regno): Ditto.
5546 * gdbarch.sh: Include "sim-regno.h".
5547 (REGISTER_SIM_REGNO): Set default to legacy_register_sim_regno.
5548 * gdbarch.h, gdbarch.c: Regenerate.
5549 * arch-utils.h (default_register_sim_regno): Delete declaration.
5550 * arch-utils.c (default_register_sim_regno): Delete function.
5551
5552 2002-05-28 Jason Thorpe <thorpej@wasabisystems.com>
5553
5554 * ppcnbsd-nat.c: Rewrite.
5555 * ppcnbsd-tdep.c: New file.
5556 * ppcnbsd-tdep.h: New file.
5557 * config/powerpc/nbsd.mh (NATDEPFILES): Remove corelow.o,
5558 solib.o, and solib-svr4.o.
5559 * config/powerpc/nbsd.mt (TDEPFILES): Add ppcnbsd-tdep.o,
5560 nbsd-tdep.o, and corelow.o.
5561
5562 2002-05-28 Andrew Cagney <ac131313@redhat.com>
5563
5564 * MAINTAINERS (--enable-gdb-build-warnings): Rewrite script to use
5565 `tr' and `sed'. Mention that `broken' targets are not expected to
5566 build.
5567
5568 2002-05-27 Michal Ludvig <mludvig@suse.cz>
5569
5570 * x86-64-tdep.c (x86_64_skip_prologue): Remove obsolete note.
5571 Let PC point right after the prologue before looking up symbols.
5572
5573 2002-05-27 Martin M. Hunt <hunt@redhat.com>
5574
5575 * i386-tdep.c (i386_register_virtual_type): Return
5576 builtin_type_vec128i for SSE registers.
5577
5578 * gdbtypes.h (builtin_type_vec128i): Declare.
5579
5580 * gdbtypes.c (build_builtin_type_vec128i): New function.
5581 (builtin_type_v2_double, builtin_type_v4_int64): New types.
5582 (builtin_type_vec128i): New type for SSE2 128-bit registers.
5583 (build_gdbtypes): Initialize new builtin vector types.
5584 (_initialize_gdbtypes): Register new vector types with gdbarch.
5585
5586 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5587
5588 * MAINTAINERS: ns32k is not longer an obsolete candidate,
5589 since it has been multi-arch'd.
5590 * NEWS: Note that ns32k-*-* is now partial multi-arch.
5591 Move Alpha and VAX multi-arch news entries to same section
5592 as other multi-arch news.
5593
5594 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5595
5596 * ns32k-tdep.c: include gdbtypes.h, inferior.h, regcache.h,
5597 target.s, arch-utils.h, ns32k-tdep.h. Make many functions
5598 static. Rename some register numbers to put them in ns32k-tdep
5599 private namespace.
5600 (ns32k_get_saved_register, ns32k_gdbarch_init_32082,
5601 ns32k_gdbarch_init_32382, ns32k_gdbarch_init, ns32k_dump_tdep): New
5602 functions.
5603 (_initialize_ns32k_tdep): Use gdbarch_register.
5604 * ns32k-tdep.h: New file.
5605 * ns32knbsd-tdep.c: New file.
5606 * config/ns32k/nbsdaout.mt (TDEPFILES): Add ns32knbsd-tdep.o.
5607 * config/ns32k/tm-nbsd.h: Include "ns32k/tm-ns32k.h".
5608 (IN_SOLIB_CALL_TRAMPOLINE, REGISTER_NAME, NUM_REGS,
5609 REGISTER_BYTES, REGISTER_BYTE): Remove.
5610 * config/ns32k/tm-ns32k.h: New file.
5611 * config/ns32k/tm-umax.h: Remove.
5612
5613 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5614
5615 * ns32k-tdep.c (ns32k_saved_pc_after_call,
5616 ns32k_store_struct_return, ns32k_extract_return_value,
5617 ns32k_store_return_value, ns32k_extract_struct_value_address): New
5618 functions.
5619 * config/ns32k/tm-umax.h (SAVED_PC_AFTER_CALL): Define as
5620 ns32k_saved_pc_after_call.
5621 (STORE_STRUCT_RETURN): Define as ns32k_store_struct_return.
5622 (EXTRACT_RETURN_VALUE): Define as ns32k_extract_return_value.
5623 (STORE_RETURN_VALUE): Define as ns32k_store_return_value.
5624 (EXTRACT_STRUCT_VALUE_ADDRESS): Define as
5625 ns32k_extract_struct_value_address.
5626
5627 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5628
5629 * ns32k-tdep.c (ns32k_call_dummy_words, sizeof_ns32k_call_dummy_words,
5630 ns32k_fix_call_dummy): New.
5631 * config/ns32k/tm-umax.h (CALL_DUMMY_WORDS): Define as
5632 ns32k_call_dummy_words.
5633 (SIZEOF_CALL_DUMMY_WORDS): Define as sizeof_ns32k_call_dummy_words.
5634 (CALL_DUMMY, CALL_DUMMY_LENGTH, CALL_DUMMY_ADDR,
5635 CALL_DUMMY_NARGS): Remove.
5636 (FIX_CALL_DUMMY): Define as ns32k_fix_call_dummy.
5637
5638 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5639
5640 * ns32k-tdep.c (ns32k_breakpoint_from_pc, ns32k_frame_chain,
5641 ns32k_frame_saved_pc, ns32k_frame_args_address,
5642 ns32k_frame_locals_address, ns32k_frame_init_saved_regs,
5643 ns32k_push_dummy_frame, ns32k_pop_frame): New functions.
5644 * config/ns32k/tm-nbsd.h (FRAME_SAVED_PC): Remove.
5645 * config/ns32k/tm-umax.h (INNER_THAN): Define as core_addr_lessthan.
5646 (BREAKPOINT_FROM_PC): Define as ns32k_breakpoint_from_pc.
5647 (BREAKPOINT): Remove..
5648 (FRAME_CHAIN): Define as ns32k_frame_chain.
5649 (FRAME_SAVED_PC): Define as ns32k_frame_saved_pc.
5650 (FRAME_ARGS_ADDRESS): Define as ns32k_frame_args_address.
5651 (FRAME_LOCALS_ADDRESS): Define as ns32k_frame_locals_address.
5652 (FRAME_FIND_SAVED_REGS): Remove.
5653 (FRAME_INIT_SAVED_REGS): Define as ns32k_frame_init_saved_regs.
5654 (PUSH_DUMMY_FRAME): Define as ns32k_push_dummy_frame.
5655 (POP_FRAME): Define as ns32k_pop_frame.
5656
5657 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5658
5659 * ns32k-tdep.c (ns32k_register_byte_32082,
5660 ns32k_register_byte_32382, ns32k_register_raw_size,
5661 ns32k_register_virtual_size, ns32k_register_virtual_type): New
5662 functions.
5663 * config/ns32k/tm-nbsd.h (REGISTER_BYTE): Define as
5664 ns32k_register_byte_32382.
5665 * config/ns32k/tm-umax.h: Update copyright years.
5666 (REGISTER_BYTE): Define as ns32k_register_byte_32082.
5667 (REGISTER_RAW_SIZE): Define as ns32k_register_raw_size.
5668 (REGISTER_VIRTUAL_SIZE): Define as ns32k_register_virtual_size.
5669 (REGISTER_VIRTUAL_TYPE): Define as ns32k_register_virtual_type.
5670 (ns32k_get_enter_addr): Fix prototype.
5671
5672 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5673
5674 * ns32k-tdep.c: Update copyright years.
5675 (ns32k_register_name_32082): New function.
5676 (ns32k_register_name_32382): Ditto.
5677 * config/ns32k/tm-nbsd.h (REGISTER_NAMES): Remove.
5678 (REGISTER_NAME): Define as ns32k_register_name_32382.
5679 * config/ns32k/tm-umax.h (REGISTER_NAMES): Remove.
5680 (REGISTER_NAME): Define as ns32k_register_name_32082.
5681
5682 2002-05-24 Jim Blandy <jimb@redhat.com>
5683
5684 * dwarf2read.c (free_line_header): Use xfree, not free.
5685
5686 2002-05-24 Jason Thorpe <thorpej@wasabisystems.com>
5687
5688 * config/djgpp/fnchange.lst: Add alphabsd-nat.c,
5689 alphabsd-tdep.c, mipsnbsd-nat.c, and mipsnbsd-tdep.c
5690
5691 2002-05-23 Andrew Cagney <ac131313@redhat.com>
5692
5693 * PROBLEMS: Mention s390 and FreeBSD 4.4 build problems.
5694
5695 2002-05-23 Andrew Cagney <ac131313@redhat.com>
5696
5697 From Ross Alexander at NEC Europe:
5698 * config/pa/hpux11w.mh (NATDEPFILES): Add solib.o.
5699
5700 2002-05-23 Michael Snyder <msnyder@redhat.com>
5701
5702 * cli/cli-dump.c (restore_command): Use parse_and_eval_long
5703 for input, rather than parse_and_eval_address.
5704
5705 2002-05-23 Andrew Cagney <ac131313@redhat.com>
5706
5707 * d10v-tdep.c: Include "gdb/sim-d10v.h" instead of "sim-d10v.h".
5708 * Makefile.in (sim_d10v_h): Update definition.
5709
5710 2002-05-24 Andrew Cagney <cagney@redhat.com>
5711
5712 * d10v-tdep.c (d10v_gdbarch_init): Revert old code included in
5713 change `2002-05-22 Michael Snyder' below.
5714 (d10v_push_arguments): Ditto.
5715 (d10v_extract_return_value): Ditto.
5716
5717 2002-05-23 Jim Blandy <jimb@redhat.com>
5718
5719 * macrotab.c (check_for_redefinition): Don't complain if the new
5720 definition is the same as the previous one. Take more arguments
5721 to allow the comparison.
5722 (macro_define_object, macro_define_function): Pass more arguments
5723 to check_for_redefinition.
5724
5725 2002-05-22 Michael Snyder <msnyder@redhat.com>
5726
5727 * d10v-tdep.c: Change a few macros to enums for ease of debugging.
5728 (d10v_frame_chain_valid): Add PC_IN_CALL_DUMMY clause.
5729 (d10v_frame_saved_pc): Add PC_IN_CALL_DUMMY clause.
5730 (d10v_frame_chain): Bail immediately if PC_IN_CALL_DUMMY.
5731 Don't bail if return_pc is PC_IN_CALL_DUMMY.
5732 Add a temp variable to save a call (and a memory read).
5733 (d10v_init_extra_frame_info): Get fi->pc from callee's return_pc
5734 if possible (so that PC_IN_CALL_DUMMY will work).
5735
5736 2002-05-22 Corinna Vinschen <vinschen@redhat.com>
5737
5738 * MAINTAINERS: Remove status `OBSOLETE' from v850.
5739
5740 2002-05-22 Michal Ludvig <mludvig@suse.cz>
5741
5742 * dwarf2cfi.c (frame_state_for): Added safety check for a valid
5743 fde->cie_ptr.
5744 (dwarf2_build_frame_info): Corrected handling of eh_frame.
5745 (dwarf2_build_frame_info): Add offset to fde->initial_location
5746 so that frames of shared libraries are mapped correctly.
5747 (execute_stack_op): Change type of 'result' from ULONGEST to
5748 CORE_ADDR.
5749
5750 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
5751
5752 * config/alpha/tm-nbsd.h: Include solib.h.
5753
5754 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
5755
5756 * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Don't make
5757 assumptions about the host's byte order.
5758
5759 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
5760
5761 * Makefile.in (alphanbsd-tdep.o, shnbsd-tdep.o): Add solib-svr4.h
5762 to dependency list.
5763 * alphanbsd-tdep.c: Include solib-svr4.h.
5764 * shnbsd-tdep.c: Ditto.
5765
5766 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
5767
5768 * Makefile.in (armnbsd-tdep.o): Add solib-svr4.h and
5769 nbsd-tdep.h to dependency list.
5770 * configure.host (arm*-*-netbsdelf*, arm*-*-netbsd*,
5771 i[3456]86-*-netbsdaout*, i[3456]86-*-netbsd*, m68*-*-netbsd*,
5772 ns32k-*-netbsd*, sparc-*-netbsdaout*, sparc-*-netbsd*): Use
5773 nbsdaout.mh and nbsdelf.mh consistently.
5774 * configure.tgt (i[3456]86-*-netbsd*, m68*-*-netbsd*,
5775 ns32k-*-netbsd*, sparc-*-netbsdelf*, sparc-*-netbsd*) Use
5776 nbsdaout.mt and nbsdelf.mh consistently.
5777 * armnbsd-tdep.c: Include nbsd-tdep.h and solib-svr4.h.
5778 (arm_netbsd_elf_init_abi): Use set_solib_svr4_fetch_link_map_offsets
5779 to set nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
5780 * config/nm-nbsd.h: Garbage-collect SVR4_SHARED_LIBS. Move
5781 a.out shared library stuff from here...
5782 * config/nm-nbsdaout.h: ...to here.
5783 * config/tm-nbsd.h: Remove.
5784 * config/alpha/nm-nbsd.h (SVR4_SHARED_LIBS): Remove.
5785 * config/arm/nbsd.mh: Remove.
5786 * config/arm/nbsd.mt (TDEPFILES): Remove solib-sunos.o, add
5787 nbsd-tdep.o.
5788 * config/arm/nbsdaout.mh: New file.
5789 * config/arm/nbsdelf.mh: New file.
5790 * config/arm/nm-nbsdaout.h: New file.
5791 * config/i386/nbsd.mh: Remove.
5792 * config/i386/nbsd.mt: Remove.
5793 * config/i386/nbsdaout.mh: New file.
5794 * config/i386/nbsdaout.mt: New file.
5795 * config/i386/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
5796 * config/i386/nbsdelf.mt (TM_FILE): Use tm-nbsd.h.
5797 * config/i386/nm-nbsd.h (REGISTER_U_ADDR,
5798 i386_register_u_addr): Remove.
5799 * config/i386/nm-nbsdaout.h: New file.
5800 * config/i386/nm-nbsdelf.h: Remove.
5801 * config/i386/tm-nbsd.h: Don't include config/tm-nbsd.h.
5802 (USE_STRUCT_CONVENTION): Remove.
5803 * config/i386/tm-nbsdaout.h: New file.
5804 * config/i386/tm-nbsdelf.h: Remove.
5805 * config/m68k/nbsd.mh: Remove.
5806 * config/m68k/nbsd.mt: Remove.
5807 * config/m68k/nbsdaout.mh: New file.
5808 * config/m68k/nbsdaout.mt: New file.
5809 * config/m68k/nm-nbsd.h: Use config/nm-nbsd.h.
5810 * config/m68k/nm-nbsdaout.h: New file.
5811 * config/m68k/tm-nbsd.h: Don't include config/tm-nbsd.h.
5812 (IN_SOLIB_CALL_TRAMPOLINE): Define.
5813 * config/ns32k/nbsd.mh: Remove.
5814 * config/ns32k/nbsd.mt: Remove.
5815 * config/ns32k/nbsdaout.mh: New file.
5816 * config/ns32k/nbsdaout.mt: New file.
5817 * config/ns32k/nm-nbsd.h: Include config/nm-nbsd.h.
5818 * config/ns32k/nm-nbsdaout.h: New file.
5819 * config/ns32k/tm-nbsd.h: Don't include config/tm-nbsd.h.
5820 (IN_SOLIB_CALL_TRAMPOLINE): Define.
5821 * config/powerpc/nm-nbsd.h: Include config/nm-nbsd.h.
5822 (SVR4_SHARED_LIBS): Remove.
5823 * config/powerpc/tm-nbsd.h: Dont' include config/tm-nbsd.h.
5824 * config/sparc/nbsd.mh: Remove.
5825 * config/sparc/nbsd.mt: Remove.
5826 * config/sparc/nbsdaout.mh: New file.
5827 * config/sparc/nbsdaout.mt: New file.
5828 * config/sparc/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
5829 * config/sparc/nbsdelf.mt: New file.
5830 * config/sparc/nm-nbsdaout.h: New file.
5831 * config/sparc/nm-nbsdelf.h: Remove.
5832 * config/sparc/tm-nbsd.h: Don't include config/tm-nbsd.h.
5833 * config/sparc/tm-nbsdaout.h: New file.
5834
5835 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
5836
5837 * Makefile.in (ALLDEPFILES): Add mipsnbsd-nat.c and
5838 mipsnbsd-tdep.c
5839 (mipsnbsd-nat.o, mipsnbsd-tdep.o): New dependency lists.
5840
5841 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
5842
5843 * Makefile.in (ALLDEPFILES): Add shnbsd-tdep.c and
5844 shnbsd-nat.c.
5845 (shnbsd-tdep.o, shnbsd-nat.o): New dependency lists.
5846
5847 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
5848
5849 * NEWS: Note new MIPS NetBSD native configuration.
5850 * configure.host (mips*-*-netbsd*): New host.
5851 * configure.tgt (mips*-*-netbsd*): New target.
5852 * mipsnbsd-nat.c: New file.
5853 * mipsnbsd-tdep.c: New file.
5854 * mipsnbsd-tdep.h: New file.
5855 * config/mips/nbsd.mh: New file.
5856 * config/mips/nbsd.mt: New file.
5857 * config/mips/nm-nbsd.h: New file.
5858 * config/mips/tm-nbsd.h: New file.
5859
5860 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
5861
5862 * Makefile.in (SFILES): Add osabi.c.
5863 (COMMON_OBS): Add osabi.o.
5864 (osabi.o): New dependency list.
5865 * osabi.c: New file.
5866 * osabi.h: New file.
5867 * doc/gdbint.texinfo: Document new generic OS ABI framework.
5868
5869 * Makefile.in (alpha_tdep_h): Define and use instead of
5870 alpha-tdep.h.
5871 * alpha-tdep.c (alpha_abi_names, process_note_abi_tag_sections,
5872 get_elfosabi, alpha_abi_handler_list, alpha_gdbarch_register_os_abi):
5873 Remove.
5874 (alpha_gdbarch_init, alpha_dump_tdep): Use generic OS ABI framework.
5875 * alpha-tdep.h: Include osabi.h.
5876 (alpha_abi): Remove.
5877 (gdbarch_tdep): Use generic OS ABI framework.
5878 * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Use
5879 gdbarch_register_osabi.
5880 * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Likewise.
5881 * alphafbsd-tdep.c (_initialize_alphafbsd_tdep): Likewise.
5882 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Likewise.
5883
5884 * Makefile.in (sh_tdep_h): Add osabi.h.
5885 * sh-tdep.h (sh_osabi): Remove.
5886 (gdbarch_tdep): Use generic OS ABI framework.
5887 * sh-tdep.c (sh_osabi_names, process_note_abi_tag_sections,
5888 sh_osabi_handler_list, sh_gdbarch_register_os_abi): Remove.
5889 (sh_gdbarch_init, sh_dump_tdep): Use generic OS ABI framework.
5890 * shnbsd-tdep.c (_initialize_shnbsd_tdep): Use gdbarch_register_osabi.
5891
5892 * Makefile.in (arm_tdep_h): Define and use instead of arm-tdep.h.
5893 * arm-linux-tdep.c (_initialize_arm_linux_tdep): Use
5894 gdbarch_register_osabi.
5895 * arm-tdep.c (arm_abi_names, process_note_abi_tag_sections,
5896 arm_abi_handler_list, arm_gdbarch_register_os_abi): Remove.
5897 (get_elfosabi): Rename to...
5898 (arm_elf_osabi_sniffer): ...this. Adjust to use generic OS
5899 ABI framework support routines.
5900 (arm_gdbarch_init): Use generic OS ABI framework.
5901 (arm_dump_tdep): Likewise.
5902 (_initialize_arm_tdep): Likewise.
5903 * arm-tdep.h: Include osabi.h.
5904 (arm_abi): Remove.
5905 (gdbarch_tdep): Remove arm_abi and abi_name members. Add
5906 osabi member.
5907 (arm_gdbarch_register_os_abi): Remove prototype.
5908 * armnbsd-tdep.c (arm_netbsd_aout_osabi_sniffer): New function.
5909 (_initialize_arm_netbsd_tdep): Use gdbarch_register_osabi.
5910
5911 * Makefile.in (mips-tdep.o): Add osabi.h to dependency list.
5912 * mips-tdep.c: Include osabi.h.
5913 (gdbarch_tdep, mips_gdbarch_init, mips_dump_tdep): Use generic
5914 OS ABI framework.
5915
5916 2002-05-20 Kazu Hirata <kazu@cs.umass.edu>
5917
5918 * h8300-tdep.c: Fix formatting.
5919
5920 2002-05-20 Elena Zannoni <ezannoni@redhat.com>
5921
5922 * rs6000-tdep.c (rs6000_do_registers_info): Simplify code for
5923 printing vector registers.
5924
5925 2002-05-19 Andrew Cagney <ac131313@redhat.com>
5926
5927 From Fernando Nasser:
5928 * remote.c (remote_async_open_1): Re-throw the exception when the
5929 connection fails.
5930 (remote_cisco_open): Ditto.
5931 (remote_open_1): Ditto.
5932
5933 2002-05-19 Andrew Cagney <ac131313@redhat.com>
5934
5935 * remote.c (remote_start_remote_dummy): Add uiout parameter.
5936 (remote_start_remote): Add uiout parameter. Pass through to
5937 remote_start_remote_dummy.
5938 (remote_open_1): Use catch_exception instead of catch_errors.
5939 (remote_async_open_1): Ditto.
5940 (remote_cisco_open): Ditto.
5941
5942 2002-05-19 Andrew Cagney <ac131313@redhat.com>
5943
5944 * remote.c (remote_start_remote): Replace PTR with void pointer.
5945 (sigint_remote_twice_token, sigint_remote_token): Ditto. Make
5946 static.
5947
5948 2002-05-18 Andrew Cagney <ac131313@redhat.com>
5949
5950 * gdb_indent.sh: Allow the script to be run in the sim directory.
5951
5952 2002-05-18 Mark Kettenis <kettenis@gnu.org>
5953
5954 * config/i386/nm-cygwin.h (NO_PTRACE_H): Remove define.
5955 * config/i386/nm-go32.h (NO_PTRACE_H): Remove define.
5956
5957 * corelow.c (core_open): Only call set_gdbarch_from_file if
5958 exec_bfd is NULL.
5959
5960 2002-05-17 Andrey Volkov <avolkov@transas.com>
5961
5962 * h8300-tdep.c: Add support of EXR register
5963 * config/h8300/tm-h8300.h: Ditto.
5964
5965 2002-05-17 Andrey Volkov <avolkov@transas.com>
5966
5967 * h8300-tdep.c: Add additional CCR flags (I,UI,H,U)
5968
5969 2002-05-17 Andrey Volkov <avolkov@transas.com>
5970
5971 * h8300-tdep.c: Change literal regnums to REGNO.
5972
5973 2002-05-17 Jim Blandy <jimb@redhat.com>
5974
5975 * NEWS: Note addition of macro support.
5976
5977 Expand preprocessor macros in C expressions.
5978 * c-lang.h: #include "macroexp.h", for macro_lookup_ftype.
5979 (scan_macro_expansion, scanning_macro_expansion,
5980 finished_macro_expansion): New function declarations.
5981 (expression_macro_lookup_func, expression_macro_lookup_baton): New
5982 variable declarations.
5983 * parser-defs.h (expression_context_pc): New declaration.
5984 * parse.c (expression_context_pc): New variable.
5985 (parse_exp_1): Set expression_context_pc, as well as
5986 expression_context_block.
5987 * c-exp.y (yylex): If we're not already reading the result of a
5988 macro expansion, try to macro-expand the next token. When we're
5989 done scanning a macro expansion, switch back to the mainline text.
5990 Commas and `if's in a macro's expansion don't terminate the input.
5991 * c-lang.c: #include "macroscope.h" and "gdb_assert.h".
5992 (macro_original_text, macro_expanded_text,
5993 expression_macro_lookup_func, expression_macro_lookup_baton): New
5994 variables.
5995 (scan_macro_expansion, scanning_macro_expansion,
5996 finished_macro_expansion, scan_macro_cleanup, null_macro_lookup,
5997 c_preprocess_and_parse): New functions.
5998 (c_language_defn, cplus_language_defn, asm_language_defn): Call
5999 c_preprocess_and_parse, instead of c_parse.
6000 * Makefile.in (c_lang_h): Note that this #includes macroexp.h.
6001 (c-lang.o): Note dependency on macroscope.h and gdb_assert.h.
6002
6003 Fri May 17 14:26:19 2002 J"orn Rennecke <joern.rennecke@superh.com>
6004
6005 * sh-tdep.c (gdb_print_insn_sh64): Delete.
6006 (gdb_print_insn_sh): Just set info->endian and use print_insn_sh.
6007 (sh_gdbarch_init): Always use gdb_print_insn_sh.
6008
6009 2002-05-17 Corinna Vinschen <vinschen@redhat.com>
6010
6011 * NEWS: Add section for multi-arched targets. Add v850 to that section.
6012
6013 2002-05-17 Jason Thorpe <thorpej@wasabisystems.com>
6014
6015 * Makefile.in (sh_tdep_h): Define and use.
6016 * config/sh/tm-sh.h (sh_osabi, sh_abi, gdbarch_tdep,
6017 register enum): Move to...
6018 * * sh-tdep.h: ...here.
6019 * sh-tdep.c: Include sh-tdep.h.
6020 * sh3-rom.c: Likewise.
6021 * shnbsd-tdep.c: Likewise.
6022
6023 2002-05-16 Michael Snyder <msnyder@redhat.com>
6024
6025 * arm-tdep.c: Spelling fix in comment.
6026
6027 2002-05-16 Jim Blandy <jimb@redhat.com>
6028
6029 Add commands for manually expanding macros and showing their
6030 definitions.
6031 * macrocmd.c, macroscope.c, macroscope.h: New files.
6032 * Makefile.in (SFILES): Add macrocmd.c, macroscope.c.
6033 (macroscope_h): New variable.
6034 (HFILES_NO_SRCDIR): Add macroscope.h.
6035 (COMMON_OBS): Add macrocmd.o, macroscope.o.
6036 (macroscope.o, macrocmd.o): New rules.
6037
6038 Teach the Dwarf 2 reader to read macro information.
6039 * dwarf2read.c: #include "macrotab.h".
6040 (dwarf_macinfo_buffer): New variable.
6041 (struct dwarf2_pinfo): New members: dwarf_macinfo_buffer, and
6042 dwarf_macinfo_size.
6043 (DWARF_MACINFO_BUFFER, DWARF_MACINFO_SIZE): New macros.
6044 (dwarf2_missing_macinfo_section, dwarf2_macros_too_long,
6045 dwarf2_macros_not_terminated, dwarf2_macro_outside_file,
6046 dwarf2_macro_unmatched_end_file, dwarf2_macro_malformed_definition,
6047 dwarf2_macro_spaces_in_definition): New complaints.
6048 (dwarf2_has_info): Initialize dwarf_macinfo_offset.
6049 (dwarf2_build_psymtabs): Read the .dwarf_macinfo section.
6050 (dwarf2_build_psymtabs_hard): Record the buffer and its size in
6051 the partial symbol table.
6052 (psymtab_to_symtab_1): Set the macinfo buffer and size globals
6053 from what's recorded in the partial symbol table.
6054 (read_file_scope): If the compilation unit has a
6055 `DW_AT_macro_info' attribute, read its macro information.
6056 * Makefile.in (dwarf2read.o): Depend on macrotab.h.
6057
6058 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
6059
6060 Fix PR gdb/546
6061 * ser-tcp.c: Don't include <netinet/udp.h>.
6062
6063 2002-05-16 Stephane Carrez <stcarrez@nerim.fr>
6064
6065 * MAINTAINERS: Update my email address.
6066
6067 2002-05-16 Richard Earnshaw <rearnsha@arm.com>
6068
6069 * config/arm/nm-nbsd.h: Use "config/nm-nbsd.h" to include generic
6070 include file of the same name.
6071
6072 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
6073
6074 * configure.tgt: Mark v850 as multi-arched.
6075 * config/v850/tm-v850.h: Remove file.
6076 * config/v850/v850.mt: Eliminate TM_FILE.
6077
6078 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
6079
6080 * v850-tdep.c: Full multi-arch.
6081 * config/v850/tm-v850.h: Eliminate or move to v850-tdep.c everything.
6082 Define GDB_MULTI_ARCH to 2.
6083
6084 2002-05-16 Pierre Muller <muller@ics.u-strasbg.fr>
6085
6086 * p-exp.y (current_type): New static variable.
6087 Carries the type of the expression at the position that is parsed.
6088 (push_current_type, pop_current_type): Two new functions. Used
6089 to store/restore current_type in expression on specific tokens.
6090 (search_field): New static variable. Set to one after parsing a point
6091 as at that point only a FIELDNAME token should be searched.
6092 (FIELDNAME): New token. After a point only a token belonging to
6093 current_type type definition is allowed.
6094 (all over token rules): reset and change current_type according
6095 to rules.
6096 (exp '[' rule): insert implicit array index field if
6097 exp is a pascal string type.
6098
6099 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
6100
6101 * v850-tdep.c: Fix comment for v850_scan_prologue. Remove extra
6102 frame info. Use frame_info's saved_regs instead of matching member
6103 in extra_frame_info throughout.
6104 (v850_frame_init_saved_regs): New function.
6105 (v850_init_extra_frame_info): Move most functionality into
6106 v850_frame_init_saved_regs().
6107 * config/v850/tm-v850.h (EXTRA_FRAME_INFO): Remove definition.
6108 (v850_frame_find_saved_regs): Remove declaration.
6109 (FRAME_FIND_SAVED_REGS): Remove definition.
6110 (v850_frame_init_saved_regs): Add declaration.
6111 (FRAME_INIT_SAVED_REGS): Add definition.
6112
6113 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
6114
6115 * v850-tdep.c: Begin multi-arch'ing v850.
6116 (v850_target_architecture_hook): Remove function.
6117 (v850_gdbarch_init): New function. Add code previously in
6118 v850_target_architecture_hook().
6119 (_initialize_v850_tdep): Don't set target_architecture_hook.
6120 Call register_gdbarch_init() instead.
6121
6122 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
6123
6124 * gdbtypes.h (struct cplus_struct_type): Remove args field.
6125 * hpread.c (hpread_read_struct_type): Remove assignments to args.
6126 (fixup_class_method_type): Likewise.
6127
6128 2002-05-15 Jim Blandy <jimb@redhat.com>
6129
6130 Add macro structures to GDB's symbol tables. Nobody puts anything
6131 in them yet.
6132 * symtab.h (struct symtab): New member: `macro_table'.
6133 * buildsym.h (pending_macros): New global variable.
6134 * buildsym.c: #include "macrotab.h".
6135 (buildsym_init): Initialize `pending_macros'.
6136 (end_symtab): If we found macro information while reading a CU's
6137 debugging info, do build a symtab structure for it. Make the
6138 symtab point to the macro information, and clear the
6139 `pending_macros' pointer which held it while we were reading the
6140 debug info.
6141 (really_free_pendings): Free any pending macro table.
6142 * objfiles.h (struct objfile): New member: `macro_cache'.
6143 * objfiles.c (allocate_objfile): Set allocate and free functions
6144 for the macro cache's objstack.
6145 (free_objfile): Empty the macro cache's obstack.
6146 * symfile.c (reread_symbols): Empty the macro cache's obstack, and
6147 set new allocate and free functions for it.
6148 * solib-sunos.c (allocate_rt_common_objfile): Set allocate and
6149 free functions for the macro cache's objstack. (Why is this
6150 function building its own objfile?)
6151 * symmisc.c (print_objfile_statistics): Print statistics on the
6152 macro bcache.
6153 * Makefile.in: Note that buildsym.o depends on macrotab.h.
6154
6155 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
6156
6157 * config/arm/nm-nbsd.h: Use <> for include of config/nm-nbsd.h.
6158 (REGISTER_U_ADDR): Delete definition.
6159 (arm_register_u_addr): Delete declaration.
6160
6161 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
6162
6163 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Renamed from JB_PC.
6164 (ARM_LINUX_JB_ELEMENT_SIZE): Likewise.
6165
6166 2002-05-14 Andrew Cagney <ac131313@redhat.com>
6167
6168 * regcache.c (register_valid): Revise comments refering to "Not
6169 available" and "unavailable".
6170 * frame.c (frame_register_read): Ditto.
6171 * findvar.c (value_of_register): Ditto.
6172
6173 2002-05-15 Andrew Cagney <cagney@redhat.com>
6174
6175 * Makefile.in (remote_sim_h): Replace remote-sim_h.
6176 (remote-sim.o): Update dependencies.
6177 (d10v-tdep.o): Specify dependencies.
6178 (sim_d10v_h): Define.
6179
6180 2002-05-14 Jim Blandy <jimb@redhat.com>
6181
6182 * macroexp.c (init_buffer, gather_arguments, expand): Use NULL, not 0.
6183 * macrotab.c (macro_lookup_inclusion, find_definition,
6184 new_macro_table): Same.
6185
6186 * macroexp.c (currently_rescanning, expand): Use `strcmp () == 0',
6187 not `! strcmp ()'. This is a dubious improvement.
6188 * macrotab.c (macro_lookup_inclusion, find_definition): Same.
6189
6190 * macrotab.c (macro_lookup_inclusion): Initialize `best_depth',
6191 although it's not necessary, to avoid a warning.
6192
6193 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
6194
6195 * gdbtypes.h: Update accessor macros to use TYPE_MAIN_TYPE.
6196 (TYPE_CONST, TYPE_VOLATILE, TYPE_CODE_SPACE, TYPE_DATA_SPACE): Use
6197 TYPE_INSTANCE_FLAGS.
6198 (struct main_type): New.
6199 (struct type): Move most members to struct main_type. Change
6200 cv_type and as_type to new type_chain member. Add instance_flags.
6201 (TYPE_MAIN_TYPE, TYPE_CHAIN, TYPE_INSTANCE_FLAGS): New macros.
6202 (TYPE_CV_TYPE, TYPE_AS_TYPE): Remove.
6203 (finish_cv_type): Remove prototype.
6204 * gdbtypes.c (alloc_type): Update comment. Allocate TYPE_MAIN_TYPE.
6205 Set TYPE_CHAIN.
6206 (alloc_type_instance): New function.
6207 (smash_type): New function.
6208 (make_pointer_type, make_reference_type, make_function_type)
6209 (smash_to_member_type, smash_to_method_type): Call smash_type.
6210 (make_qualified_type): New function.
6211 (make_type_with_address_space): Call make_qualified_type.
6212 (make_cv_type): Likewise.
6213 (finish_cv_type): Remove unnecessary function.
6214 (replace_type): Update comment. Copy TYPE_MAIN_TYPE.
6215 (recursive_dump_type): Dump TYPE_CHAIN and TYPE_INSTANCE_FLAGS;
6216 remove TYPE_CV_TYPE and TYPE_AS_TYPE.
6217 * c-typeprint.c (c_type_print_modifier): Use TYPE_INSTANCE_FLAGS.
6218 * dwarf2read.c (read_structure_scope): Don't call finish_cv_type.
6219 * hpread.c (hpread_read_struct_type): Likewise.
6220 * stabsread.c (read_struct_type): Likewise.
6221
6222 2002-05-14 Elena Zannoni <ezannoni@redhat.com>
6223
6224 * configure.tgt: Add a catch all sh* target, for cases like
6225 sh[2,3,4]-elf and sh-hms.
6226
6227 2002-05-14 Keith Seitz <keiths@redhat.com>
6228
6229 * event-loop.c (create_file_handler): Don't do anything but
6230 update data when we are given a fd which we are already
6231 monitoring.
6232
6233 2002-05-14 Michal Ludvig <mludvig@suse.cz>
6234
6235 * dwarf2cfi.c (context_cpy): Copy registers correctly.
6236 (update_context): Use __func__ in warnings.
6237
6238 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
6239
6240 * ser-tcp.c: Include <netinet/udp.h>. Rename tcp_open
6241 and tcp_close to net_open and net_close.
6242 (net_open): Accept "udp:" and "tcp:" specifications. Connect
6243 using UDP if requested. Don't try to disable Nagle on UDP
6244 sockets.
6245 * remote.c (remote_serial_open): New function. Warn about UDP.
6246 (remote_open_1, remote_async_open_1, remote_cisco_open): Call it.
6247
6248 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
6249
6250 * MAINTAINERS: List sh-elf as buildable with ,-Werror.
6251
6252 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
6253
6254 * configure.tgt: Remove sh-hms target.
6255 * MAINTAINERS: Don't list sh-hms as a separate target.
6256
6257 2002-05-13 Jim Blandy <jimb@redhat.com>
6258
6259 Add first preprocessor macro-expansion files.
6260 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
6261 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
6262 (splay_tree_h, macroexp_h, macrotab_h): New variable.
6263 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
6264 (COMMON_OBS): Add macrotab.o, macroexp.o.
6265 (macroexp.o, macrotab.o): New rules.
6266
6267 2002-05-13 Andrew Cagney <ac131313@redhat.com>
6268
6269 * config/m88k/tm-m88k.h: Update copyright.
6270 (m88k_target_write_pc): Declare
6271 (TARGET_WRITE_PC): Redefine using m88k_target_write_pc.
6272 (M88K_NNPC_REGNUM): Rename NNPC_REGNUM.
6273 (SHIFT_INST_REGS): Update definition.
6274 * m88k-tdep.c (m88k_target_write_pc): New function. Implement
6275 using old definition of TARGET_WRITE_PC.
6276 * regcache.c (generic_target_write_pc): Delete code handling
6277 NNPC_REGNUM.
6278 * gdbarch.sh (NNPC_REGNUM): Delete.
6279 * gdbarch.h, gdbarch.c: Regenerate.
6280
6281 2002-05-13 Richard Earnshaw <rearnsha@arm.com>
6282
6283 * builtin-regs.c (value_of_builtin_reg): Correctly calculate the
6284 builtin reg number.
6285
6286 2002-05-13 Daniel Jacobowitz <drow@mvista.com>
6287
6288 * ax-gdb.c (gen_sign_extend, gen_fetch, gen_usual_unary)
6289 (gen_cast, gen_scale, gen_add, gen_sub, gen_binop, gen_deref)
6290 (gen_address_of, gen_struct_ref, gen_repeat): Use type
6291 access macros.
6292 * c-typeprint.c (cp_type_print_method_args): Likewise.
6293 (c_type_print_args): Likewise.
6294 * d10v-tdep.c (d10v_push_arguments): Likewise.
6295 (d10v_extract_return_value): Likewise.
6296 * expprint.c (print_subexp): Likewise.
6297 * gdbtypes.c (lookup_primitive_typename): Likewise.
6298 (lookup_template_type, add_mangled_type, print_arg_types): Likewise.
6299 * gdbtypes.h (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB)
6300 (TYPE_TARGET_STUB, TYPE_STATIC, TYPE_CONST, TYPE_VOLATILE)
6301 (TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_CODE_SPACE, TYPE_VARARGS)
6302 (TYPE_VECTOR): Likewise.
6303 * hpread.c (hpread_read_struct_type)
6304 (fix_static_member_physnames, fixup_class_method_type)
6305 (hpread_type_lookup): Likewise.
6306 * mdebugread.c (parse_symbol, parse_type): Likewise.
6307 * p-lang.c (is_pascal_string_type): Likewise.
6308 * valops.c (hand_function_call): Likewise.
6309 * x86-64-tdep.c (classify_argument): Likewise.
6310
6311 * hpread.c (hpread_read_function_type)
6312 (hpread_read_doc_function_type): Call replace_type.
6313 * dstread.c (create_new_type): Delete.
6314 (decode_dst_structure, process_dst_function): Call alloc_type.
6315 Use type access macros.
6316
6317 2002-05-12 Mark Kettenis <kettenis@gnu.org>
6318
6319 * i387-tdep.c (i387_supply_fxsave): Skip the SSE registers if
6320 the're not supported by the current architecture.
6321 (i387_fill_fxsave): Likewise.
6322
6323 2002-05-12 Fred Fish <fnf@redhat.com>
6324
6325 * symfile.c (default_symfile_offsets): Arrange for uninitialized
6326 sect_index_xxx members to index the first slot in section_offsets
6327 if all of the section_offsets are zero.
6328
6329 2002-05-12 Mark Kettenis <kettenis@gnu.org>
6330
6331 * configure.tgt (sparc-*openbsd): Remove entry accidentially
6332 checked in with last change.
6333
6334 2002-05-12 Mark Kettenis <kettenis@gnu.org>
6335
6336 * configure.tgt (i[3456]86-*-unixware*, i[3456]86-*-unixware2*):
6337 Remove targets. These are canonicalized to i386-*-sysv4.2uw by
6338 config.sub.
6339
6340 2002-05-12 Daniel Jacobowitz <drow@mvista.com>
6341
6342 * Makefile.in: Update dependencies.
6343
6344 2002-05-11 Andrew Cagney <ac131313@redhat.com>
6345
6346 * language.c (local_hex_string_custom): Simplify. Do not depend
6347 on PRINTF_HAS_LONG_LONG or CC_HAS_LONG_LONG.
6348
6349 * memattr.c (mem_info_command): Replace calls to
6350 longest_local_hex_string and longest_local_hex_string_custom.
6351 * buildsym.c (make_blockvector): Ditto.
6352 * solib.c (info_sharedlibrary_command): Ditto.
6353 * tracepoint.c (tracepoints_info): Ditto.
6354 * symtab.c (print_msymbol_info): Ditto.
6355
6356 * language.c (local_hex_string): Delete.
6357 (local_hex_string_custom): Delete.
6358 (longest_local_hex_string): Rename to local_hex_string.
6359 (longest_local_hex_string_custom): Rename to
6360 local_hex_string_custom.
6361 * language.h (local_hex_string): Change parameter type to LONGEST.
6362 (local_hex_string_custom): Ditto.
6363 (longest_local_hex_string): Delete declaration.
6364 (longest_local_hex_string_custom): Ditto.
6365
6366 * solib.c: Update copyright.
6367 * memattr.c: Update copyright.
6368
6369 2002-05-11 Andrew Cagney <ac131313@redhat.com>
6370
6371 * arch-utils.h (legacy_register_to_value): Declare.
6372 (legacy_value_to_register): Declare.
6373 (legacy_convert_register_p): Declare.
6374 * arch-utils.c (legacy_register_to_value): New function.
6375 (legacy_value_to_register): New function.
6376 (legacy_convert_register_p): New function.
6377
6378 * gdbarch.sh (REGISTER_TO_VALUE): Define.
6379 (VALUE_TO_REGISTER): Define.
6380 (CONVERT_REGISTER_P): Define.
6381 * gdbarch.h, gdbarch.c: Regenerate.
6382
6383 * valops.c (value_assign): Use CONVERT_REGISTER_P and
6384 VALUE_TO_REGISTER.
6385 * findvar.c (value_from_register): Use REGISTER_TO_VALUE and
6386 CONVERT_REGISTER_P.
6387
6388 2005-05-11 Daniel Jacobowitz <drow@mvista.com>
6389 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
6390
6391 * Makefile.in: Update dependencies for valops.c.
6392 * valops.c: Include "gdb_assert.h".
6393 (typecmp): Skip THIS parameter to methods.
6394 (find_method_list): Remove static_memfuncp argument,
6395 update callers. Check for stub methods.
6396 (find_value_oload_method_list): Don't set *static_memfuncp.
6397 (find_overload_match): Don't check for stub methods. Assert
6398 that methods are not stubbed. Handle static methods.
6399 (value_find_oload_method_list): Remove static_memfuncp argument.
6400 * gdbtypes.c (check_stub_method): Do not add THIS pointer
6401 to the argument list for static stub methods.
6402 * value.h (value_find_oload_method_list): Update prototype.
6403
6404 2002-05-11 Andrew Cagney <ac131313@redhat.com>
6405
6406 * arch-utils.h (generic_register_size): Declare.
6407 (generic_register_raw_size, generic_register_virtual_size): Delete
6408 declarations.
6409 * arch-utils.c (generic_register_raw_size): Delete.
6410 (generic_register_size): New function.
6411 (generic_register_virtual_size): Delete.
6412
6413 * gdbarch.sh (REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE): Make
6414 default generic_register_size.
6415 * gdbarch.h, gdbarch.c: Re-generate.
6416
6417 * d10v-tdep.c (d10v_gdbarch_init): Use generic_register_size for
6418 register_virtual_size.
6419 * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
6420 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
6421
6422 2002-05-11 Andrew Cagney <ac131313@redhat.com>
6423
6424 * gdbarch.sh (gdbarch_data): Add gdbarch parameter.
6425 * gdbarch.h, gdbarch.c: Regenerate.
6426 * gnu-v3-abi.c: Update copyright.
6427 (vtable_address_point_offset): Update.
6428 (gnuv3_rtti_type): Update.
6429 (gnuv3_baseclass_offset): Update.
6430 * solib-svr4.c (svr4_fetch_link_map_offsets): Update.
6431 (init_fetch_link_map_offsets): Update.
6432 * remote.c (get_remote_state): Update.
6433
6434 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
6435
6436 * TODO: Remove value_headof/value_from_vtable_info comment.
6437 * printcmd.c (print_command_1): Don't call value_from_vtable_info.
6438 * values.c (value_headof, value_from_vtable_info): Delete.
6439 * value.h (value_from_vtable_info): Delete prototype.
6440
6441 2002-05-11 Andrew Cagney <ac131313@redhat.com>
6442
6443 * Makefile.in: Replace gdb_assert.h with $(gdb_assert_h),
6444 gdb_string.h with $(gdb_string_h) and gdb_regex.h with
6445 $(gdb_regex_h).
6446 (gdb_assert_h): Define.
6447 (gdb_wait_h): Define.
6448 (gdb_regex_h): Define.
6449
6450 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
6451
6452 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
6453 * linespec.c (find_methods): Handle GCC 3.x template constructors.
6454
6455 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6456
6457 * nbsd-tdep.c: Fix comment.
6458
6459 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6460
6461 * Makefile.in (ALLDEPFILES): Add nbsd-tdep.c.
6462 (alphanbsd-tdep.o): Add nbsd-tdep.h to dependency list.
6463 (nbsd-tdep.o): New dependency list.
6464 * alphanbsd-tdep.c: Don't include solib-svr4.h. Include
6465 nbsd-tdep.h.
6466 (alphanbsd_solib_svr4_fetch_link_map_offsets): Remove.
6467 (alphanbsd_init_abi): Use nbsd_lp64_solib_svr4_fetch_link_map_offsets.
6468 * nbsd-tdep.c: New file.
6469 * nbsd-tdep.h: New file.
6470 * shnbsd-tdep.c: Don't include solib-svr4.h. Include
6471 nbsd-tdep.h.
6472 (shnbsd_solib_svr4_fetch_link_map_offsets): Remove.
6473 (shnbsd_init_abi): Use nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
6474 * config/alpha/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
6475 * config/sh/nbsd.mt (TDEPFILES): Ditto.
6476
6477 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6478
6479 * config/alpha/nbsd.mh (NATDEPFILES): Remove corelow.o.
6480 * config/alpha/nbsd.mt (TDEPFILES): Add corelow.o.
6481 * config/i386/nbsd.mh (NATDEPFILES): Remove corelow.o.
6482 * config/i386/nbsd.mt (TDEPFILES): Add corelow.o.
6483 * config/i386/nbsdelf.mh (NATDEPFILES): Remove corelow.o.
6484 * config/i386/nbsdelf.mt (TDEPFILES): Add corelow.o.
6485
6486 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6487
6488 * config/i386/nbsd.mh (NATDEPFILES): Use line continuations.
6489 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
6490 * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
6491 * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
6492 * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
6493 * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
6494 * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
6495
6496 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6497
6498 * i386nbsd-nat.c: Delete file. Move fetch_core_registers and
6499 fetch_elfcore_registers to...
6500 * i386nbsd-tdep.c: ...here.
6501 (i386nbsd_use_struct_convention): Rename to...
6502 (i386nbsd_aout_use_struct_convention): ...this.
6503 (i386nbsd_supply_reg): New function.
6504 (i386nbsd_fill_reg): New function.
6505 (fetch_core_registers): Use i386nbsd_supply_reg.
6506 (fetch_elfcore_registers): Likewise.
6507 (_initialize_i386nbsd_tdep): New function.
6508 * config/i386/nbsd.mh (NATDEPFILES): Remove i386nbsd-nat.o.
6509 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
6510 * config/i386/nbsdelf.mt (TDEPFILES): Add i386nbsd-tdep.o.
6511 * config/i386/tm-nbsd.h (i386nbsd_use_struct_convention): Rename to...
6512 (i386nbsd_aout_use_struct_convention): ...this.
6513
6514 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6515
6516 * shnbsd-nat.c (fetch_inferior_registers): Use shnbsd_supply_reg.
6517 (store_inferior_registers): Use shnbsd_fill_reg.
6518 * shnbsd-tdep.c (sh_nbsd_supply_registers,
6519 sh_nbsd_supply_register): Collapse into...
6520 (shnbsd_supply_reg): ...this.
6521 (sh_nbsd_fill_registers, sh_nbsd_fill_register): Collapse into...
6522 (shnbsd_fill_reg): ...this.
6523 (sh_nbsd_solib_svr4_fetch_link_map_offsets): Rename to...
6524 (shnbsd_solib_svr4_fetch_link_map_offsets): ...this.
6525 (fetch_core_registers): Use shnbsd_supply_reg.
6526 (fetch_elfcore_registers): Use shnbsd_supply_reg.
6527 (sh_nbsd_core_fns): Rename to...
6528 (shnbsd_core_fns): ...this.
6529 (sh_nbsd_elfcore_fns): Rename to...
6530 (shnbsd_elfcore_fns): ...this.
6531 (sh_nbsd_init_abi): Rename to...
6532 (shnbsd_init_abi): ...this.
6533 (_initialize_sh_nbsd_tdep): Rename to...
6534 (_initialize_shnbsd_tdep): ...this.
6535 * shnbsd-tdep.h (sh_nbsd_supply_registers,
6536 sh_nbsd_supply_register, sh_nbsd_fill_registers,
6537 sh_nbsd_fill_register): Remove prototypes.
6538 (shnbsd_supply_reg, shnbsd_fill_reg): Add prototypes.
6539
6540 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6541
6542 * Makefile.in (ALLDEPFILES): Remove i387-nat.c.
6543 (i387-nat.o): Delete dependency list.
6544 (go32-nat.o): Change i387-nat.h to i387-tdep.h.
6545 (x86-64-linux-nat.o): Likewise.
6546 * i387-nat.c: Delete file, moving contents to...
6547 * i387-tdep.c: ...here.
6548 * i387-nat.h: Rename...
6549 * i387-tdep.h: ...to this.
6550 * go32-nat.c: Include i387-tdep.h instead of i387-nat.h.
6551 * i386-linux-nat.c: Likewise.
6552 * i386bsd-nat.c: Likewise.
6553 * i386gnu-nat.c: Likewise.
6554 * i386nbsd-nat.c: Likewise.
6555 * i386v4-nat.c: Likewise.
6556 * x86-64-linux-nat.c: Likewise.
6557 * config/i386/fbsd.mh (NATDEPFILES): Remove i387-nat.o.
6558 * config/i386/go32.mh (NATDEPFILES): Likewise.
6559 * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
6560 * config/i386/i386sol2.mh (NATDEPFILES): Likewise.
6561 * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
6562 * config/i386/linux.mh (NATDEPFILES): Likewise.
6563 * config/i386/nbsd.mh (NATDEPFILES): Likewise.
6564 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
6565 * config/i386/obsd.mh (NATDEPFILES): Likewise.
6566 * config/i386/x86-64linux.mh (NATDEPFILES): Likewise.
6567
6568 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6569
6570 * Makefile.in (ALLDEPFILES): Remove alphanbsd-nat.c.
6571 (alphanbsd-nat.o): Remove dependency list.
6572 (alphanbsd-tdep.o): Add $(regcache_h) to dependency list.
6573 * alphanbsd-nat.c: Delete. Contents moved to...
6574 * alphanbsd-tdep.c: ...here.
6575 (_initialize_alphanbsd_tdep): Register core functions.
6576 * config/alpha/nbsd.mh (NATDEPFILES): Remove alphanbsd-nat.o.
6577
6578 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6579
6580 * Makefile.in (ALLDEPFILES): Add alphabsd-tdep.c.
6581 (alphabsd-nat.o): Depend on alphabsd-tdep.h.
6582 (alphanbsd-nat.o): Likewise.
6583 (alphabsd-tdep.o): New dependency list.
6584 * alphabsd-nat.c (supply_gregset): Use alphabsd_supply_reg.
6585 (fill_gregset): Use alphabsd_fill_reg.
6586 (supply_fpregset): Use alphabsd_supply_fpreg.
6587 (fill_fpregset): Use alphabsd_fill_fpreg.
6588 (fetch_inferior_registers): Use struct reg and struct fpreg
6589 rather than gregset_t and fpregset_t. Use alphabsd_supply_reg
6590 and alphabsd_supply_fpreg.
6591 (store_inferior_registers): Use struct reg and struct fpreg
6592 rather than gregset_t and fpregset_t. Use alphabsd_fill_reg
6593 and alphabsd_fill_fpreg.
6594 * alphabsd-tdep.c: New file.
6595 * alphabsd-tdep.h: New file.
6596 * alphanbsd-nat.c (fetch_core_registers): Use alphabsd_supply_fpreg.
6597 (fetch_elfcore_registers): Use alphabsd_supply_reg and
6598 alphabsd_supply_fpreg.
6599 * config/alpha/fbsd.mt (TDEPFILES): Add alphabsd-tdep.o.
6600 * config/alpha/nbsd.mt (TDEPFILES): Likewise.
6601
6602 2002-05-11 Eric Christopher <echristo@redhat.com>
6603
6604 * mips-tdep.c (mips_double_register_type): Fix thinko.
6605 (mips_single_register_type): Ditto.
6606 * MAINTAINERS: Add self.
6607
6608 2002-05-11 Mark Kettenis <kettenis@gnu.org>
6609
6610 * i387-nat.c (i387_supply_register, i387_fill_fsave,
6611 i387_supply_fxsave, i387_fill_fxsave): Rewrite in order to do the
6612 right thing on architectures with different endianness and/or
6613 integer sizes.
6614
6615 2002-05-10 Jason Thorpe <thorpej@wasabisystems.com>
6616
6617 From Christian Limpach <chris@Pin.LU>
6618 * configure.in: Change sed expression which comments out
6619 NATDEPFILES to also comment out continuation lines.
6620 * configure: Regenerate.
6621
6622 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
6623
6624 * sh-tdep.c: Clean up code erroneously reintroduced by previous
6625 big patch.
6626
6627 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
6628
6629 * sh-tdep.c: Include correct file.
6630
6631 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
6632
6633 New support for sh64-elf (sh5) target.
6634
6635 * configure.tgt: For sh64-elf target, default to sh-elf.
6636
6637 * config/sh/tm-sh.h (enum sh-abi): Possible ABI's.
6638 (struct gdbarch_tdep): Add new fields for new registers and ABI
6639 info.
6640
6641 * sh-tdep.c: Include elf-bfd.h, elf/sh.h, gdb/sim-sh.h.
6642 (NUM_PSEUDO_REGS_SH_MEDIA, NUM_PSEUDO_REGS_SH_COMPACT,
6643 MSYMBOL_IS_SPECIAL, IS_ISA32_ADDR, MAKE_ISA32_ADDR,
6644 UNMAKE_ISA32_ADDR, IS_PTABSL_R18, IS_STS_R0, IS_STS_PR,
6645 IS_MOV_TO_R15, IS_MOV_R14, IS_STQ_R18_R14, IS_STQ_R18_R15,
6646 IS_STL_R18_R15, IS_STQ_R14_R15, IS_STL_R14_R15, IS_ADDIL_SP_MEDIA,
6647 IS_ADDI_SP_MEDIA, IS_ADDL_SP_FP_MEDIA, IS_ADD_SP_FP_MEDIA,
6648 IS_MOV_SP_FP_MEDIA, IS_MOV_R0, IS_MOVL_R0, IS_ADD_SP_R0,
6649 IS_MOV_R14_R0, IS_MEDIA_IND_ARG_MOV, IS_MEDIA_ARG_MOV,
6650 IS_MEDIA_MOV_TO_R14, IS_COMPACT_IND_ARG_MOV, IS_COMPACT_ARG_MOV,
6651 IS_COMPACT_MOV_TO_R14, IS_JSR_R0, IS_NOP): New macros.
6652 (sh_sh64_register_name, sh64_elf_make_msymbol_special,
6653 pc_is_isa32, sh_sh64_breakpoint_from_pc, look_for_args_moves,
6654 sh64_skip_prologue_hard_way, sh64_use_struct_convention,
6655 gdb_print_insn_sh64, translate_insn_rn, sh64_frame_chain,
6656 sh64_get_saved_pr, fpp_reg_base_num, is_media_pseudo,
6657 sh64_get_gdb_regnum, sh64_media_reg_base_num,
6658 sh64_compact_reg_base_num, translate_rn_to_arch_reg_num,
6659 sign_extend, sh64_nofp_frame_init_saved_regs,
6660 sh64_init_extra_frame_info, sh64_get_saved_register,
6661 sh64_extract_struct_value_address, sh64_pop_frame,
6662 sh64_push_arguments, sh64_extract_return_value,
6663 sh64_store_return_value, sh64_show_media_regs,
6664 sh64_show_compact_regs, sh64_show_regs, sh_sh64_register_byte,
6665 sh_sh64_register_raw_size, sh_sh64_register_virtual_size,
6666 sh_sh64_register_virtual_type,
6667 sh_sh64_register_convert_to_virtual,
6668 sh_sh64_register_convert_to_raw, sh64_pseudo_register_read,
6669 sh64_register_read, sh64_pseudo_register_write,
6670 sh64_register_write, do_fv_c_register_info, do_dr_c_register_info,
6671 do_r_c_register_info, do_fpp_register_info, do_cr_c_register_info,
6672 sh64_do_pseudo_register, sh_compact_do_registers_info,
6673 sh64_do_registers_info, sh_gdbarch_init): New functions.
6674
6675 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
6676
6677 * sh-tdep.c (sh_breakpoint_from_pc): Add 'const' to return type.
6678
6679 2002-05-10 Daniel Jacobowitz <drow@mvista.com>
6680
6681 * linespec.c (decode_line_1): Check for a double quote after
6682 a filename correctly.
6683
6684 2002-05-10 Jim Blandy <jimb@redhat.com>
6685
6686 Properly track the size of the current objfile's .debug_line section.
6687 * dwarf2read.c (struct dwarf2_pinfo): New member: dwarf_line_size.
6688 (DWARF_LINE_SIZE): New macro.
6689 (dwarf2_build_psymtabs_hard): Record the line section's size in
6690 the partial symbol table.
6691 (psymtab_to_symtab_1): Restore dwarf_line_size from the partial
6692 symbol table.
6693
6694 2002-05-10 Petr Sorfa <petrs@caldera.com>
6695
6696 * ia64-tdep.c: Handle breakpoints on L instruction type
6697 in MLX instruction bundle by moving the breakpoint to
6698 the third slot (X instruction type) as L holds only data.
6699
6700 2002-05-10 Kevin Buettner <kevinb@redhat.com>
6701
6702 * dbxread.c (discarding_local_symbols_complaint): New complaint.
6703 (process_one_symbol): Complain about discarding local symbols
6704 due to a misplaced N_LBRAC entry.
6705
6706 2002-05-09 Elena Zannoni <ezannoni@redhat.com>
6707
6708 From Daniel Berlin <dan@cgsoftware.com>
6709 * linespec.c (find_toplevel_char): '<' and '>' also increase and
6710 decrease the depth we are at, in the case of templates.
6711
6712 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
6713
6714 * mips-tdep.c (mips_float_register_type): New function.
6715 (mips_double_register_type): New function.
6716 (mips_print_register): Use them.
6717 (do_fp_register_row): Likewise.
6718
6719 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
6720
6721 * signals/signals.c (signals): Remove conditional compilation around
6722 Mach-specific signals. Move them to after TARGET_SIGNAL_DEFAULT.
6723 (target_signal_from_name): Loop until TARGET_SIGNAL_LAST.
6724
6725 2002-05-09 Michael Snyder <msnyder@redhat.com>
6726
6727 * remote-rdp.c (remote_rdp_can_run): Remove.
6728
6729 2002-05-09 Tom Tromey <tromey@redhat.com>
6730
6731 * jv-valprint.c (java_val_print): Handle `char' as a special case
6732 of TYPE_CODE_INT.
6733
6734 2002-05-09 Michael Snyder <msnyder@redhat.com>
6735
6736 * arm-tdep.c (arm_scan_prologue): Accept strb r(0123),[r11,#-nn],
6737 strh r(0123),[r11,#-nn], str r(0123),[r11,#-nn], as well as
6738 strb r(0123),[sp,#nn], strh r(0123),[sp,#nn] and
6739 str r(0123),[sp,#nn].
6740 (arm_skip_prologue): Ditto. Also make disassembly
6741 order-independent by placing it in a loop.
6742
6743 2002-05-06 Michael Snyder <msnyder@redhat.com>
6744
6745 * stabsread.c (read_type): Add recognition for new attribute:
6746 "@V;" means that an array type is actually a vector.
6747 This is analogous to the vector flag that's been added to dwarf2.
6748
6749 2002-05-09 Mark Kettenis <kettenis@gnu.org>
6750
6751 * i386-tdep.h (i386_abi): New enum.
6752 (struct gdbarch_tdep): Replace os_ident member with abi.
6753 (i386_gdbarch_register_os_abi): New prototype.
6754 * i386-tdep.c (i386_abi_names): New array.
6755 (process_note_abi_tag_sections): Removed.
6756 (process_note_sections): New function.
6757 (i386_elf_abi_from_note, i386_elf_abi): New functions.
6758 (struct i386_abi_handler): New struct.
6759 (i386_abi_handler_list): New variable.
6760 (i386_gdbarch_register_os_abi): New function.
6761 (i386_gdbarch_init): Adapt for the changes given above.
6762
6763 2002-05-08 Daniel Jacobowitz <drow@mvista.com>
6764
6765 * gregset.h: Say "GNU/Linux".
6766
6767 2002-05-08 Elena Zannoni <ezannoni@redhat.com>
6768
6769 * gdbtypes.c : Add new builtin type for 64 bit vectors.
6770 (build_gdbtypes): Build builtin_type_v2_float.
6771 (_initialize_gdbtypes): Register new builtin type.
6772
6773 2002-05-08 Andrew Cagney <ac131313@redhat.com>
6774
6775 * gdbarch.sh (init_gdbarch_swap): Do not clear the swap section.
6776 (clear_gdbarch_swap): New function.
6777 (initialize_non_multiarch): Call.
6778 (gdbarch_update_p): Before calling init(), swap out and clear the
6779 existing architecture.
6780 * gdbarch.c: Regenerate.
6781
6782 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
6783
6784 * config/djgpp/fnchange.lst: Add alphanbsd-nat.c and
6785 alphanbsd-tdep.c.
6786
6787 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
6788
6789 * sh-nbsd-nat.c: Rename to...
6790 * shnbsd-nat.c: ...this.
6791 * sh-nbsd-tdep.c: Rename to...
6792 * shnbsd-tdep.c: ...this.
6793 * sh-nbsd-tdep.h: Rename to...
6794 * shnbsd-tdep.h: ...this.
6795 * config/sh/nbsd.mh: Use shnbsd-nat.o.
6796 * config/sh/nbsd.mt: Use shnbsd-tdep.o.
6797
6798 2002-05-08 Richard Earnshaw <rearnsha@arm.com>
6799
6800 * remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
6801 concatenation for command help messages.
6802
6803 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
6804
6805 * NEWS: Note new sh*-*-netbsdelf* configuration.
6806 * configure.host: Set gdb_host_cpu to sh for all sh*.
6807 (sh*-*-netbsdelf*): New host.
6808 * configure.tgt: Set gdb_target_cpu to sh for all sh*.
6809 (sh*-*-netbsdelf*): New target.
6810 * sh-nbsd-nat.c: New file.
6811 * sh-nbsd-tdep.c: New file.
6812 * sh-nbsd-tdep.h: New file.
6813 * config/sh/nbsd.mh: New file.
6814 * config/sh/nbsd.mt: New file.
6815 * config/sh/nm-nbsd.h: New file.
6816 * config/sh/tm-nbsd.h: New file.
6817
6818 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
6819
6820 * sh-tdep.c (sh_osabi_names): Declare.
6821 (process_note_abi_tag_sections): New function.
6822 (get_elfosabi): Ditto.
6823 (sh_gdbarch_register_os_abi): Ditto.
6824 (sh_dump_tdep): Ditto.
6825 _initialize_sh_tdep): Use gdbarch_register to register
6826 sh_gdbarch_init and sh_dump_tdep.
6827 * config/sh/tm-sh.h (sh_osabi): Declare.
6828 (gdbarch_tdep): Add sh_osabi and osabi_name members.
6829
6830 2002-05-07 Andrew Cagney <ac131313@redhat.com>
6831
6832 * arm-tdep.c (arm_skip_prologue): Handle generic dummy frames.
6833 (thumb_scan_prologue): Ditto.
6834 (arm_find_callers_reg): Ditto.
6835 (arm_frame_chain): Ditto.
6836 (arm_init_extra_frame_info): Ditto.
6837 (arm_frame_saved_pc): Ditto.
6838 (arm_pop_frame): Ditto.
6839 (arm_push_return_address): New function.
6840 (arm_gdbarch_init): Initialize use_generic_dummy_frames,
6841 call_dummy_location, call_dummy_breakpoint_offset_p,
6842 call_dummy_breakpoint_offset, call_dummy_p,
6843 call_dummy_stack_adjust_p, call_dummy_words,
6844 sizeof_call_dummy_words, call_dummy_start_offset,
6845 call_dummy_length, fix_call_dummy, pc_in_call_dummy,
6846 call_dummy_address, push_return_address and push_dummy_frame for
6847 generic dummy frames.
6848
6849 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
6850
6851 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Fix error in
6852 size computation for alloca.
6853 (sh_fp_frame_init_saved_regs): Likewise.
6854
6855 2002-05-07 Richard Earnshaw <rearnsha@arm.com>
6856
6857 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE): Define.
6858 (ARM_MAX_REGISTER_VIRTUAL_SIZE): Define.
6859 * arm-tdep.c (arm_store_return_value): Use them.
6860 Use FP_REGISTER_RAW_SIZE when setting the FPA return value.
6861 * remote-rdp.c (remote_rdp_fetch_register): Use
6862 ARM_MAX_REGISTER_RAW_SIZE.
6863 (remote_rdp_store_register): Likewise.
6864
6865 2002-05-07 Michal Ludvig <mludvig@suse.cz>
6866
6867 * dwarf2cfi.c: Code cleanup, removed unused variables,
6868 added default labels to switch {} statements.
6869 * x86-64-tdep.c: Ditto.
6870 * x86-64-linux-nat.c: Ditto.
6871
6872 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
6873
6874 * solib.h: Protect against multiple inclusion.
6875
6876 2002-05-06 Jim Blandy <jimb@redhat.com>
6877
6878 Add first preprocessor macro-expansion files.
6879 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
6880 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
6881 (splay_tree_h, macroexp_h, macrotab_h): New variable.
6882 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
6883 (COMMON_OBS): Add macrotab.o, macroexp.o.
6884 (macroexp.o, macrotab.o): New rules.
6885
6886 Separate the job of reading the line number info statement program
6887 header (...expialidocious) out into its own function.
6888 * dwarf2read.c (struct line_head, struct filenames, struct
6889 directories): Replace with...
6890 (struct line_header): New structure, containing the full
6891 contents of the statement program header, including the
6892 include directory and file name tables.
6893 (read_file_scope): If we have line number info, instead of just
6894 calling dwarf_decode_lines to do all the work, call
6895 dwarf_decode_line_header first to get a `struct line_header'
6896 containing the data in the statement program header, and then
6897 pass that to dwarf_decode_lines, which will pick up where that
6898 left off. Be sure to clean up the `struct line_header' object.
6899 (dwarf_decode_line_header, free_line_header, add_include_dir,
6900 add_file_name): New functions.
6901 (dwarf_decode_lines): Move all the code to read the statement
6902 program header into dwarf_decode_line_header. Take the line
6903 header it built as the first argument, instead of the offset to
6904 the compilation unit's line number info. Use the new `struct
6905 line_header' type instead of the old structures. No need to do
6906 cleanups here now, since we don't allocate anything.
6907 (dwarf2_statement_list_fits_in_line_number_section,
6908 dwarf2_line_header_too_long): New complaints.
6909
6910 2002-05-06 Elena Zannoni <ezannoni@redhat.com>
6911
6912 * gdbtypes.c (init_vector_type): New function.
6913 (build_builtin_type_vec128): Simplify the representation of SIMD
6914 registers.
6915 (build_gdbtypes): Initialize new builtin vector types.
6916 (_initialize_gdbtypes): Register new vector types with gdbarch.
6917 (builtin_type_v4_float, builtin_type_v4_int32,
6918 builtin_type_v8_int16, builtin_type_v16_int8,
6919 builtin_type_v2_int32, builtin_type_v4_int16,
6920 builtin_type_v8_int8): New (renamed) SIMD types.
6921
6922 2002-05-06 Mark Kettenis <kettenis@gnu.org>
6923
6924 * i387-nat.c (i387_fill_fsave): Use regcache_collect.
6925 (i387_fill_fxsave): Likewise.
6926
6927 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
6928
6929 * alpha-tdep.c (alpha_extract_return_value): Don't use
6930 non-constant array size in prototype.
6931
6932 2002-05-04 Andrew Cagney <ac131313@redhat.com>
6933
6934 From Brian Taylor <briant at model dot com>:
6935 * ui-out.c (ui_out_field_core_addr): Use the function
6936 longest_local_hex_string_custom'to format addresses > 32 bits
6937 wide.
6938
6939 * ui-out.c (ui_out_field_core_addr): Update comment.
6940
6941 2002-05-04 Andrew Cagney <ac131313@redhat.com>
6942
6943 * stack.c (select_and_print_frame): Make static. Delete the
6944 parameter `level'.
6945 (func_command): Update call.
6946 (select_frame_command): Delete code computing the frame level.
6947 * frame.h (select_and_print_frame): Delete declaration.
6948
6949 2002-05-04 Andrew Cagney <ac131313@redhat.com>
6950
6951 * sparc-tdep.c (sparc_get_saved_register): Comment why
6952 get_prev_frame call is safe.
6953
6954 2002-05-04 Andrew Cagney <ac131313@redhat.com>
6955
6956 * frame.h (select_frame): Delete level parameter.
6957 * stack.c (select_frame): Update. Use frame_relative_level to
6958 obtain the frame's level.
6959 (select_and_print_frame): Update call.
6960 (select_frame_command): Ditto.
6961 (up_silently_base): Ditto.
6962 (down_silently_base): Ditto.
6963 * ocd.c (ocd_start_remote): Ditto.
6964 * remote-rdp.c (remote_rdp_open): Ditto.
6965 * remote-mips.c (mips_initialize): Ditto.
6966 (common_open): Ditto.
6967 * remote-e7000.c (e7000_start_remote): Ditto.
6968 * m3-nat.c (select_thread): Ditto.
6969 * hppa-tdep.c (child_get_current_exception_event): Ditto.
6970 (child_get_current_exception_event): Ditto.
6971 * varobj.c (varobj_create): Ditto.
6972 (varobj_update): Ditto.
6973 (c_value_of_root): Ditto.
6974 * tracepoint.c (finish_tfind_command): Ditto.
6975 * corelow.c (core_open): Ditto.
6976 * arch-utils.c (generic_prepare_to_proceed): Ditto.
6977 * thread.c (info_threads_command): Ditto.
6978 (switch_to_thread): Ditto.
6979 * infrun.c (normal_stop): Ditto.
6980 (restore_selected_frame): Ditto.
6981 (restore_inferior_status): Ditto.
6982 * breakpoint.c (insert_breakpoints): Ditto.
6983 (watchpoint_check): Ditto.
6984 (bpstat_stop_status): Ditto.
6985 (do_enable_breakpoint): Ditto.
6986 * blockframe.c (flush_cached_frames): Ditto.
6987 (reinit_frame_cache): Ditto.
6988
6989 2002-05-04 Andrew Cagney <ac131313@redhat.com>
6990
6991 * MAINTAINERS (Host/Native): Add Jason Thorpe as NetBSD
6992 maintainer.
6993
6994 2002-05-04 Jim Blandy <jimb@redhat.com>
6995
6996 * gdbtypes.c (replace_type): Doc fix.
6997
6998 2002-05-04 Andrew Cagney <ac131313@redhat.com>
6999
7000 * valprint.c (strcat_longest): Delete commented out function.
7001 Update copyright.
7002
7003 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7004
7005 * MAINTAINERS: Mark a29k as deleted.
7006 * NEWS: Mention that a29k was removed. Add OBSOLETE section.
7007 Move new configurations to the top.
7008 * configure.tgt: Remove a29k.
7009 * config/a29k/tm-vx29k.h: Delete.
7010 * config/a29k/vx29k.mt: Delete.
7011 * config/a29k/tm-a29k.h: Delete.
7012 * config/a29k/a29k-udi.mt: Delete.
7013 * config/a29k/a29k.mt: Delete.
7014 * a29k-tdep.c: Delete.
7015 * remote-udi.c: Delete.
7016 * remote-mm.c: Delete.
7017 * remote-eb.c: Delete.
7018 * remote-adapt.c: Delete.
7019 * Makefile.in: Remove obsolete code.
7020 * config/s390/s390x.mt: Ditto.
7021 * config/s390/s390.mt: Ditto.
7022 * config/sparc/sparclynx.mh: Ditto.
7023 * config/sparc/linux.mh: Ditto.
7024 * config/pa/hppaosf.mh: Ditto.
7025 * config/pa/hppabsd.mh: Ditto.
7026 * config/ns32k/nbsd.mt: Ditto.
7027 * config/mips/vr5000.mt: Ditto.
7028 * config/m68k/sun3os4.mh: Ditto.
7029 * config/m68k/nbsd.mt: Ditto.
7030 * config/m68k/m68klynx.mh: Ditto.
7031 * config/m32r/m32r.mt: Ditto.
7032 * config/i386/x86-64linux.mt: Ditto.
7033 * config/i386/nbsdelf.mt: Ditto.
7034 * config/i386/nbsd.mt: Ditto.
7035 * config/i386/i386lynx.mh: Ditto.
7036
7037 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7038
7039 * target.c (debug_print_register): New function. Handle oversize
7040 registers.
7041 (debug_to_fetch_registers): Call.
7042 (debug_to_store_registers): Call.
7043
7044 2002-05-03 Jim Blandy <jimb@redhat.com>
7045
7046 * stabsread.c (cleanup_undefined_types): Use replace_type, not memcpy.
7047 (read_type): Doc fix.
7048 * gdbtypes.c (replace_type): Doc fix.
7049
7050 * stabsread.c (multiply_defined_struct): New complaint.
7051 (read_struct_type): If the type we were passed isn't empty, or
7052 incomplete, don't read the new struct type into it; complain,
7053 and return the original type unchanged. Take a new `type_code'
7054 argument, which is the type code for the new type.
7055 (read_type): Rather than storing the type's type code here, pass
7056 it as an argument to read_struct_type, and let that take care of
7057 storing it. That way, we don't overwrite the original type code,
7058 so read_struct_type can use it to decide whether we're overwriting
7059 something we shouldn't.
7060 (complain_about_struct_wipeout): New function.
7061
7062 2002-05-03 Andrew Cagney <ac131313@redhat.com>
7063
7064 * gdbarch.sh: Assert that gdbarch is non-NULL.
7065 * gdbarch.c: Regenerate.
7066
7067 2002-05-03 Jason Merrill <jason@redhat.com>
7068
7069 * gnu-v3-abi.c (gnuv3_rtti_type): If we get confused, just warn
7070 and return NULL.
7071
7072 2002-05-03 Michal Ludvig <mludvig@suse.cz>
7073
7074 * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map),
7075 (x86_64_dwarf2gdb_regno_map_length),
7076 (x86_64_dwarf2_reg_to_regnum): Added.
7077 (x86_64_gdbarch_init): Added registration of x86_64_dwarf2_reg_to_regnum.
7078 (x86_64_gdbarch_init): Renamed from i386_gdbarch_init.
7079 (_initialize_x86_64_tdep): Synced with the change above.
7080 (x86_64_skip_prologue): Reformulated message.
7081
7082 2002-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
7083
7084 * f-exp.y: Also use new prev_lexptr variable
7085 to improve error reporting. Based on Michael Snyder
7086 2002-04-24 dated patch to c-exp.y.
7087 * jv-exp.y: Likewise.
7088 * m2-exp.y: Likewise.
7089
7090 2002-05-02 Elena Zannoni <ezannoni@redhat.com>
7091
7092 * valops.c (value_arg_coerce): Don't coerce arrays to pointers if
7093 we are dealing with vectors.
7094
7095 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
7096
7097 * config/m68k/tm-nbsd.h: Obvious fix,
7098 correct machine name.
7099
7100 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
7101
7102 * p-typeprint.c (pascal_type_print_base): Add support
7103 for TYPE_CODE_STRING and TYPE_CODE_BITSTRING.
7104
7105 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
7106
7107 * p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
7108 for fondamental pascal 'char' type.
7109
7110 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
7111
7112 * p-lang.h (is_pascal_string_type): Declaration changed,
7113 new sixth argument of type char ** added.
7114 * p-lang.c (is_pascal_string_type): Implementation
7115 changed. Args length_pos, length_size, string_pos, char_size
7116 can now be NULL. New argument arrayname set to the field
7117 name of the char array. Return value set to char array
7118 field index plus one.
7119 * p-valprint.c (pascal_val_print): Adapt to new declaration of
7120 is_pascal_string_type function.
7121
7122 2002-05-02 Andrew Cagney <cagney@redhat.com>
7123
7124 * gdbarch.sh (gdbarch_update_p): Revert 2002-05-02 Andrew Cagney
7125 <cagney@redhat.com> change.
7126 * gdbarch.c: Regenerate.
7127
7128 2002-05-02 Andrew Cagney <cagney@redhat.com>
7129
7130 * gdbarch.sh (gdbarch_update_p): Swap out the old architecture
7131 before probing for a new one. Detect errorenous gdbarch_init
7132 functions.
7133 * gdbarch.c: Regenerate.
7134
7135 2002-05-01 Andrew Cagney <cagney@redhat.com>
7136
7137 * config/mn10200/tm-mn10200.h: Include "symfile.h" and "symtab.h".
7138 * config/mcore/tm-mcore.h: Ditto. Update copyright.
7139 * config/v850/tm-v850.h: Ditto. Update copyright.
7140
7141 2002-04-30 Andrew Cagney <ac131313@redhat.com>
7142
7143 * cris-tdep.c (cris_gdbarch_init): Use arches instead of
7144 current_gdbarch.
7145
7146 2002-04-30 Michael Snyder <msnyder@redhat.com>
7147
7148 * arm-tdep.c: Whitespace clean-ups.
7149 (arm_skip_prologue): Fix thinko; two lines
7150 should have been removed as part of 4/24 change.
7151
7152 2002-04-30 Kevin Buettner <kevinb@redhat.com>
7153
7154 * rs6000-tdep.c: Added comment describing how fpscr register
7155 numbers were chosen.
7156
7157 2002-04-30 Michael Snyder <msnyder@redhat.com>
7158
7159 * gnu-nat.c (gnu_find_memory_regions): Fix merge botch.
7160
7161 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
7162
7163 * hpread.c (DNTT_TYPE_VECTOR): Rename from TYPE_VECTOR.
7164 (DNTT_TYPE_VECTOR_LENGTH): Rename from TYPE_VECTOR_LENGTH.
7165 (hpread_symfile_init, hpread_lookup_type): Substitute throughout.
7166
7167 2002-04-29 Kevin Buettner <kevinb@redhat.com>
7168
7169 From Louis Hamilton <hamilton@redhat.com>:
7170 * rs6000-tdep.c (coff/xcoff.h, libxcoff.h): Include.
7171 * xcoffread.c (coff/xcoff.h, libxcoff.h): Likewise.
7172 * rs6000-tdep.c (rs6000_gdbarch_init): Use bfd_xcoff_is_xcoff64(),
7173 not bfd-private xcoff data, to determine wordsize.
7174 * xcoffread.c (read_xcoff_xymtab, read_symbol_lineno): Likewise.
7175
7176 2002-04-29 Andrew Cagney <ac131313@redhat.com>
7177
7178 GDB 5.2 released from 5.2 branch.
7179
7180 2002-04-29 Michal Ludvig <mludvig@suse.cz>
7181
7182 * x86-64-linux-nat.c (fill_gregset): Explicit cast to avoid warning.
7183 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
7184 (x86_64_register_info_table): Added comments with register numbers.
7185
7186 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
7187
7188 * rs6000-tdep.c (rs6000_extract_return_value,
7189 rs6000_store_return_value): Handle returning vectors.
7190 (rs6000_gdbarch_init): Use
7191 ppc_sysv_abi_broken_use_struct_convention for native sysv cases.
7192 * ppc-linux-tdep.c (ppc_sysv_abi_broken_use_struct_convention):
7193 New function.
7194 (ppc_sysv_abi_use_struct_convention): Deal with functions returning
7195 vectors.
7196 (ppc_sysv_abi_push_arguments): Handle vector parameters.
7197 * ppc-tdep.h (ppc_sysv_abi_broken_use_struct_convention): Export.
7198
7199 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
7200
7201 * hpread.c (hpread_psymtab_to_symtab_1,
7202 hpread_psymtab_to_symtab): Replace fprintf tab_to_s...)
7203 with fprintf_unfiltered (gdb_stderr,...).
7204
7205 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
7206
7207 * remote-array.c (printf_monitor, write_monitor,
7208 array_insert_breakpoint, array_remove_breakpoint ):
7209 Replace fprintf (stderr,...
7210 with fprintf_unfiltered (gdb_stderr,....
7211 * remote-es.c: Likewise.
7212 * remote-os9k.c: Likewise.
7213 * remote-st.c: Likewise.
7214
7215 2002-04-28 Andreas Schwab <schwab@suse.de>
7216
7217 * config/s390/s390.mh (NATDEPFILES): Remove solib.o, add
7218 linux-proc.o and gcore.o.
7219
7220 2002-04-26 Michal Ludvig <mludvig@suse.cz>
7221
7222 * x86-64-tdep.c (x86_64_skip_prologue): Print note when debugging
7223 code without frame pointers.
7224
7225 2002-04-26 Andrew Cagney <ac131313@redhat.com>
7226
7227 * sparc-tdep.c (sparc_gdbarch_init): Add comment explaining why
7228 ON_STACK is needed.
7229
7230 2002-04-26 Ben Elliston <bje@redhat.com>
7231
7232 * target.c (do_xfer_memory): Correct reference to the new option
7233 "trust-readonly-sections".
7234
7235 2002-04-26 Elena Zannoni <ezannoni@redhat.com>
7236
7237 * gdbtypes.h (TYPE_FLAG_VECTOR, TYPE_VECTOR): Define.
7238 * gdbtypes.c (recursive_dump_type): Output the vector flag.
7239 * dwarf2read.c (dwarf_attr_name): Handle new attribute for
7240 vectors.
7241 (read_array_type): Record the fact that this array type is really a
7242 vector (i.e. are passed in by value).
7243
7244 2002-04-26 Jason Thorpe <thorpej@wasabisystems.com>
7245
7246 * alpha-tdep.h (gdbarch_tdep): Add sigcontext_addr member.
7247 * alpha-tdep.c (alpha_sigcontext_addr): New function.
7248 (alpha_find_saved_regs): Use alpha_sigcontext_addr.
7249 (alpha_gdbarch_init): Initialize tdep->sigcontext_addr.
7250 * alpha-linux-tdep.c: Include frame.h.
7251 (alpha_linux_sigcontext_addr): New function.
7252 (alpha_linux_init_abi): Set tdep->sigcontext_addr to
7253 alpha_linux_sigcontext_addr.
7254 * alpha-osf1-tdep.c: Include gdbcore.h.
7255 (alpha_osf1_sigcontext_addr): New function.
7256 (alpha_osf1_init_abi): Set tdep->sigcontext_addr to
7257 alpha_osf1_sigcontext_addr.
7258 * config/alpha/tm-alpha.h (SIGCONTEXT_ADDR): Remove.
7259 * config/alpha/tm-alphalinux.h (SIGCONTEXT_ADDR): Remove.
7260
7261 2002-04-26 Andrew Cagney <ac131313@redhat.com>
7262
7263 * stack.c (selected_frame_level):
7264 (select_frame): Do not set selected_frame_level.
7265 * frame.h (selected_frame_level): Delete declaration.
7266
7267 2002-04-26 Andrew Cagney <ac131313@redhat.com>
7268
7269 * rs6000-tdep.c (rs6000_gdbarch_init): Only set
7270 convert_from_func_ptr-addr when AIX / PowerOpen.
7271
7272 2002-04-25 Andrew Cagney <ac131313@redhat.com>
7273
7274 * valops.c (hand_function_call): Call
7275 generic_save_call_dummy_addr.
7276 * frame.h (generic_save_call_dummy_addr): Declare.
7277 * blockframe.c (struct dummy_frame): Add fields call_lo and
7278 call_hi.
7279 (generic_find_dummy_frame): Check for PC in range call_lo to
7280 call_hi instead of entry_point_address.
7281 (generic_pc_in_call_dummy): Search the dummy frames for a PC in
7282 the call_lo to call_hi range. Allow for DECR_PC_AFTER_BREAK.
7283 (generic_save_call_dummy_addr): New function.
7284
7285 2002-04-24 David S. Miller <davem@redhat.com>
7286
7287 * sparc-tdep.c (sparc_gdbarch_skip_prologue): Kill, duplicates
7288 sparc_skip_prologue.
7289 (sparc_skip_prologue): Kill frameless_p arg, and use line number
7290 information to find prologue when possible.
7291 (sparc_prologue_frameless_p): Call examine_prologue directly.
7292 (sparc_gdbarch_init): Update set_gdbarch_skip_prologue call.
7293 * config/sparc/tm-sparc.h (sparc_skip_prologue): Update for killed
7294 second argument.
7295 (SKIP_PROLOGUE): Likewise.
7296
7297 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
7298
7299 * alpha-tdep.c (alpha_skip_prologue_internal): Remove
7300 GDB_TARGET_HAS_SHARED_LIBS #ifdef and update comment to
7301 indicate that the condition it was testing is always true.
7302 * config/alpha/nm-linux.h (GDB_TARGET_HAS_SHARED_LIBS): Remove.
7303 * config/alpha/nm-nbsd.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
7304 * config/alpha/nm-osf.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
7305
7306 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
7307
7308 * alpha-tdep.h (gdbarch_tdep): Add jb_pc and jb_elt_size members.
7309 * alpha-linux-tdep.c (alpha_linux_init_abi): Initialize
7310 tdep->jb_pc and tdep->jb_elt_size.
7311 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Likewise.
7312 * alphafbsd-tdep.c (alphafbsd_init_abi): Likewise.
7313 * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
7314 * alpha-nat.c (get_longjmp_target): Remove.
7315 (JB_ELEMENT_SIZE): Ditto.
7316 (JB_PC): Ditto.
7317 * alpha-tdep.c (alpha_get_longjmp_target): New function.
7318 (alpha_gdbarch_init): Default tdep->jb_pc to -1. If the
7319 OS ABI sets jb_pc to a valid value, set gdbarch_get_longjmp_target
7320 to alpha_get_longjmp_target.
7321 (alpha_dump_tdep): Report tdep->jb_pc and tdep->jb_elt_size.
7322 * config/alpha/nm-linux.h (GET_LONGJMP_TARGET): Remove.
7323 * config/alpha/nm-osf.h (GET_LONGJMP_TARGET): Remove.
7324
7325 2002-04-25 Andrew Cagney <ac131313@redhat.com>
7326
7327 * README: Update to GDB 5.2.
7328
7329 2002-04-25 Andrew Cagney <ac131313@redhat.com>
7330
7331 * gdbarch.sh (LC_ALL): Set to `c'.
7332
7333 2002-04-25 Theodore A. Roth <troth@verinet.com>
7334
7335 * avr-tdep.c: Ran through gdb_indent.sh.
7336
7337 2002-04-25 Theodore A. Roth <troth@verinet.com>
7338
7339 * MAINTAINERS: Add myself as AVR maintainer.
7340 * NEWS: Note new target avr.
7341
7342 2002-04-25 Theodore A. Roth <troth@verinet.com>
7343
7344 * Makefile.in: Add support for AVR target.
7345 * configure.tgt: Add support for AVR target.
7346 * avr-tdep.c: New file
7347 * config/avr/avr.mt: New file.
7348
7349 2002-04-25 Theodore A. Roth <troth@verinet.com>
7350
7351 * MAINTAINERS: Add myself to write-after-approval.
7352
7353 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
7354
7355 * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,...
7356 with fprintf_unfiltered (gdb_stderr,....
7357
7358 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
7359
7360 Fix PR gdb/508.
7361 * symfile.c (add_filename_language): Fix wrong xrealloc size argument.
7362
7363 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
7364
7365 * p-exp.y: Also use new prev_lexptr variable
7366 to improve error reporting. Based on Michael Snyder
7367 2002-04-24 dated patch to c-exp.y.
7368
7369 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
7370
7371 * alpha-tdep.c (alpha_breakpoint_from_pc): New function.
7372 (alpha_gdbarch_init): Set gdbarch_breakpoint_from_pc to
7373 alpha_breakpoint_from_pc. Set gdbarch_function_start_offset
7374 to 0.
7375 * config/alpha/tm-alpha.h: Remove forward decls of struct type
7376 and struct value.
7377 (FUNCTION_START_OFFSET): Remove.
7378 (BREAKPOINT): Ditto.
7379
7380 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
7381
7382 * MAINTAINERS: Reflect that multi-arch is enabled for VAX.
7383 * NEWS: Ditto.
7384
7385 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
7386
7387 * alpha-linux-tdep.c (alpha_linux_pc_in_sigtramp): New function.
7388 (alpha_linux_init_abi): Set gdbarch_pc_in_sigtramp to
7389 alpha_linux_pc_in_sigtramp.
7390 * alpha-osf1-tdep.c (alpha_osf1_pc_in_sigtramp): New function.
7391 (alpha_osf1_init_abi): Set gdbarch_pc_in_sigtramp to
7392 alpha_osf1_pc_in_sigtramp.
7393 * alpha-tdep.c (alpha_osf_in_sigtramp): Remove.
7394 * alphafbsd-tdep.c (alphafbsd_pc_in_sigtramp): New function.
7395 (alphafbsd_init_abi): Set gdbarch_pc_in_sigtramp to
7396 alphafbsd_pc_in_sigtramp.
7397 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): New function.
7398 (alphanbsd_init_abi): Set gdbarch_pc_in_sigtramp to
7399 alphanbsd_pc_in_sigtramp.
7400 * config/alpha/tm-alpha.h (IN_SIGTRAMP): Remove.
7401 * config/alpha/tm-alphalinux.h (IN_SIGTRAMP): Remove.
7402
7403 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
7404
7405 * config/alpha/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
7406
7407 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
7408
7409 * Makefile.in (ALLDEPFILES): Add alphanbsd-nat.c and
7410 alphanbsd-tdep.c.
7411 (alphanbsd-nat.o): New dependency list.
7412 (alphanbsd-tdep.o): Ditto.
7413 * NEWS: Note new native NetBSD/alpha configuration.
7414 * alphanbsd-nat.c: New file.
7415 * alphanbsd-tdep.c: Ditto.
7416 * configure.host (alpha*-*-netbsd*): New host.
7417 * configure.tgt (alpha*-*-netbsd*): New target.
7418 * config/alpha/nbsd.mh: New file.
7419 * config/alpha/nbsd.mt: Ditto.
7420 * config/alpha/nm-nbsd.h: Ditto.
7421 * config/alpha/tm-nbsd.h: Ditto.
7422
7423 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
7424
7425 * Makefile.in (ALLDEPFILES): Add alpha-osf1-tdep.c.
7426 (alpha-osf1-tdep.o): New dependency list.
7427 * alpha-tdep.h (gdbarch_tdep): Add dynamic_sigtramp_offset
7428 and skip_sigtramp_frame members.
7429 * alpha-linux-tdep.c: Include gdbcore.h.
7430 (alpha_linux_sigtramp_offset): Change return type to LONGEST.
7431 (alpha_linux_init_abi): Initialize tdep->dynamic_sigtramp_offset.
7432 * alpha-osf1-tdep.c: New file.
7433 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Moved to
7434 alpha-osf1-dep.c.
7435 (alpha_frame_past_sigtramp_frame): New function.
7436 (alpha_dynamic_sigtramp_offset): Ditto.
7437 (alpha_proc_desc_is_dyn_sigtramp): Ditto.
7438 (alpha_set_proc_desc_is_dyn_sigtramp): Ditto.
7439 (ALPHA_PROC_SIGTRAMP_MAGIC): Define.
7440 (push_sigtramp_desc): Use alpha_set_proc_desc_is_dyn_sigtramp.
7441 (after_prologue): Use alpha_proc_desc_is_dyn_sigtramp.
7442 (find_proc_desc): Use alpha_dynamic_sigtramp_offset.
7443 (alpha_frame_chain): Use alpha_frame_past_sigtramp_frame.
7444 (alpha_init_extra_frame_info): Use alpha_proc_desc_is_dyn_sigtramp.
7445 (alpha_pop_frame): Use alpha_proc_desc_is_dyn_sigtramp.
7446 (alpha_gdbarch_init): Initialize tdep->dynamic_sigtramp_offset
7447 and tdep->skip_sigtramp_frame. Set gdbarch_skip_trampoline_code
7448 to find_solib_trampoline_target.
7449 * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-osf1-tdep.o.
7450 * config/alpha/tm-alpha.h: Remove inclusion of regcache.h.
7451 (SKIP_TRAMPOLINE_CODE): Remove.
7452 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7453 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7454 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
7455 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
7456 * config/alpha/tm-alphalinux.h (PROC_DESC_IS_DYN_SIGTRAMP): Remove.
7457 (PROC_SIGTRAMP_MAGIC): Ditto.
7458 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7459 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7460 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7461 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
7462 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
7463
7464 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
7465
7466 * NEWS: Note that Alpha targets are now multi-arch.
7467
7468 2002-04-24 Michael Snyder <msnyder@redhat.com>
7469
7470 * parser-defs.h (prev_lexptr): New external variable.
7471 * parse.c (parse_exp_1): Set prev_lexptr to null before
7472 calling the language-specific parser.
7473 * c-exp.y (yylex): Set prev_lexptr to start of current token.
7474 (yyerror): Use prev_lexptr in error reporting.
7475
7476 2002-04-24 Daniel Jacobowitz <drow@mvista.com>
7477
7478 * config/i386/tm-linux.h: Define FILL_FPXREGSET.
7479 * gregset.h: If FILL_FPXREGSET is defined, provide
7480 gdb_fpxregset_t, supply_fpxregset, and fill_fpxregset.
7481 * linux-proc.c (linux_do_thread_registers): If FILL_FPXREGSET
7482 is defined, call fill_fpxregset.
7483
7484 2002-04-24 Roland McGrath <roland@frob.com>
7485
7486 * config/i386/i386gnu.mh (NATDEPFILES): Add core-regset.o here.
7487 * i386gnu-nat.c [HAVE_SYS_PROCFS_H]
7488 (supply_gregset, supply_fpregset): New functions.
7489
7490 * gnu-nat.c (gnu_find_memory_regions): New function.
7491 (init_gnu_ops): Set `to_find_memory_regions' hook to that.
7492 (gnu_xfer_memory): Add a cast.
7493
7494 2002-04-24 Michael Snyder <msnyder@redhat.com>
7495
7496 * arm-tdep.c (arm_scan_prologue): Move "mov ip, sp" into the
7497 loop. Add handling for "str lr, [sp, #-4]!" and for saves
7498 of argument regs ("str r(0123), [r11, #-nn"]).
7499 (arm_skip_prologue): Better handling for frameless functions.
7500 Treat "mov ip, sp" as optional. Recognize "str lr, [sp, #-4]".
7501 (arm_skip_prologue): Recognize str r(0123), [r11, #-nn].
7502
7503 Wed Apr 24 14:22:21 2002 Andrew Cagney <cagney@redhat.com>
7504
7505 * arm-tdep.c (arm_gdbarch_init): Add comment that NUM_REGS nor
7506 NUM_PSEUDO_REGS can be used.
7507
7508 2002-04-24 Andrew Cagney <ac131313@redhat.com>
7509
7510 * arch-utils.h: Update copyright.
7511
7512 * gdbarch.sh (PC_IN_SIGTRAMP): Add.
7513 * gdbarch.h, gdbarch.c: Re-generate.
7514
7515 * inferior.h (IN_SIGTRAMP): Delete definition.
7516 * arch-utils.c (legacy_pc_in_sigtramp): New function.
7517 * arch-utils.h (legacy_pc_in_sigtramp): Declare.
7518
7519 * mips-tdep.c (mips_init_extra_frame_info): Use PC_IN_SIGTRAMP.
7520 (mips_dump_tdep): Do not print value of IN_SIGTRAMP.
7521 * hppa-tdep.c (pc_in_interrupt_handler): Use PC_IN_SIGTRAMP.
7522 (find_proc_framesize): Ditto.
7523 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Ditto.
7524 (alpha_init_extra_frame_info): Ditto.
7525 * infrun.c (handle_inferior_event): Ditto.
7526 (handle_inferior_event): Ditto.
7527 (check_sigtramp2): Ditto.
7528 * blockframe.c (create_new_frame): Ditto.
7529 (get_prev_frame): Ditto.
7530 * ppc-linux-tdep.c: Update comments.
7531 * i386-linux-tdep.c: Update comments.
7532 * breakpoint.c (bpstat_what): Update comment.
7533
7534 2002-04-24 David S. Miller <davem@redhat.com>
7535
7536 * i960-tdep.c (register_in_window_p): New function.
7537 (i960_find_saved_register): Use it instead of
7538 REGISTER_IN_WINDOW_P.
7539 * config/i960/tm-i960.h (REGISTER_IN_WINDOW): Delete.
7540
7541 * symtab.h (find_stab_function_addr): Kill extern.
7542 * minsyms.c (find_stab_function_addr): Remove from here...
7543 * dbxread.c: ... to here, and mark it static.
7544
7545 2002-04-20 David S. Miller <davem@redhat.com>
7546
7547 * sparc-tdep.c (sparc_pop_frame): Only need to allocate
7548 SPARC_INTREG_SIZE * 16 bytes for reg_temp.
7549
7550 2002-04-21 David S. Miller <davem@redhat.com>
7551
7552 * remote-vxsparc.c (vx_read_register): Fix typo, we want
7553 REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
7554 (vx_write_register): Likewise.
7555
7556 2002-04-23 J. Brobecker <brobecker@gnat.com>
7557
7558 * source.c (is_regular_file): New function.
7559 (openp): Check wether file to open is a regular file
7560 to avoid opening directories.
7561
7562 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7563
7564 * findvar.c (extract_signed_integer): Cast printf argument
7565 to suppress format warning.
7566 (extract_unsigned_integer): Likewise.
7567 * infcmd.c (registers_info): Likewise.
7568 * top.c (get_prompt_1): Likewise.
7569 * valops.c (value_assign): Likewise.
7570 * valprint.c (print_decimal): Likewise.
7571
7572 2002-04-22 H.J. Lu (hjl@gnu.org)
7573
7574 * c-exp.y (typebase): Support
7575
7576 [long|long long|short] [signed|unsigned] [int|]
7577
7578 and
7579
7580 signed [long|long long|short] int
7581
7582 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7583
7584 * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
7585 and vax-tdep.h.
7586 * vax-tdep.h: New file.
7587 * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
7588 Make several routines static.
7589 (vax_get_saved_register): New function.
7590 (vax_gdbarch_init): New function.
7591 (_initialize_vax_tdep): Register vax_gdbarch_init.
7592 * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
7593 Remove macros now under the control of gdbarch.
7594
7595 2002-04-22 Michael Snyder <msnyder@redhat.com>
7596
7597 * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
7598 Some whitespace and coding standards tweaks.
7599
7600 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7601
7602 * vax-tdep.c: Include regcache.h.
7603 (vax_call_dummy_words): New.
7604 (sizeof_vax_call_dummy_words): New.
7605 (vax_fix_call_dummy): New function.
7606 (vax_saved_pc_after_call): Ditto.
7607 * config/vax/tm-vax.h: Don't include regcache.h.
7608 (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
7609 (CALL_DUMMY): Remove.
7610 (CALL_DUMMY_WORDS): Define.
7611 (SIZEOF_CALL_DUMMY_WORDS): Define.
7612 (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
7613
7614 2002-04-18 Michael Snyder <msnyder@redhat.com>
7615
7616 * arm-tdep.h: Change regnum defines to enums for ease of debugging.
7617
7618 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7619
7620 * vax-tdep.c (vax_frame_chain): New function.
7621 (vax_push_dummy_frame): Ditto.
7622 (vax_pop_frame): Ditto.
7623 * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
7624 (FRAMELESS_FUNCTION_INVOCATION): Use
7625 generic_frameless_function_invocation_not.
7626 (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
7627 (POP_FRAME): Use vax_pop_frame.
7628
7629 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7630
7631 * vax-tdep.c (vax_store_struct_return): New function.
7632 (vax_extract_return_value): Ditto.
7633 (vax_store_return_value): Ditto.
7634 (vax_extract_struct_value_address): Ditto.
7635 * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
7636 vax_store_struct_return.
7637 (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
7638 (STORE_RETURN_VALUE): Use vax_store_return_value.
7639 (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
7640
7641 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7642
7643 * vax-tdep.c (vax_frame_saved_pc): New function.
7644 (vax_frame_args_address_correct): Ditto.
7645 (vax_frame_args_address): Ditto.
7646 (vax_frame_locals_address): Ditto.
7647 (vax_frame_num_args): Move code to be in proximity to
7648 other frame-related functions.
7649 * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
7650 (FRAME_SAVED_PC): Use vax_frame_saved_pc.
7651 (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
7652 (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
7653 (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
7654
7655 2002-04-22 H.J. Lu (hjl@gnu.org)
7656
7657 * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
7658 includedir.
7659
7660 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7661
7662 * vax-tdep.c (vax_frame_init_saved_regs): New function.
7663 * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
7664 (FRAME_INIT_SAVED_REGS): New macro.
7665
7666 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7667
7668 * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
7669
7670 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7671
7672 * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
7673 where needed.
7674 (fetch_osf_core_registers): Likewise.
7675 (supply_gregset): Likewise.
7676
7677 2002-04-22 J. Brobecker <brobecker@gnat.com>
7678
7679 * symfile.h (get_section_index): Define.
7680 * symfile.c (get_section_index): New function.
7681 * mdebugread.c (SC_IS_SBSS): New macro.
7682 (SC_IS_BSS): Return true for the scBss storage class only, as
7683 the scSBss storage class refers to the .sbss section.
7684 (parse_partial_symbols): Discard the symbols which associated
7685 section does not exist.
7686 Make sure to use the .sbss section index for symbols which
7687 storage class is scBss, rather than using the .bss section index.
7688
7689 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7690
7691 * vax-tdep.c: Update copyright years.
7692 (vax_register_name): New function.
7693 (vax_register_byte): Ditto.
7694 (vax_register_raw_size): Ditto.
7695 (vax_register_virtual_size): Ditto.
7696 (vax_register_virtual_type): Ditto.
7697 * config/vax/tm-vax.h: Update copyright years.
7698 (REGISTER_NAMES): Remove.
7699 (REGISTER_NAME): Define.
7700 (REGISTER_BYTE): Use vax_register_byte.
7701 (REGISTER_RAW_SIZE): Use vax_register_raw_size.
7702 (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
7703 (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
7704
7705 2002-04-21 Andrew Cagney <ac131313@redhat.com>
7706
7707 * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
7708 declaration
7709 * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
7710
7711 2002-04-21 David S. Miller <davem@redhat.com>
7712
7713 * arch-utils.c (generic_prologue_frameless_p): Kill
7714 SKIP_PROLOGUE_FRAMELESS_P code.
7715 * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
7716 references.
7717 (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
7718 * arc-tdep.c (arc_prologue_frameless_p): Implement.
7719 * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
7720 references.
7721 (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
7722 * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
7723 (sparc_gdbarch_init): Pass it to
7724 set_gdbarch_prologue_frameless_p.
7725
7726 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7727
7728 * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
7729 (alphabsd-nat.o): New dependency list.
7730
7731 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7732
7733 * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
7734 alphafbsd-tdep.c.
7735 (alpha-linux-tdep.o): New dependency list.
7736 (alphafbsd-tdep.o): Likewise.
7737
7738 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7739
7740 * alpha-linux-tdep.c: New file. Move alpha_linux_sigtramp_offset
7741 to here...
7742 * alpha-tdep.c: ...from here.
7743 * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
7744
7745 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7746
7747 * config/alpha/tm-alpha.h: Move alpha_software_single_step
7748 prototype from here...
7749 * alpha-tdep.h: ...to here.
7750
7751 2002-04-21 Andrew Cagney <ac131313@redhat.com>
7752
7753 * frame.h (selected_frame_level): Document as deprecated.
7754 (frame_relative_level): Declare.
7755 * stack.c (frame_relative_level): New function.
7756 (selected_frame_level): Document as deprecated.
7757 (select_frame): Do not set the selected_frame_level.
7758
7759 * stack.c (frame_info, record_selected_frame): Update.
7760 (frame_command, current_frame_command): Update.
7761 (up_silently_base, up_command, down_silently_base): Update.
7762 (down_command): Update.
7763 * inflow.c (kill_command): Update.
7764 * tracepoint.c (finish_tfind_command): Update.
7765 * corelow.c (core_open): Update.
7766 * thread.c (info_threads_command): Update.
7767 (do_captured_thread_select): Update.
7768 * infcmd.c (finish_command): Update.
7769 * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
7770
7771 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7772
7773 * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
7774
7775 2002-04-21 Andrew Cagney <ac131313@redhat.com>
7776
7777 * arm-tdep.c (arm_breakpoint_from_pc): Make static. Make return
7778 type const.
7779
7780 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7781
7782 * alphafbsd-tdep.c: Update copyright years. Include
7783 alpha-tdep.h.
7784 (alphafbsd_use_struct_convention): Make static.
7785 (alphafbsd_init_abi): New function.
7786 (_initialize_alphafbsd_tdep): New function.
7787 * config/alpha/tm-fbsd.h: Update copyright years.
7788 (USE_STRUCT_CONVENTION): Remove.
7789
7790 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7791
7792 * alpha-tdep.c (alpha_abi_handler): New structure to describe
7793 an Alpha ABI variant.
7794 (alpha_abi_handler_list): Declare.
7795 (alpha_gdbarch_register_os_abi): New function.
7796 (alpha_gdbarch_init): Give registered ABI variant handlers a
7797 chance to tweak the gdbarch once we have set up defaults.
7798 * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
7799
7800 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7801
7802 * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
7803 to standard_coerce_float_to_double.
7804 * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
7805
7806 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7807
7808 * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
7809 * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
7810 from gdbarch_tdep rather than a constant.
7811 (alpha_gdbarch_init): Initialize tdep->vm_min_address to
7812 the default text address for all Alpha Unix ABIs.
7813 (alpha_dump_tdep): Report the value of tdep->vm_min_address.
7814 * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
7815
7816 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7817
7818 * alpha-tdep.h: New file. Includes several Alpha target constants
7819 taken from...
7820 * config/alpha/tm-alpha.h: ...here. Remove macros that we now
7821 let gdbarch deal with.
7822 (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
7823 * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
7824 to dependency list.
7825 * alpha-nat.c: Include alpha-tdep.h. Update for adjusted
7826 Alpha target register names.
7827 * alphabsd-nat.c: Likewise.
7828 * alpha-tdep.c: Include alpha-tdep.h. Update for adjusted
7829 Alpha target register names. Make serveral routines static.
7830 (alpha_get_saved_register): New function.
7831 (alpha_abi_names): New.
7832 (process_note_abi_tag_sections): New function.
7833 (get_elfosabi): New function.
7834 (alpha_gdbarch_init): New function.
7835 (alpha_dump_tdep): New function.
7836 (_initialize_alpha_tdep): Register alpha_gdbarch_init.
7837
7838 2002-04-21 Andrew Cagney <ac131313@redhat.com>
7839
7840 * frame.c (find_saved_register): Delete #ifdef
7841 HAVE_REGISTER_WINDOWS code.
7842 * config/sparc/tm-sparc.h: Update comments.
7843 * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
7844
7845 2002-04-21 Andrew Cagney <ac131313@redhat.com>
7846
7847 * i960-tdep.c (i960_find_saved_register): New function.
7848 (i960_get_saved_register): New function.
7849 * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
7850 (i960_get_saved_register): Declare.
7851 * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
7852
7853 2002-04-20 David S. Miller <davem@redhat.com>
7854
7855 * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
7856
7857 2002-04-20 Andrew Cagney <ac131313@redhat.com>
7858
7859 * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
7860 instead of NUM_PSEUDO_REGS.
7861
7862 2002-04-20 David S. Miller <davem@redhat.com>
7863
7864 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
7865 GDB_MULTI_ARCH_PARTIAL
7866 * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
7867 define, let tm-sp64.h do it.
7868
7869 2002-04-20 Jason Thorpe <thorpej@wasabisystems.com>
7870
7871 * frame.c (find_saved_register): Avoid a NULL pointer
7872 dereference and actually walk the frame list.
7873
7874 2002-04-20 Andrew Cagney <ac131313@redhat.com>
7875
7876 * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
7877 sorted in most most-recent-used order. Document.
7878 * gdbarch.h, gdbarch.c: Regenerate.
7879
7880 2002-04-19 Andrew Cagney <ac131313@redhat.com>
7881
7882 * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
7883 instead of ->prev.
7884 * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
7885 * s390-tdep.c (s390_frame_chain): Do not use ->prev.
7886 * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
7887 instead of ->prev.
7888
7889 2002-04-19 Elena Zannoni <ezannoni@redhat.com>
7890
7891 Fix PR gdb/471.
7892 * gdbtypes.c (init_simd_type): Rewrite using new functions.
7893 (build_builtin_type_vec128): Ditto.
7894 (append_composite_type_field): Fix calculation of type length in
7895 union case.
7896
7897 2002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
7898
7899 * config/djgpp/README: Update.
7900
7901 * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
7902 compiler warnings.
7903
7904 2002-04-19 Jason Thorpe <thorpej@wasabisystems.com>
7905
7906 * alpha-tdep.c (setup_arbitrary_frame): Rename...
7907 (alpha_setup_arbitrary_frame): ...to this.
7908 * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
7909 for alpha_setup_arbitrary_frame.
7910
7911 2002-04-18 Andrew Cagney <cagney@redhat.com>
7912
7913 * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
7914 * gdbarch.h, gdbarch.c: Regenerate.
7915
7916 * defs.h (breakpoint_from_pc_fn): Delete type definition.
7917 * target.h (memory_breakpoint_from_pc): Update declaration.
7918 * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
7919
7920 * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
7921 * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
7922 * mem-break.c (memory_breakpoint_from_pc): Ditto.
7923 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
7924 * s390-tdep.c (s390_breakpoint_from_pc): Ditto
7925 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
7926 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
7927 * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
7928 * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
7929 * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
7930 * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
7931 * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
7932
7933 * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
7934 const pointer.
7935 * monitor.c (monitor_insert_breakpoint): Ditto.
7936 * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
7937
7938 * config/mcore/tm-mcore.h: Update copyright.
7939 * mem-break.c: Ditto.
7940 * xstormy16-tdep.c: Ditto.
7941
7942 2002-04-18 Pierre Muller <muller@ics.u-strasbg.fr>
7943
7944 * p-exp.y: Add precedence rule for '^' token.
7945 This removes the shift/reduce conflicts.
7946 Remove the comment concerning these shift/reduce conflicts.
7947
7948 2002-04-18 Elena Zannoni <ezannoni@redhat.com>
7949
7950 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
7951 (registers_powerpc_nofp): New register set for processors
7952 without floating point unit.
7953
7954 2002-04-18 David S. Miller <davem@redhat.com>
7955
7956 * MAINTAINERS: Add myself to write-after-approval.
7957
7958 2002-04-17 Michael Snyder <msnyder@redhat.com>
7959
7960 * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
7961
7962 2002-04-17 Andrew Cagney <ac131313@redhat.com>
7963
7964 * rs6000-tdep.c (frame_initial_stack_address): Use
7965 frame_register_read to read the alloca_reg.
7966
7967 2002-04-17 Andrew Cagney <ac131313@redhat.com>
7968
7969 * frame.c (find_saved_register): Find saved registers in the next
7970 not prev frame.
7971 Fix PR gdb/365.
7972
7973 2002-04-17 Andrew Cagney <ac131313@redhat.com>
7974
7975 * gdbarch.sh (LANG): Set to ``c''.
7976
7977 2002-04-15 Andrew Cagney <ac131313@redhat.com>
7978
7979 * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
7980
7981 2002-04-15 Andrew Cagney <ac131313@redhat.com>
7982
7983 * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
7984 Update copyright.
7985
7986 * hpread.c (hpread_get_lntt): Add declaration.
7987 Also fix PR gdb/391.
7988
7989 2002-04-14 Andrew Cagney <ac131313@redhat.com>
7990
7991 * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
7992 * aclocal.m4, configure: Re-generate.
7993 Fix PR gdb/391.
7994
7995 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
7996
7997 * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
7998 instead of tm_print_insn.
7999
8000 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
8001
8002 * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
8003
8004 2002-04-14 Andrew Cagney <ac131313@redhat.com>
8005
8006 * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
8007 * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
8008 (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
8009
8010 2002-04-12 Don Howard <dhoward@redhat.com>
8011
8012 * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
8013 max_user_call_depth.
8014 (init_cmd_lists): Initialize the new value;
8015 * cli/cli-script.c (execute_user_command): Limit the call depth of
8016 user defined commands. This avoids a core-dump when user commands
8017 are infinitly recursive.
8018
8019 2002-04-12 Kevin Buettner <kevinb@redhat.com>
8020
8021 * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
8022 * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
8023 from tdep struct instead of DEFAULT_LR_SAVE.
8024 (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
8025 * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
8026 * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
8027
8028 2002-04-12 Michael Snyder <msnyder@redhat.com>
8029
8030 * Remote.c: Spelling fix.
8031 * gcore.c (default_derive_heap_segment): Use bfd_section_name.
8032 If no symbol found for "sbrk", try "_sbrk".
8033 (make_output_phdrs): Use bfd_section_name.
8034 (gcore_copy_callback): Use bfd_section_name.
8035 * eval.c: Indentation fix-ups.
8036 * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
8037 in case it gets applied to an address that is already
8038 in the instruction space.
8039 * cli/cli-decode.c (help_list): Allow long lines to wrap.
8040 * symfile.c: Fix indentation, long lines.
8041 * source.c: White space fix-up.
8042
8043 2002-04-12 Andrew Cagney <cagney@redhat.com>
8044
8045 * defs.h (read_relative_register_raw_bytes): Delete declaration.
8046 * frame.c (frame_register_read): New function. Return non-zero on
8047 success.
8048 (read_relative_register_raw_bytes_for_frame): Delete.
8049 (read_relative_register_raw_bytes): Delete.
8050 * frame.h (frame_register_read): Declare.
8051 * d30v-tdep.c: Update Copyright. Use frame_register_read.
8052 * sh-tdep.c: Ditto.
8053 * infcmd.c (do_registers_info): Ditto.
8054 * hppa-tdep.c: Ditto.
8055 * rs6000-tdep.c: Ditto.
8056 * h8500-tdep.c: Ditto.
8057 * mips-tdep.c: Ditto.
8058 * h8300-tdep.c: Ditto.
8059 * z8k-tdep.c: Ditto.
8060
8061 2002-04-12 Kevin Buettner <kevinb@redhat.com>
8062
8063 From Jimi X <jimix@watson.ibm.com>:
8064 * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
8065 64-bit SysV ABI.
8066
8067 2002-04-12 Kevin Buettner <kevinb@redhat.com>
8068
8069 From Jimi X <jimix@watson.ibm.com>:
8070 * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
8071 bfd info.
8072
8073 2002-04-12 Kevin Buettner <kevinb@redhat.com>
8074
8075 From Jimi X <jimix@watson.ibm.com>:
8076 * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
8077 register sets for these processor variants.
8078
8079 2002-04-11 Daniel Jacobowitz <drow@mvista.com>
8080
8081 * regformats/reg-ppc.dat: Support FPSCR.
8082
8083 2002-04-11 Kevin Buettner <kevinb@redhat.com>
8084
8085 * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
8086 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
8087 Add fpscr as an invalid/unfetchable register.
8088 * ppc-linux-nat.c (ppc_register_u_addr, store_register)
8089 (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
8090 (fill_fpregset): Add support for register fpscr.
8091 (fetch_ppc_registers, store_ppc_registers, supply_gregset)
8092 (fill_gregset): Account for the fact that register ``mq'' might
8093 not exist.
8094 * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
8095 (registers_power): Add fpscr to register set at slot 71.
8096 (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
8097 exist on most PPC architectures. Initialize ppc_fpscr_regnum.
8098
8099 2002-04-11 Michael Snyder <msnyder@redhat.com>
8100
8101 * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
8102 * configure: Regenerate.
8103 * config.in: Regenerate.
8104 * acconfig.h: Add define for _SYSCALL32.
8105 * core-sol2.c: Remove #define _SYSCALL32.
8106 * solib-legacy.c: Remove #define _SYSCALL32.
8107
8108 2002-04-10 Andrew Cagney <ac131313@redhat.com>
8109
8110 * stack.c (select_frame): Cleanup internal error message, do not
8111 use %p.
8112
8113 2002-04-10 Andrew Cagney <ac131313@redhat.com>
8114
8115 * stack.c (select_frame): Check that selected_frame and the
8116 specified level are as expected.
8117 * blockframe.c (get_prev_frame): Set the `level' from next_frame.
8118 Update copyright.
8119 * frame.h (struct frame_info): Add field `level'. Update
8120 copyright.
8121 Work-in-progress PR gdb/464.
8122
8123 2002-04-10 Andrew Cagney <ac131313@redhat.com>
8124
8125 * maint.c (maint_print_section_info): Rename print_section_info.
8126 (print_bfd_section_info, print_objfile_section_info): Update.
8127 * inferior.h (struct gdbarch): Add opaque declaration.
8128 * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
8129 * gdbarch.h: Regenerate.
8130
8131 2002-04-10 Michal Ludvig <mludvig@suse.cz>
8132
8133 * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
8134 (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
8135 (kernel_u_size): Added.
8136 * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
8137 (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
8138
8139 2002-04-04 Jim Ingham <jingham@apple.com>
8140
8141 * valarith.c (find_size_for_pointer_math): New function, either returns
8142 the size for a pointer's target, returns 1 for void *, or errors for
8143 incomplete types.
8144 (value_add, value_sub): use find_size_for_pointer_math.
8145
8146 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
8147
8148 * linux-low.c (linux_look_up_symbols): New hook.
8149 (linux_target_ops): Add linux_look_up_symbols.
8150 * remote-utils.c (decode_address): New function.
8151 (look_up_one_symbol): New function.
8152 * server.c (handle_query): Call target look_up_symbols hook.
8153 * server.h (look_up_one_symbol): Add prototype.
8154 * target.h (struct target_ops): Add look_up_symbols hook.
8155
8156 2002-04-09 Andrew Cagney <ac131313@redhat.com>
8157
8158 * frame.c (read_relative_register_raw_bytes_for_frame): Do not
8159 override FP_REGNUM with frame->fp. Update copyright.
8160 * parse.c (num_std_regs, std_regs): Delete.
8161 (target_map_name_to_register): Do not search std_regs. Update
8162 function description.
8163 * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
8164 declarations. Update copyright.
8165 Fix PR gdb/251.
8166
8167 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
8168
8169 * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
8170 after the last symbol in a block.
8171
8172 2002-04-09 Pierre Muller <muller@ics.u-strasbg.fr>
8173
8174 * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
8175 is non zero as a found symbol.
8176
8177 2002-04-08 Andrew Cagney <ac131313@redhat.com>
8178
8179 * findvar.c: Include "builtin-regs.h".
8180 (value_of_register): Call value_of_builtin_reg when applicable.
8181 * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
8182 (target_map_name_to_register): Call
8183 builtin_reg_map_name_to_regnum.
8184 * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
8185 (COMMON_OBS): Add builtin-regs.o and std-regs.o.
8186 (builtin_regs_h): Define.
8187 (builtin-regs.o): New target.
8188 (findvar.o): Add $(builtin_regs_h).
8189 * builtin-regs.c, builtin-regs.h: New files.
8190 * std-regs.c: New file.
8191 Partial fix for PR gdb/251.
8192
8193 2002-04-08 Kevin Buettner <kevinb@redhat.com>
8194
8195 * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
8196 it's no longer required.
8197
8198 2002-04-08 Andrew Cagney <ac131313@redhat.com>
8199
8200 * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
8201
8202 2002-04-08 Kevin Buettner <kevinb@redhat.com>
8203
8204 From Jimi X <jimix@watson.ibm.com>:
8205 * rs6000-tdep.c (rs6000_software_single_step): Use
8206 rs6000_breakpoint_from_pc() to fetch breakpoint instruction
8207 and size. Use target_insert_breakpoint() and
8208 target_remove_breakpoint() to insert and remove breakpoints
8209 instead of explicit memory reads and writes.
8210
8211 2002-04-08 Kevin Buettner <kevinb@redhat.com>
8212
8213 * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
8214 * rs6000-tdep.c (rs6000_push_arguments): Eliminate
8215 ELF_OBJECT_FORMAT ifdef.
8216
8217 2002-04-08 Kevin Buettner <kevinb@redhat.com>
8218
8219 From Jimi X <jimix@watson.ibm.com>:
8220 * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
8221
8222 2002-04-08 Kevin Buettner <kevinb@redhat.com>
8223
8224 From Jimi X <jimix@watson.ibm.com>:
8225 * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
8226 definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
8227
8228 2002-04-07 Mark Kettenis <kettenis@gnu.org>
8229
8230 * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
8231 s/asprintf/xasprintf/.
8232 (fbsd_make_corefile_notes): s/strdup/xstrdup/.
8233
8234 2002-04-07 Andrew Cagney <ac131313@redhat.com>
8235
8236 I believe Jeff Law denies responsability for this one:
8237 * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
8238 * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
8239 * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
8240 Work-around for PR gdb/366.
8241
8242 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
8243
8244 * remote-e7000.c (write_small, e7000_read_inferior_memory,
8245 e7000_read_inferior_memory_large, e7000_insert_breakpoint,
8246 e7000_remove_breakpoint): Use paddr_nz() to print addresses.
8247
8248 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
8249
8250 * sh-tdep.c (sh_fp_frame_init_saved_regs,
8251 sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
8252 information.
8253
8254 2002-04-07 Andrew Cagney <ac131313@redhat.com>
8255
8256 * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
8257 maintainer.
8258
8259 2002-04-07 Andrew Cagney <ac131313@redhat.com>
8260
8261 * README (Reporting Bugs in GDB): Document the bug web page as the
8262 prefered way of submitting bugs.
8263 Fix PR gdb/402.
8264
8265 2002-04-06 Andrew Cagney <ac131313@redhat.com>
8266
8267 * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
8268 -1. Update comment.
8269 * gdbarch.h, gdbarch.c: Re-generate.
8270
8271 2002-04-07 Andreas Schwab <schwab@suse.de>
8272
8273 * m68klinux-nat.c (fill_fpregset): Properly pass address of
8274 buffer to regcache_collect.
8275
8276 2002-04-06 Andrew Cagney <ac131313@redhat.com>
8277
8278 * gdbarch.sh (PS_REGNUM): Add. Document. Default to -1.
8279 * gdbarch.c, gdbarch.h: Re-generate.
8280
8281 2002-04-06 Andrew Cagney <ac131313@redhat.com>
8282
8283 * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
8284 declaration. Fix -Werror.
8285
8286 2002-04-05 Daniel Jacobowitz <drow@mvista.com>
8287
8288 * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
8289 * gdbarch.c: Regenerate.
8290
8291 2002-04-05 Michael Snyder <msnyder@redhat.com>
8292
8293 * breakpoint.c (clear_command): Rewrite middle section to
8294 combine two loops with identical control conditions.
8295 Add a cleanup to eliminate a memory leak.
8296 * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
8297
8298 2002-04-05 H.J. Lu (hjl@gnu.org)
8299
8300 * solib-svr4.c (bkpt_names): Add "__start".
8301
8302 2002-04-04 Andrew Cagney <ac131313@redhat.com>
8303
8304 * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
8305 as test for 64 bit target.
8306
8307 2002-04-05 Andrew Cagney <ac131313@redhat.com>
8308
8309 * h8500-tdep.c (h8500_write_fp): Delete function.
8310 * dwarf2cfi.c (cfi_write_fp): Document as not used.
8311 * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
8312 * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
8313 * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
8314 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
8315 * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
8316 (s390_write_fp):
8317 * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
8318 * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
8319 * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
8320 (d10v_write_fp): Delete function.
8321 * inferior.h (write_fp, generic_target_write_fp): Delete
8322 declarations.
8323 * regcache.c (generic_target_write_fp): Delete function.
8324 (write_fp): Delete function.
8325 * gdbarch.sh (TARGET_WRITE_FP): Delete.
8326 * gdbarch.h, gdbarch.c: Regenerate.
8327 * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
8328 * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
8329 (sparc64_write_fp): Delete declaration.
8330 * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
8331 (h8500_write_fp): Delete declaration.
8332
8333 2002-04-04 Andrew Cagney <ac131313@redhat.com>
8334
8335 * sparc-tdep.c (sparc64_write_fp): Delete.
8336 (sparc_push_dummy_frame): Replace write_fp call with code to store
8337 the FP directly.
8338 (sparc_gdbarch_init): Do not initialize write_fp.
8339
8340 2002-04-05 Kevin Buettner <kevinb@redhat.com>
8341
8342 * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
8343 clause.
8344
8345 2002-03-29 Jim Blandy <jimb@redhat.com>
8346
8347 * stack.c (get_selected_block): Add new argument `addr_in_block',
8348 used to return the exact code address we used to select the block,
8349 not just the block.
8350 * blockframe.c (get_frame_block, get_current_block): Same.
8351 * frame.h (get_frame_block, get_current_block,
8352 get_selected_block): Update declarations.
8353 * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
8354 linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
8355
8356 2002-04-05 Michael Snyder <msnyder@redhat.com>
8357
8358 * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
8359 warning message.
8360
8361 2002-04-05 J. Brobecker <brobecker@gnat.com>
8362
8363 * utils.c (xfullpath): New function.
8364 * defs.h (xfullpath): Add declaration.
8365 * source.c (openp): Use xfullpath in place of gdb_realpath to
8366 avoid resolving the basename part of filenames when the
8367 associated file is a symbolic link. This fixes a potential
8368 inconsistency between the filenames known to GDB and the
8369 filenames it prints in the annotations.
8370 * symtab.c (lookup_symtab): Use the new xfullpath function, in order
8371 to be able to match a filename with either the real filename, or
8372 the name of any symbolic link to this file.
8373 (lookup_partial_symtab): Ditto.
8374
8375 2002-04-04 Michael Snyder <msnyder@redhat.com>
8376
8377 * breakpoint.c: Add support for hardware breakpoints in overlays.
8378 (overlay_events_enabled): New state variable.
8379 (insert_breakpoints): Use overlay_events_enabled to decide
8380 whether to attempt to set a breakpoint at the overlay load addr.
8381 Handle bp_hardware_breakpoint as well as bp_breakpoint.
8382 (remove_breakpoint): Use overlay_events_enabled to decide
8383 whether breakpoints need to be removed from overlay load addr.
8384 Handle bp_hardware_breakpoint as well as bp_breakpoint.
8385 (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
8386 (create_overlay_event_breakpoint, enable_overlay_breakpoints,
8387 disable_overlay_breakpoints): Update overlay_events_enabled.
8388
8389 2002-04-04 Daniel Jacobowitz <drow@mvista.com>
8390
8391 * dwarf2read.c (struct function_range): New.
8392 (cu_first_fn, cu_last_fn, cu_cached_fn): New.
8393 (check_cu_functions): New.
8394 (read_file_scope): Initialize global function lists.
8395 Call dwarf_decode_line after processing children.
8396 (read_func_scope): Add to global function list.
8397 (dwarf_decode_lines): Call check_cu_functions everywhere
8398 record_line is called. Call record_line with a linenumber
8399 of 0 to mark sequence ends.
8400
8401 2002-04-04 Michal Ludvig <mludvig@suse.cz>
8402
8403 * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
8404 change sync with glibc.
8405
8406 2002-04-03 Jim Blandy <jimb@redhat.com>
8407
8408 * configure.in: Call AC_C_INLINE.
8409 * configure: Regenerated.
8410
8411 2002-04-01 Daniel Jacobowitz <drow@mvista.com>
8412
8413 * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
8414 and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
8415
8416 2002-03-31 Mark Kettenis <kettenis@gnu.org>
8417
8418 * NEWS: Mention gcore support on FreeBSD/i386.
8419
8420 * fbsd-proc.c: New file.
8421 * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
8422 * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
8423
8424 * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
8425 while statement.
8426
8427 2002-03-29 Jim Blandy <jimb@redhat.com>
8428
8429 * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
8430 unescaped newlines in string literals, but newer ones don't. So
8431 escape them.
8432
8433 2002-03-26 Michael Snyder <msnyder@redhat.com>
8434 Andrew Cagney <cagney@redhat.com>
8435
8436 * cli/cli-dump.c: New file. Dump memory to file,
8437 restore file to memory.
8438 * cli/cli-dump.h: New file.
8439 * Makefile.in: Add rules, dependencies for cli-dump.o.
8440 * NEWS: Mention new commands.
8441
8442 2002-03-28 Michael Snyder <msnyder@redhat.com>
8443
8444 * symfile.c (symbol_file_add): Move test for null symbols to later.
8445
8446 2002-03-27 Andrew Cagney <ac131313@redhat.com>
8447
8448 From veksler at il.ibm.com:
8449 * utils.c (gdb_realpath): If canonicalize_file_name fails, return
8450 the xstrduped original path.
8451 Fix PR gdb/417.
8452
8453 2002-03-27 Michael Snyder <msnyder@redhat.com>
8454
8455 * breakpoint.c (_initialize_breakpoint): Clean up help string.
8456 * infcmd.c (_initialize_infcmd): Ditto.
8457 * language.c (_initialize_language): Ditto.
8458 * symfile.c (_initialize_symfile): Ditto.
8459 * top.c (_init_main): Ditto.
8460 * cli/cli-cmds.c (init_cli_cmds): Ditto.
8461
8462 2002-03-27 Elena Zannoni <ezannoni@redhat.com>
8463
8464 * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
8465 vector registers handling.
8466 (skip_prologue): Handle new AltiVec instructions. Fill in new
8467 fields of frame data.
8468 (frame_get_saved_regs): Fill in information for AltiVec registers.
8469
8470 2002-03-27 Jim Blandy <jimb@redhat.com>
8471
8472 * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
8473 a function; leave this macro here to invoke that function.
8474 (symbol_init_mangled_name): Declaration for that function.
8475 * symtab.c (symbol_init_mangled_name): New function.
8476
8477 2002-03-27 Andrew Cagney <ac131313@redhat.com>
8478
8479 * valarith.c: Replace strerror with safe_strerror.
8480 * tracepoint.c: Ditto.
8481 * lin-lwp.c: Ditto.
8482 * go32-nat.c: Ditto.
8483 * inflow.c: Ditto.
8484 * gnu-nat.c: Ditto.
8485
8486 2002-03-27 Andreas Schwab <schwab@suse.de>
8487
8488 * event-top.c (command_line_handler): Remove useless if.
8489
8490 2002-03-27 Andreas Jaeger <aj@suse.de>
8491
8492 * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
8493 comment.
8494
8495 2002-03-27 Michal Ludvig <mludvig@suse.cz>
8496
8497 * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
8498 (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
8499 * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
8500 (x86_64_linux_dr_get_status, supply_gregset),
8501 (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
8502 * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
8503 (x86_64_register_info_table): Add.
8504 (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
8505 (x86_64_register_raw_size, x86_64_register_virtual_type),
8506 (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
8507 general x86_64_register_info_table.
8508 (i386_gdbarch_init): gdbarch_register_bytes is now set
8509 dynamicaly during initialization.
8510 * regformats/reg-x86-64.dat: Synced with changes to registers above.
8511 * gdbserver/linux-x86-64-low.c: Ditto.
8512
8513 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
8514
8515 * gdbserver/server.c (main): Call target_signal_to_host_p
8516 and target_signal_to_host on signals received from the remote.
8517 * gdbserver/remote-utils.c (prepare_resume_reply): Call
8518 target_signal_from_host on signals sent to the remote.
8519 * gdbserver/server.h: Add prototypes. Include "gdb/signals.h".
8520 * gdbserver/Makefile.in: Add signals.o. Add -I${INCLUDE_DIR}.
8521
8522 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
8523
8524 * signals/signals.c: Include "server.h" in gdbserver build.
8525 (target_signal_from_name): Don't use STREQ.
8526 (_initialize_signals): Likewise. Don't include function in
8527 gdbserver build.
8528
8529 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
8530
8531 * signals.c: Moved to...
8532 * signals/signals.c: Here.
8533 * Makefile (signals.o): Update.
8534
8535 2002-03-26 Jeff Law (law@redhat.com)
8536
8537 * somread.c (som_symtab_read): Remove some commented out code and
8538 updated related comments. Do not set the minimal symbol table to
8539 mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
8540 in a dynamic executable.
8541 * hppa-tdep.c (find_proc_framesize): Sanely handle the case
8542 where we are unable to find the minimal symbol for the given
8543 PC value.
8544
8545 2002-03-25 Jeff Law (law@redhat.com)
8546
8547 * linux-proc.c (read_mapping): Scan up to end of line for filename.
8548
8549 2002-03-25 Michal Ludvig <mludvig@suse.cz>
8550
8551 * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
8552
8553 2002-03-23 Andrew Cagney <ac131313@redhat.com>
8554
8555 * command.h: Update copyright.
8556 (struct cmd_list_element): Replace definition with opaque
8557 declaration.
8558 (enum cmd_types): Document that it will eventually be moved to
8559 cli/cli-decode.h
8560 (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
8561 (MALLOCED_REPLACEMENT): Delete macro.
8562 * Makefile.in (cli_decode_h): Add $(command_h).
8563 (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
8564 * top.c: Include "cli/cli-decode.h".
8565 * completer.c: Include "cli/cli-decode.h".
8566 * maint.c: Include "cli/cli-decode.h".
8567 * cli/cli-decode.h: Include "command.h".
8568 (enum command_class): Delete.
8569 (enum cmd_types): Comment out.
8570 (enum cmd_auto_boolean): Delete.
8571 (enum var_types): Delete.
8572
8573 2002-03-23 Andrew Cagney <ac131313@redhat.com>
8574
8575 * cli/cli-decode.c: Include "gdb_assert.h".
8576 (add_set_or_show_cmd): New static function.
8577 (add_set_cmd): Rewrite. Use add_set_or_show_cmd.
8578 (add_show_from_set): Rewrite. Use add_set_or_show_cmd. Don't copy
8579 all fields, such as func, from the set command.
8580
8581 2002-03-23 Andrew Cagney <ac131313@redhat.com>
8582
8583 * MAINTAINERS (sh-elf): Change warning flag to -w.
8584
8585 2002-03-23 Andrew Cagney <cagney@redhat.com>
8586
8587 * defs.h (error): Add printf format attribute.
8588 * thread-db.c (thread_from_lwp): Fix error format string.
8589 * stack.c (parse_frame_specification): Ditto.
8590 * cli/cli-decode.c (undef_cmd_error): Ditto.
8591 * scm-lang.c (scm_lookup_name): Ditto.
8592 * tracepoint.c (trace_error): Ditto.
8593 * remote-utils.c (usage): Ditto.
8594 * remote.c (compare_sections_command): Ditto.
8595 Fix PR gdb/328.
8596
8597 2002-03-22 Andrew Cagney <ac131313@redhat.com>
8598
8599 * gdbtypes.c (append_composite_type_field): New function.
8600 (init_composite_type): New function.
8601 * gdbtypes.h (append_composite_type_field): Declare.
8602 (init_composite_type): Ditto.
8603
8604 2002-03-22 Elena Zannoni <ezannoni@redhat.com>
8605
8606 * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
8607 function.
8608 * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
8609 * rs6000-tdep.c (rs6000_gdbarch_init): Use different
8610 structure returning convention for SYSV ABI case, but not
8611 for GNU/Linux, FreeBSD, or NetBSD.
8612
8613 2002-03-22 Daniel Jacobowitz <drow@mvista.com>
8614
8615 * symtab.h (lookup_block_symbol): Add mangled_name argument
8616 to prototype.
8617
8618 * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
8619 with new mangled_name argument.
8620 * linespec.c (decode_line_1): Likewise.
8621 * valops (value_of_this): Likewise.
8622 * symtab.c (lookup_transparent_type): Likewise.
8623 (lookup_symbol_aux): Likewise. Accept new mangled_name argument.
8624 (lookup_symbol): If we are given a mangled name, pass it down
8625 to lookup_symbol_aux.
8626 (lookup_block_symbol): If we are given a mangled name to check
8627 against, only return symbols which match it.
8628
8629 2002-03-22 Christopher Faylor <cgf@redhat.com>
8630
8631 * win32-nat.c (child_create_inferior): Check for proper shell to use
8632 here, in case the user changes it on the fly.
8633 (_initialize_inftarg): Remove shell path considerations.
8634
8635 2002-03-21 Elena Zannoni <ezannoni@redhat.com>
8636
8637 * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
8638 for gdbarch_max_register_raw_size and max_register_virtual_size.
8639 Adjust copyright year.
8640
8641 2002-03-21 Daniel Jacobowitz <drow@mvista.com>
8642
8643 * dbxread.c (process_one_symbol): Extend the first N_SLINE
8644 in a function to cover the entire beginning of the function
8645 as well if it does not already.
8646
8647 2002-03-21 Tom Rix <trix@redhat.com>
8648
8649 * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
8650 (rs6000_ptrace64): Renamed from ptrace64.
8651
8652 2002-03-20 Martin M. Hunt <hunt@redhat.com>
8653
8654 * gdbserver/remote-utils.c (remote_open): Don't call
8655 getprotobyname, we're all using TCP here so just use
8656 IPPROTO_TCP.
8657 * gdbserver/gdbreplay.c (remote_open): Ditto.
8658
8659 2002-03-20 Martin M. Hunt <hunt@redhat.com>
8660
8661 * regcache.c (_initialize_regcache): No need to call
8662 build_regcache() at this time; it gets called whenever
8663 the gdbarch changes.
8664
8665 2002-03-20 David O'Brien <obrien@FreeBSD.org>
8666
8667 * sparc-nat.c: Include sys/param.h where possible.
8668
8669 2002-03-20 Daniel Jacobowitz <drow@mvista.com>
8670
8671 Fix PR gdb/422.
8672 * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
8673 FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
8674 * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
8675 complex types.
8676 * stabsread.c (rs6000_builtin_type): Likewise.
8677 (read_sun_floating_type): Likewise.
8678
8679 2002-03-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8680
8681 * stabsread.c (read_member_functions): Remove skip code for duplicate
8682 constructor/destructor methods. Use standard parsing for these
8683 methods and just do not chain them to the list of methods after
8684 parsing.
8685
8686 2002-03-19 Alexandre Oliva <aoliva@redhat.com>
8687
8688 * coffread.c: Remove redundant static declarations. Replace
8689 occurrences of `PTR' with `void *'.
8690 * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
8691 * top.h (quit_cover): Likewise.
8692 * defs.h (catch_errors): Likewise.
8693
8694 2002-03-18 Andrew Cagney <ac131313@redhat.com>
8695
8696 * defs.h (XMALLOC): Define.
8697 * gdb-events.sh (XMALLOC): Delete macro.
8698 * gdb-events.c, gdb-events.h: Regenerate.
8699 * gdbarch.sh (XMALLOC): Delete macro.
8700 * gdbarch.c: Regenerate.
8701 * serial.c (XMALLOC): Delete macro.
8702 * ui-file.c (XMALLOC): Ditto.
8703 * ser-unix.h (XMALLOC): Ditto.
8704 * sh-tdep.c (XMALLOC): Ditto.
8705 * ui-out.c (XMALLOC): Ditto.
8706 * utils.c (XMALLOC): Ditto.
8707 * i386-tdep.c (XMALLOC): Ditto.
8708 * gdb-events.c (XMALLOC): Ditto.
8709 * d10v-tdep.c (XMALLOC): Ditto.
8710 * cli-out.c (XMALLOC): Ditto.
8711
8712 * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
8713 * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
8714 * ui-file.c, ui-out.c: Ditto.
8715
8716 2002-03-18 Andrew Cagney <ac131313@redhat.com>
8717
8718 * command.h (struct cmd_list_element): Add field context.
8719 (set_cmd_context, get_cmd_context): Declare.
8720 * cli/cli-decode.h: Ditto.
8721 * cli/cli-decode.c (get_cmd_context): New function.
8722 (set_cmd_context): New function.
8723 (add_cmd): Initialize context.
8724 Part of fixing PR gdb/145 and PR gdb/146.
8725
8726 2002-03-17 Andrew Cagney <ac131313@redhat.com>
8727
8728 * cli/cli-decode.c (cmd_type): New function.
8729 * command.h (cmd_type): Declare.
8730 * infrun.c (set_schedlock_func): Call function cmd_type.
8731 * kod.c (kod_set_os): Call cmd_type.
8732 * cris-tdep.c (cris_version_update): Use function cmd_type.
8733 (cris_mode_update, cris_abi_update): Ditto.
8734
8735 * command.h: (execute_cmd_post_hook): Declare.
8736 (execute_cmd_pre_hook): Declare.
8737 * cli/cli-script.c (clear_hook_in_cleanup): New function.
8738 (execute_cmd_post_hook, execute_cmd_pre_hook): New
8739 functions. Execute pre/post hook while ensuring that afterwords
8740 hook_in is cleared.
8741 * top.c (execute_command): Use execute_cmd_post_hook, and
8742 execute_cmd_pre_hook to execute pre/post commands.
8743 * infrun.c (normal_stop): Pass stop_command and not pre_hook to
8744 hook_stop_stub.
8745 (hook_stop_stub): Call execute_cmd_pre_hook.
8746
8747 2002-03-17 Andrew Cagney <ac131313@redhat.com>
8748
8749 * kod.c (kod_set_os): Revert previous change. Is called by ``info
8750 set'' and this leads to a core dump. Move xstrdup of
8751 operating_system to after check that it is not NULL.
8752
8753 2002-03-17 Andrew Cagney <ac131313@redhat.com>
8754
8755 * kod.c (kod_set_os): Remove unnecessary check that
8756 ``command->type'' is set_cmd.
8757
8758 * valprint.c (set_input_radix): Use input_radix.
8759 (set_output_radix): Use output_radix.
8760 (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
8761 isn't reverted.
8762
8763 2002-03-16 Andrew Cagney <ac131313@redhat.com>
8764
8765 * value.h (struct value): Delete field ``substring_addr''. Change
8766 aligner fields to force_doublest_align, force_longest_align,
8767 force_core_addr_align and force_pointer_aligh.
8768
8769 * value.h (struct value): Fix typo in above change.
8770
8771 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8772
8773 * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
8774 to fix internal_error from ``maintenance print architecture''.
8775
8776 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8777
8778 * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
8779 for gcc versions after gcc-2.8.1.
8780
8781 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8782
8783 * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
8784 for method resolution. Restore adjustment of ``this'' pointer after
8785 calling value_struct_elt, which was accidentally removed during the
8786 HP merge.
8787
8788 2002-03-15 Andrew Cagney <ac131313@redhat.com>
8789
8790 * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
8791 value_of_register.
8792 * findvar.c (value_of_register): Add ``frame'' parameter. Pass to
8793 get_saved_register.
8794 * value.h (value_of_register): Update.
8795
8796 2002-03-14 Richard Henderson <rth@redhat.com>
8797
8798 * configure.in: Detect declaration for canonicalize_file_name.
8799 * utils.c (canonicalize_file_name): Declare, if needed.
8800 (gdb_realpath): Prefer realpath if available and usable.
8801 * config.in, configure: Rebuild.
8802
8803 2002-03-14 Richard Henderson <rth@redhat.com>
8804
8805 * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
8806 a constant array bound.
8807
8808 * MAINTAINERS: Add myself to write-after-approval.
8809
8810 2002-03-14 Michael Snyder <msnyder@redhat.com>
8811
8812 * symfile.c (syms_from_objfile): Return immediately if no syms.
8813 (symbol_file_add): Return immediately if no syms.
8814 (find_sym_fns): Return immediately if no syms.
8815
8816 2002-03-13 Michal Ludvig <mludvig@suse.cz>
8817
8818 * gdbserver/remote-util.c (remote_open): Print remote-side's
8819 IP address when remote debugging over the network.
8820
8821 2002-03-12 David O'Brien <obrien@FreeBSD.org>
8822
8823 * config/sparc/fbsd.mh: Fix copyright.
8824 * config/sparc/fbsd.mt: Likewise.
8825
8826 2002-03-11 Richard Earnshaw <rearnsha@arm.com>
8827
8828 * MAINTAINERS: Fix typo in name of gdb warnings option.
8829 (x86-64): Fix formating so that this can be parsed by awk.
8830
8831 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
8832
8833 * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
8834 * defs.h: Include "gdb/signals.h".
8835 (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
8836
8837 2002-03-10 Michal Ludvig <mludvig@suse.cz>
8838
8839 * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
8840 * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
8841 from x86-64-tdep.h
8842
8843 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
8844 Don Howard <dhoward@redhat.com>
8845
8846 * mips-tdep.c (ST0_FR): Define.
8847 (mips2_fp_compat): New function, temporarily disabled.
8848 (mips_read_fp_register_single): New function.
8849 (mips_read_fp_register_double): New function.
8850 (mips_print_register): Use them.
8851 (do_fp_register_row): Likewise.
8852
8853 2002-03-09 Andrew Cagney <ac131313@redhat.com>
8854
8855 * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
8856 approval''.
8857
8858 2002-03-08 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8859
8860 * stabsread.c (read_member_functions): Fix is_stub test for
8861 static member functions, improve comment.
8862
8863 2002-03-07 Richard Earnshaw <rearnsha@arm.com>
8864
8865 * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
8866 (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
8867 (_initialize_remote_rdi): Use add_set_boolean_cmd to register
8868 commands that set boolean values.
8869 (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
8870 (arm_rdi_resume): Always initialize PC.
8871 (arm_rdi_open): Don't use rslt as a boolean.
8872 (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
8873 (arm_rdi_fetch_registers, arm_rdi_store_registers)
8874 (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
8875 (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
8876
8877 2002-03-06 Alexandre Oliva <aoliva@redhat.com>
8878
8879 * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
8880 * configure: Rebuilt.
8881
8882 2002-03-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
8883
8884 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
8885 (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
8886
8887 2002-03-06 Andrew Cagney <ac131313@redhat.com>
8888
8889 * cli/cli-decode.c (set_cmd_completer): New function.
8890 * command.h (set_cmd_completer): Declare.
8891 * cli/cli-decode.h (set_cmd_completer): Ditto.
8892
8893 * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
8894 * cli/cli-cmds.c (init_cli_cmds): Ditto.
8895 * win32-nat.c (_initialize_inftarg): Ditto.
8896 * remote-rdi.c (_initialize_remote_rdi): Ditto.
8897 * proc-api.c (_initialize_proc_api): Ditto.
8898 * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
8899 * source.c (_initialize_source): Ditto.
8900 * exec.c (_initialize_exec): Ditto.
8901 * solib.c (_initialize_solib): Ditto.
8902 * top.c (init_main): Ditto.
8903 * tracepoint.c (_initialize_tracepoint): Ditto.
8904 * symfile.c (_initialize_symfile): Ditto.
8905 * printcmd.c (_initialize_printcmd): Ditto.
8906 * infcmd.c (_initialize_infcmd): Ditto.
8907 * corefile.c (_initialize_core): Ditto.
8908
8909 2002-03-05 Andrew Cagney <ac131313@redhat.com>
8910
8911 * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
8912
8913 2002-03-05 Andrew Cagney <ac131313@redhat.com>
8914
8915 * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
8916
8917 2002-03-05 Andrew Cagney <ac131313@redhat.com>
8918
8919 * NEWS: Update headings, 5.2 has branched.
8920
8921 2002-03-04 Daniel Jacobowitz <drow@mvista.com>
8922
8923 * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
8924 (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
8925 (register_addr, REGISTER_RAW_SIZE): Likewise.
8926 (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
8927 * gdbserver/linux-x86-64-low.c: Remove extra #endif.
8928
8929 2002-03-03 Michal Ludvig <mludvig@suse.cz>
8930
8931 * MAINTAINERS (x86-64): Add myself.
8932 * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
8933 changed value_ptr -> struct value *
8934
8935 2002-03-01 David O'Brien <obrien@FreeBSD.org>
8936
8937 * configure.host (sparc64-*-freebsd): Add.
8938 * configure.tgt: Likewise.
8939 * config/sparc/fbsd.mh: New file.
8940 * config/sparc/fbsd.mt: Likewise.
8941 * config/sparc/nm-fbsd.h: Likewise.
8942 * config/sparc/tm-fbsd.h: Likewise.
8943
8944 2002-03-01 Daniel Jacobowitz <drow@mvista.com>
8945
8946 * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
8947 regformats/reg-s390x.dat.
8948
8949 2002-03-01 Andrew Cagney <ac131313@redhat.com>
8950
8951 * utils.c: Add FIXME explaining true/false problem.
8952
8953 2002-02-28 Andrew Cagney <ac131313@redhat.com>
8954
8955 * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
8956
8957 2002-02-28 Michael Chastain <mec@shout.net>
8958
8959 * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
8960
8961 2002-02-28 Daniel Jacobowitz <drow@mvista.com>
8962
8963 * gdbserver/linux-s390-low.c: New file.
8964 * regformats/reg-s390.dat: New file.
8965 * regformats/reg-s390x.dat: New file.
8966 * gdbserver/configure.srv: Add S/390.
8967 * gdbserver/Makefile.in: Add S/390.
8968 * configure.tgt: Enable gdbserver for S/390.
8969
8970 2002-02-28 Eli Zaretskii <eliz@is.elta.co.il>
8971
8972 * go32-nat.c (_initialize_go32_nat): Don't use periods in the
8973 first line of the doc string for "info dos", except at the end of
8974 the sentence, since the short help stops at the first period.
8975
8976 2002-02-28 Jason Merrill <jason@redhat.com>
8977
8978 * dwarf2read.c (dwarf_cfi_name): Add new codes.
8979
8980 2002-02-27 Fred Fish <fnf@redhat.com>
8981
8982 * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
8983 comment (dumy -> dummy).
8984
8985 2002-02-27 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8986
8987 * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
8988
8989 2002-02-27 Rodney Brown <rbrown64@csc.com.au>
8990
8991 * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
8992
8993 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
8994
8995 * gdbserver/acconfig.h: New file.
8996 * gdbserver/i387-fp.c: New file.
8997 * gdbserver/i387-fp.h: New file.
8998 * gdbserver/linux-x86-64.c: New file.
8999 * regformats/reg-x86-64.dat: New file.
9000 * configure.tgt: Add x86_64-*-linux* gdbserver support.
9001 * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
9002 * gdbserver/configure.in: Add support for regsets.
9003 * gdbserver/config.in: Regenerate.
9004 * gdbserver/configure: Regenerate.
9005 * gdbserver/Makefile.in: Likewise. Add $(linux_low_h).
9006 * gdbserver/linux-low.h: New file.
9007 * gdbserver/linux-low.c: Include "linux-low.h". Add support
9008 for regsets.
9009 * gdbserver/linux-arm-low.c: Include "linux-low.h".
9010 * gdbserver/linux-ia64-low.c: Include "linux-low.h".
9011 * gdbserver/linux-m68k-low.c: Include "linux-low.h".
9012 * gdbserver/linux-mips-low.c: Include "linux-low.h".
9013 * gdbserver/linux-ppc-low.c: Include "linux-low.h".
9014 * gdbserver/linux-sh-low.c: Include "linux-low.h".
9015 * gdbserver/linux-i386-low.c: Include "linux-low.h". Include
9016 "i387-fp.h". Add PTRACE_GETREGS and friends.
9017 * gdbserver/regcache.c (supply_register): New function.
9018 (supply_register_by_name): New function.
9019 (collect_register): New function.
9020 (collect_register_by_name): New function.
9021
9022 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
9023
9024 * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
9025 (config.status): Add configure.srv dependency.
9026 (server_h): Add config.h dependency.
9027
9028 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
9029
9030 * regformats/reg-i386-linux.dat: New file, with $orig_eax.
9031 * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
9032 * gdbserver/configure.srv: Change i386-*-linux* to use
9033 reg-i386-linux.o.
9034
9035 2002-02-26 Andrew Cagney <ac131313@redhat.com>
9036
9037 * x86-64-tdep.c: Re-indent. Update copyright date.
9038
9039 2002-02-26 Andrew Cagney <ac131313@redhat.com>
9040
9041 From Michal Ludvig <mludvig@suse.cz>:
9042 * x86-64-tdep.c (value.h): Delete.
9043 (gdb_assert.h): Include.
9044 (x86_64_register_convert_to_virtual,
9045 x86_64_register_convert_to_raw ): Add check which lets only
9046 floating-point values to be converted.
9047 (value_push): Delete.
9048 (x86_64_push_arguments): Order of arguments pushed on stack fixed.
9049 (i386_gdbarch_init): Number of register_bytes fixed.
9050
9051 2002-02-26 Andrew Cagney <ac131313@redhat.com>
9052
9053 * MAINTAINERS: Add x86-64 target.
9054
9055 2002-02-26 Andrew Cagney <ac131313@redhat.com>
9056
9057 * memattr.c (mem_command): Eliminate ``true'' and ``false''.
9058 * osfsolib.c (solib_map_sections): Ditto.
9059 * irix5-nat.c (solib_map_sections): Ditto.
9060 * corelow.c (gdb_check_format): Ditto.
9061 * symfile.c (symfile_bfd_open): Ditto.
9062 * solib.c (solib_map_sections): Ditto.
9063 Fix PR gdb/354.
9064
9065 2002-02-26 Andrew Cagney <ac131313@redhat.com>
9066
9067 * remote.c (_initialize_remote): By default, disable ``e'' and
9068 ``E'' step out-of-range packets.
9069
9070 2002-02-26 Andreas Schwab <schwab@suse.de>
9071
9072 * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
9073 m68k_linux_frame_saved_pc.
9074 (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
9075 in_sigtramp.
9076 (SIGCONTEXT_PC_OFFSET): Remove.
9077 * m68klinux-nat.c (m68k_linux_frame_saved_pc,
9078 m68k_linux_sigtramp_saved_pc): New functions.
9079 (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
9080 (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
9081 (UCONTEXT_PC_OFFSET): Define.
9082 (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
9083 non-RT and RT signal trampolines.
9084
9085 2002-02-26 Richard Earnshaw <rearnsha@arm.com>
9086
9087 * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
9088 (TARGET_NBPG, STACK_END_ADDR): Delete
9089 (VARIABLES_INSIDE_BLOCK): Delete.
9090
9091 2002-02-25 Andrew Cagney <ac131313@redhat.com>
9092
9093 * utils.c (perror_with_name): Make string parameter constant.
9094 (print_sys_errmsg): Ditto.
9095 (query): Ditto.
9096 * defs.h (perror_with_name): Update.
9097 (print_sys_errmsg): Update.
9098 (query): Update.
9099
9100 2002-02-25 Daniel Jacobowitz <drow@mvista.com>
9101
9102 From Eliot Dresselhaus <eliot@ayrnetworks.com>:
9103 * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
9104
9105 2002-02-25 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9106
9107 * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
9108 if it already matches the current architecture from the exec file.
9109 Include arch-utils.h for gdbarch_info_init prototype.
9110 * Makefile.in (rs6000-nat.o): Update dependencies.
9111
9112 2002-02-25 Eli Zaretskii <eliz@is.elta.co.il>
9113
9114 * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
9115 list of exported variables.
9116
9117 2002-02-24 Daniel Jacobowitz <drow@mvista.com>
9118
9119 * gdbserver/configure.srv: New file.
9120 * gdbserver/configure.in: Use configure.srv instead
9121 of the host/target makefile fragments. Set GDBSERVER_DEPFILES
9122 from it.
9123 * gdbserver/configure: Regenerated.
9124 * gdbserver/terminal.h: New file.
9125 * gdbserver/Makefile.in: Update for configure changes. Remove
9126 more unneeded include paths.
9127
9128 2002-02-24 Andrew Cagney <ac131313@redhat.com>
9129
9130 From wiz at danbala:
9131 * config/sparc/tm-sp64.h: Fix grammar and typos.
9132 Fix PR gdb/287.
9133
9134 2002-02-24 Andrew Cagney <ac131313@redhat.com>
9135
9136 * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
9137 with either ``GNU/Linux'' or ``Linux kernel''. Update copyright.
9138 * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
9139 * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
9140 * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
9141 * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
9142 * s390-tdep.c: Ditto.
9143 * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
9144 * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
9145 * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
9146 * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
9147 * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
9148 * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
9149 * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
9150 * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
9151 * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
9152 * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
9153 Fix PR gdb/378.
9154
9155 2002-02-23 Andrew Cagney <ac131313@redhat.com>
9156
9157 * lin-thread.c: Delete file.
9158 * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
9159 to gdb_proc_service.h.
9160 * configure: Re-generate.
9161
9162 * ocd.c (ocd_open): Do not try to open the "ocd" device.
9163 * serial.c (serial_open): Delete check for "ocd".
9164 Fix PR gdb/349.
9165
9166 * Makefile.in (linux-thread.o): Delete target.
9167 * linux-thread.c: Delete file.
9168
9169 * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c. Tweak other
9170 renamed SH files to be consistent.
9171
9172 * symtab.c (sort_search_symbols): Use xfree.
9173
9174 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
9175
9176 * arm-linux-tdep.c (arm_linux_init_abi): Register
9177 IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
9178 * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
9179 definition with undef, since we don't want the sysvr4 definition.
9180 (SKIP_TRAMPOLINE_CODE): Likewise.
9181
9182 2002-02-23 Andrew Cagney <ac131313@redhat.com>
9183
9184 From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
9185
9186 * configure.in: (AC_CHECK_FUNCS) Added test for
9187 canonicalize_file_name Regenerated.
9188 * config.in, configure: Regenerated.
9189 * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
9190 defined use canonicalize_file_name.
9191
9192 2002-02-23 Michael Chastain <mec@shout.net>
9193
9194 * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
9195
9196 2002-02-23 Andrew Cagney <ac131313@redhat.com>
9197
9198 * README: Remove references to cygnus.com.
9199 * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
9200 dot com'' form. Remove references to cygnus.com and sourceware.
9201
9202 2002-02-23 Andrew Cagney <ac131313@redhat.com>
9203
9204 From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
9205 * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
9206 1003.1-2001 no longer allows "head -1".
9207 * gdb/Makefile.in (version.c): Likewise.
9208 * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
9209 * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
9210 equivalent. POSIX 1003.1-2001 no longer allows "diff -c3".
9211
9212 2002-02-23 Andrew Cagney <ac131313@redhat.com>
9213
9214 * cli/cli-decode.c (cmd_cfunc_eq): New function.
9215 * command.h (cmd_cfunc_eq): Declare.
9216 * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
9217
9218 * cli/cli-cmds.h (is_complete_command): Change parameter to a
9219 ``struct cmd_list_element *''.
9220 * cli/cli-cmds.c (is_complete_command): Update. Use
9221 cmd_cfunc_eq.
9222 * top.c (execute_command): Pass the command to
9223 is_complete_command.
9224 * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
9225
9226 2002-02-23 Andrew Cagney <ac131313@redhat.com>
9227
9228 From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
9229 * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
9230 architecture defines.
9231 * s390-tdep.c (s390_gdbarch_init): Likewise.
9232
9233 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
9234
9235 * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
9236 (arm_linux_push_arguments): Likewise.
9237 (arm_linux_init_abi): Register them. Also register linux-specific
9238 call_dummy_words.
9239 (find_minsym_and_objfile): Use strcmp, not STREQ.
9240 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
9241 (arm_linux_call_dummy_words): Delete declaration.
9242 (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
9243 (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
9244 declarations.
9245 (LOWEST_PC): Delete.
9246
9247 2002-02-23 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9248
9249 * maint.c (print_section_info): Do not prepend `0x' to filepos
9250 output, it will be handled by local_hex_string_custom.
9251
9252 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
9253
9254 * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
9255 (store_newfpe_double, store_newfpe_extended, store_fpregister)
9256 (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
9257
9258 2002-02-22 Jim Blandy <jimb@redhat.com>
9259
9260 Indicate that the bcache functions don't change the strings
9261 they're passed.
9262 * bcache.h (bcache, hash): Add `const' keywords to declarations.
9263 * bcache.c (bcache, hash): Add `const' keywords to definitions.
9264
9265 2002-02-22 Pierre Muller <muller@ics.u-strasbg.fr>
9266
9267 * win32-nat.c (child_create_inferior): Fix create flags setting bug.
9268
9269 2002-02-21 Christopher Faylor <cgf@redhat.com>
9270
9271 * win32-nat.c (register_loaded_dll): Just use raw name when we can't
9272 find the complete path to a loaded DLL.
9273
9274 2002-02-21 Fred Fish <fnf@redhat.com>
9275
9276 * dbxread.c (process_one_symbol): When finding an N_FUN symbol
9277 that marks the end of the range of a function, enter a line number
9278 entry that has a line number of zero and a PC offset that matches
9279 the end of the function. This starts a range of PC's for which no
9280 line number information is known.
9281 * symtab.c (find_pc_sect_line): If our best fit is in a range of
9282 PC's for which no line number info is found (line number is zero)
9283 then we didn't find any valid line information.
9284 * symtab.h: Document use of zero line number entry.
9285
9286 2002-02-21 Elena Zannoni <ezannoni@redhat.com>
9287
9288 * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
9289 (have_ptrace_getvrregs): Define for run time checks.
9290 (gdb_vrregset_t): New type for Altivec register handling.
9291 (fetch_register, store_register): Fetch/store altivec register
9292 when needed.
9293 (fetch_altivec_register, store_altivec_register): New functions.
9294 (supply_vrregset, fill_vrregset): New functions.
9295 (fetch_altivec_registers, store_altivec_registers): New functions.
9296 (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
9297 registers as well.
9298
9299 2002-02-21 Jiri Smid <smid@suse.cz>
9300
9301 * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
9302
9303 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
9304
9305 * Makefile.in (armnbsd-nat.o): Update dependencies.
9306 * armnbsd-nat.c (supply_gregset): New function. Common code to
9307 supply the integer register set.
9308 (supply_fparegset): New function. Similar for FPA registers.
9309 (fetch_regs, fetch_fp_regs): Use them.
9310 (fetch_core_registers): Likewise.
9311 (fetch_elfcore_registers): New function.
9312 (arm_netbsd_elfcore_fns): New core-file type specification.
9313 (_initialize_arm_netbsd_nat): Register it.
9314
9315 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
9316
9317 * armnbsd-nat.c: Include gdbcore.h.
9318 (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
9319 (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
9320 'void' to declaration, to shut up ARI.
9321 (fetch_core_registers): Make static. Rewrite using supply_register.
9322 (arm_netbsd_core_fns): New core-file type specification.
9323 (_initialize_arm_netbsd_nat): New function.
9324
9325 2002-02-21 Christopher Faylor <cgf@redhat.com>
9326
9327 * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
9328 value.
9329
9330 2002-02-20 Christopher Faylor <cgf@redhat.com>
9331
9332 * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
9333 fails.
9334
9335 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
9336
9337 * jv-exp.y (parse_number): Change type of implicit longs
9338 to builtin_type_uint64.
9339
9340 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
9341
9342 * gdbserver/linux-low.c (mywait): Change argument to waitpid
9343 to be an integer instead of a `union wait'.
9344
9345 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
9346
9347 * mips-linux-nat.c: Call the operating system GNU/Linux.
9348 * mips-linux-tdep.c: Likewise.
9349 * mips-tdep.c: Likewise.
9350
9351 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
9352
9353 Fix PR gdb/265.
9354 * jv-exp.y (parse_number): Handle 64-bit integers.
9355
9356 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
9357
9358 * gdbserver/configure.in: Remove AM_PROC_CC_STDC. Change
9359 AC_STDC_HEADERS to AC_HEADER_STDC.
9360 * gdbserver/configure: Regenerated.
9361
9362 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
9363
9364 * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
9365 is defined.
9366 * sparc-tdep.c (get_longjmp_target): Likewise.
9367
9368 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
9369
9370 * News: Add news about ARM and Multi-arch. Mention the new target
9371 arm*-*-netbsd*.
9372
9373 2002-02-19 Jim Blandy <jimb@redhat.com>
9374
9375 * stabsread.c (error_type_complaint): Improve error message.
9376
9377 2002-02-19 Daniel Jacobowitz <drow@mvista.com>
9378
9379 * gdbserver/README: Update documentation.
9380 * gdbserver/configure.in: Update configury to match documentation.
9381 * gdbserver/Makefile.in: Likewise.
9382 * gdbserver/configure: Regenerated.
9383 * gdbserver/aclocal.m4: New file, generated by aclocal.
9384 * gdbserver/config.in: New file, generated by autoheader.
9385
9386 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
9387
9388 * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
9389 armnbsd-nat.c.
9390
9391 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
9392
9393 * arm-tdep.h (enum arm_float_model): New enum.
9394 (struct gdbarch_tdep): Add fp_model.
9395 * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep. Defer setting
9396 up floating-point conversions until we know the floating-point model
9397 in use by the inferior. Don't complain about being unable to
9398 determine the ABI of the inferior when we don't have one.
9399 (arm_extract_return_value): Support different floating-point models.
9400 (arm_store_return_value): Likewise.
9401 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
9402 ARM_FLOAT_SOFT.
9403 (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
9404
9405 2002-02-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9406
9407 * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
9408 of ``current_gdbarch''.
9409
9410 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
9411
9412 * armnbsd-nat.c : ANSIfy all function declarations.
9413 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
9414 (fetch_inferior_registers): Re-implement in terms of above.
9415 (store_register, store_regs, store_fp_register, store_fp_regs): New.
9416 (store_inferior_registers): Re-implement in terms of above.
9417
9418 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
9419
9420 * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
9421 kernel.
9422 * arm-linux-tdep.c: Likewise.
9423 * config/arm/tm-linux.h: Likewise.
9424
9425 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
9426
9427 * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
9428 * config/arm/nbsd.mt (TM_FILE): Delete.
9429 * config/arm/tm-nbsd.h: Delete.
9430
9431 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
9432
9433 * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
9434 Initialize CALL_DUMMY_LENGTH.
9435
9436 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
9437
9438 * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
9439 function.
9440 (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
9441 * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
9442 defines one thing and that is incorrect for this port.
9443 (IN_SOLIB_CALL_TRAMPOLINE): Delete.
9444
9445 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
9446
9447 * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
9448
9449 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
9450
9451 * win32-nat.c (display_selector): New function. Displays information
9452 about the information returned by GetThreadSelectorEntry API function.
9453 (display_selectors): New function. Displays the infomation of
9454 the selector given as argument, or of CS, DS ans FS selectors
9455 if no argument is given.
9456 ( _initialize_inftarg): Add "w32" as info prefix command.
9457 Add "info w32 selector" as command calling display_selectors.
9458
9459 2002-02-19 Pierre Muller <muller@ics.u-strasbg.fr>
9460
9461 * i386-tdep.c (get_longjmp_target): Fix compilation failure
9462 by setting dummy values to JB_PC and JB_ELEMENT_SIZE
9463 if not defined.
9464
9465 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
9466
9467 * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
9468
9469 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
9470
9471 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
9472 (arm_fix_call_dummy): Call it.
9473 (arm_call_dummy_breakpoint_offset): Delete.
9474 (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
9475 * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
9476
9477 2002-02-18 Andrew Cagney <ac131313@redhat.com>
9478
9479 * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
9480 Default to func_frame_chain_valid.
9481 * gdbarch.h, gdbarch.c: Re-generate.
9482 * frame.h (FRAME_CHAIN_VALID): Delete definition.
9483
9484 2002-02-18 Elena Zannoni <ezannoni@redhat.com>
9485
9486 * ppc-linux-nat.c: Update copyright.
9487 (fetch_register, store_register): Add tid parameter, don't compute
9488 tid here.
9489 (fetch_ppc_registers, store_ppc_registers): Add tid
9490 parameter. Pass it along to callees.
9491 (fetch_inferior_registers, store_inferior_registers): Compute tid
9492 here, and pass it to calleed functions.
9493 (fill_gregset, supply_fpregset): Clean up formatting.
9494
9495 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
9496
9497 * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
9498 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
9499
9500 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
9501
9502 * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
9503 * gdbarch.c gdbarch.h: Regenerate.
9504 * breakpoint.c (create_longjmp_breakpoint): Always compile this
9505 function.
9506 (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
9507 * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
9508 (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
9509
9510 * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
9511 * arm-tdep.c (arm_get_longjmp_target): New function.
9512 (arm_gdbarch_init): Initialize jb_pc to -1. If ABI handler changes
9513 this to a positive value register arm_get_longjmp_target as the
9514 longjmp handler.
9515 * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
9516 (arm_linux_init_abi): Set up longjmp description in tdep.
9517 * armnbsd-nat.c (get_longjmp_target): Delete.
9518 * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
9519 description in tdep.
9520 * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
9521 (get_longjmp_target): Delete declaration.
9522 (GET_LONGJMP_TARGET): Delete.
9523 * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
9524 (GET_LONGJMP_TARGET): Delete.
9525
9526 2002-02-17 Kevin Buettner <kevinb@redhat.com>
9527
9528 From Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
9529 * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
9530 of ``current_gdbarch''.
9531
9532 2002-02-17 Tom Tromey <tromey@redhat.com>
9533
9534 * cli/cli-cmds.c (compare_strings): New function.
9535 (complete_command): Only print each unique item once.
9536 * completer.h (complete_line): Declare.
9537 * completer.c (complete_line): New function.
9538 (line_completion_function): Use it.
9539
9540 2002-02-16 Andrew Cagney <ac131313@redhat.com>
9541
9542 * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
9543 * gdbarch.h, gdbarch.c: Re-generate.
9544
9545 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
9546
9547 * valarith.c (value_x_unop): Fix decrement; support post-decrement.
9548
9549 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
9550
9551 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
9552 * valops.c (value_arg_coerce): Don't take the address of a reference
9553 to convert an argument to a reference.
9554
9555 2002-02-15 Christopher Faylor <cgf@redhat.com>
9556
9557 * win32-nat.c (get_image_name): New function.
9558 (handle_load_dll): Use get_image_name function.
9559 (get_child_debug_event): Avoid registering debug events until possibly
9560 execed process is started.
9561 (child_create_inferior): Allow invocation via shell so that command
9562 line redirection, etc. works ok.
9563 (_initialize_inftarg): Add new command: "set shell" to control whether
9564 a shell is used to start a process.
9565
9566 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
9567
9568 * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
9569 instead of find_register_by_number.
9570 (cannot_store_register): Likewise.
9571
9572 2002-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
9573
9574 * dwarf2read.c: Replace fprintf (stderr, ...) by
9575 fprintf_unfiltered (gdb_stderr, ...).
9576
9577 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
9578
9579 * gdbserver/gdbserver.1: Document --attach.
9580
9581 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
9582
9583 * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
9584 descriptions.
9585 * arm-tdep.c (arm_default_arm_le_breakpoint)
9586 (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
9587 (arm_default_thumb_be_breakpoint): New. Initialize them from
9588 traditional breakpoint defines.
9589 (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
9590 (arm_gdbarch_init): Initialize new breakpoint variables.
9591 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
9592 (arm_linux_init_abi): Initialize linux-specific breakpoint.
9593 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
9594 (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
9595 code out to ...
9596 (arm_netbsd_init_abi_common): ... here; new function.
9597 * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
9598 (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
9599 * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
9600 * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
9601
9602 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
9603
9604 * arm-tdep.h (enum arm_abi): New enum.
9605 (struct gdbarch_tdep): New structure.
9606 (LOWEST_PC): Provide a default.
9607 (arm_gdbarch_register_os_abi): Declare new function.
9608 * arm-tdep.c (arm_abi_names): New array.
9609 (process_note_abi_tag_sections): New function.
9610 (get_elfosabi): New function.
9611 (arm_gdbarch_register_os_abi): New function.
9612 (arm_gdbarch_init): Try to determine the ABI of the inferior. If
9613 support for that ABI has been built in, then call the appropriate
9614 configuration routine. Use gdbarch_num_regs() to get the number
9615 of registers.
9616 (arm_dump_tdep): New function.
9617 (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
9618 place-holder functions.
9619 (_initialize_arm_tdep): Register them.
9620 * config/arm/tm-arm.h (LOWEST_PC): Delete.
9621
9622 * armnbsd-tdep.c: New file.
9623 * Makefile.in (armnbsd-tdep.o): Add dependencies.
9624 * config/arm/nbsd.mt (TDEPFILES): Add it.
9625 * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
9626
9627 * armnbsd-nat.c: Include regcache.h.
9628 * Makefile.in (armnbsd-nat.o): Update dependency list.
9629
9630 * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
9631
9632 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
9633
9634 * gdbserver/Makefile.in: Fix typos in target rules.
9635
9636 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
9637
9638 Fix part of PR gdb/267.
9639 * linespec.c (find_methods): Handle constructors specially for now.
9640
9641 2002-02-14 Corinna Vinschen <vinschen@redhat.com>
9642
9643 * arm-tdep.c (arm_push_arguments): Eliminate special float type
9644 handling.
9645 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
9646 standard_coerce_float_to_double().
9647
9648 2002-02-14 Christopher Faylor <cgf@redhat.com>
9649
9650 * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
9651 GDBINIT_FILENAME.
9652
9653 2002-02-14 Elena Zannoni <ezannoni@redhat.com>
9654
9655 * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
9656 find_variant_by_name, because it confuses the multiarch
9657 framework. Return NULL if there isn't an architecture with the
9658 user supplied name, instead of forcing a different one without
9659 recording the change with the multiarch machinery.
9660 (find_variant_by_name): Delete.
9661
9662 2002-02-14 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9663
9664 * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
9665 i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
9666
9667 2002-02-13 Martin M. Hunt <hunt@redhat.com>
9668
9669 * stack.c (print_frame_info_base): When calling
9670 print_frame_info_listing_hook, set current_source_symtab.
9671
9672 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
9673
9674 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
9675 and remove unused $(INCLUDE_DIR).
9676 Add regcache.c to OBS.
9677 Add generated register protocol files to clean target.
9678 Update dependencies for new objects, obsolete old target code.
9679
9680 * gdbserver/linux-low.c: Remove all platform-specific code to
9681 new files. Remove various dead code. Update to use regcache
9682 functionality.
9683 * gdbserver/remote-utils.c (fromhex): Add return statement
9684 to quiet warning.
9685 (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
9686 constant.
9687 (input_interrupt): Add integer parameter to match prototype
9688 of a signal handler.
9689 (outreg): Use register_data ().
9690 (prepare_resume_reply): Use gdbserver_expedite_regs.
9691 * gdbserver/server.c (main): Dynamically allocate own_buf because
9692 PBUFSIZ is no longer constant. Use registers_to_string () and
9693 registers_from_string ().
9694 * gdbserver/server.h: No longer include "defs.h". Add prototypes
9695 for error (), fatal (), and warning (). Update definition of
9696 PBUFSIZ to use regcache functionality. Add include guard.
9697 * gdbserver/utils.c (fatal): Add missing ``const''.
9698 (warning): New function.
9699
9700 * regformats/regdat.sh: Include "regcache.h" in generated files.
9701 Provide init_registers () function.
9702 * regformats/regdef.h: Add prototype for set_register_cache ().
9703 Add include guard.
9704
9705 * gdbserver/linux-arm-low.c: New file.
9706 * gdbserver/linux-i386-low.c: New file.
9707 * gdbserver/linux-ia64-low.c: New file.
9708 * gdbserver/linux-m68k-low.c: New file.
9709 * gdbserver/linux-mips-low.c: New file.
9710 * gdbserver/linux-ppc-low.c: New file.
9711 * gdbserver/linux-sh-low.c: New file.
9712
9713 * gdbserver/regcache.c: New file.
9714 * gdbserver/regcache.h: New file.
9715
9716 * gdbserver/low-linux.c: Removed obsolete file.
9717
9718 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
9719
9720 * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
9721 * config/i386/linux.mt: Likewise.
9722 * config/ia64/linux.mt: Likewise.
9723 * config/m68k/linux.mh: Likewise.
9724 * config/powerpc/linux.mh: Likewise.
9725 * config/mips/linux.mt: Likewise.
9726
9727 * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
9728
9729 * config/i386/i386lynx.mh: Mark gdbserver variables
9730 as (currently) obsolete for this target.
9731 * config/i386/nbsd.mt: Likewise.
9732 * config/i386/nbsdelf.mt: Likewise.
9733 * config/m32r/m32r.mt: Likewise.
9734 * config/m68k/m68klynx.mh: Likewise.
9735 * config/m68k/nbsd.mt: Likewise.
9736 * config/m68k/sun3os4.mh: Likewise.
9737 * config/mips/vr5000.mt: Likewise.
9738 * config/ns32k/nbsd.mt: Likewise.
9739 * config/pa/hppabsd.mh: Likewise.
9740 * config/pa/hppaosf.mh: Likewise.
9741 * config/powerpc/nbsd.mt: Likewise.
9742 * config/rs6000/rs6000lynx.mh: Likewise.
9743 * config/s390/s390.mt: Likewise.
9744 * config/s390/s390x.mt: Likewise.
9745 * config/sparc/sparclynx.mh: Likewise.
9746 * config/sparc/sun4os4.mh: Likewise.
9747 * config/i386/x86-64linux.mt: Likewise.
9748 * config/sparc/linux.mh: Likewise.
9749
9750 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
9751
9752 * configure.tgt: Configure gdbserver only for known working
9753 targets. Set ${build_gdbserver} instead of modifying ${configdirs}.
9754 * configure.in: Check ${build_gdbserver}. Put gdbserver/ into
9755 SUBDIRS if it is configured. Update comment for ${nativefile}.
9756 * configure: Regenerated.
9757
9758 2002-02-13 Michael Snyder <msnyder@redhat.com>
9759
9760 * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
9761
9762 * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
9763 (default_gcore_mach): Just return 0, work around a problem in bfd.
9764 (default_gcore_target): OK to return NULL if exec_bfd is null.
9765 (make_mem_sec): Use a cast, avoid a warning.
9766
9767 * procfs.c (find_memory_regions_callback): Use a cast instead of
9768 calling host_pointer_to_address (which complains if
9769 sizeof (host pointer) != sizeof (target pointer)).
9770 (procfs_make_note_section): Avoid overflow in psargs string.
9771
9772 * procfs.c (procfs_make_note_section): Make the default
9773 implementation return an error.
9774
9775 2002-02-13 Rodney Brown <rbrown64@csc.com.au>
9776
9777 * procfs.c (procfs_make_note_section): Provide a default definition
9778 (for alpha-dec-osf4.0f). Fix typos.
9779
9780 2002-02-13 Elena Zannoni <ezannoni@redhat.com>
9781
9782 * linux-proc.c: Add include of regcache.h.
9783 * Makefile.in (linux-proc.o): Add dependency on regcache.h.
9784
9785 2002-02-13 Andrew Cagney <ac131313@redhat.com>
9786
9787 From 2002-01-18 Greg McGary <greg@mcgary.org>:
9788 * memattr.c (create_mem_region): Disallow useless empty region.
9789 Regions are half-open intervals, so allow [A..B) [B..C) as
9790 non-overlapping.
9791
9792 2002-02-13 Michael Chastain <mec@shout.net>
9793
9794 * defs.h: Kill CONST_PTR.
9795 * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
9796 * c-lang.c (c_builtin_types): Likewise.
9797 * ch-lang.c (ch_builtin_types): Likewise.
9798 * f-lang.c (f_builtin_types): Likewise.
9799 * language.c (unknown_builtin_types): Likewise.
9800 * m2-lang.c (m2_builtin_types): Likewise.
9801 * p-lang.c (pascal_builtin_types): Likewise.
9802 * scm-lang.c (c_builtin_types): Likewise.
9803
9804 2002-02-13 Keith Seitz <keiths@redhat.com>
9805
9806 * arm-tdep.h (arm_get_next_pc): Add declaration.
9807
9808 2002-02-13 Richard Earnshaw <rearnsha@arm.com>
9809
9810 * arm-tdep.c (arm_use_struct_convention): Make static. Move to be
9811 with other related struct-returning functions.
9812 (arm_extract_struct_value_address): New function.
9813 (arm_gdbarch_init): Initialize the above in multi-arch vector. Also
9814 initialize float_format, double_format and long_double_format as
9815 appropriate to the endianness of the target.
9816 * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
9817 (arm_use_struct_convention): Delete declaration.
9818 (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
9819
9820 2002-02-13 Keith Seitz <keiths@redhat.com>
9821
9822 * defs.h (core_addr_to_string_nz): New function.
9823
9824 2002-02-13 Mark Kettenis <kettenis@gnu.org>
9825
9826 Apply missing bits of 2002-01-15 patch.
9827 * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
9828 (fill_fpregset): Use i387_fill_fsave.
9829
9830 2002-02-12 Keith Seitz <keiths@redhat.com>
9831
9832 * utils.c (core_addr_to_string): Use phex instead of phex_nz.
9833 (core_addr_to_string_nz): New function.
9834
9835 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
9836
9837 * arm-linux-nat.c: Really include arm-tdep.h.
9838 * config/arm/tm-linux.h (struct type, struct value): Declare.
9839
9840 2002-02-11 Michael Snyder <msnyder@redhat.com>
9841
9842 * procfs.c: Include elf-bfd.h (for elfcore_write functions).
9843 (gcore section): Ifdef for Solaris and Unixware only.
9844 (procfs_do_thread_registers): Unixware needs one lwpstatus
9845 per thread (not one prstatus or pstatus).
9846 (procfs_make_note_section): Iterate only over kernel threads (lwps),
9847 not over all gdb threads. For unixware, call elfcore_write_pstatus
9848 once before iterating over threads.
9849
9850 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
9851
9852 * arm-tdep.h: New file.
9853 * arm-tdep.c: Include arm-tdep.h.
9854 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
9855 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
9856 (arm_print_float_info, arm_register_type, convert_to_extended)
9857 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
9858 (arm_extract_return_value, arm_register_name): Make static.
9859 (arm_software_single_step): Similarly. Fix types in declaration.
9860 (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
9861 (arm_store_return_value, arm_store_struct_return): New functions.
9862 (arm_gdbarch_init): Register the above functions. Also register
9863 call_dummy_start_offset, sizeof_call_dummy_words,
9864 function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
9865 sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
9866 max_register_virtual_size, register_size. Set up
9867 prologue_cache.saved_regs here, rather than ...
9868 (_initialize_arm_tdep): ... here.
9869 * config/arm/tm-arm.h (struct type, struct value): Delete forward
9870 declarations.
9871 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
9872 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
9873 (arm_print_float_info, arm_register_type, convert_to_extended)
9874 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
9875 (arm_extract_return_value, arm_register_name): Delete declarations.
9876 (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
9877 (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
9878 (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
9879 (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
9880 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
9881 (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
9882 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
9883 (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
9884 (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
9885 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
9886 (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
9887 (arm_get_next_pc): No-longer static -- these are needed by the RDI
9888 interface.
9889 * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
9890 * remote-rdi.c remote-rdp.c: Likewise.
9891 * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
9892 (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
9893 * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
9894 definition.
9895
9896 * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
9897 (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
9898 (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
9899 from non-ARM_ prefixed definitions.
9900 * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
9901 all uses of above.
9902 * remote-rdi.c remote-rdp.c: Likewise.
9903 * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
9904
9905 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
9906
9907 * arm-tdep.c (arm_frameless_function_invocation)
9908 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
9909 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
9910 (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
9911 (arm_pop_frame, arm_get_next_pc): Make static.
9912 (arm_gdbarch_init): Register above in gdbarch structure.
9913 (arm_read_fp): Renamed from arm_target_read_fp.
9914 (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
9915 * config/arm/tm-arm.h (arm_frameless_function_invocation)
9916 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
9917 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
9918 (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
9919 (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
9920 (arm_pc_is_thumb_dummy): Delete declarations.
9921 (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
9922 (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
9923 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
9924 (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
9925
9926 2002-02-10 Daniel Jacobowitz <drow@mvista.com>
9927
9928 * symtab.c (compare_search_syms): New function.
9929 (sort_search_symbols): New function.
9930 (search_symbols): Sort symbols after searching rather than
9931 before.
9932
9933 2002-02-10 Andrew Cagney <ac131313@redhat.com>
9934
9935 * NEWS: Linux -> GNU/Linux.
9936
9937 2002-02-10 Andrew Cagney <ac131313@redhat.com>
9938
9939 * gdbarch.sh: For for level one methods, disallow a definition
9940 when partially multi-arched. Add comments explaining rationale.
9941 * gdbarch.h: Re-generate.
9942
9943 2002-02-10 Andrew Cagney <ac131313@redhat.com>
9944
9945 * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
9946 multi-arch partial.
9947
9948 2002-02-10 Andrew Cagney <ac131313@redhat.com>
9949
9950 * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL. Exit on bad
9951 field. Use diff -u.
9952 * gdbarch.c: Re-generate.
9953
9954 2002-02-10 Andrew Cagney <ac131313@redhat.com>
9955
9956 * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
9957 * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
9958 partial.
9959
9960 2002-02-10 Andrew Cagney <ac131313@redhat.com>
9961
9962 * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
9963 multi-arch partial.
9964 (PUSH_ARGUMENTS): Switch to using predefault.
9965 * gdbarch.c: Regenerate.
9966
9967 2002-02-10 Andrew Cagney <ac131313@redhat.com>
9968
9969 * valops.c (PUSH_ARGUMENTS): Delete definition.
9970 * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
9971 partial. Default to default_push_arguments.
9972 * gdbarch.h, gdbarch.c: Regenerate.
9973
9974 2002-02-09 Andrew Cagney <ac131313@redhat.com>
9975
9976 * defs.h (throw_exception): Rename return_to_top_level. Update
9977 comments.
9978 * utils.c (error_stream, internal_verror, quit): Ditto.
9979 * top.c (throw_exception, catcher): Ditto.
9980 * sparclet-rom.c (sparclet_load): Ditto.
9981 * remote.c (interrupt_query, minitelnet): Ditto.
9982 * remote-sds.c (interrupt_query): Ditto.
9983 * remote-mips.c (mips_error, mips_kill): Ditto.
9984 * ocd.c (interrupt_query): Ditto.
9985 * monitor.c (monitor_interrupt_query): Ditto.
9986 * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
9987 * target.h: Update comment.
9988
9989 * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
9990
9991 2002-02-09 Andrew Cagney <ac131313@redhat.com>
9992
9993 * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
9994 default_double_format.
9995 * gdbarch.h, gdbarch.c: Re-generate.
9996 * findvar.c (floatformat_unknown): Delete variable definition.
9997 * doublest.h (floatformat_unknown): Delete variable declaration.
9998
9999 2002-02-09 Jim Blandy <jimb@redhat.com>
10000
10001 * stabsread.c (read_type): Add code to parse Sun's syntax for
10002 prototyped function types.
10003
10004 2002-02-09 Andrew Cagney <ac131313@redhat.com>
10005
10006 * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
10007 (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
10008
10009 2002-02-09 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10010
10011 * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
10012 _initialize_solib. Fixes name clash with solib.c:_initialize_solib,
10013 now _initialize_xcoffsolib gets called again and overrides the
10014 commands from solib.c in a native configuration.
10015
10016 2002-02-09 Mark Kettenis <kettenis@gnu.org>
10017
10018 * doublest.c (store_typed_floating): Don't try to return a value.
10019 Fixes PR gdb/290.
10020
10021 2002-02-08 Jim Blandy <jimb@redhat.com>
10022
10023 * c-typeprint.c (c_type_print_varspec_suffix): If a function type
10024 is prototyped and has no arguments, print its argument list as
10025 `(void)'.
10026
10027 2002-02-08 Chris Demetriou <cgd@broadcom.com>
10028
10029 * MAINTAINERS (write-after-approval): Add myself.
10030 (paper-trail): I've escaped!
10031
10032 2002-02-08 Christopher Faylor <cgf@redhat.com>
10033
10034 * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
10035 changes.
10036 (_initialize_check_for_gdb_ini): Ditto.
10037
10038 2002-02-08 Martin M. Hunt <hunt@redhat.com>
10039
10040 * win32-nat.c (cygwin_pid_to_str): Fix typo.
10041 xaprintf -> xasprintf.
10042
10043 2002-02-08 Pierre Muller <muller@ics.u-strasbg.fr>
10044
10045 * win32-nat.c: Remove use of printf and sprintf functions.
10046
10047 2002-02-08 Richard Earnshaw <rearnsha@arm.com>
10048
10049 * arm-tdep.c (arm_frame_chain_valid): Make static.
10050 (arm_push_arguments): Likewise.
10051 (arm_gdbarch_init): New function.
10052 (_initialize_arm_tdep): Call it.
10053 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
10054 (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
10055 (FRAME_CHAIN_VALID): Delete.
10056 (arm_frame_chain_valid): Delete declaration.
10057 (PUSH_ARGUMENTS): Delete.
10058 (arm_push_arguments): Delete declaration.
10059 (CALL_DUMMY_P): Delete.
10060
10061 2002-02-08 Andrew Cagney <ac131313@redhat.com>
10062 Corinna Vinschen <vinschen@redhat.com>
10063
10064 * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
10065 on builtin float types.
10066
10067 2002-02-08 Daniel Jacobowitz <drow@mvista.com>
10068
10069 * utils.c: Include <curses.h> before "bfd.h".
10070 * tui/tui-hooks.c: Likewise.
10071 * tui/tui.c: Likewise.
10072 * tui/tuiCommand.c: Likewise.
10073 * tui/tuiData.c: Likewise.
10074 * tui/tuiDataWin.c: Likewise.
10075 * tui/tuiDisassem.c: Likewise.
10076 * tui/tuiGeneralWin.c: Likewise.
10077 * tui/tuiIO.c: Likewise.
10078 * tui/tuiLayout.c: Likewise.
10079 * tui/tuiRegs.c: Likewise.
10080 * tui/tuiSource.c: Likewise.
10081 * tui/tuiSourceWin.c: Likewise.
10082 * tui/tuiStack.c: Likewise.
10083 * tui/tuiWin.c: Likewise.
10084
10085 2002-02-07 Elena Zannoni <ezannoni@redhat.com>
10086
10087 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
10088 to include space for pseudoregs as well. Update loops accordingly.
10089 (sh_fp_frame_init_saved_regs): Ditto.
10090 (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
10091
10092 2002-02-07 Andrew Cagney <ac131313@redhat.com>
10093
10094 * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
10095 Add Richard Earnshaw to Arm maintainers.
10096
10097 2002-02-07 Andrew Cagney <ac131313@redhat.com>
10098
10099 * defs.h (warning_begin): Delete declaration.
10100
10101 * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
10102 Delete macro.
10103
10104 2002-02-07 Michael Snyder <msnyder@redhat.com>
10105
10106 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
10107 Logic bug, remove misplaced else.
10108
10109 2002-02-07 Klee Dienes <klee@apple.com>
10110
10111 * fork-inferior.c (fork_inferior): Add '!' to the list of
10112 characters that need to be quoted when building a string for the
10113 shell. Quote '!' specifically with a backslash, since CSH chokes
10114 when trying to evaluate "str!str".
10115
10116 2002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
10117
10118 * rdi-share/host.h: Only provide a typedef for bool if it is not
10119 defined.
10120
10121 2002-02-04 Michael Snyder <msnyder@redhat.com>
10122
10123 * breakpoint.h (enum bptype): Add new overlay event bp type.
10124 (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
10125
10126 * breakpoint.c (create_internal_breakpoint): New function.
10127 (internal_breakpoint_number): Moved into create_internal_breakpoint.
10128 (create_longjmp_breakpoint): Use create_internal_breakpoint.
10129 (create_thread_event_breakpoint): Ditto.
10130 (create_solib_event_breakpoint): Ditto.
10131 (create_overlay_event_breakpoint): New function.
10132 (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
10133 (update_breakpoints_after_exec): Delete and re-initialize
10134 overlay event breakpoints after an exec. Add FIXME comment
10135 about longjmp breakpoint.
10136 (print_it_typical): Ignore overlay event breakpoints.
10137 (print_one_breakpoint): Ditto.
10138 (mention): Ditto.
10139 (bpstat_what): Do not stop for overlay event breakpoints.
10140 (delete_breakpoint): Don't delete overlay event breakpoints.
10141 (breakpoint_re_set_one): Delete the overlay event breakpoint.
10142 (breakpoint_re_set): Re-create overlay event breakpoint.
10143
10144 * symfile.c (overlay_auto_command): Enable overlay breakpoints.
10145 (overlay_manual_command): Disable overlay breakpoints.
10146 (overlay_off_command): Disable overlay breakpoints.
10147
10148 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
10149
10150 * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
10151 (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
10152 to here from config/tm-arm.h.
10153 (coff_sym_is_thumb): Make static.
10154 (arm_elf_make_msymbol_special): New function.
10155 (arm_coff_make_msymbol_special): New function.
10156 * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
10157 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
10158 (coff_sym_is_thumb): Delete declaration.
10159 (arm_elf_make_msymbol_special): Declare.
10160 (arm_coff_make_msymbol_special): Declare.
10161 (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
10162 (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
10163
10164 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
10165
10166 * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
10167
10168 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
10169
10170 * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
10171 * gdbarch.c gdbarch.h: Regenerate.
10172 * arch-utils.c (default_print_float_info): New function.
10173 * arch-utils.h (default_print_float_info): Prototype it.
10174 * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
10175 * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
10176 (PRINT_FLOAT_INFO): Document it.
10177
10178 * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
10179 * config/arm/tm-arm.h (FLOAT_INFO): Delete.
10180 (PRINT_FLOAT_INFO): Define.
10181
10182 2002-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
10183
10184 * win32-nat.c (_initialize_check_for_gdb_ini):
10185 Add typecast to sprintf argument to suppress a warning.
10186
10187 2002-02-05 Pierre Muller <muller@ics.u-strasbg.fr>
10188
10189 * win32-nat.c (last_sig): Changed type of variable to target_signal,
10190 to allow easier handling of pass state.
10191 (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
10192 that gives exception name and address.
10193 (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
10194 and set last_sig value to ourstatus->value.sig. Some missing
10195 exceptions added.
10196 (child_continue): Correctly report continue_status.
10197 (get_child_debug_event,do_initial_child_stuff): Set last_sig to
10198 TARGET_SIGNAL_0 (new default value).
10199 (child_resume): consider sig argument passed to decide if
10200 the exception should be passed to debuggee or not.
10201
10202 2002-02-05 Michael Snyder <msnyder@redhat.com>
10203
10204 * regcache.c (fetch_register): Call target_fetch_register
10205 only if we don't call FETCH_PSEUDO_REGISTER.
10206 (store_register): Call target_store_register only if we
10207 don't call STORE_PSEUDO_REGISTER.
10208
10209 2002-02-05 Elena Zannoni <ezannoni@redhat.com>
10210
10211 * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
10212 ELF_MAKE_MSYMBOL_SPECIAL.
10213 * gdbarch.c, gdbarch.h: Regenerate.
10214 * arch-utils.c (default_make_msymbol_special): New function.
10215 * arch-utils.h (default_make_msymbol_special): Export.
10216 * elfread.c (elf_symtab_read): Compile use of
10217 ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
10218 multiarched.
10219 * coffread.c (coff_symtab_read): Ditto, for
10220 COFF_MAKE_MSYMBOL_SPECIAL.
10221
10222 2002-02-05 Jim Blandy <jimb@redhat.com>
10223
10224 * solib-svr4.c (svr4_truncate_ptr): New function.
10225 (svr4_relocate_section_addresses): Do the address arithmetic with
10226 the appropriate truncation for target addresses, even when
10227 CORE_ADDR is larger than a target address.
10228
10229 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
10230
10231 * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
10232 to (int *).
10233
10234 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
10235
10236 * gdbserver/linux-low.c (kill_inferior): Remove commented out
10237 code.
10238
10239 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
10240
10241 * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
10242
10243 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
10244
10245 * gdbserver/linux-low.c: Remove unused include files.
10246
10247 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
10248
10249 * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
10250 (read_inferior_memory): Use it.
10251 (write_inferior_memory): Likewise.
10252
10253 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
10254
10255 * gdbserver/linux-low.c (create_inferior): Call strerror instead of
10256 grubbing through sys_errlist.
10257
10258 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
10259
10260 * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
10261
10262 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
10263 * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
10264
10265 2002-02-04 Andrew Cagney <ac131313@redhat.com>
10266
10267 * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
10268 (do_sfunc, set_cmd_sfunc): New functions.
10269
10270 * command.h (struct cmd_list_element): Add field func.
10271 * cli/cli-decode.h (struct cmd_list_element): Ditto.
10272 * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
10273 * cli/cli-decode.h: Ditto.
10274
10275 * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
10276 (help_all, help_cmd_list): Ditto.
10277 (find_cmd, complete_on_cmdlist): Ditto.
10278 * top.c (execute_command): Ditto.
10279
10280 * cli/cli-setshow.c (do_setshow_command): Call func instead of
10281 function.sfunc.
10282
10283 * infcmd.c (notice_args_read): Fix function signature.
10284
10285 * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
10286 * cli/cli-decode.c (add_set_cmd): Ditto.
10287 * utils.c (initialize_utils): Ditto.
10288 * maint.c (_initialize_maint_cmds): Ditto.
10289 * infrun.c (_initialize_infrun): Ditto.
10290 * demangle.c (_initialize_demangler): Ditto.
10291 * remote.c (add_packet_config_cmd): Ditto.
10292 * mips-tdep.c (_initialize_mips_tdep): Ditto.
10293 * cris-tdep.c (_initialize_cris_tdep): Ditto.
10294 * proc-api.c (_initialize_proc_api): Ditto.
10295 * kod.c (_initialize_kod): Ditto.
10296 * valprint.c (_initialize_valprint): Ditto.
10297 * top.c (init_main): Ditto.
10298 * infcmd.c (_initialize_infcmd): Ditto.
10299 * corefile.c (_initialize_core): Ditto.
10300 * arm-tdep.c (_initialize_arm_tdep): Ditto.
10301 * arch-utils.c (initialize_current_architecture): Ditto.
10302 (_initialize_gdbarch_utils): Ditto.
10303 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
10304
10305 * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
10306 * wince.c (_initialize_inftarg): Ditto.
10307 * symfile.c (_initialize_symfile): Ditto.
10308 * mips-tdep.c (_initialize_mips_tdep): Ditto.
10309 * language.c (_initialize_language): Ditto.
10310 * arc-tdep.c (_initialize_arc_tdep): Ditto.
10311
10312 2002-02-04 Michael Snyder <msnyder@redhat.com>
10313
10314 * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
10315
10316 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
10317
10318 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
10319 Add rules for building the register data files.
10320
10321 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
10322
10323 * regformats/regdat.sh: Add braces to the definition of
10324 expedite_regs_${arch}.
10325
10326 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
10327
10328 * regformats/regdef.h (struct reg): Add comment describing the
10329 requirements for offset and size fields.
10330
10331 2002-02-04 Andreas Schwab <schwab@suse.de>
10332
10333 * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
10334 * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
10335
10336 2002-02-04 Richard Earnshaw <rearnsha@arm.com>
10337
10338 * gdbarch.sh (copyright): Update years in generated header.
10339 (SMASH_TEXT_ADDRESS): Add rule.
10340 * gdbarch.h, gdbarch.c: Re-generate.
10341 * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
10342 * dbxread.c: Likewise.
10343 * dwarfread.c: Likewise.
10344 * elfread.c: Likewise.
10345 * somread.c: Likewise.
10346
10347 * arm-tdep.c (arm_smash_text_address): New function.
10348 * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
10349
10350 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
10351
10352 Add support for hardware watchpoints on win32 native.
10353 * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
10354 CONTEXT_DEBUG_REGISTERS.
10355 (dr variable): New variable. Static array containing a local copy
10356 of debug registers.
10357 (debug_registers_changed): New variable. Reflects when debug registers
10358 are changed and need to be written to inferior.
10359 (debug_registers_used): New variable. Reflects when any debug register
10360 was set, used when new threads are created.
10361 (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
10362 i386-nat code.
10363 (thread_rec): Set dr array if id is the thread of current_event .
10364 (child_continue, child_resume): Change the debug registers for all
10365 threads if debug_registers_changed.
10366 (child_add_thread): Change the debug registers if debug_registers_used.
10367 * config/i386/cygwin.mh: Add use of i386-nat.o file.
10368 Link nm.h to new nm-cygwin.h file.
10369 + config/i386/nm-cygwin.h: New file. Contains the macros used for use
10370 of hardware registers.
10371
10372 2002-02-03 Andrew Cagney <ac131313@redhat.com>
10373
10374 * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
10375 Restore behavour broken by 2002-01-20 Andrew Cagney
10376 <ac131313@redhat.com> IEEE_FLOAT removal.
10377
10378 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
10379
10380 * c-valprint.c (c_val_print): Pass a proper valaddr to
10381 cp_print_class_method.
10382 * valops.c (search_struct_method): If there is only one method
10383 and args is NULL, return that method.
10384
10385 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
10386
10387 * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
10388 accessing tag_name directly.
10389
10390 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
10391
10392 * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
10393 of accessing tag_name directly.
10394
10395 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
10396
10397 PR gdb/280
10398 * gdbtypes.c (replace_type): New function.
10399 * gdbtypes.h (replace_type): Add prototype.
10400 * stabsread.c (read_type): Use replace_type.
10401
10402 2002-02-03 Richard Earnshaw <rearnsha@arm.com>
10403
10404 * Makefile.in (memattr.o): Add missing dependencies rule.
10405
10406 2002-02-03 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10407
10408 * breakpoint.c (break_at_finish_command): Really export.
10409 (break_at_finish_at_depth_command): Ditto.
10410 (tbreak_at_finish_command): Ditto.
10411 * hppa-tdep.c: Include completer.h.
10412 * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
10413 (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
10414
10415 2002-02-01 Andrew Cagney <ac131313@redhat.com>
10416
10417 * utils.c (do_write): New function.
10418 (error_stream): Rewrite combining the code from error_begin and
10419 verror.
10420 (verror): Rewrite using error_stream.
10421 (error_begin): Delete function.
10422
10423 2002-02-01 Andrew Cagney <ac131313@redhat.com>
10424
10425 * utils.c (error_begin): Make static.
10426 * defs.h (error_begin): Delete declaration.
10427
10428 * linespec.c (cplusplus_error): Replace cplusplus_hint.
10429 (decode_line_1): Use cplusplus_error instead of error_begin,
10430 cplusplus_hint and return_to_top_level.
10431 * coffread.c (coff_symfile_read): Use error instead of error_begin
10432 and return_to_top_level.
10433 * infrun.c (default_skip_permanent_breakpoint): Ditto.
10434
10435 2002-02-01 Andrew Cagney <ac131313@redhat.com>
10436
10437 * language.h (type_error, range_error): Make string parameter
10438 constant.
10439 * language.c (warning_pre_print): Delete extern declaration.
10440 * dwarfread.c (warning_pre_print): Ditto.
10441 * language.c (type_error, range_error): Rewrite to use verror and
10442 vwarning instead of warning_begin.
10443
10444 2002-02-01 Michael Snyder <msnyder@redhat.com>
10445
10446 * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
10447 (set_ignore_count): Move misplaced comment back where it belongs.
10448
10449 2002-02-01 Andrew Cagney <ac131313@redhat.com>
10450
10451 * command.h (NO_FUNCTION): Delete macro.
10452 * cli/cli-decode.h (NO_FUNCTION): Ditto.
10453 * top.c (execute_command): Replace NO_FUNCTION with NULL.
10454 * tracepoint.c (_initialize_tracepoint): Ditto.
10455 * cli/cli-decode.c (add_set_cmd): Ditto.
10456 * cli/cli-cmds.c (init_cli_cmds): Ditto.
10457
10458 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
10459
10460 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
10461 Update ``this'' pointer when calling virtual functions.
10462
10463 2002-02-01 Michael Snyder <msnyder@redhat.com>
10464
10465 * breakpoint.c (create_temp_exception_breakpoint): Delete.
10466 * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
10467
10468 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
10469
10470 * regformats/reg-arm.dat: New file.
10471 * regformats/reg-i386.dat: New file.
10472 * regformats/reg-ia64.dat: New file.
10473 * regformats/reg-m68k.dat: New file.
10474 * regformats/reg-mips.dat: New file.
10475 * regformats/reg-ppc.dat: New file.
10476 * regformats/reg-sh.dat: New file.
10477 * regformats/regdef.h: New file.
10478 * regformats/regdat.sh: New file.
10479
10480 2002-02-01 Richard Earnshaw <reanrsha@arm.com>
10481
10482 * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
10483 (arm_frame_args_address, arm_frame_locals_address): New functions.
10484 (arm_frame_num_args): New function.
10485 * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
10486 (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
10487 (FRMA_NUM_ARGS): Call arm_frame_num_args.
10488
10489 2002-01-31 Michael Snyder <msnyder@redhat.com>
10490
10491 * breakpoint.c (break_at_finish_command): Export.
10492 (break_at_finish_at_depth_command): Export.
10493 (tbreak_at_finish_command): Export.
10494 (_initialize_breakpoint): Delete "xbreak" and "txbreak" commands.
10495 * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
10496 "txbreak" commands, which are HPPA specific.
10497
10498 * printcmd.c (disassemble_command): Remove an ancient
10499 artifact of an old merge.
10500
10501 * symfile.h (enum overlay_debugging_state):
10502 Define enum constant values for overlay mode.
10503 * symfile.c (overlay_debugging): Use enums instead of literals.
10504 (overlay_is_mapped, overlay_auto_command,
10505 overlay_manual_command): Ditto.
10506
10507 * breakpoint.c (insert_breakpoints, remove_breakpoint,
10508 breakpoint_here_p, breakpoint_inserted_here_p,
10509 breakpoint_thread_match, bpstat_stop_status,
10510 describe_other_breakpoints, check_duplicates, clear_command):
10511 Coding standard fixes.
10512
10513 * target.c (target_xfer_memory): Add spaces, coding standard.
10514 (do_xfer_memory): Add missing line to trust-readonly
10515 code: check bfd SEC_READONLY flag for section.
10516
10517 2002-01-31 Andrew Cagney <ac131313@redhat.com>
10518
10519 * PROBLEMS: Fix typo, 5.1->5.1.1.
10520
10521 2002-01-30 Daniel Jacobowitz <drow@mvista.com>
10522
10523 * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
10524 data symbols, since we search based on textlow and texthigh.
10525 (find_pc_sect_symtab): Likewise.
10526
10527 2002-01-30 Andrew Cagney <ac131313@redhat.com>
10528
10529 * defs.h (vwarning): Declare.
10530 * utils.c (vwarning): New function.
10531 (warning): Call vwarning.
10532 (warning_begin): Delete function.
10533
10534 * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
10535 the warning message.
10536 * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
10537 warning_begin.
10538
10539 2002-01-30 Michael Snyder <msnyder@redhat.com>
10540
10541 * NEWS: Mention "set trust-readonly-sections" command.
10542 Mention generate-core-file command.
10543
10544 2002-01-15 Michael Snyder <msnyder@redhat.com>
10545
10546 * target.c: New command, "set trust-readonly-sections on".
10547 (do_xfer_memory): Honor the suggestion to trust readonly sections
10548 by reading them from the object file instead of from the target.
10549 (initialize_targets): Register command "set trust-readonly-sections".
10550
10551 2002-01-29 Andrew Cagney <ac131313@redhat.com>
10552
10553 * parse.c (target_map_name_to_register): Simplify, search regs and
10554 pseudo-regs using a single loop.
10555
10556 2002-01-30 Andrew Cagney <ac131313@redhat.com>
10557
10558 * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
10559
10560 2002-01-15 Rodney Brown <rbrown64@csc.com.au>
10561
10562 * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
10563 * config/i386/i386v42mp.mh: Add i387-nat.o .
10564 * i386v4-nat.c: Include i387-nat.h.
10565 (supply_fpregset): Use i387_supply_fsave.
10566 (fill_fpregset): Use i387_fill_fsave.
10567
10568 2002-01-30 Richard Earnshaw <rearnsha@arm.com>
10569
10570 * arm-tdep.c (arm_call_dummy_words): Define.
10571 * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
10572 * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
10573 (CALL_DUMMY_WORDS): Define.
10574 (arm_call_dummy_words): Declare.
10575 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
10576 (arm_linux_call_dummy_words): Declare.
10577
10578 2002-01-30 Andreas Schwab <schwab@suse.de>
10579
10580 * m68klinux-nat.c: Fix last change to use regcache_collect
10581 instead of referencing registers[] directly.
10582
10583 2002-01-29 Andrew Cagney <ac131313@redhat.com>
10584
10585 * parse.c (target_map_name_to_register): Delete code wrapped in
10586 #ifdef REGISTER_NAME_ALIAS_HOOK.
10587
10588 2002-01-28 Michael Snyder <msnyder@redhat.com>
10589
10590 * regcache.c (legacy_read_register_gen): Need to be able to
10591 read pseudo-register as well as real register.
10592 (legacy_write_register_gen): Ditto.
10593
10594 2002-01-28 Andrew Cagney <ac131313@redhat.com>
10595
10596 * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
10597 * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
10598 * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
10599 * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
10600 * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
10601 * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
10602 * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
10603 * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
10604 * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
10605 * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
10606 * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
10607 * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
10608 * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
10609 * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
10610 * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
10611 * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
10612 * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
10613 * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
10614 * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
10615 * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
10616
10617 2002-01-28 Andrew Cagney <ac131313@redhat.com>
10618
10619 * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
10620 (target_byte_order): Initialize to BFD_ENDIAN_BIG.
10621 (initialize_current_architecture): Update target_byte_order using
10622 information from BFD.
10623 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
10624 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
10625
10626 2002-01-28 Andrew Cagney <ac131313@redhat.com>
10627
10628 * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
10629 * vax-tdep.c (INVALID_FLOAT): To here. Document why it is broken.
10630
10631 * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
10632 #ifdef INVALID_FLOAT.
10633 * infcmd.c (do_registers_info): Ditto.
10634 * values.c (unpack_double): Ditto. Add comment.
10635
10636 * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
10637 already commented out.
10638
10639 2002-01-26 Andreas Schwab <schwab@suse.de>
10640
10641 * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
10642 * m68klinux-nat.c: Update ptrace interface for fetching/storing
10643 registers and add support for PTRACE_GETREGS.
10644
10645 2002-01-24 Andrew Cagney <ac131313@redhat.com>
10646
10647 GDB 5.1.1 released from 5.1 branch.
10648 * NEWS: Add 5.1.1 news.
10649 * README: Sync with 5.1 branch.
10650
10651 2002-01-23 Fred Fish <fnf@redhat.com>
10652
10653 * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
10654 stabstring on initial malloc. Reallocing will copy it for us,
10655 if necessary.
10656
10657 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
10658
10659 * Makefile.in (hpread_h): Delete.
10660 (HFILES_NO_SRCDIR): Remove hpread.h.
10661 (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
10662 (hpread.o): Update dependencies.
10663 (hp-psymtab-read.o, hp-symtab-read.o): Remove.
10664
10665 * hp-psymtab-read.c: Remove file.
10666 * hp-symtab-read.c: Remove file.
10667 * hpread.h: Remove file.
10668
10669 * hpread.c: Merge all contents of hp-psymtab-read.c,
10670 hp-symtab-read.c and hpread.h into this file, as it was prior to
10671 January 1999.
10672
10673 * config/pa/hpux11w.mh, config/pa/hpux11.mh,
10674 config/pa/hpux1020.mh, config/pa/hppaosf.mh,
10675 config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
10676 Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
10677
10678 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
10679
10680 * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
10681 fill_gregset): Call gdbarch_tdep() just once, assign result to
10682 variable and use that, instead of calling the function several
10683 times.
10684
10685 2002-01-24 Alexandre Oliva <aoliva@redhat.com>
10686
10687 * configure.host: Accept sparcv9 as alias for sparc64.
10688 * configure.tgt: Likewise.
10689
10690 2002-01-22 Kevin Buettner <kevinb@redhat.com>
10691
10692 * solib-aix5.c (build_so_list_from_mapfile)
10693 (aix5_relocate_main_executable): Fix xcalloc() calls so order of
10694 arguments is not reversed.
10695 * solib-sunos.c (sunos_relocate_main_executable): Likewise.
10696 * solib-svr4.c (svr4_relocate_main_executable): Likewise.
10697
10698 2002-01-22 Elena Zannoni <ezannoni@redhat.com>
10699
10700 * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
10701 modified version of obsolete sh_fetch_pseudo_register.
10702 (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
10703 (sh4_register_read): New function.
10704 (sh_pseudo_register_write): New function. Renamed and modified
10705 version of obsolete sh_store_pseudo_register.
10706 (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
10707 (sh4_register_write): New function.
10708 (sh_gdbarch_init): Remove setting of gdbarch function
10709 fetch_pseudo_register and store_pseudo_register. Remove setting of
10710 register_convert_to_raw, register_convert_to_virtual,
10711 register_convertible.
10712 (sh_sh4_register_convertible): Delete. No longer needed. All is
10713 taken care by architecture specific functions
10714 register_read/register_write.
10715 (sh_sh4_register_convert_to_virtual): Make static.
10716 (sh_sh4_register_convert_to_raw): Ditto.
10717
10718 2002-01-22 Andrew Cagney <ac131313@redhat.com>
10719
10720 * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
10721 (floatformat_is_nan, floatformat_mantissa): Ditto.
10722
10723 * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
10724 for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
10725 builtin_type_ieee_double_little,
10726 builtin_type_ieee_double_littlebyte_bigword,
10727 builtin_type_m68881_ext, builtin_type_i960_ext,
10728 builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
10729 builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
10730 builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
10731 builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
10732
10733 2002-01-22 Corinna Vinschen <vinschen@redhat.com>
10734
10735 * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
10736 parameter. Set frameless flag if it exists and depended of
10737 whether the scanned function is frameless or not.
10738 (xstormy16_skip_prologue): If function is frameless, return
10739 result of xstormy16_scan_prologue().
10740 (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
10741 call.
10742
10743 2002-01-21 Elena Zannoni <ezannoni@redhat.com>
10744
10745 * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
10746 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
10747 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
10748 sh_sh4_register_byte, sh_sh4_register_raw_size,
10749 sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
10750 sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
10751 sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
10752 sh_store_pseudo_register, sh_do_pseudo_register): Call
10753 gdbarch_tdep() just once, assign result to variable and use that,
10754 instead of calling the function several times.
10755
10756 2002-01-20 Mark Kettenis <kettenis@gnu.org>
10757
10758 * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
10759 macros instead of LAST_FPU_CTRL_REGNUM.
10760 (store_register): Likewise.
10761
10762 2002-01-21 Jim Blandy <jimb@redhat.com>
10763
10764 * infcmd.c (run_command): Check that the `exec' target layer's BFD
10765 is up-to-date before running the program, not just when a program
10766 exits.
10767
10768 2002-01-21 Fred Fish <fnf@redhat.com>
10769
10770 * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
10771 when we have found all instructions we are looking for.
10772
10773 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
10774
10775 * arm-tdep.c (arm_register_name): New function.
10776 (arm_registers_names): Make static.
10777 * config/arm/tm-arm.h (arm_register_names): Delete declaration.
10778 (arm_register_name): Declare.
10779 (REGISTER_NAME): Use it.
10780
10781 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
10782 Kevin Buettner <kevinb@redhat.com>
10783
10784 Convert arm targets to new FRAME interface.
10785 * arm-tdep.c (struct frame_extra_info): Remove fsr.
10786 (arm_frame_find_save_regs): Delete.
10787 (arm_frame_init_saved_regs): New.
10788 (arm_init_extra_frame_info): Alloacte saved_regs as required.
10789 Allocate extra_info as required. Convert all uses of fsr.regs
10790 to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
10791 to use extra_info.
10792 (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
10793 (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
10794 (check_prologue_cache, save_prologue_cache): Likewise.
10795 (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
10796 * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
10797 (FRAME_FIND_SAVED_REGS): Delete.
10798 (arm_frame_find_saved_regs): Delete prototype.
10799 (arm_frame_init_saved_regs): New prototype.
10800 (FRAME_INIT_SAVED_REGS): Define.
10801
10802 2002-01-20 Andrew Cagney <ac131313@redhat.com>
10803
10804 * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
10805
10806 2002-01-20 Andrew Cagney <ac131313@redhat.com>
10807
10808 From Jeff Law <law@redhat.com>:
10809 * infttrace.c: Include <sys/pstat.h>.
10810 (child_pid_to_exec_file): Revamp. Use pstat call to get the
10811 exec file if the ttrace equivalent fails.
10812
10813 2002-01-20 Andrew Cagney <ac131313@redhat.com>
10814
10815 * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
10816 (closeLogFile): Ditto.
10817
10818 2002-01-20 Michael Chastain <mec@shout.net>
10819
10820 * top.c (print_gdb_version): Bump copyright year to 2002.
10821
10822 2002-01-20 Andrew Cagney <ac131313@redhat.com>
10823
10824 * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
10825 Zannoni and Eli Zaretskii.
10826
10827 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
10828
10829 * buildsym.c: Update copyright years.
10830 * c-typeprint.c: Likewise.
10831 * dwarf2read.c: Likewise.
10832 * f-typeprint.c: Likewise.
10833 * gdbtypes.c: Likewise.
10834 * gdbtypes.h: Likewise.
10835 * hp-symtab-read.c: Likewise.
10836 * hpread.c: Likewise.
10837 * mdebugread.c: Likewise.
10838 * p-typeprint.c: Likewise.
10839
10840 2002-01-20 Andrew Cagney <ac131313@redhat.com>
10841
10842 * remote-sim.c (gdbsim_open): Simplify code testing the macro
10843 TARGET_BYTE_ORDER_SELECTABLE_P. Assume the target is always
10844 byte-order selectable.
10845 * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
10846 * arch-utils.c: Ditto.
10847 (set_endian): Ditto.
10848 (set_endian_from_file): Ditto.
10849 * gdbserver/low-sim.c (create_inferior): Ditto.
10850 * gdbarch.sh: Ditto.
10851 * gdbarch.h: Re-generate.
10852 * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
10853 * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
10854 * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
10855 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
10856 * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
10857 * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
10858 * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
10859 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
10860 macro definition.
10861 * config/mips/tm-wince.h: Remove #undef of macro
10862 TARGET_BYTE_ORDER_SELECTABLE.
10863 * config/sh/tm-wince.h: Ditto.
10864
10865 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
10866
10867 * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
10868 member function fields. Add accessor macro
10869 TYPE_FN_FIELD_ARTIFICIAL.
10870 * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
10871 * c-typeprint.c (c_type_print_base): Skip artificial member
10872 functions.
10873
10874 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
10875
10876 * f-typeprint.c: Delete unused function f_type_print_args.
10877 * p-typeprint.c: Delete unused function pascal_type_print_args.
10878
10879 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
10880
10881 * gdbtypes.h (struct type): Fix whitespace. Remove obsolete
10882 comment. Add ``artificial'' to ``union field_location''.
10883
10884 * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
10885
10886 * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
10887 * mdebugread.c (parse_symbol): Likewise.
10888 * stabsread.c (define_symbol): Likewise.
10889 * hp-symtab-read.c (hpread_function_type): Likewise, instead of
10890 initializing TYPE_FIELD_BITPOS to n (obsolete).
10891 (hpread_doc_function_type): Likewise.
10892 * hpread.c (hpread_function_type): Likewise.
10893
10894 2002-01-20 Andrew Cagney <ac131313@redhat.com>
10895
10896 * configure.in (host_makefile_frag): Only require a host makefile
10897 fragment when a native build.
10898 * configure: Re-generate.
10899
10900 2002-01-20 Andrew Cagney <ac131313@redhat.com>
10901
10902 * doublest.h (floatformat_from_type): Declare.
10903 * doublest.c (floatformat_from_type): New function.
10904 (convert_typed_floating): Use.
10905
10906 * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
10907 call to function floatformat_from_type.
10908
10909 * gdbarch.sh (IEEE_FLOAT): Delete.
10910 * gdbarch.h, gdbarch.c: Re-generate.
10911 * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
10912 * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
10913 * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
10914 * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
10915 * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
10916 * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
10917 * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
10918 * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
10919 * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
10920 * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
10921 * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
10922 * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
10923
10924 * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
10925 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
10926 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
10927 * sh-tdep.c (sh_gdbarch_init): Ditto.
10928 * mips-tdep.c (mips_gdbarch_init): Ditto.
10929 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
10930 * cris-tdep.c (cris_gdbarch_init): Ditto.
10931
10932 2002-01-20 Jiri Smid <smid@suse.cz>
10933
10934 * configure.host, configure.tgt: Support x86-64.
10935 * NEWS: Note new target x86-64.
10936
10937 * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
10938 * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
10939 * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
10940 * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
10941 x86-64-linux-nat.o): Fix dependencies.
10942
10943 2002-01-19 Andrew Cagney <ac131313@redhat.com>
10944
10945 * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
10946 * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
10947 * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
10948 * config/sparc/xm-sun4os4.h: Delete file.
10949 * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
10950
10951 2002-01-19 Andrew Cagney <ac131313@redhat.com>
10952
10953 * config/sparc/sparclynx.mh (XM_FILE): Delete.
10954 * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
10955 * config/m68k/m68klynx.mh (XM_FILE): Delete.
10956 * config/i386/i386lynx.mh (XM_FILE): Delete.
10957 * config/rs6000/xm-rs6000ly.h: Delete file.
10958 * config/sparc/xm-sparclynx.h: Delete file.
10959 * config/m68k/xm-m68klynx.h: Delete file.
10960 * config/i386/xm-i386lynx.h: Delete file.
10961 * config/xm-lynx.h: Delete file.
10962 * config/djgpp/fnchange.lst: Update.
10963
10964 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
10965
10966 * alpha-tdep.c (alpha_register_byte): New function.
10967 (alpha_register_raw_size): Ditto.
10968 (alpha_register_virtual_size): Ditto.
10969 (alpha_skip_prologue_internal): Renamed from
10970 alpha_skip_prologue.
10971 (alpha_skip_prologue): New version that calls
10972 alpha_skip_prologue_internal.
10973 (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
10974 * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
10975 second argument from alpha_skip_prologue.
10976 (REGISTER_BYTE): Use alpha_register_byte.
10977 (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
10978 (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
10979 (FRAMELESS_FUNCTION_INVOCATION): Use
10980 generic_frameless_function_invocation_not.
10981 (FRAME_NUM_ARGS): Use frame_num_args_unknown.
10982 (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
10983
10984 2002-01-19 Andrew Cagney <ac131313@redhat.com>
10985
10986 * config/mips/xm-news-mips.h: Delete file.
10987 * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
10988
10989 * config/m88k/xm-m88k.h: Delete file.
10990 * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
10991 * config/m88k/xm-delta88v4.h: Ditto.
10992 * config/m88k/xm-delta88.h: Ditto.
10993
10994 * config/alpha/xm-fbsd.h: Delete file.
10995 * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
10996
10997 * config/sparc/xm-sparc.h: Delete file.
10998 * Makefile.in (xm-sun4os4.h): Delete dependency.
10999 * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
11000 * config/sparc/xm-sun4os4.h: Ditto.
11001 * config/sparc/xm-linux.h: Ditto.
11002
11003 * config/i386/xm-windows.h: Delete file.
11004
11005 2002-01-19 Andrew Cagney <ac131313@redhat.com>
11006
11007 * utils.c: Include <sys/param.h> for MAXPATHLEN.
11008 (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
11009
11010 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
11011
11012 * alpha-tdep.c (alpha_call_dummy_words): New.
11013 * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
11014 (CALL_DUMMY_P): Define.
11015 (CALL_DUMMY_WORDS): Define.
11016 (SIZEOF_CALL_DUMMY_WORDS): Define.
11017
11018 2002-01-19 Per Bothner <per@bothner.com>
11019
11020 * gnu-v3-abi.c (gnuv3_rtti_type): Guard that vtable_symbol_name
11021 isn't NULL, which can happen with some gcj-3.x-produced code.
11022
11023 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
11024
11025 * alpha-tdep.c (alpha_register_virtual_type): New function.
11026 (alpha_init_frame_pc_first): Ditto.
11027 (alpha_fix_call_dummy): Ditto.
11028 (alpha_store_struct_return): Ditto.
11029 (alpha_extract_struct_value_address): Ditto.
11030 * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
11031 alpha_register_virtual_type.
11032 (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
11033 (EXTRACT_STRUCT_VALUE_ADDRESS): Use
11034 alpha_extract_struct_value_address.
11035 (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
11036 (INIT_FRAME_PC): Use init_frame_pc_noop.
11037 (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
11038
11039 2002-01-19 Mark Kettenis <kettenis@gnu.org>
11040
11041 * i386gnu-nat.c: Include "i386-tdep.h".
11042 (fetch_fpregs): Simplify code dealing with uninitialized floating
11043 point states such that it doesn't require FP7_REGNUM.
11044
11045 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11046
11047 * alpha-tdep.c (frame_extra_info): New.
11048 (alpha_find_saved_regs): Make static. Use
11049 frame->extra_info.
11050 (alpha_frame_init_saved_regs): New function.
11051 (alpha_frame_saved_pc): Use frame->extra_info.
11052 (temp_saved_regs): Don't declare as struct frame_saved_regs.
11053 (heuristic_proc_desc): Adjust for temp_saved_regs changes.
11054 (init_extra_frame_info): Rename to...
11055 (alpha_init_extra_frame_info): ...this. Use frame->extra_info.
11056 (alpha_print_extra_frame_info): New function.
11057 (alpha_frame_locals_address): Ditto.
11058 (alpha_frame_args_address): Ditto.
11059 (alpha_pop_frame): Use frame->extra_info.
11060 * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
11061 alpha_frame_args_address.
11062 (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
11063 (alpha_find_saved_regs): Remove prototype.
11064 (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
11065 (EXTRA_FRAME_INFO): Remove.
11066 (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
11067 (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
11068
11069 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11070
11071 * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
11072 (alpha_cannot_fetch_register): Ditto.
11073 (alpha_cannot_store_register): Ditto.
11074 (alpha_register_convertible): Ditto.
11075 (alpha_use_struct_convention): Ditto.
11076 * config/alpha/tm-alpha.h: Update copyright years.
11077 (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
11078 (INNER_THAN): Use core_addr_lessthan.
11079 (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
11080 (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
11081 (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
11082 (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
11083 (FRAME_CHAIN): Remove unnecessary cast.
11084
11085 2002-01-18 Andrew Cagney <ac131313@redhat.com>
11086
11087 * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
11088 obsolete.
11089
11090 2002-01-18 Andrew Cagney <ac131313@redhat.com>
11091
11092 * infptrace.c: Remove ATTRIBUTE_UNUSED. Update copyright.
11093 * monitor.c, remote-array.c, remote-bug.c: Ditto.
11094 * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
11095 * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
11096 * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
11097 * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
11098 * x86-64-linux-nat.c: Ditto.
11099
11100 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11101
11102 * alpha-tdep.c (alpha_register_name): New function.
11103 * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
11104 (REGISTER_NAME): Define.
11105
11106 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11107
11108 * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
11109
11110 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11111
11112 * alpha-tdep.c: Update copyright years.
11113 (alpha_next_pc): New function.
11114 (alpha_software_single_step): Ditto.
11115 * config/alpha/tm-alpha.h: Add prototype for
11116 alpha_software_single_step.
11117
11118 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11119
11120 * alphabsd-nat.c: Update copyright years.
11121 (fill_gregset): Use regcache_collect.
11122 (fill_fpregset): Likewise.
11123 (fetch_inferior_registers): Only fetch integer registers
11124 if requested to do so.
11125 (store_inferior_registers): Only store integer registers
11126 if requested to do so.
11127
11128 2002-01-17 Andrew Cagney <ac131313@redhat.com>
11129
11130 * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
11131 * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
11132 * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
11133 * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
11134 * config/alpha/fbsd.mh (XDEPFILES): Delete.
11135 * config/arm/linux.mh (XDEPFILES): Delete.
11136 * config/arm/nbsd.mh (XDEPFILES): Delete.
11137 * config/i386/i386dgux.mh (XDEPFILES): Delete.
11138 * config/i386/i386sol2.mh (XDEPFILES): Delete.
11139 * config/i386/i386m3.mh (XDEPFILES): Delete.
11140 (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
11141 * config/i386/i386gnu.mh (XDEPFILES): Delete.
11142 * config/i386/fbsd.mh (XDEPFILES): Delete.
11143 * config/i386/i386bsd.mh (XDEPFILES): Delete.
11144 * config/i386/i386sco5.mh (XDEPFILES): Delete.
11145 * config/i386/i386v4.mh (XDEPFILES): Delete.
11146 * config/i386/i386v42mp.mh (XDEPFILES): Delete.
11147 * config/i386/i386sco4.mh (XDEPFILES): Delete.
11148 * config/i386/i386aix.mh (XDEPFILES): Delete.
11149 * config/i386/go32.mh (XDEPFILES): Delete.
11150 * config/i386/cygwin.mh (XDEPFILES): Delete.
11151 * config/i386/i386lynx.mh (XDEPFILES): Delete.
11152 * config/i386/i386mach.mh (XDEPFILES): Delete.
11153 * config/i386/i386v32.mh (XDEPFILES): Delete.
11154 * config/i386/linux.mh (XDEPFILES): Delete.
11155 * config/i386/nbsdelf.mh (XDEPFILES): Delete.
11156 * config/i386/ncr3000.mh (XDEPFILES): Delete.
11157 * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
11158 * config/i386/i386sco.mh (XDEPFILES): Delete.
11159 * config/i386/i386v.mh (XDEPFILES): Delete.
11160 * config/i386/nbsd.mh (XDEPFILES): Delete.
11161 * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
11162 * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
11163 * config/i386/symmetry.mh (XDEPFILES): Delete.
11164 * config/i386/obsd.mh (XDEPFILES): Delete.
11165 * config/i386/x86-64linux.mh (XDEPFILES): Delete.
11166 * config/ia64/linux.mh (XDEPFILES): Delete.
11167 * config/ia64/aix.mh (XDEPFILES): Delete.
11168 * config/m68k/apollo68b.mh (XDEPFILES): Delete.
11169 * config/m68k/dpx2.mh (XDEPFILES): Delete.
11170 * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
11171 * config/m68k/apollo68v.mh (XDEPFILES): Delete.
11172 * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
11173 * config/m68k/linux.mh (XDEPFILES): Delete.
11174 * config/m68k/m68klynx.mh (XDEPFILES): Delete.
11175 * config/m68k/m68kv4.mh (XDEPFILES): Delete.
11176 * config/m68k/nbsd.mh (XDEPFILES): Delete.
11177 * config/m68k/sun2os3.mh (XDEPFILES): Delete.
11178 * config/m68k/sun2os4.mh (XDEPFILES): Delete.
11179 * config/m68k/sun3os3.mh (XDEPFILES): Delete.
11180 * config/m68k/sun3os4.mh (XDEPFILES): Delete.
11181 * config/m88k/delta88.mh (XDEPFILES): Delete.
11182 * config/m88k/delta88v4.mh (XDEPFILES): Delete.
11183 * config/m88k/m88k.mh (XDEPFILES): Delete.
11184 * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
11185 * config/mips/linux.mh (XDEPFILES): Delete.
11186 * config/mips/irix6.mh (XDEPFILES): Delete.
11187 * config/mips/irix5.mh (XDEPFILES): Delete.
11188 * config/mips/irix4.mh (XDEPFILES): Delete.
11189 * config/mips/irix3.mh (XDEPFILES): Delete.
11190 * config/mips/decstation.mh (XDEPFILES): Delete.
11191 * config/mips/mipsm3.mh (XDEPFILES): Delete.
11192 (NATDEPFILES): Move core-aout.o to here.
11193 * config/ns32k/nbsd.mh (XDEPFILES): Delete.
11194 * config/pa/hpux1020.mh (XDEPFILES): Delete.
11195 * config/pa/hppabsd.mh (XDEPFILES): Delete.
11196 * config/pa/hppahpux.mh (XDEPFILES): Delete.
11197 * config/pa/hpux11w.mh (XDEPFILES): Delete.
11198 * config/pa/hppaosf.mh (XDEPFILES): Delete.
11199 * config/pa/hpux11.mh (XDEPFILES): Delete.
11200 * config/powerpc/aix.mh (XDEPFILES): Delete.
11201 * config/powerpc/nbsd.mh (XDEPFILES): Delete.
11202 * config/powerpc/linux.mh (XDEPFILES): Delete.
11203 * config/romp/rtbsd.mh: Rename XDEPFILES.
11204 * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
11205 * config/rs6000/aix4.mh (XDEPFILES): Delete.
11206 * config/rs6000/rs6000.mh (XDEPFILES): Delete.
11207 * config/s390/s390.mh (XDEPFILES): Delete.
11208 * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
11209 * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
11210 * config/sparc/sun4os4.mh (XDEPFILES): Delete.
11211 * config/sparc/sparclynx.mh (XDEPFILES): Delete.
11212 * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
11213 * config/sparc/nbsd.mh (XDEPFILES): Delete.
11214 * config/sparc/linux.mh (XDEPFILES): Delete.
11215 * config/vax/vaxult.mh (XDEPFILES): Delete.
11216 * config/vax/vaxult2.mh (XDEPFILES): Delete.
11217 * Makefile.in (DEPFILES): Remove XDEPFILES.
11218
11219 2002-01-17 Andrew Cagney <ac131313@redhat.com>
11220
11221 * utils.c (internal_verror): Fix comments, default is yes not no.
11222 Update queries to match. Default to quit and dump core.
11223
11224 2002-01-17 Andrew Cagney <ac131313@redhat.com>
11225
11226 * breakpoint.c: Update assuming #if UI_OUT is always true. Update
11227 copyright.
11228 * defs.h, event-top.c, gdbcmd.h: Ditto.
11229 * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
11230 * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
11231 * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
11232 * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
11233 * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
11234 * mi/mi-main.c:Ditto.
11235
11236 * stack.c, symfile.c: Update copyright.
11237
11238 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
11239
11240 * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
11241 gdbserver/low-nbsd.c, gdbserver/low-sim.c,
11242 gdbserver/low-sparc.c, gdbserver/low-sun3.c,
11243 gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
11244
11245 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
11246
11247 * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
11248 * gdbserver/low-lynx.c (myattach): Likewise.
11249 * gdbserver/low-nbsd.c (myattach): Likewise.
11250 * gdbserver/low-sim.c (myattach): Likewise.
11251 * gdbserver/low-sparc.c (myattach): Likewise.
11252 * gdbserver/low-sun3.c (myattach): Likewise.
11253
11254 * gdbserver/low-linux.c (myattach): New function.
11255
11256 * gdbserver/server.c (attach_inferior): New function.
11257 (main): Handle "--attach".
11258
11259 2002-01-16 Andrew Cagney <ac131313@redhat.com>
11260
11261 * MAINTAINERS (language support): Daniel Jacobwitz is C++
11262 maintainer.
11263
11264 2002-01-15 Daniel Jacobowitz <drow@mvista.com>
11265
11266 * c-typeprint.c (is_type_conversion_operator): Add additional
11267 check for non-conversion operators.
11268
11269 2002-01-15 Michael Snyder <msnyder@redhat.com>
11270
11271 * linux-proc.c: Add "info proc" command, a la procfs.c.
11272 (read_mapping): New function, abstract and re-use code.
11273 (linux_find_memory_regions): Use new func read_mapping.
11274 (linux_info_proc_cmd): New function, implement "info proc".
11275 (_initialize_linux_proc): Add new command "info proc".
11276
11277 2002-01-15 Michael Snyder <msnyder@redhat.com>
11278
11279 * symfile.c (generic_load): Use bfd_map_over_sections method
11280 instead of manipulating bfd structure members directly.
11281 (add_section_size_callback): New function, bfd sections callback
11282 used by generic_load.
11283 (load_sections_callback): New function, bfd sections callback
11284 used by generic_load.
11285
11286 2002-01-15 Elena Zannoni <ezannoni@redhat.com>
11287
11288 [Based on work by Jim Blandy]
11289 * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
11290 (builtin_type_vec128): Export.
11291 * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
11292 types.
11293 (builtin_type_vec128): New builtin type for 128 bit vector
11294 registers.
11295 (build_gdbtypes): Initialize builtin_type_v16qi and
11296 builtin_type_v8hi. Create the vec128 register builtin type
11297 structure.
11298 (build_builtin_type_vec128): New function.
11299 (_initialize_gdbtypes): Register builtin_type_v16qi and
11300 builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
11301 * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
11302 AltiVec register to new builtin type.
11303
11304 2001-01-15 Daniel Jacobowitz <drow@mvista.com>
11305
11306 * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
11307 to make_cv_type.
11308
11309 2002-01-14 Andrew Cagney <ac131313@redhat.com>
11310
11311 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
11312 CLEAN_UP_REGISTER_VALUE.
11313 * regcache.c (supply_register): Update only call.
11314
11315 2002-01-14 Andrew Cagney <ac131313@redhat.com>
11316
11317 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
11318 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
11319 a29k-*-vxworks* targets as obsolete.
11320
11321 2002-01-14 Michael Snyder <msnyder@redhat.com>
11322
11323 * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
11324 until we can resolve portability issues.
11325 * gregset.h: Remove references to fpxregs.
11326 * gcore.c (gcore_command): Initialize note_sec to NULL.
11327
11328 2002-01-13 Andrew Cagney <ac131313@redhat.com>
11329
11330 * signals.c (target_signal_to_name): Rewrite. Only use
11331 signals[].name when in bounds and non-NULL.
11332
11333 2002-01-13 Andrew Cagney <ac131313@redhat.com>
11334
11335 From Petr Ledvina <ledvinap@kae.zcu.cz>:
11336 * signals.c (target_signal_to_name): Verify that SIG is within the
11337 bounds of the signals array.
11338
11339 2002-01-13 Andrew Cagney <ac131313@redhat.com>
11340
11341 * MAINTAINERS: Remove arm-coff and arm-pe from target list.
11342
11343 2002-01-13 Keith Seitz <keiths@redhat.com>
11344
11345 * stack.c (print_frame_info_base): Print the frame's pc
11346 only if when print_frame_info_listing_hook is not defined.
11347
11348 2002-01-13 Keith Seitz <keiths@redhat.com>
11349
11350 * varobj.c (varobj_set_value): Make sure that there were no
11351 errors evaluating the object before attempting to set its
11352 value.
11353 value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
11354 so this offset adjustment is no longer necessary.
11355 (create_child): Don't set the error flag if the child is
11356 a CPLUS_FAKE_CHILD.
11357 (value_of_child): If value_fetch_lazy fails, return NULL
11358 so that callers will be notified that an error occurred.
11359 (c_value_of_variable): Delay check of variable's validity
11360 until later. We actually want all structs and unions to have
11361 the value "{...}".
11362 Do not return "???" for variables which could not be evaluated.
11363 This error condition must be returned to the caller so that it
11364 can get the error condition from gdb.
11365 (cplus_name_of_child): Adjust index for vptr before figuring
11366 out the name of the child.
11367 (cplus_value_of_child): If a child's (real) parent is not valid,
11368 don't even bother trying to give a value for it. Just return
11369 an error. Change all instances in this function.
11370 (cplus_type_of_child): If our parent is one of the "fake"
11371 parents, we need to get at the type of the real parent, and
11372 derive the child's true type using this information.
11373
11374 2002-01-13 Andrew Cagney <ac131313@redhat.com>
11375
11376 From 2002-01-09 John Marshall <johnm@falch.net>:
11377 * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
11378 sources.redhat.com, and tweak some related URLs which had
11379 suffered from linkrot.
11380
11381 2002-01-13 Andrew Cagney <ac131313@redhat.com>
11382
11383 From Jeff law:
11384 * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
11385 structures passed in registers.
11386
11387 2002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
11388
11389 * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
11390 white space which prevented compilation. Reported by DSK
11391 <dsk@student.unsw.edu.au>.
11392
11393 2002-01-11 Michael Snyder <msnyder@redhat.com>
11394
11395 * symfile.c (build_section_addr_info_from_section_tab):
11396 Use bfd access method instead of manipulating bfd directly.
11397 (syms_from_objfile): Ditto.
11398 (simple_overlay_update_1): Ditto.
11399 (simple_overlay_update): Ditto.
11400 (generic_load): Ditto.
11401 (overlay_unmapped_address): FIXME comment, bfd access methods.
11402 (sections_overlap): FIXME comment, bfd access methods.
11403 (pc_in_mapped_range): FIXME comment, bfd access methods.
11404 (pc_in_unmapped_range): FIXME comment, bfd access methods.
11405 (section_is_mapped): FIXME comment, bfd access methods.
11406 (section_is_overlay): FIXME comment, bfd access methods.
11407
11408 * symfile.c (generic_load): Whitespace and long line cleanups.
11409 Remove duplicate variable, change several local variables to
11410 more appropriate data types.
11411 (print_transfer_performance): Use %lu instead of %ld for ulongs.
11412
11413 2002-01-12 Andrew Cagney <ac131313@redhat.com>
11414
11415 From Peter Schauer:
11416 * language.c (longest_local_hex_string_custom): Use phex_nz to
11417 convert NUM to a hex string.
11418
11419 2002-01-12 Elena Zannoni <ezannoni@redhat.com>
11420
11421 * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
11422 the function.
11423 Update Copyright year.
11424
11425 2002-01-12 Andrew Cagney <ac131313@redhat.com>
11426
11427 * language.c (longest_raw_hex_string): Delete unused function.
11428
11429 2002-01-11 Petr Sorfa <petrs@caldera.com>
11430
11431 * MAINTAINERS (write-after-approval): Add myself.
11432 * dwarf2read.c (read_tag_string_type): Handling of
11433 DW_AT_byte_size.
11434 (read_tag_string_type): FORTRAN fix to prevent propagation of
11435 first string size.
11436 (set_cu_language): Handling of DW_LANG_Fortran95
11437
11438 2002-01-11 Richard Earnshaw <rearnsha@arm.com>
11439
11440 * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
11441 GETPID(inferior_ptid).
11442 (store_inferior_registers): Likewise.
11443
11444 2002-01-10 Jason Merrill <jason@redhat.com>
11445
11446 * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
11447 Fix DW_OP_minus.
11448
11449 2002-01-10 Andrew Cagney <ac131313@redhat.com>
11450
11451 * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
11452 and bfd/elf32-sh-nbsd.c.
11453
11454 2002-01-10 Michael Snyder <msnyder@redhat.com>
11455
11456 * NEWS: Mention --pid and corefile/proc-id behavior change.
11457
11458 * Makefile.in: Add rules for gcore.o and linux-proc.o.
11459 * gcore.c: Include cli/cli-decode.h instead of command.h.
11460
11461 * main.c (captured_main): Add new command line option "--pid".
11462 If the second command line argument (following the symbol-file)
11463 begins with a digit, try to attach to it before trying to open
11464 it as a corefile.
11465 (print_gdb_help): Document the "--pid" argument.
11466
11467 2002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
11468
11469 * completer.c (command_completer): New function.
11470
11471 * completer.h <command_completer>: Add prototype.
11472
11473 * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
11474 completer for the "help" command.
11475
11476 2002-01-09 Jason Merrill <jason@redhat.com>
11477
11478 * c-typeprint.c (is_type_conversion_operator): Fix thinko.
11479
11480 2002-01-09 Michael Snyder <msnyder@redhat.com>
11481
11482 * i386-linux-nat.c (fill_fpxregset): Make global.
11483 (store_fpxregset): Ditto.
11484
11485 * gregset.h (gdb_fpxregset_t): Define.
11486 (supply_fpxregset): Prototype.
11487 (fill_fpxregset): Prototype.
11488
11489 * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
11490
11491 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
11492
11493 * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
11494 * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
11495 * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
11496
11497 2002-01-09 Andrew Cagney <ac131313@redhat.com>
11498
11499 * MAINTAINERS: Update target maintainer rules so that any
11500 Maintainer can approve a tested patch for a maintenance-only
11501 target.
11502
11503 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
11504
11505 * MAINTAINERS (write-after-approval): Add myself.
11506
11507 * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
11508 IN_SIGTRAMP.
11509
11510 2002-01-08 Michael Snyder <msnyder@redhat.com>
11511
11512 * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
11513 real name of the executable, rather than the /proc name.
11514
11515 2002-01-03 Michael Snyder <msnyder@redhat.com>
11516
11517 Implement a "generate-core-file" command in gdb, save target state.
11518 * gcore.c: New file. Implement new command 'generate-core-file'.
11519 Save a corefile image of the current state of the inferior.
11520 * linux-proc.c: Add linux-specific code for saving corefiles.
11521 * target.h (struct target_ops): Add new target vectors for saving
11522 corefiles; to_find_memory_regions and to_make_corefile_notes.
11523 (target_find_memory_regions): New macro.
11524 (target_make_corefile_notes): New macro.
11525 * target.c (update_current_target): Inherit new target methods.
11526 (dummy_find_memory_regions): New place-holder method.
11527 (dummy_make_corefile_notes): New place-holder method.
11528 (init_dummy_target): Initialize new dummy target vectors.
11529 * exec.c (exec_set_find_memory_regions): New function.
11530 Allow the exec_ops vector for memory regions to be taken over.
11531 (exec_make_note_section): New function, target vector method.
11532 * defs.h (exec_set_find_memory_regions): Export prototype.
11533 * procfs.c (proc_find_memory_regions): New function, corefile method.
11534 (procfs_make_note_section): New function, corefile method.
11535 (init_procfs_ops): Set new target vector pointers.
11536 (find_memory_regions_callback): New function.
11537 (procfs_do_thread_registers): New function.
11538 (procfs_corefile_thread_callback): New function.
11539 * sol-thread.c (sol_find_memory_regions): New function.
11540 (sol_make_note_section): New function.
11541 (init_sol_thread_ops): Initialize new target vectors.
11542 * inftarg.c (inftarg_set_find_memory_regions): New function.
11543 Allow to_find_memory_regions vector to be taken over.
11544 (inftarg_set_make_corefile_notes): New function.
11545 Allow to_make_corefile_notes vector to be taken over.
11546 * thread-db.c (thread_db_new_objfile): Don't activate thread-db
11547 interface layer if not target_has_execution (may be a corefile).
11548 * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
11549 * config/sparc/sun4sol2.mh: Ditto.
11550 * config/alpha/alpha-linux.mh: Ditto.
11551 * config/arm/linux.mh: Ditto.
11552 * config/i386/x86-64linux.mh: Ditto.
11553 * config/ia64/linux.mh: Ditto.
11554 * config/m68k/linux.mh: Ditto.
11555 * config/mips/linux.mh: Ditto.
11556 * config/powerpc/linux.mh: Ditto.
11557 * config/sparc/linux.mh: Ditto.
11558
11559 2002-01-07 Michael Snyder <msnyder@redhat.com>
11560
11561 * arm-linux-nat.c: Remove references to regcache.c internal data
11562 (registers[] and register_valid[]).
11563
11564 2002-01-07 Michael Snyder <msnyder@redhat.com>
11565
11566 * linux-proc.c: New file. Implement child_pid_to_exec_file,
11567 so that attaching to a pid will automatically read the process's
11568 symbol file and shlibs.
11569 * Makefile.in: Add rule for linux-proc.o.
11570 * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
11571 * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
11572 * config/arm/linux.mh: Ditto.
11573 * config/i386/linux.mh: Ditto.
11574 * config/i386/x86-64linux.mh: Ditto.
11575 * config/ia64/linux.mh: Ditto.
11576 * config/m68k/linux.mh: Ditto.
11577 * config/mips/linux.mh: Ditto.
11578 * config/powerpc/linux.mh: Ditto.
11579 * config/sparc/linux.mh: Ditto.
11580
11581 2002-01-06 Pierre Muller <muller@ics.u-strasbg.fr>
11582
11583 * win32-nat.c: Add i386-tdep.h dependency.
11584
11585 2002-01-07 Michael Snyder <msnyder@redhat.com>
11586
11587 * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
11588 instead of bfd_get_arch_size. Don't bail out just because
11589 there's no exec_bfd.
11590
11591 * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
11592 * p-valprint.c (pascal_object_print_value): Ditto.
11593 * somread.c (som_symtab_read): Ditto.
11594 * symfile.c (simple_free_overlay_region_table): Ditto.
11595 * valops.c (value_assign): Ditto.
11596
11597 * tracepoint.c (tracepoint_save_command): From Klee Dienes --
11598 use tilde_expand and strerror for opening save-tracepoints file.
11599
11600 * thread-db.c (thread_db_new_objfile): Indendation fix.
11601
11602 * infptrace.c (GDB_MAX_ALLOCA): New define.
11603 (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
11604 size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
11605 can be overridden with whatever value is appropriate to the host).
11606 * infttrace.c (child_xfer_memory): Add FIXME warning about use of
11607 alloca to allocate potentially large buffer.
11608 * rs6000-nat.c (child_xfer_memory): Ditto.
11609 * symm-nat.c (child_xfer_memory): Ditto.
11610 * x86-64-linux-nat.c (child_xfer_memory): Ditto.
11611
11612 2002-01-07 Jackie Smith Cashion <jsmith@redhat.com>
11613
11614 From Nick Clifton <nickc@redhat.com>
11615 * d10v-tdep.c: Set STACK_START to 0x200bffe.
11616
11617 2002-01-07 Michael Snyder <msnyder@redhat.com>
11618
11619 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
11620 Don't use exec_bfd if it's NULL.
11621
11622 2002-01-06 Mark Kettenis <kettenis@gnu.org>
11623
11624 * valops.c (value_arg_coerce): Fix formatting.
11625
11626 2002-01-06 Andrew Cagney <ac131313@redhat.com>
11627
11628 * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
11629 * gnu-nat.c: Ditto.
11630
11631 2002-01-06 Andrew Cagney <ac131313@redhat.com>
11632
11633 * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
11634 arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
11635 i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
11636 ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
11637 z8k-coff have not been multi-arched. Update z8k-coff build
11638 status.
11639
11640 2002-01-06 Andrew Cagney <ac131313@redhat.com>
11641
11642 * MAINTAINERS: Mark a29k target as obsolete.
11643 * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
11644 (remote-mm.o, remote-udi.o): Obsolete. Remove references in
11645 comments.
11646 * NEWS: Note that a29k targets are obsolete.
11647 * a29k-tdep.c: Mark as obsolete.
11648 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
11649 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
11650 a29k-*-vxworks* targets as obsolete.
11651 * remote-adapt.c: Obsolete.
11652 * remote-eb.c: Obsolete.
11653 * remote-mm.c: Obsolete.
11654 * remote-udi.c: Obsolete.
11655 * config/a29k/a29k-udi.mt: Obsolete.
11656 * config/a29k/a29k.mt: Obsolete.
11657 * config/a29k/tm-a29k.h: Obsolete.
11658 * config/a29k/tm-vx29k.h: Obsolete.
11659 * config/a29k/vx29k.mt: Obsolete.
11660
11661 2002-01-05 Andrew Cagney <ac131313@redhat.com>
11662
11663 * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
11664 with BFD_ENDIAN_BIG.
11665
11666 2002-01-05 Andrew Cagney <ac131313@redhat.com>
11667
11668 * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
11669 * configure, config.in: Re-generate.
11670 * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
11671 * defs.h: Do not include <endian.h>.
11672
11673 2002-01-05 Jason Thorpe <thorpej@wasabisystems.com>
11674
11675 * acconfig.h (HAVE_PT_GETXMMREGS): New.
11676 * config.in: Regenerate.
11677 * configure.in: Update copyright years.
11678 Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
11679 * configure: Regenerate.
11680 * i386bsd-nat.c: Update copyright years.
11681 (fill_gregset): Use regcache_collect.
11682 (fetch_inferior_registers): Only fetch integer registers
11683 if requested to do so. Add support for XMM registers
11684 using PT_GETXMMREGS.
11685 (store_inferior_registers): Only store integer registers
11686 if requested to do so. Add support for XMM registers
11687 using PT_SETXMMREGS.
11688 * i386nbsd-nat.c (fetch_inferior_registers): Remove.
11689 (store_inferior_registers): Remove.
11690 (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
11691 (fetch_elfcore_registers): New function.
11692 (i386nbsd_elfcore_fns): New.
11693 (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
11694 * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
11695 i386bsd-nat.o.
11696 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
11697 * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
11698 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
11699 * config/i386/tm-nbsd.h: Update copyright years.
11700 (HAVE_SSE_REGS): Define.
11701 (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
11702 (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
11703 (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
11704 (SIGCONTEXT_PC_OFFSET): Remove.
11705 (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
11706
11707 2002-01-05 Andrew Cagney <ac131313@redhat.com>
11708
11709 * configure.tgt: Remove powerpc-*-macos* target.
11710 * config/m68k/xm-mpw.h: Delete file.
11711 * config/xm-mpw.h: Delete file.
11712 * ser-mac.c: Delete file.
11713 * mpw-make.sed: Delete file.
11714 * mpw-config.in: Delete file.
11715 * mac-xdep.c: Delete file.
11716 * mac-gdb.r: Delete file.
11717 * mac-defs.h: Delete file.
11718 * mac-nat.c: Delete file.
11719 * config/powerpc/macos.mh: Delete file.
11720 * config/powerpc/macos.mt: Delete file.
11721 * config/powerpc/nm-macos.h: Delete file.
11722 * config/powerpc/tm-macos.h: Delete file.
11723 * source.c (openp, open_source_file): Remove obsolete code.
11724 * top.c (gdb_readline): Ditto.
11725 * utils.c (query): Ditto.
11726 * event-top.c (display_gdb_prompt): Ditto.
11727 * Makefile.in (ser-mac.o): Delete obsolete target.
11728 * NEWS: Update.
11729
11730 2002-01-04 Andrew Cagney <ac131313@redhat.com>
11731
11732 * defs.h (BIG_ENDIAN): Delete macro definition.
11733 * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
11734 coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
11735 findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
11736 printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
11737 remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
11738 stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
11739 config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
11740 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
11741 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
11742 config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
11743 config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
11744 config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
11745 mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
11746 * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
11747 * gdbarch.c: Re-generate.
11748
11749 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
11750
11751 * thread-db.c (thread_db_new_objfile): Do not enable thread_db
11752 for core files.
11753
11754 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
11755
11756 * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
11757
11758 2002-01-04 Andrew Cagney <ac131313@redhat.com>
11759
11760 * value.h (value_ptr): Delete typedef.
11761
11762 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
11763
11764 * i386nbsd-nat.c: Update copyright years.
11765 Include i386-tdep.h.
11766
11767 2002-01-04 Elena Zannoni <ezannoni@redhat.com>
11768
11769 * stabsread.c: Update copyright years.
11770
11771 From Debashis Mahata <debashis.mahata@wipro.com>:
11772 (read_struct_fields): Deal with Sun C compiler erroneous stab
11773 output for structs and unions.
11774 Fix PR gdb/269.
11775
11776 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
11777
11778 * p-valprint.c: Include "cp-abi.h" for baseclass_offset
11779 prototype.
11780
11781 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
11782
11783 * cp-abi.c: Fix whitespace.
11784 (baseclass_offset): New wrapper function.
11785 * cp-abi.h (baseclass_offset): Add prototype.
11786 (struct cp_abi_ops): Add baseclass_offset pointer.
11787
11788 * valops.c (vb_match): Move to...
11789 * gnu-v2-abi.c (vb_match): here.
11790 * valops.c (baseclass_offset): Move to...
11791 * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
11792
11793 * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
11794
11795 * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
11796 * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
11797 * hpacc-abi.c (init_hpacc_ops): Likewise.
11798
11799 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
11800
11801 * valops.c (find_overload_match): Accept obj as a
11802 reference parameter. Update it before returning.
11803 * value.h (find_overload_match): Update prototype.
11804 * eval.c (evaluate_subexp_standard): Pass object to
11805 find_overload_match by reference.
11806
11807 2002-01-03 Andrew Cagney <ac131313@redhat.com>
11808
11809 * valarith.c: Replace value_ptr with struct value pointer. Remove
11810 register attribute from value declarations.
11811 * valops.c: Ditto.
11812 * value.h: Ditto.
11813 * scm-lang.c (scm_lookup_name): Ditto.
11814
11815 2002-01-03 Michael Snyder <msnyder@redhat.com>
11816
11817 Abstract the functionality of iterating over mapped memory
11818 regions into a general purpose iterator function.
11819 * procfs.c (iterate_over_mappings): New function, general purpose
11820 iterator for memory sections.
11821 (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
11822 (solib_mappings_callback): New function, callback for above.
11823 (info_proc_mappings): Reimpliment using iterate_over_mappings.
11824 (info_mappings_callback): New function, callback for above.
11825
11826 * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
11827
11828 2002-01-01 Mark Kettenis <kettenis@gnu.org>
11829
11830 * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
11831 * i386-tdep.c: Include "elf-bfd.h".
11832 (process_note_abi_tag_sections): New function.
11833 (i386_gdbarch_init): Add code to recognize various OS/ABI
11834 combinations.
11835
11836 * maint.c (_initialize_maint_cmds): Add missing \ in
11837 string-literal.
11838
11839 For older changes see ChangeLog-2001
11840 \f
11841 Local Variables:
11842 mode: change-log
11843 left-margin: 8
11844 fill-column: 74
11845 version-control: never
11846 End: