2002-10-18 David Carlton <carlton@math.stanford.edu>
[binutils-gdb.git] / gdb / ChangeLog
1 2002-10-18 David Carlton <carlton@math.stanford.edu>
2
3 * symtab.h: Delete 'struct source' and 'struct sourcevector'.
4
5 2002-10-18 Adam Fedor <fedor@gnu.org>
6
7 * stabsread.c (find_name_end): New function.
8 (define_symbol): Use it.
9
10 2002-10-18 Daniel Jacobowitz <drow@mvista.com>
11
12 * config/alpha/nm-fbsd.h (CANNOT_STEP_BREAKPOINT): Define to 1.
13 * config/alpha/nm-linux.h (CANNOT_STEP_BREAKPOINT): Define to 1.
14 * config/alpha/nm-nbsd.h (CANNOT_STEP_BREAKPOINT): Define to 1.
15 * config/alpha/nm-osf.h (CANNOT_STEP_BREAKPOINT): Define to 1.
16
17 2002-10-17 David Carlton <carlton@math.stanford.edu>
18
19 * symfile.h: Add opaque declaration for struct obstack.
20 Declare obsavestring to take a const char *.
21 * symfile.c (obsavestring): Make first argument a const char *.
22
23 2002-10-16 Adam Fedor <fedor@gnu.org>
24
25 * breakpoint.c (parse_breakpoint_sals): Ignore ObjC method
26 names when matching breakpoints in current file.
27
28 2002-10-16 Kevin Buettner <kevinb@redhat.com>
29
30 * dwarf2read.c (dwarf2_invalid_pointer_size): New complaint.
31 (read_tag_pointer_type): Add address class support.
32 * gdbarch.sh (ADDRESS_CLASS_TYPE_FLAGS)
33 (ADDRESS_CLASS_TYPE_FLAGS_TO_NAME, ADDRESS_CLASS_NAME_TO_TYPE_FLAGS):
34 New methods.
35 * gdbarch.h, gdbarch.c: Regenerate.
36 * gdbtypes.c (address_space_name_to_int, address_space_int_to_name)
37 (make_type_with_address_space, recursive_type_dump): Add address
38 class support.
39 * gdbtypes.h (TYPE_FLAG_ADDRESS_CLASS_1, TYPE_FLAG_ADDRESS_CLASS_2)
40 (TYPE_FLAG_ADDRESS_CLASS_ALL, TYPE_ADDRESS_CLASS_1)
41 (TYPE_ADDRESS_CLASS_2, TYPE_ADDRESS_CLASS_ALL): New defines
42
43 2002-10-16 Klee Dienes <kdienes@apple.com>
44
45 * stabsread.c (read_tilde_fields): Use name[sizeof(vptr_name)-2]
46 to get the last character of a char[] buffer, not
47 name[sizeof(vptr_name)-1].
48
49 2002-10-14 Adam Fedor <fedor@gnu.org>
50
51 * symtab.h: New objc_specific struct.
52 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Handle ObjC.
53 (SYMBOL_DEMANGLED_NAME): Likewise.
54
55 2002-10-14 Adam Fedor <fedor@gnu.org>
56
57 * symfile.c (init_filename_language_table): Add ObjC file extension.
58
59 2002-10-14 Adam Fedor <fedor@gnu.org>
60
61 * utils.c (puts_filtered_tabular): New function.
62 (fprintf_symbol_filtered): Get ObjC demangled name.
63 * defs.h (puts_filtered_tabular): Declared.
64
65 2002-10-14 Kevin Buettner <kevinb@redhat.com>
66
67 * c-lang.h (c_type_print_varspec_prefix): Delete.
68 * c-typeprint.c (c_type_print_varspec_prefix): Make static. Add
69 ``need_post_space'' parameter. Adjust all callers.
70
71 2002-10-14 Daniel Jacobowitz <drow@mvista.com>
72
73 * config/mips/nm-irix4.h (HAVE_NONSTEPPABLE_WATCHPOINT): Define to 1.
74 * config/mips/nm-irix5.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
75 * config/mips/tm-embed.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
76 * config/pa/nm-hppah.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
77
78 2002-10-13 Adam Fedor <fedor@gnu.org>
79
80 * source.c (print_source_lines): Update comments.
81
82 2002-10-13 Adam Fedor <fedor@gnu.org>
83
84 * valops.c (value_of_local): New function.
85 (value_of_this): Use it.
86 * value.h (value_of_local): Declared.
87
88 2002-10-13 Adam Fedor <fedor@gnu.org>
89
90 * parse.c: (length_of_subexp, prefixify_subexp): Handle
91 OP_MSGCALL, OP_SELECTOR, OP_NSSTRING, and OP_SELF.
92
93 2002-10-12 Adam Fedor <fedor@gnu.org>
94
95 * language.c (binop_result_type): Add language_objc to case.
96 (integral_type): Likewise.
97 (character_type): Likewise.
98 (string_type): Likewise.
99 (boolean_type): Likewise.
100 (structured_type): Likewise.
101 (binop_type_check): Likewise.
102
103 2002-10-11 Adam Fedor <fedor@gnu.org>
104
105 * printcmd.c (address_info): Print 'self' for ObjC.
106
107 2002-10-11 Adam Fedor <fedor@gnu.org>
108
109 * expression.h: New ops OP_NSSTRING, OP_SELECTOR, OP_MSGCALL, and
110 OP_SELF.
111
112 2002-10-11 Adam Fedor <fedor@gnu.org>
113
114 * language.h (CAST_IS_CONVERSION): Add language_objc.
115
116 2002-10-11 Adam Fedor <fedor@gnu.org>
117
118 * defs.h (enum language): Add language_objc.
119
120 2002-10-11 Klee Dienes <kdienes@apple.com>
121
122 * findvar.c (read_memory_typed_address): New function.
123 * gdbcore.h (read_memory_typed_address): Add prototype.
124 * blockframe.c (sigtramp_saved_pc): Use read_memory_typed_address
125 to read a value destined for a CORE_ADDR, not read_memory_integer.
126 * f-valprint.c (f77_get_dynamic_upperbound): Ditto.
127 (f77_get_dynamic_lowerbound): Ditto.
128
129 2002-10-11 Martin M. Hunt <hunt@redhat.com>
130
131 * utils.c (string_to_core_addr): After turning string into
132 a number, convert to a CORE_ADDR using INTEGER_TO_ADDRESS
133 which will do necessary sign-extension, etc.
134
135 2002-10-11 Daniel Jacobowitz <drow@mvista.com>
136
137 * c-exp.y (THIS): Delete token and grammar rule.
138 (yylex): Don't return THIS.
139 * cp-valprint.c (vtbl_ptr_name_old): Delete.
140 (cp_is_vtbl_ptr_type): Don't check vtbl_ptr_name_old.
141 * demangle.c (cplus_markers): Update comment. Put '$'
142 first. Remove CPLUS_MARKER.
143 (_initialize_demangler): Don't call set_cplus_marker_for_demangling.
144 * jv-exp.y (THIS): Delete token and grammar rule.
145 (yylex): Don't return THIS.
146 * mips-tdep.c (mips_dump_tdep): Don't dump CPLUS_MARKER.
147 * objc-exp.y (THIS): Delete token and grammar rule.
148 (yylex): Don't return THIS.
149 * p-exp.y (yylex): Remove reference to CPLUS_MARKER.
150 * stabsread.c (vptr_name, vb_name): Replace CPLUS_MARKER with '$'.
151 (read_member_functions): Likewise for opname.
152 (read_tilde_fields): Use is_cplus_marker.
153
154 * defs.h (CPLUS_MARKER): Don't define.
155 * config/tm-sysv4.h (CPLUS_MARKER): Likewise.
156 * config/i386/xm-i386sco.h (CPLUS_MARKER): Likewise.
157 * config/mips/tm-irix3.h (CPLUS_MARKER): Likewise.
158 * config/mips/tm-irix6.h (CPLUS_MARKER): Likewise.
159 * config/rs6000/tm-rs6000.h (CPLUS_MARKER): Likewise.
160
161 * config/i386/tm-i386v4.h: Delete file.
162 * config/djgpp/fnchange.lst: Delete tm-i386v4.h.
163 * config/i386/tm-i386sol2.h: Include "i386/tm-i386.h" instead.
164 * config/i386/tm-i386v42mp.h: Include "i386/tm-i386.h" instead.
165 * config/i386/tm-ptx.h: Include "i386/tm-i386.h" instead.
166 * config/i386/i386gnu.mt (TM_FILE): Use tm-i386.h.
167 * config/i386/i386sco5.mt (TM_FILE): Likewise.
168 * config/i386/i386v4.mt (TM_FILE): Likewise.
169 * config/i386/ncr3000.mt (TM_FILE): Likewise.
170
171 2002-10-10 Marko Mlinar <markom@opencores.org>
172
173 * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C,
174 accidentially not commited 2002-10-09
175 * gdbarch.h, gdbarch.c: Re-generate.
176
177 2002-10-09 Marko Mlinar <markom@opencores.org>
178
179 * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C.
180 * gdbarch.sh (HAVE_NONSTEPPABLE_WATCHPOINT): Add.
181 * gdbarch.h, gdbarch.c: Re-generate.
182
183 2002-10-08 Petr Sorfa <petrs@caldera.com>
184
185 Revised and re-submitted by John Wolfe <jlw@caldera.com>
186
187 Move the Dwarf 2 abbrev table to a per-compilation-unit structure,
188 so we can work on more than one compilation unit at a time. This
189 helps prepare GDB to handle inter-CU die references.
190 * dwarf2read.c (ABBREV_HASH_SIZE): moved definition forward in
191 the code to be defined before struct comp_unit_head.
192 (comp_unit_head): Added new members - offset, cu_head,
193 begin_die, next and dwarf2_abbrevs.
194 (dwarf2_abbrevs): Removed single static var; now member of
195 struct comp_unit_head.
196 dwarf2_build_psymtabs_hard): Complete new struct comp_unit_head
197 members.
198 (psymtab_to_symtab_1): Changed to work with the new
199 struct comp_unit_head.
200 (dwarf2_read_abbrevs): Now accepts a cu_header parameter and
201 constructs the dwarf2_abbrevs[] inside the cu_header.
202 (dwarf2_empty_abbrev_table): Now expects a ptr to a
203 dwarf2_abbrev table to clean up.
204 (dwarf2_lookup_abbrev): Now accepts a cu_header parameter and
205 handling of dwarf2_abbrevs inside the cu_header.
206 (read_partial_die): Now supports the call to the new
207 dwarf2_lookup_abbrev.
208 (read_full_die): Now supports the call to the new
209 dwarf2_lookup_abbrev.
210
211 2002-10-06 Christopher Faylor <cgf@redhat.com>
212
213 * Makefile.in (install-gdbtk): Add missing continuation backslash to
214 insure that shell variables, such as "transformed_name" are propagated
215 to later shell statements in rule.
216
217 2002-10-06 Mark Kettenis <kettenis@gnu.org>
218
219 * config/i386/nm-i386sco.h: Add protection against
220 multiple-inclusion. Include "i386/nm-i386v.h".
221 (REGISTER_U_ADDR): Remove define.
222 (i386_register_u_addr): Remove prototype.
223
224 2002-10-04 Michael Snyder <msnyder@redhat.com>
225
226 * m32r-stub.c (handle_exception): Make sure exception is "trap"
227 before treating it as a single-step event.
228
229 2002-10-03 Adam Fedor <fedor@gnu.org>
230
231 * objc-lang.c: ARI fixes. Change string.h to gdb_string.h.
232 (objc_demangle): Remove assignment in if statements, Replace
233 free with xfree.
234 (add_msglist): Likewise.
235 (end_msglist): Likewise.
236 (complare_selectors): Likewise.
237 (selectors_info): Likewise.
238 (compare_classes): Likewise.
239 (classes_info): Likewise.
240 (print_object_command): Likewise.
241 (find_objc_msgcall_submethod): Replace PTR with void *.
242 * objc-lang.h: Remove check for __STDC__.
243
244 2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
245
246 * ui-out.h (ui_out_field_fmt_int): New prototype.
247 * ui-out.c (ui_out_field_fmt_int): New function allowing specification
248 of field width and alignment.
249 * stack.c (print_frame_info_base): When printing frame level, use
250 ui_out_field_fmt_int with a width of 2 and left alignment. Fix for
251 PR gdb/192
252
253 2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
254
255 * MAINTAINERS: Add self to Write After Approval list.
256
257 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
258
259 * infcmd.c (interrupt_target_command_wrapper): Delete.
260 (interrupt_target_command): Make non static.
261 (nofp_registers_info): Make static.
262 * stack.c (return_command_wrapper): Delete.
263 (return_command): Make non static.
264
265 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
266
267 * event-top.c (gdb_setup_readline): New function. Code moved from
268 _initialize_event_loop().
269 (_initialize_event_loop): Call gdb_setup_readline().
270
271 2002-10-02 Andrew Cagney <ac131313@redhat.com>
272
273 * infrun.c (resume): Convert #ifdef CANNOT_STEP_BREAKPOINT into C.
274 * gdbarch.sh (CANNOT_STEP_BREAKPOINT): Add.
275 * gdbarch.h, gdbarch.c: Re-generate.
276
277 2002-10-02 Daniel Jacobowitz <drow@mvista.com>
278
279 Fix PR gdb/778
280 * gdbtypes.c (fill_in_vptr_fieldno): Call check_typedef
281 before recursing.
282 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Check return value
283 of fill_in_vptr_fieldno.
284
285 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
286
287 * inferior.h (registers_info, stepi_command, nexti_command,
288 continue_command, interrupt_target_command): Export from infcmd.c.
289 * frame.h (args_info, selected_frame_level_changed_hook,
290 return_command): Export from stack.c.
291 * v850ice.c (stepi_command, nexti_command, continue_command): use
292 prototypes from inferior.h.
293 * tracepoint.c (registers_info, args_info, locals_info): Use
294 prototypes from frame.h and inferior.h.
295 * Makefile.in (mi-main.o): Add dependency on frame.h.
296
297 2002-10-02 Andrew Cagney <ac131313@redhat.com>
298
299 * rs6000-tdep.c (rs6000_store_struct_return): Store struct_return
300 value in register 3 adjusted by ppc_gp0_regnum.
301
302 * rs6000-tdep.c (skip_prologue): Bias alloca_reg by ppc_gp0_regnum.
303
304 2002-10-02 Marko Mlinar <markom@opencores.org>
305
306 * MAINTAINERS: Add myself to the Write After Approval list.
307
308 2002-10-01 Alexandre Oliva <aoliva@redhat.com>
309
310 * mips-tdep.c (mips_find_abi_section): .mdebug.abi64 is the name
311 of the section for the N64 ABI, fixed.
312
313 * config/mips/tm-irix6.h: Include solib.h.
314
315 2002-10-01 Elena Zannoni <ezannoni@redhat.com>
316
317 * dwarf2read.c (dwarf_stack_op_name): Recognize more dwarf3 and
318 GNU operators.
319
320 2002-10-01 Andrew Cagney <ac131313@redhat.com>
321
322 * NEWS: Mention that MI syntax, selected by "mi" changed to "mi2"
323 and that "mi0" syntax has been removed.
324
325 2002-09-30 David Carlton <carlton@math.stanford.edu>
326
327 * Makefile.in (ppc-sysv-tdep.o): Depend on gdb_string_h.
328 * ppc-sysv-tdep.c: #include "gdb_string.h".
329 * remote-sds.c (getmessage): Add semicolon after 'retry' label to
330 pacify GCC.
331
332 2002-10-01 Andrew Cagney <ac131313@redhat.com>
333
334 * rs6000-tdep.c (rs6000_gdbarch_init): For powerpc:7400, fix
335 "vrsave"'s register number.
336
337 2002-09-30 Andrew Cagney <ac131313@redhat.com>
338
339 * mips-tdep.c (mips_frame_saved_pc): When a generic dummy frame,
340 use frame_unwind_signed_register to obtain the PC.
341 (mips_frame_chain): Handle a generic dummy frame.
342 (mips_init_extra_frame_info): When a generic dummy frame, don't
343 re-compute the frame base.
344 (mips_pop_frame): Handle generic dummy frames.
345 (mips_gdbarch_init): When generic dummy frames, set
346 use_generic_dummy_frames, push_dummy_frame to
347 generic_push_dummy_frame, pc_in_call_dummy to
348 generic_pc_in_call_dummy, and save_dummy_frame_top_of_stack to
349 generic_save_dummy_frame_tos.
350
351 2002-09-30 Andrew Cagney <ac131313@redhat.com>
352
353 * blockframe.c (generic_find_dummy_frame): Rewrite. Only test
354 against TOP when TOP was explictly set.
355 (generic_push_dummy_frame): Set TOP to zero.
356
357 2002-09-30 Elena Zannoni <ezannoni@redhat.com>
358
359 * event-loop.c (start_event_loop): Rename variable 'result' to
360 'gdb_result', to avoid conflicts with upcoming intepreters changes.
361
362 2002-09-30 Keith Seitz <keiths@redhat.com>
363
364 * gdb-events.sh (selected_thread_changed): New event.
365 * gdb-events.c: Regenerated.
366 * gdb-events.h: Regenerated.
367
368 2002-09-30 Hans-Peter Nilsson <hp@bitrange.com>
369
370 * MAINTAINERS: Add self to Write After Approval list.
371
372 2002-09-30 Fernando Nasser <fnasser@redhat.com>
373
374 * disasm.c: New file.
375 * disasm.h: New file.
376 * mi/mi-cmd-disas.c (gdb_dis_asm_read_memory): Moved to disasm.c.
377 (compare_lines): Ditto.
378 (dump_insns): Ditto.
379 (do_mixed_source_and_assembly): Moved to disasm.c. Added uiout
380 argument.
381 (do_assembly_only): Ditto.
382 (do_disassembly): Renamed to gdb_disassembly and moved to
383 disasm.c. Sdded uiout argument.
384 * Makefile.in: Add new files. Reorder SFILES list. Update
385 dependencies. Include libgdb.a later in the insight executable.
386
387 2002-09-29 Andrew Cagney <ac131313@redhat.com>
388
389 * config/djgpp/fnchange.lst: Rename bfd/elf64-alpha.c and
390 bfd/elf64-alpha-fbsd.c.
391
392 2002-09-29 Andrew Cagney <ac131313@redhat.com>
393
394 * config/djgpp/fnchange.lst: Rename i386gnu-nat.c and
395 i386gnu-tdep.c.
396
397 2002-09-29 Andrew Cagney <ac131313@redhat.com>
398
399 * gnu-nat.h (debug): Use __FILE__ and __LINE__ instead of
400 __FUNCTION__.
401 * gnu-nat.c (do_mach_notify_no_senders): Replace __FUNCTION__ with
402 function name.
403 (do_mach_notify_port_deleted, do_mach_notify_msg_accepted): Ditto.
404 (do_mach_notify_port_destroyed, do_mach_notify_send_once): Ditto.
405 (S_proc_setmsgport_reply, S_proc_getmsgport_reply): Ditto.
406 (S_msg_sig_post_reply): Ditto.
407
408 2002-09-28 Corinna Vinschen <vinschen@redhat.com>
409
410 * sh-tdep.c (sh_use_struct_convention): Use definition according
411 to ABI.
412 (sh_push_arguments): Store in register with correct endianess.
413 (sh_default_store_return_value): Ditto.
414 (sh_gdbarch_init): Set sizeof long double to 8.
415
416 2002-09-27 Mark Kettenis <kettenis@gnu.org>
417
418 * defs.h: Move inclusion of "ansidecl.h" before "gdb_locale.h".
419 Fix some whitespace problems.
420
421 2002-09-27 David Carlton <carlton@math.stanford.edu>
422
423 * Makefile.in (cris-tdep.o): Depend on gdb_string_h.
424 (mcore-tdep.o): Ditto.
425 (ns32k-tdep.o): Ditto.
426 (ns32knbsd-tdep.o): Ditto.
427 (sh3-rom.o): Ditto.
428 (vax-tdep.o): Ditto.
429 * cris-tdep.c: #include "gdb_string.h"
430 * mcore-tdep.c: Ditto.
431 * ns32k-tdep.c: Ditto.
432 * ns32knbsd-tdep.c: Ditto.
433 * sh3-rom.c: Ditto.
434 * vax-tdep.c: Ditto.
435
436 2002-09-27 David Carlton <carlton@math.stanford.edu>
437
438 * config/djgpp/fnchange.lst: Add entries for
439 gdb/testsuite/gdb.c++/m-static files.
440
441 2002-09-27 Jim Wilson <wilson@redhat.com>
442
443 * MAINTAINERS: Add myself to the Write After Approval list.
444
445 2002-09-26 Martin M. Hunt <hunt@redhat.com>
446
447 * mips-tdep.c (find_proc_desc): Initialize startaddr.
448
449
450 2002-09-26 Andrew Cagney <ac131313@redhat.com>
451
452 * rs6000-tdep.c (rs6000_frame_chain): Don't chain past the dummy
453 frame.
454
455 2002-09-26 Andrew Cagney <ac131313@redhat.com>
456
457 * rs6000-tdep.c (rs6000_extract_struct_value_address): Return 0.
458 (rs6000_struct_return_address): Delete variable.
459 (rs6000_store_struct_return): Update.
460 (rs6000_gdbarch_init): Set extract_struct_value_address instead of
461 deprecated_extract_struct_value_address.
462 (rs6000_frame_align): New function.
463 (rs6000_gdbarch_init): Set frame_align.
464
465 2002-09-26 Andrew Cagney <ac131313@redhat.com>
466
467 From Grace Sainsbury <graces@redhat.com>:
468 * Makefile.in (gdbtk-main.o): New target.
469 (gdb.o): New target.
470 (main_h): Define.
471 (main.o): Update dependencies.
472 (gdb$(EXEEXT)): Add gdb.o.
473 (SUBDIR_GDBTK_SRCS): Add gdbtk-main.c.
474 (SUBDIR_GDBTK_ALL, SUBDIR_GDBTK_UNINSTALL): Set.
475 (SUBDIR_GDBTK_CLEAN): Set.
476 (install-gdbtk): Install the insight binary.
477 (uninstall-gdbtk): New target.
478 (all-gdbtk, clean-gdbtk): New rule.
479 * top.c (use_windows): Default to zero.
480 * main.c: Include "main.h".
481 (main): Delete.
482 (struct captured_main_args): Delete.
483 (gdb_main): New function.
484 * main.h: New file.
485 * gdb.c: New File.
486
487 2002-09-25 Andrew Cagney <cagney@redhat.com>
488
489 * frame.c: Include "gdb_string.h" and "builtin-regs.h".
490 (frame_map_regnum_to_name): New function.
491 (frame_map_name_to_regnum): New function.
492 * frame.h (frame_map_name_to_regnum): Declare.
493 (frame_map_regnum_to_name): Declare.
494 * builtin-regs.c (builtin_reg_map_regnum_to_name): New function.
495 * builtin-regs.h (builtin_reg_map_regnum_to_name): Declare.
496 * parse.c: Do not include "builtin-regs.h".
497 (target_map_name_to_register): Delete function.
498 (write_dollar_variable): Use frame_map_name_to_regnum.
499 * parser-defs.h (target_map_name_to_register): Delete declaration.
500 * expprint.c: Include "frame.h".
501 (print_subexp): Use frame_map_regnum_to_name.
502 * eval.c (evaluate_subexp_standard): Use frame_map_regnum_to_name.
503 * infcmd.c (registers_info): Use frame_map_name_to_regnum.
504
505 2002-09-25 Andrew Cagney <ac131313@redhat.com>
506
507 * rs6000-tdep.c (rs6000_frame_saved_pc): If the link register
508 wasn't saved, and the next innermost frame is a dummy, return the
509 dummy frame's link register.
510
511 2002-09-24 Jim Blandy <jimb@redhat.com>
512
513 Fix from Paul Breed:
514 * main.c (captured_main): Add a `break' after the case for 'b'.
515
516 2002-09-24 Keith Seitz <keiths@redhat.com>
517
518 * varobj.c (c_type_of_child): Use get_target_type instead
519 of TYPE_TARGET_TYPE.
520
521 2002-09-22 Fernando Nasser <fnasser@redhat.com>
522
523 * source.c (get_current_or_default_source_symtab_and_line): Remove
524 function.
525 (set_default_source_symtab_and_line): New function. Attempts to
526 determine a source file to list lines from if one is not currently
527 defined.
528 (get_current_source_symtab_and_line): Initialize sal.pc and
529 sal.end fields.
530 (set_current_source_symtab_and_line): Mark argument as const.
531 * source.h: Update declarations and comments.
532 * linespec.c (decode_line_1): Replace call to removed routine above.
533 * stack.c (print_frame_info_base): Ditto.
534 * cli/cli-cmds.c (edit_command): Ditto.
535 (list_command): Ditto.
536
537 2002-09-22 Fernando Nasser <fnasser@redhat.com>
538
539 * source.c (get_current_or_default_source_symtab_and_line): Initialize
540 sal.pc and sal.end fields.
541 (get_current_or_default_source_symtab_and_line): Ditto.
542 * breakpoint.c (parse_breakpoint_sals): Use correct accessor function
543 so we do not cause a new source symtab to be searched for (reverting an
544 unintentional change from the 2002-09-20 patch).
545 * scm-lang.c (scm_unpac): Ditto.
546
547 2002-09-21 Andrew Cagney <cagney@redhat.com>
548
549 * complaints.c (symfile_explanations): Remove new-line from
550 ``isolated_message''.
551 (vcomplaint): When ISOLATED_MESSAGE, force a line break.
552 (clear_complaints): When a SUBSEQUENT_MESSAGE, force a line break.
553
554 2002-09-20 Nick Clifton <nickc@redhat.com>
555
556 * NEWS: Announce that V850EA ISA is no longer supported.
557 * v850-tdep.c: Remove reference to bfd_mach_v850ea.
558
559 2002-09-20 David Carlton <carlton@math.stanford.edu>
560
561 * Makefile.in (c-lang.o): Correct dependencies.
562 (utils.o): Gather dependencies.
563 (charset.o): Move.
564 * c-lang.c: #include "gdb_string.h"
565
566 2002-09-20 Fernando Nasser <fnasser@redhat.com>
567
568 From 2002-07-02 George Helffrich <george@gly.bris.ac.uk>
569 * cli/cli-cmds.c (list_command): New function. Implements the new
570 cli edit command.
571 (_init_cli_cmds): Add new command definition.
572 * gdb.1: Document edit command.
573 * doc/gdb.texinfo: Document edit command.
574
575 2002-09-20 Fernando Nasser <fnasser@redhat.com>
576
577 * source.c: Make global variables current_source_symtab and
578 current_source_line static.
579 (list_command): Moved to cli/cli-cmds.c.
580 (ambiguous_line_spec): Moved to cli/cli-cmds.c.
581 (get_first_line_listed): New accessor function.
582 (get_lines_to_list): New accessor function.
583 (get_current_source_symtab_and_line): New function. Retrieves the
584 position in the source code that we consider current.
585 (get_current_or_default_source_symtab_and_line): New function.
586 Like the above but attempts to determine a default position if one
587 is not currently defined.
588 (set_current_source_symtab_and_line): New function. Sets the source
589 code position considered current and returns the previously set one.
590 (clear_current_source_symtab_and_line): Reset stored information about
591 a current source line.
592 (_initialize_source): Remove registration for the "list" command and
593 its alias.
594 * source.h: Add declarations for the new functions above.
595 * symtab.h: Remove declarations for the global variables mentioned
596 above.
597 * breakpoint.c (parse_breakpoint_sals): Use accessor functions to
598 obtain current source line.
599 * linespec.c (decode_line_1): Ditto.
600 * macroscope.c (default_macro_scope): Ditto.
601 * scm-lang.c (scm_unpac): Ditto.
602 * stack.c (print_frame_info_base): Ditto.
603 * symfile.c (clear_symtab_users): Ditto.
604 * symtab.c (decode_line_spec): Ditto.
605 * cli/cli-cmds.c (list_command): Moved here from source.c.
606 (ambiguous_line_spec): Moved here from source.c.
607 (_init_cli_cmds): Add definition for "list" and its alias.
608 * Makefile.in: Update dependencies.
609
610 2002-09-20 Corinna Vinschen <vinschen@redhat.com>
611
612 * h8300-tdep.c (h8300_examine_prologue): Match saved regs location
613 with what gcc thinks is correct.
614
615 2002-09-20 Corinna Vinschen <vinschen@redhat.com>
616
617 * h8300-tdep.c (h8300_examine_prologue): Fix loop for saved regs in
618 multiple register push instruction.
619
620 2002-09-19 Jim Blandy <jimb@redhat.com>
621
622 Add support for distinct host and target character sets.
623 * charset.c, charset.h: New files.
624 * c-exp.y: #include "charset.h".
625 (yylex): Convert character and string literals to the target
626 character set, before returning them as the semantic value of the
627 token.
628 * c-lang.c: #include "charset.h".
629 (c_emit_char): Use charset-specific methods to recognize
630 characters with backslash escape forms, to decide which characters
631 to print literally and which to print using numeric escape
632 sequences, and to convert target characters to host characters
633 before printing.
634 * utils.c: #include "charset.h".
635 (no_control_char_error): New function.
636 (parse_escape): Use charset-specific methods to recognize
637 backslash escapes, parse `control character' notation, and convert
638 characters from the host character set to the target character set.
639 * configure.in: Set the default host character set.
640 Check where to find iconv, and what its argument types might be.
641 * acinclude.m4 (AM_ICONV): New macro, borrowed from GCC.
642 * Makefile.in (SFILES): List charset.c.
643 (COMMON_OBS): List charset.o.
644 (charset.o): New rule.
645 (charset_h): New header dependency variable.
646 (c-lang.o, utils.o, c-exp.tab.o): Note dependency on $(charset_h).
647 (LIBICONV): New variable, set by configure.
648 (CLIBS): Include $(LIBICONV) here.
649 * aclocal.m4, config.in, configure: Regenerated.
650
651 2002-09-19 Joel Brobecker <brobecker@gnat.com>
652
653 * ada-exp.y: Add missing semicolons to end rules. Fixes a
654 bison 1.35 warning.
655
656 2002-09-19 Richard Earnshaw <rearnsha@arm.com>
657
658 * gdb_mbuild.sh: New file.
659
660 2002-09-19 Andrew Cagney <ac131313@redhat.com>
661
662 * objc-exp.y, objc-lang.h, objc-lang.c: Fix copyright notice.
663
664 2002-09-18 Andrew Cagney <ac131313@redhat.com>
665
666 * breakpoint.c, c-exp.y, defs.h, elfread.c, expression.h,
667 jv-exp.y, language.c, language.h, p-exp.y, parse.c, parser-defs.h,
668 printcmd.c, source.c, stabsread.c, symfile.c, symtab.h, utils.c,
669 valops.c, value.h: Revert previous change.
670
671 2002-09-18 Michael Snyder <msnyder@redhat.com>
672
673 Preliminary support for Objective-C:
674 * defs.h (language_objc): New enum value.
675 (puts_filtered_tabular): Declaration only, exported from utils.c.
676 (skip_quoted): Delete, declared in completer.h.
677 * c-exp.y: Include completer.h.
678 * p-exp.y: Ditto.
679 * jv-exp.y: Ditto.
680 * expression.h (OP_MSGCALL, OP_SELECTOR, OP_SELF, OP_NSSTRING):
681 New operator enum values.
682 * language.h (CAST_IS_CONVERSION): Test for language_objc.
683 * language.c (binop_result_type): Handle language_objc case.
684 (integral_type, character_type, string_type, boolean_type,
685 structured_type, binop_type_check): Ditto.
686 * symtab.h (SYMBOL_OBJC_DEMANGLED_NAME): Define.
687 (struct objc_specific): Add to general_symbol_info.
688 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Add objc initialization.
689 (SYMBOL_DEMANGLED_NAME): Handle objc case.
690 * parser-defs.h (struct objc_class_str): New struct type.
691 (start_msglist, end_msglist, add_msglist): Declaration only,
692 exported from objc-lang.c.
693 * value.h (value_of_local, value_nsstring,
694 call_function_by_hand_expecting_type): Exported from valops.c.
695 * valops.c (find_function_addr): Export.
696 (call_function_by_hand_expecting_type): New function.
697 (value_of_local): New function.
698 * symfile.c (init_filename_language_table): Add ".m" extension
699 for Objective-C.
700 * utils.c (puts_filtered_tabular): New function.
701 (fprintf_symbol_filtered): Add objc demangling support (disabled).
702 (set/show demangle): Extend help-string to refer to ObjC.
703 * elfread.c (elf_symtab_read): Skip Objective-C special symbols.
704 * stabsread.c (symbol_reference_defined): Objective-C symbols
705 may contain colons: make allowances when scanning stabs strings
706 for colons.
707 (objc_find_colon): New function.
708 * printcmd.c (address_info): If language == objc then print
709 "self" instead of "this".
710 * parse.c (length_of_subexp): Handle new operators OP_MSGCALL,
711 OP_NSSTRING, and OP_SELF.
712 (prefixify_subexp): Ditto.
713 * source.c (print_source_lines): Mention objc in comment.
714 * breakpoint.c (parse_breakpoint_sals): Recognize Objective-C
715 method names.
716
717 2002-09-18 Andrew Cagney <ac131313@redhat.com>
718
719 * complaints.h: Update copyright.
720 (struct complaints): Declare.
721 (struct complaint): Make `message' constant.
722 (internal_complaint): Declare.
723 (complaint): Declare.
724 (complaint_root): Delete declaration.
725 (symfile_complaints): Delete declaration.
726 (struct complaints): Add opaque declaration.
727 (clear_complaints): Add a complaints parameter.
728 * complaints.c: Update copyright.
729 (enum complaint_series): Define.
730 (complaint_root): Delete.
731 (struct complaints): Define.
732 (complaint_sentinel, symfile_complaint_book): New variables.
733 (symfile_explanations, symfile_complaints): New variables.
734 New variables.
735 (get_complaints): New function.
736 (vcomplaint): New function.
737 (complaint): New function.
738 (internal_complaint): New function.
739 (complain): Call vcomplain with symfile_complaint.
740 (clear_complaints): Rewrite.
741 (_initialize_complaints): Use add_setshow_command.
742 * Makefile.in (complaints.o): Update dependencies.
743 * symfile.c (syms_from_objfile): Add symfile_complaints parameter
744 to call to clear_complaints.
745 (new_symfile_objfile, reread_symbols): Ditto.
746 (oldsyms_complaint): Delete.
747 (empty_symtab_complaint, unknown_option_complaint): Delete.
748 (free_named_symtabs): Use complaint instead of complain.
749
750 2002-09-18 Michael Snyder <msnyder@redhat.com>
751
752 Contributed by Apple Computer, Inc. Merged with current sources
753 by Adam Fedor <fedor@doc.com> [cagney].
754
755 * objc-lang.c: First clean-up round: comments, indentation.
756 * objc-lang.h: Ditto.
757 * objc-lang.y: Ditto.
758
759 2002-09-18 Andrew Cagney <ac131313@redhat.com>
760
761 * maint.c (maintenance_internal_error): Print the parameter as the
762 error message.
763 (maintenance_internal_warning): New function.
764 (_initialize_maint_cmds): Add command `maint internal-warning'.
765
766 * defs.h (internal_warning, internal_vwarning): Declare.
767 * utils.c (struct internal_problem): Define.
768 (internal_vproblem): New function.
769 (internal_warning): New function.
770 (internal_vwarning): New function.
771 (internal_warning_problem, internal_error_problem): New variables.
772 (internal_verror): Just call internal_vproblem.
773
774 2002-09-18 Michael Snyder <msnyder@redhat.com>
775
776 * objc-lang.c: New file, support for Objective-C.
777 Preliminary check-in, not yet integrated into gdb.
778 * objc-lang.h: New file.
779 * objc-exp.y: New file.
780
781 2002-09-18 Andrew Cagney <ac131313@redhat.com>
782
783 * infrun.c (signal_stop_update): Convert definition to ISO C.
784 (signal_print_update): Ditto.
785 (signal_pass_update): Ditto.
786 * inflow.c (terminal_save_ours): Ditto.
787
788 * h8300-tdep.c (h8300_gdbarch_init): Use C instead of C++
789 comments.
790
791 * config/djgpp/fnchange.lst: Handle name clashes between
792 bfd/coff-tic30.c, bfd/coff-tic4x.c, bfd/coff-tic54x.c and
793 bfd/coff-tic80.c.
794
795 * i386-linux-tdep.h: Fix tipo.
796
797 2002-09-18 Adam Fedor <fedor@gnu.org>
798
799 * MAINTAINERS: Add myself to the Write After Approval list.
800
801 2002-09-18 Jim Blandy <jimb@redhat.com>
802
803 * dbxread.c, mdebugread.c: Revert my change of 2001-10-23. Moving
804 texthigh and textlow to reader-specific structs caused
805 objfile_relocate to miss them. This is fixable, but the work that
806 the change was supposed to prepare GDB for never got done anyway.
807
808 2002-09-18 David Carlton <carlton@math.stanford.edu>
809
810 * MAINTAINERS: Alphabetize Write After Approval list.
811
812 2002-09-18 Daniel Jacobowitz <drow@mvista.com>
813
814 Fix PR gdb/709
815 * values.c (value_static_field): Call read_var_value.
816
817 2002-09-18 Andrew Cagney <ac131313@redhat.com>
818
819 * valops.c (hand_function_call): Align the initial stack pointer
820 and STRUCT_ADDR using frame_align. When STRUCT_RETURN and
821 FRAME_ALIGN_P, use STRUCT_ADDR to obtain the called function's
822 return value.
823 * mips-tdep.c (mips_frame_align): New function.
824 (mips_gdbarch_init): Set frame_align.
825 * gdbarch.sh (FRAME_ALIGN): New method.
826 * gdbarch.h, gdbarch.c: Re-generate.
827
828 2002-09-18 Michal Ludvig <mludvig@suse.cz>
829
830 * x86-64-linux-nat.c (x86_64_regmap): Added CS and SS
831 registers.
832
833 2002-09-17 Andrew Cagney <ac131313@redhat.com>
834
835 * NEWS: Mention that MIPS $fp behavior changed.
836 * mipsnbsd-tdep.c (mipsnbsd_cannot_fetch_register): Delete
837 reference to FP_REGNUM.
838 (mipsnbsd_cannot_store_register): Ditto.
839 * mips-linux-nat.c: Update copyright.
840 (mips_linux_cannot_fetch_register): Delete reference to FP_REGNUM.
841 (mips_linux_cannot_store_register): Ditto.
842 * mips-linux-tdep.c (supply_gregset): Ditto. Update copyright.
843 * config/mips/tm-mips.h: Update copyright.
844 (FP_REGNUM): Delete macro.
845 (MIPS_REGISTER_NAMES): Replace "fp" with "".
846 * config/mips/tm-irix6.h (FP_REGNUM): Delete macro.
847 * mips-tdep.c (mips_gdbarch_init): Set read_fp to mips_read_sp.
848 (mips_r3041_reg_names, mips_r3051_reg_names)
849 (mips_r3081_reg_names): Replace "fp" with "".
850 Fix PR gdb/480.
851
852 2002-09-17 Theodore A. Roth <troth@verinet.com>
853
854 * gdb/avr-tdep.c(avr_scan_prologue): Fix bad call to
855 generic_read_register_dummy() (PR gdb/703).
856 (avr_push_return_address): #if 0 out unused vars.
857 (avr_gdbarch_init): Enable use of avr_push_return_address().
858
859 2002-09-17 Michael Snyder <msnyder@redhat.com>
860
861 * m32r-stub.c (restore_and_return): Postpone restoring of PSW.
862 RTE will take care of it.
863
864 2002-09-17 Andrew Cagney <ac131313@redhat.com>
865
866 * arch-utils.c (legacy_virtual_frame_pointer): If FP_REGNUM is
867 invalid, return SP_REGNUM.
868
869 2002-09-17 Michael Snyder <msnyder@redhat.com>
870
871 * mips-tdep.c (mips_pop_frame): Read saved values of floating
872 point registers without sign extension.
873
874 2002-09-17 Andrew Cagney <cagney@redhat.com>
875
876 * blockframe.c (deprecated_read_register_dummy): Rename
877 generic_read_register_dummy.
878 * frame.c (frame_unwind_signed_register): New function.
879 (frame_unwind_unsigned_register): New function.
880 * frame.h (frame_unwind_signed_register): Declare.
881 (frame_unwind_unsigned_register): Declare.
882 (deprecated_read_register_dummy): Rename
883 generic_read_register_dummy.
884
885 * h8300-tdep.c (h8300_frame_chain): Update.
886 (h8300_frame_saved_pc): Update.
887 * xstormy16-tdep.c (xstormy16_frame_saved_pc): Update.
888 * rs6000-tdep.c (rs6000_frame_saved_pc): Update.
889 * s390-tdep.c (s390_frame_saved_pc_nofix): Update.
890 (s390_frame_chain): Update.
891 * v850-tdep.c (v850_find_callers_reg): Update.
892 (v850_frame_saved_pc): Update.
893 * m32r-tdep.c (m32r_init_extra_frame_info): Update.
894 (m32r_find_callers_reg): Update.
895 (m32r_frame_saved_pc): Update.
896 * sh-tdep.c (sh_find_callers_reg): Update.
897 (sh64_get_saved_pr): Update.
898 (sh_init_extra_frame_info): Update.
899 (sh_init_extra_frame_info): Update.
900 (sh64_init_extra_frame_info): Update.
901 (sh64_init_extra_frame_info): Update.
902 * mcore-tdep.c (mcore_find_callers_reg): Update.
903 (mcore_frame_saved_pc): Update.
904 (mcore_init_extra_frame_info): Update.
905 * i386-tdep.c (i386_frame_saved_pc): Update.
906 * ia64-tdep.c (ia64_frame_saved_pc): Update.
907 (ia64_init_extra_frame_info): Update.
908 (ia64_init_extra_frame_info): Update.
909 * d10v-tdep.c (d10v_frame_saved_pc): Update.
910 * cris-tdep.c (cris_init_extra_frame_info): Update.
911 * avr-tdep.c (avr_frame_chain): Update.
912 (avr_init_extra_frame_info): Update.
913 (avr_frame_saved_pc): Update.
914 * arm-tdep.c (arm_find_callers_reg): Update.
915 (arm_init_extra_frame_info): Update.
916 (arm_frame_saved_pc): Update.
917
918 2002-09-17 Tom Tromey <tromey@redhat.com>
919
920 * c-lang.c (c_emit_char): Don't treat \0 specially unless quoter
921 is "'".
922
923 2002-09-17 Corinna Vinschen <vinschen@redhat.com>
924
925 * MAINTAINERS: Remove "non multi-arched" text from h8300.
926 * h8300-tdep.c (h8300_next_prologue_insn) Renamed from
927 NEXT_PROLOGUE_INSN.
928 (h8300_examine_prologue): Call h8300_next_prologue_insn instead of
929 NEXT_PROLOGUE_INSN.
930
931 2002-09-16 Joel Brobecker <brobecker@gnat.com>
932
933 * osfsolib.c: Remove file, replaced by solib-osf.c.
934 * Makefile.in: Remove compilation rules for osfsolib.c.
935
936 2002-09-16 David Carlton <carlton@math.stanford.edu>
937
938 * cp-valprint.c (cp_print_class_method): Correct args to
939 check_stub_method_group.
940
941 2002-09-16 Corinna Vinschen <vinschen@redhat.com>
942
943 * h8300-tdep.c: Multiarch. Drop `set machine' command in favor of
944 `set architecture'. Unify naming convention of functions.
945 (h8300_skip_prologue): Improve prologue analysis.
946 (h8300_push_arguments): Rewritten to more closely match GCC's
947 bizarre argument-passing behavior, along with the comment describing
948 said behavior.
949 * remote-hms.c (hms_regnames): Don't use NUM_REGS in definition.
950 * config/h8300/tm-h8300.h: Multiarch. Just keep stuff needed by
951 sim, remote-e7000.c, remote-hms.c and remote.c
952
953 2002-09-15 Mark Kettenis <kettenis@gnu.org>
954
955 * i386-tdep.c (gdb_print_insn_i386): Removed.
956 (i386_print_insn): New function.
957 (i386_gdbarch_init): Set print_insn to i386_print_insns.
958 (_initialize_i386_tdep): Don't initialize tm_print_insn and
959 tm_print_insn_info.
960
961 2002-09-14 Mark Kettenis <kettenis@gnu.org>
962
963 * gdbtypes.c (check_stub_method_group): Initialize found_stub to
964 zero.
965
966 2002-09-14 Corinna Vinschen <vinschen@redhat.com>
967
968 * arch-utils.c (legacy_pc_in_sigtramp): Move preprocessor expression
969 for IN_SIGTRAMP to here. Use IN_SIGTRAMP only if it's defined.
970 Guard usage of SIGTRAMP_START() by using SIGTRAMP_START_P.
971
972 2002-09-13 Christopher Faylor <cgf@redhat.com>
973
974 * win32-nat.c (child_create_inferior): Honor 'tty' command.
975
976 2002-09-13 Daniel Jacobowitz <drow@mvista.com>
977
978 * gdbtypes.c (check_stub_method): Make static.
979 (check_stub_method_group): New function.
980 * gdbtypes.h: Update prototypes.
981 * cp-support.c: New file.
982 * cp-support.h: New file.
983
984 * stabsread.c: Include "cp-abi.h" and "cp-support.h".
985 (update_method_name_from_physname): New function.
986 (read_member_functions): Correct method names for operators
987 and v3 constructors/destructors. Separate v2 constructors and
988 destructors.
989 * Makefile.in (stabsread.o): Update dependencies.
990 (SFILES): Add cp-support.c.
991 (COMMON_OBS): Add cp-support.o.
992 (cp_support_h, cp-support.o): Add.
993
994 * cp-valprint.c (cp_print_class_method): Call
995 check_stub_method_group instead of check_stub_method. Remove
996 extraneous QUITs.
997 * p-valprint.c (pascal_object_print_class_method): Likewise.
998 * valops.c (search_struct_method): Likewise.
999 (find_method_list, value_struct_elt_for_reference): Likewise.
1000
1001 2002-09-13 Andrew Cagney <cagney@redhat.com>
1002
1003 * gdbarch.sh (SIGTRAMP_END): Change to a predicate function.
1004 * gdbarch.h, gdbarch.c: Regenerate.
1005
1006 2002-09-13 Andrew Cagney <ac131313@redhat.com>
1007
1008 * frame.c (find_saved_register): Delete function.
1009 * frame.h (find_saved_register): Delete declaration.
1010 Fix PR gdb/631.
1011
1012 Fri Sep 13 14:59:55 2002 Andrew Cagney <cagney@redhat.com>
1013
1014 * mips-tdep.c (read_next_frame_reg): Re-hack using
1015 frame_register_unwind.
1016
1017 Fri Sep 13 07:42:09 2002 Andrew Cagney <cagney@redhat.com>
1018
1019 * mips-tdep.c (mips_get_saved_register): Re-hack using
1020 frame_register_unwind.
1021
1022 2002-09-12 Joel Brobecker <brobecker@gnat.com>
1023
1024 * gdbarch.sh (NAME_OF_MALLOC): New variable in the architecture
1025 vector. Will be useful for Interix.
1026 * gdbarch.h, gdbarch.c: Regenerate.
1027
1028 * valops.c (value_allocate_space_in_inferior): Replace hard-coded
1029 name of the malloc function by NAME_OF_MALLOC.
1030
1031 2002-09-12 Joel Brobecker <brobecker@gnat.com>
1032
1033 * value.h (find_function_in_inferior): Add const keyword to
1034 one of the parameters. Allows us to invoke this function with
1035 a const char *.
1036 * valops.c (find_function_in_inferior): Likewise.
1037
1038 2002-09-12 Joel Brobecker <brobecker@gnat.com>
1039
1040 * exec.c (xfer_memory): Fix compilation warning with old versions
1041 of GCC.
1042 * tracepoint.c (trace_find_tracepoint_command): Likewise.
1043
1044 2002-09-12 David Carlton <carlton@math.stanford.edu>
1045
1046 * symtab.h: Run through gdb_indent.h.
1047 Add 2002 to Copyright year list.
1048
1049 2002-09-12 Alan Modra <amodra@bigpond.net.au>
1050
1051 * x86-64-tdep.c (_initialize_x86_64_tdep): Don't use hard-coded
1052 mach constants.
1053 * MAINTAINERS: Add myself to write after approval list.
1054
1055 2002-09-11 J. Brobecker <brobecker@gnat.com>
1056
1057 * osabi.c (gdb_osabi_name): Add entry for GDB_OSABI_INTERIX.
1058
1059 2002-09-11 J. Brobecker <brobecker@gnat.com>
1060
1061 * osabi.h (gdb_osabi): Add new GDB_OSABI_INTERIX enum value for
1062 Interix.
1063
1064 2002-06-05 Paul N. Hilfinger <hilfingr@otisco.mckusick.com>
1065
1066 * procfs.c (do_detach): Clear current signal, not just fault.
1067 Corrects problem with breakpoint trap signal leaking to detached
1068 process on Tru64.
1069
1070 2002-09-10 Michael Snyder <msnyder@redhat.com>
1071
1072 * buildsym.c (finish_block): Protect against null pointer.
1073
1074 2002-09-10 Andrew Cagney <cagney@redhat.com>
1075
1076 * infcmd.c (default_print_registers_info): Send all output to
1077 ``file'' instead of ``gdb_stdout''.
1078
1079 2002-09-10 Michael Snyder <msnyder@redhat.com>
1080
1081 * mips-tdep.c (mips_extract_struct_value_address): Make val a
1082 LONGEST, and use signed register read (addresses are sign-
1083 extended for mips).
1084
1085 2002-09-10 Stephane Carrez <stcarrez@nerim.fr>
1086
1087 * event-loop.c (gdb_do_one_event): Make public.
1088 * event-loop.h (gdb_do_one_event): Declare.
1089
1090 2002-09-10 Jeff Law <law@redhat.com>
1091
1092 * infttrace.c (child_resume): Simplify and rework to avoid
1093 TT_PROC_CONTINUE.
1094
1095 2002-09-09 Fred Fish <fnf@intrinsity.com>
1096
1097 * printcmd.c (print_scalar_formatted): "len" is the number of
1098 target bytes, NOT the number of target bits.
1099
1100 2002-09-09 Elena Zannoni <ezannoni@redhat.com>
1101
1102 From: Emmanuel Thome' <thome@lix.polytechnique.fr>
1103 * top.c (init_main): Set rl_terminal_name.
1104
1105 2002-09-08 Aidan Skinner <aidan@velvet.net>
1106
1107 * ada-lang.c (ada_array_bound, ada_type_match,
1108 _initialize_ada_language): Fix K&R definitions.
1109 * ada-tasks.c (get_current_task): Fix K&R definitions.
1110 * ada-valprint.c (adjust_type_signedness): Fix K&R definitions.
1111
1112 2002-09-07 Christopher Faylor <cgf@redhat.com>
1113
1114 * MAINTAINERS: Remove CE from list of maintainership responsibilities.
1115 Add XP.
1116
1117 2002-09-06 Mark Kettenis <kettenis@gnu.org>
1118
1119 * i386-tdep.c (i386_register_virtual_type,
1120 i386_register_convertible, i386_register_convert_to_virtual,
1121 i386_register_comvert_to_raw): Use FP_REGNUM_P and SSE_REGNUM_P
1122 instead of IS_FP_REGNUM and IS_SSE_REGNUM.
1123 (i386_gdbarch_init): Fix comment. Add comments on calls that set
1124 sp_regnum, fp_regnum, pc_regnum, ps_regnum and fp0_regnum.
1125 Don't set push_arguments twice.
1126
1127 * i386bsd-tdep.c (i386bsd_init_abi): Set sigtramp_start and
1128 sigtramp_end to i386bsd_sigtramp_start and i386bsd_sigtramp_end.
1129 * i386nbsd-tdep.c (i386nbsd_init_abi): Set sigtramp_start and
1130 sigtramp_end to NULL.
1131 * config/i386/tm-fbsd.h (SIGTRAMP_START, SIGTRAMP_END): Remove
1132 defines.
1133 (i386bsd_sigtramp_start, i386_sigtramp_end): Remove prototypes.
1134
1135 * i386nbsd-tdep.c (i386nbsd_pc_in_sigtramp): Remove spurious
1136 whitespace.
1137
1138 * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): New methods.
1139 * gdbarch.h, gdbarch.c: Re-generate.
1140 * blockframe.c (find_pc_sect_partial_function): Convert to use
1141 SIGTRAMP_START_P predicate.
1142
1143 2002-09-05 Michael Snyder <msnyder@redhat.com>
1144
1145 * arm-tdep.c (arm_init_extra_frame_info): Distinguish between
1146 generic_dummy_frame method and old method. Also distinguish
1147 between ARM_FP_REGNUM and THUMB_FP_REGNUM.
1148 (arm_extract_return_value): Use new regcache method.
1149
1150 * mips-tdep.c (mips_n32n64_push_arguments): Remove alignment
1151 adjustment that doesn't conform to the ABI.
1152 (mips_extract_struct_value_address): Retrieve V0_REGNUM from
1153 saved regcache, not from current regcache.
1154
1155 2002-09-05 Andrew Cagney <ac131313@redhat.com>
1156
1157 * NEWS: Update for 5.3. Add new section ``Changes since 5.3''.
1158 * README: Update.
1159
1160 2002-09-04 Jason Thorpe <thorpej@wasabisystems.com>
1161
1162 * arm-tdep.c (arm_addr_bits_remove): Don't check for Thumb mode
1163 if arm_apcs_32 is false.
1164
1165 2002-09-04 Andrew Cagney <ac131313@redhat.com>
1166
1167 GDB 5.3 branch created.
1168
1169 2002-09-03 Theodore A. Roth <troth@verinet.com>
1170
1171 * gdb/avr-tdep.c (avr_gdbarch_init): Use
1172 generic_unwind_get_saved_register.
1173
1174 2002-09-03 David Carlton <carlton@math.stanford.edu>
1175
1176 * dwarf2read.c (dwarf2_add_member_fn): Add the 'type'
1177 argument (PR gdb/653). Update call to smash_to_method_type.
1178 (read_structure_scope): Update call to dwarf2_add_member_fn.
1179
1180 2002-09-03 Michal Ludvig <mludvig@suse.cz>
1181
1182 * x86-64-linux-tdep.c: Include gdb_string.h
1183 * x86-64-linux-nat.c: Ditto.
1184
1185 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
1186
1187 * ada-exp.y (yyname, yyrule): Remap global variables that appear
1188 when YYDEBUG is set to 1.
1189 * c-exp.y: Likewise.
1190 * f-exp.y: Likewise.
1191 * jv-exp.y: Likewise.
1192 * m2-exp.y: Likewise.
1193 * p-exp.y: Likewise.
1194
1195 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
1196
1197 * Makefile.in (i386nbsd-tdep.o): Add $(solib_svr4_h) to
1198 dependency list.
1199 * i386nbsd-tdep.c (i386nbsdelf_init_abi): Set
1200 solib_svr4_fetch_link_map_offsets to
1201 nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
1202 * config/i386/nbsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
1203 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
1204 * config/i386/nbsdelf.mh (NATDEPFILES): Remove solib.o,
1205 solib-svr4.o, and solib-legacy.o.
1206 * config/i386/tm-nbsd.h: Include solib.h.
1207
1208 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
1209
1210 * configure.tgt (i[3456]86-*-netbsdelf*): Merge with...
1211 (i[3456]86-*-netbsd*): ...this. Set gdb_target to nbsd.
1212 (i[3456]86-*-openbsd*): Make this a separate entry. Add a
1213 comment noting that this needs its own target configuration.
1214 * config/i386/nbsd.mt: New file.
1215 * config/i386/nbsdaout.mt: Remove.
1216 * config/i386/nbsdelf.mt: Ditto.
1217 * config/i386/tm-nbsdaout.h: Ditto.
1218
1219 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
1220
1221 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): New function.
1222 (i386nbsd_pc_in_sigtramp): Rewrite to use i386nbsd_sigtramp_offset.
1223 (i386nbsd_init_abi): Don't initialize tdep->sigtramp_start or
1224 tdep->sigtramp_end.
1225 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end): Remove.
1226 * config/i386/tm-nbsd.h (SIGTRAMP_START, SIGTRAMP_END)
1227 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove.
1228
1229 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
1230
1231 * Makefile.in (i386nbsd-tdep.o): Add $(arch_utils_h),
1232 $(i386_tdep_h), and $(nbsd_tdep_h) to dependency list.
1233 * i386-tdep.h (i386bsd_init_abi): New prototype.
1234 * i386bsd-tdep.c (i386bsd_init_abi): Remove "static" from
1235 function declaration.
1236 (_initialize_i386bsd_tdep): Don't register OS ABI handlers
1237 for NetBSD-a.out or NetBSD-ELF.
1238 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end)
1239 (i386nbsd_sc_pc_offset, i386nbsd_sc_sp_offset)
1240 (i386nbsd_init_abi, i386nbsdelf_init_abi): Move to...
1241 * i386nbsd-tdep.c: ...here. Include arch-utils.h, i386-tdep.h,
1242 and nbsd-tdep.h.
1243 (i386nbsd_pc_in_sigtramp): New function.
1244 (i386nbsd_init_abi): Set gdbarch_pc_in_sigtramp to
1245 i386nbsd_pc_in_sigtramp.
1246 (_initialize_i386nbsd_tdep): Register i386nbsd_init_abi
1247 and i386nbsdelf_init_abi OS ABI handlers.
1248 * config/i386/nbsdaout.mt (TDEPFILES): Add nbsd-tdep.o.
1249 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
1250
1251 2002-09-02 Mark Kettenis <kettenis@gnu.org>
1252
1253 * i386-linux-nat.c (dummy_sse_values): Only try to fill in the SSE
1254 registers if the target really has them.
1255
1256 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
1257
1258 * Makefile.in (mipsnbsd-tdep.o): Use $(nbsd_tdep_h) rather
1259 than nbsd-tdep.h.
1260
1261 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
1262
1263 * Makefile.in (alphanbsd-tdep.o): Add $(frame_h) to dependency
1264 list.
1265 * alphanbsd-tdep.c (alphanbsd_sigcontext_addr)
1266 (alphanbsd_skip_sigtramp_frame): New functions.
1267 (alphanbsd_init_abi): Set tdep->skip_sigtramp_frame to
1268 alphanbsd_skip_sigtramp_frame. Set tdep->sigcontext_addr
1269 to alphanbsd_sigcontext_addr.
1270
1271 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
1272
1273 * Makefile.in (mipsnbsd-tdep.o): Add nbsd-tdep.h to dependency
1274 list.
1275 (nbsd-tdep.o): Add $(gdb_string_h) to dependency list.
1276 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): Use
1277 nbsd_pc_in_sigtramp.
1278 * mipsnbsd-tdep.c: Include nbsd-tdep.h.
1279 (mipsnbsd_pc_in_sigtramp): Use nbsd_pc_in_sigtramp.
1280 * nbsd-tdep.c: Include gdb_string.h.
1281 (nbsd_pc_in_sigtramp): New function.
1282 * nbsd-tdep.h (nbsd_pc_in_sigtramp): New prototype.
1283 * ppcnbsd-tdep.c (ppcnbsd_pc_in_sigtramp): New function.
1284 (ppcnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
1285 ppcnbsd_pc_in_sigtramp.
1286 * shnbsd-tdep.c (shnbsd_pc_in_sigtramp): New function.
1287 (shnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
1288 shnbsd_pc_in_sigtramp.
1289 * sparcnbsd-tdep.c (sparcnbsd_init_abi_elf): Set
1290 gdbarch_pc_in_sigtramp to nbsd_pc_in_sigtramp.
1291 * config/mips/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
1292
1293 2002-08-30 Pierre Muller <muller@ics.u-strasbg.fr>
1294
1295 * breakpoint.c (breakpoint_init_inferior): Reset the val field of
1296 watchpoints to NULL.
1297 (insert_breakpoints): set val field of watchpoints if NULL.
1298
1299
1300 2002-08-29 Jim Blandy <jimb@redhat.com>
1301
1302 * symtab.c (lookup_symbol_aux): In the cases where we find a
1303 minimal symbol of an appropriate name and use its address to
1304 select a symtab to read and search, use `name' (as passed to us)
1305 as the demangled name when searching the symtab's global and
1306 static blocks, not the minsym's name.
1307
1308 2002-08-29 Keith Seitz <keiths@redhat.com>
1309
1310 * stack.c (print_frame_info_base): Always set current_source_symtab
1311 and current_source_line.
1312
1313 2002-08-29 Donn Terry <donnte@microsoft.com>
1314
1315 * proc-api.c (rw_table): Fix typo in #ifdef PCSHOLD (missing S).
1316
1317 2002-08-28 Keith Seitz <keiths@redhat.com>
1318
1319 * stack.c (select_frame): Add FIXME concerning selected-frame
1320 events.
1321 (select_frame_command): Send selected-frame-level-changed
1322 event notification, but only if the level actually changed.
1323 (up_silently_base): Add selected-frame-level-changed event
1324 notification.
1325 (down_silently_base): Likewise.
1326
1327 2002-08-28 Andrew Cagney <ac131313@redhat.com>
1328
1329 * Makefile.in: Update dependencies for all gdb/*.c files.
1330
1331 2002-08-27 Tom Tromey <tromey@redhat.com>
1332
1333 * Makefile.in (osabi.o, i387-tdep.o, i386-linux-nat.o, lin-lwp.o,
1334 ax-gdb.o, signals.o, jv-valprint.o, c-valprint.o, cp-abi.o):
1335 Update dependencies.
1336 * i387-tdep.c: Include gdb_string.h.
1337 * osabi.c: Likewise.
1338 * i386-linux-nat.c: Likewise.
1339 * lin-lwp.c: Likewise.
1340 * ax-gdb.c: Likewise.
1341 * signals/signals.c: Likewise.
1342 * jv-valprint.c: Likewise.
1343 * p-lang.c: Likewise.
1344 * c-valprint.c: Likewise.
1345 * cp-abi.c: Likewise.
1346
1347 2002-08-27 Elena Zannoni <ezannoni@redhat.com>
1348
1349 * cli/cli-script.h (copy_command_lines): Export.
1350 * breakpoint.c: Include cli/cli-script.h.
1351 * Makefile.in (breakpoint.o): Update dependencies.
1352
1353 2002-08-26 Michael Snyder <msnyder@redhat.com>
1354
1355 * breakpoint.c (insert_breakpoints): Protect all references
1356 to 'process_warning'. Shorten long lines.
1357
1358 2002-08-26 Joel Brobecker <brobecker@gnat.com>
1359
1360 * cli/cli-script.c (copy_command_lines): New function.
1361 * defs.h (copy_command_lines): Export.
1362 * testsuite/gdb.base/commands.exp: New tests for commands
1363 attached to a temporary breakpoint, and for commands that
1364 delete the breakpoint they are attached to.
1365
1366 2002-08-26 Michael Snyder <msnyder@redhat.com>
1367
1368 * breakpoint.c (bpstat_stop_status): Instead of copying the
1369 pointer to the breakpoint commands struct, make a new copy
1370 of the struct and point to that.
1371 (bpstat_clear): Free the commands struct.
1372 (bpstat_clear_actions): Free the commands struct.
1373 (bpstat_do_actions): Free the command actions. Also execute
1374 the local cleanups, instead of deleting them.
1375 (delete_breakpoint): Leave the commands field of the bpstat
1376 chain alone -- it will be freed later.
1377
1378 2002-08-26 Kevin Buettner <kevinb@redhat.com>
1379
1380 * rs6000-tdep.c (altivec_register_p): Restore function inadvertently
1381 deleted in 2002-08-20 commit. This function is still used by
1382 ppc-linux-nat.c.
1383
1384 2002-08-26 Keith Seitz <keiths@redhat.com>
1385
1386 * gdb-events.sh: Add selected-frame-level-changed event.
1387 * gdb-events.c: Regenerated.
1388 * gdb-events.h: Regenerated.
1389
1390 2002-08-26 Stephane Carrez <stcarrez@nerim.fr>
1391
1392 Fix PR gdb/393:
1393 * inflow.c (terminal_save_ours): New function to save terminal
1394 settings.
1395 * inferior.h (terminal_save_ours): Declare.
1396 * target.c (debug_to_terminal_save_ours): New function.
1397 (cleanup_target): Defaults to_terminal_save_ours.
1398 (update_current_target): Inherit to_terminal_save_ours.
1399 (setup_target_debug): Set to_terminal_save_ours.
1400 * target.h (target_terminal_save_ours): New to save terminal settings.
1401 (target_ops): New member to_terminal_save_ours.
1402 * gnu-nat.c (init_gnu_ops): Set to_terminal_save_ours.
1403 * hpux-thread.c (init_hpux_thread_ops): Likewise.
1404 * inftarg.c (init_child_ops): Likewise.
1405 * m3-nat.c (init_m3_ops): Likewise.
1406 * procfs.c (init_procfs_ops): Likewise.
1407 * wince.c (init_child_ops): Likewise.
1408 * win32-nat.c (init_child_ops): Likewise.
1409 * sol-thread.c (init_sol_thread_ops): Likewise.
1410
1411 2002-08-26 Mark Kettenis <kettenis@gnu.org>
1412
1413 * i386-tdep.c (i386_store_return_value): Undeprecate. Convert to
1414 use regcache_* functions.
1415 (i386_gdbarch_init): Set store_return_value instead of
1416 deprecated_store_return_value.
1417
1418 * regcache.c (regcache_raw_write_signed,
1419 regcache_raw_write_unsigned): New functions.
1420 * regcache.h (regcache_raw_write_signed,
1421 regcache_raw_write_unsigned): New prototypes.
1422
1423 2002-08-25 Andrew Cagney <ac131313@redhat.com>
1424
1425 * Makefile.in (c-exp.tab.o, jv-exp.tab.o, f-exp.tab.o)
1426 (m2-exp.tab.o, p-exp.tab.o, ada-exp.tab.o): Move to before the
1427 source file dependencies. Cleanup corresponding generator rules.
1428
1429 2002-08-25 Andrew Cagney <ac131313@redhat.com>
1430
1431 * regcache.h (register_offset_hack): Declare.
1432 (regcache_cooked_read_using_offset_hack): Declare.
1433 (regcache_cooked_write_using_offset_hack): Declare.
1434
1435 * regcache.c (register_offset_hack): New function.
1436 (regcache_cooked_read_using_offset_hack): New function.
1437 (regcache_cooked_write_using_offset_hack): New function.
1438 (regcache_dump): Check that the registers, according to their
1439 offset, are packed hard against each other.
1440 (cooked_xfer_using_offset_hack): New function.
1441
1442 2002-08-25 Andrew Cagney <ac131313@redhat.com>
1443
1444 * regcache.c (struct regcache_descr): Add field register_type.
1445 (init_legacy_regcache_descr): Pass a pre-allocated regcache_descr
1446 in as a parameter
1447 (init_regcache_descr): Initialize register_type. Pass the descr
1448 to init_legacy_regcache_descr. Use register_type instead of
1449 REGISTER_VIRTUAL_TYPE.
1450 (register_type): New function.
1451 (regcache_dump): Replace REGISTER_VIRTUAL_TYPE with register_type.
1452 * regcache.h (register_type): Declare.
1453
1454 2002-08-25 Andrew Cagney <ac131313@redhat.com>
1455
1456 * rs6000-tdep.c (rs6000_gdbarch_init): Set store_struct_return
1457 instead of deprecated_store_return_value. Fix fallout from
1458 2002-08-23 Andrew Cagney <cagney@redhat.com>.
1459
1460 2002-08-25 Andrew Cagney <ac131313@redhat.com>
1461
1462 * regcache.c (max_register_size): New function.
1463 (init_legacy_regcache_descr): Ensure that max_register_size is
1464 large enough for REGISTER_VIRTUAL_SIZE.
1465 * regcache.h (max_register_size): Declare.
1466
1467 2002-08-24 Andrew Cagney <ac131313@redhat.com>
1468
1469 * rs6000-tdep.c (rs6000_gdbarch_init): Use deprecated version of
1470 store_return_value.
1471 (e500_extract_return_value): Change type of valbuf pointer to
1472 void.
1473
1474 2002-08-24 Mark Kettenis <kettenis@gnu.org>
1475
1476 * PROBLEMS: Clarify problems with FreeBSD's compiler and suggest
1477 workaround.
1478
1479 * valprint.c (print_longest) [CC_HAS_LONG_LONG &&
1480 PRINTF_HAS_LONG_LONG]: Cast val_long to (long long) or (unsigned
1481 long long) to prevent compiler warning on 64-bit systems.
1482
1483 2002-08-23 Andrew Cagney <cagney@redhat.com>
1484
1485 * gdbarch.sh (STORE_RETURN_VALUE): Add regcache parameter.
1486 (DEPRECATED_STORE_RETURN_VALUE): New method.
1487 (EXTRACT_RETURN_VALUE): Make buffer parameter a void pointer.
1488 * gdbarch.h, gdbarch.c: Re-generate.
1489
1490 * values.c (set_return_value): Pass current_regcache to
1491 STORE_RETURN_VALUE.
1492 * arch-utils.h (legacy_store_return_value): Declare.
1493 * arch-utils.c (legacy_store_return_value): New function.
1494 (legacy_extract_return_value): Update parameters.
1495
1496 * config/pa/tm-hppa.h (DEPRECATED_STORE_RETURN_VALUE): Rename
1497 STORE_RETURN_VALUE.
1498 * config/pa/tm-hppa64.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1499 * config/sparc/tm-sparc.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1500 * config/z8k/tm-z8k.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1501 * config/sparc/tm-sparclet.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1502 * config/mn10200/tm-mn10200.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1503 * config/m68k/tm-linux.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1504 * config/m68k/tm-delta68.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1505 * config/m32r/tm-m32r.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1506 * config/h8500/tm-h8500.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1507 * config/h8300/tm-h8300.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1508
1509 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
1510 * i386-tdep.c (i386_extract_return_value): Update.
1511 * arch-utils.c (legacy_extract_return_value): Update.
1512 * frv-tdep.c (frv_gdbarch_init): Update.
1513 * cris-tdep.c (cris_gdbarch_init): Update.
1514 * d10v-tdep.c (d10v_gdbarch_init): Update.
1515 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
1516 * m68k-tdep.c (m68k_gdbarch_init): Update.
1517 * mcore-tdep.c (mcore_gdbarch_init): Update.
1518 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
1519 * s390-tdep.c (s390_gdbarch_init): Update.
1520 * sparc-tdep.c (sparc_gdbarch_init): Update.
1521 * sh-tdep.c (sh_gdbarch_init): Update.
1522 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
1523 * v850-tdep.c (v850_gdbarch_init): Update.
1524 * avr-tdep.c (avr_gdbarch_init): Update.
1525 * ia64-tdep.c (ia64_gdbarch_init): Update.
1526 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
1527 * vax-tdep.c (vax_gdbarch_init): Update.
1528 * alpha-tdep.c (alpha_gdbarch_init): Update.
1529 * arm-tdep.c (arm_gdbarch_init): Update.
1530 * mips-tdep.c (mips_gdbarch_init): Update.
1531 * i386-tdep.c (i386_gdbarch_init): Update.
1532
1533 2002-08-23 Andrew Cagney <ac131313@redhat.com>
1534
1535 * config/djgpp/fnchange.lst: Add entries for bfd/elf32-ppcqnx.c,
1536 bfd/elf32-ppc.c, bfd/elf32-sh.c and bfd/elf32-shqnx.c.
1537
1538 2002-08-24 Mark Kettenis <kettenis@gnu.org>
1539
1540 * PROBLEMS: Refer to GDB 5.3 instead of 5.2. Mention FreeBSD
1541 problems.
1542
1543 2002-08-23 Joel Brobecker <brobecker@gnat.com>
1544
1545 * infrun.c (handle_inferior_event): Move a comment outside of a
1546 function call, in order to avoid indent reformatting this part
1547 of the code in an unreadable way.
1548
1549 2002-08-23 Grace Sainsbury <graces@redhat.com>
1550
1551 * infrun.c (normal_stop, proceed): Remove call to print_sys_errmsg
1552 when breakpoints fail. Move general breakpoint error messages to
1553 insert_breakpoints.
1554 * breakpoint.c (insert_breakpoints): Change warnings when
1555 breakpoints are nto inserted to specify the type. Remove call to
1556 memory_error when hardware breakpoints can't be inserted. Remove
1557 multiple calls to warning so all messages are sent to the user at
1558 once.
1559 (delete_breakpoints): Make insert error messsages more explicit.
1560
1561 2002-08-23 Daniel Jacobowitz <drow@mvista.com>
1562
1563 * ChangeLog: Move gdbserver entries after GDB 5.2 to
1564 gdbserver/ChangeLog.
1565
1566 2002-08-23 Mark Kettenis <kettenis@gnu.org>
1567
1568 * i386-tdep.c: Include "objfiles.h".
1569 (i386_svr4_init_abi): Set in_solib_call_trampoline and
1570 skip_trampoline_code.
1571 * config/i386/tm-i386v4.h: Don't include "config/tm-sysv4.h".
1572 (CPLUS_MARKER): Define to '.'.
1573
1574 * linux-proc.c (struct linux_corefile_thread_data): Add num_notes
1575 member.
1576 (linux_corefile_thread_callback): Increase args->num_notes.
1577 (linux_make_note_section): Initialize thread_args.num_notes, and
1578 use it to determine whether notes for any threads were created.
1579
1580 2002-08-23 Donn Terry <donnte@microsoft.com>
1581
1582 * proc-api.c (rw_table): Do not include a row for PCDSTOP if the
1583 corresponding macro is not defined. Likewise for PCNICE, PCSHOLD
1584 and PCUNKILL.
1585 (write_with_trace): Conditionalize out the switch branch handling
1586 PCSHOLD if the corresponding macro is not defined. Likewise for
1587 PRSABORT and PRSTOP.
1588 This change will be needed by the Interix port.
1589
1590 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
1591
1592 * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): use
1593 write_register wherever possible instead of manipulating the
1594 register bytes directly.
1595 Assign VALUE_CONTENTS to a variable and use that.
1596 The GPR numbers are now dependent on the architecture.
1597
1598 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
1599
1600 * rs6000-tdep.c (struct rs6000_framedata): Add saved_ev and
1601 ev_offset fields.
1602 (skip_prologue): Add support for BookE/e500 instructions.
1603 (e500_extract_return_value): New function.
1604 (frame_get_saved_regs): Add support for saving ev registers and
1605 pseudo gpr's.
1606 (e500_store_return_value): New function.
1607 (rs6000_gdbarch_init): Move up default intializations of
1608 deprecated_extract_return_value and store_return_value. Overwrite
1609 init of store_return_value with e500 specific version.
1610 Set extract_return_value for e500.
1611
1612 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
1613
1614 * blockframe.c (generic_call_dummy_register_unwind): Use
1615 regcache_cooked_read to catch cases in which the variable is
1616 stored in a pseudo register.
1617
1618 2002-08-22 Andrew Cagney <cagney@redhat.com>
1619
1620 * NEWS: Mention that the i960 has been made obsolete.
1621 * Makefile.in (SFILES): Delete remote-nrom.c, remote-nindy.c and
1622 i960-tdep.c
1623 (remote-nrom.o): Obsolete target.
1624 (remote-nindy.o, i960-tdep.o): Ditto.
1625 * remote-nrom.c: Make file obsolete.
1626 * remote-nindy.c, remote-vx960.c: Ditto.
1627 * config/i960/vxworks960.mt, config/i960/nindy960.mt: Ditto.
1628 * config/i960/mon960.mt, config/i960/tm-i960.h: Ditto.
1629 * config/i960/tm-vx960.h, config/i960/tm-nindy960.h: Ditto.
1630 * config/i960/tm-mon960.h, i960-tdep.c: Ditto.
1631 * configure.tgt: Make i960-*-bout*, i960-nindy-coff*,
1632 i960-*-coff*, i960-nindy-elf*, i960-*-elf*, i960-*-nindy* and
1633 i960-*-vxworks* obsolete.
1634 * MAINTAINERS: Note that the i960 is obsolete.
1635
1636 2002-08-21 Corinna Vinschen <vinschen@redhat.com
1637
1638 * aix-thread.c (aix_thread_detach): Disable thread debugging on
1639 detach to allow reinitialization.
1640
1641 2002-08-22 Andrew Cagney <ac131313@redhat.com>
1642
1643 * MAINTAINERS: Change the s390 target to s390-linux-gnu (second
1644 attempt).
1645
1646 2002-08-22 Jim Blandy <jimb@redhat.com>
1647
1648 * coffread.c (coff_symfile_read): Don't try to read the line
1649 number table from disk if the image file doesn't have a symbol
1650 table; we'll never actually look at the info anyway, and Windows
1651 ships DLL's with bogus file offsets for the line number data.
1652
1653 2002-08-21 Elena Zannoni <ezannoni@redhat.com>
1654
1655 * rs6000-tdep.c (rs6000_gdbarch_init): Figure out whether we have
1656 an e500 executable.
1657
1658 2002-08-21 Michael Snyder <msnyder@redhat.com>
1659
1660 * mips-tdep.c (MSYMBOL_IS_SPECIAL): Replace macro with function.
1661 (MSYMBOL_SIZE): Replace macro with function.
1662 (DEFAULT_MIPS_TYPE): Delete unused macro.
1663 * config/mips/tm-mips.h (DEFAULT_MIPS_TYPE): Delete unused macro.
1664 * config/mips/tm-embed.h (DEFAULT_MIPS_TYPE): Delete unused macro.
1665
1666 2002-08-21 Jim Blandy <jimb@redhat.com>
1667
1668 * valops.c (value_cast): Simplify and correct logic for doing a
1669 static cast from a pointer to a base class to a pointer to a
1670 derived class.
1671
1672 2002-08-21 Andrew Cagney <ac131313@redhat.com>
1673
1674 * infcmd.c (default_print_registers_info): Replace
1675 do_registers_info.
1676 (registers_info): Use gdbarch_print_registers_info instead of
1677 DO_REGISTERS_INFO.
1678 * inferior.h (default_print_registers_info): Replace
1679 do_registers_info.
1680 * gdbarch.sh (PRINT_REGISTERS_INFO): New method.
1681 (DO_REGISTERS_INFO): Change to a predicate function.
1682 * gdbarch.h, gdbarch.c: Regenerate.
1683
1684 2002-08-21 Keith Seitz <keiths@redhat.com>
1685
1686 * gdb-events.sh: Add target-changed event.
1687 * gdb-events.c: Regenerated.
1688 * gdb-events.c: Regenerated.
1689 * valops.c (value_assign): Add target-changed event notification
1690 to inlval_register, lval_memory, and lval_reg_frame_relative.
1691
1692 2002-08-21 Joel Brobecker <brobecker@gnat.com>
1693
1694 * NEWS: Add an entry regarding the improvement of the next/step
1695 operation on Alpha Tru64 multi-processor machines.
1696
1697 2002-08-21 Andrew Cagney <ac131313@redhat.com>
1698
1699 * Makefile.in: Update dependencies for mi/ cli/ and tui/
1700 directores.
1701 * Makefile.in: Update all _h macro definitions.
1702 * Makefile.in (install-gdbtk): Move to install section.
1703 (rdi-share/libangsd.a): Move to end of file.
1704
1705 2002-08-19 Andrew Cagney <ac131313@redhat.com>
1706
1707 * frame.c (frame_register_unwind): When a register, set addrp to
1708 the register's byte.
1709
1710 2002-08-20 Michael Snyder <msnyder@redhat.com>
1711
1712 * mips-tdep.c (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): These are only
1713 used locally, so move them from the target machine header to here.
1714 (mips_set_processor_type, mips_register_name, mips32_next_pc,
1715 mips16_next_pc, cached_proc_desc, mips_set_processor_type):
1716 Make static.
1717 * config/mips/tm-mips.h (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Delete.
1718
1719 2002-08-20 Andrew Cagney <cagney@redhat.com>
1720
1721 * NEWS: Mention that the Apollo line was made obsolete.
1722 * configure.tgt: Make m68*-apollo*-bsd*, m68*-hp-bsd*, and
1723 m68*-hp-hpux* obsolete.
1724 * configure.host: Make m68*-apollo*-sysv*, m68*-apollo*-bsd*,
1725 m68*-hp-bsd* and m68*-hp-hpux* obsolete.
1726 * buildsym.c (make_blockvector): Make static.
1727 * buildsym.h (make_blockvector): Make extern declaration obsolete.
1728 * Makefile.in (HFILES_NO_SRCDIR): Remove dst.h
1729 (ALLDEPFILES): Remove dstread.c.
1730 (dstread.o): Obsolete make rule.
1731 * dstread.c: Makefile obsolete.
1732 * dst.h: Ditto.
1733 * config/m68k/hp300hpux.mt: Ditto.
1734 * config/m68k/hp300hpux.mh: Ditto.
1735 * config/m68k/hp300bsd.mt: Ditto.
1736 * config/m68k/hp300bsd.mh: Ditto.
1737 * config/m68k/apollo68b.mt: Ditto.
1738 * config/m68k/apollo68v.mh: Ditto.
1739 * config/m68k/apollo68b.mh: Ditto.
1740
1741 2002-08-20 Michael Snyder <msnyder@redhat.com>
1742
1743 * mips-tdep.c (mips_in_return_stub): Make static.
1744 (mips_gdbarch_init): Set in_solib_return_trampoline.
1745 * config/mips/tm-mips.h (IN_SOLIB_RETURN_TRAMPOLINE): Delete.
1746
1747 2002-08-20 Michael Snyder <msnyder@redhat.com>
1748
1749 * gdbarch.sh (IN_SOLIB_RETURN_TRAMPOLINE): Add.
1750 * gdbarch.c, gdbarch.h: Regenerate.
1751 * arch-utils.c, arch-utils.h (generic_in_solib_return_trampoline):
1752 Add.
1753 * infrun.c (IN_SOLIB_RETURN_TRAMPOLINE): Delete default definition.
1754
1755 2002-08-20 Michael Snyder <msnyder@redhat.com>
1756
1757 * mips-tdep.c (mips_skip_stub, mips_in_call_stub): Make static.
1758 (mips_gdbarch_init): Set skip_trampoline_code,
1759 in_solib_call_trampoline.
1760 * config/mips/tm-mips.h (REGISTER_NAME): Delete.
1761 (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE): Delete.
1762
1763 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
1764
1765 * ppc-tdep.h (struct gdbarch_tdep): Add ev registers.
1766
1767 * rs6000-tdep.c (rs6000_register_virtual_type): Return 64 bit
1768 vector type for ev registers.
1769 (e500_pseudo_register_read): New function.
1770 (e500_pseudo_register_write): New function.
1771 (e500_dwarf2_reg_to_regnum): New function.
1772 (PPC_UISA_NOFP_SPRS): New macro.
1773 (PPC_EV_REGS): New macro.
1774 (PPC_GPRS_PSEUDO_REGS): New macro.
1775 (registers_e500): New register set for e500.
1776 (variants): Add e500 variant.
1777 (rs6000_gdbarch_init): Move setting of pc, sp, fp regnums to
1778 before setting architectural dependent variations. Initialize ev
1779 registers numbers. Add case for e500 architecture. Set the
1780 number of pseudo registers.
1781
1782 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
1783
1784 * rs6000-tdep.c: Clean up comments.
1785
1786 2002-08-20 Andrew Cagney <cagney@redhat.com>
1787
1788 * h8300-tdep.c: Re-indent file.
1789
1790 2002-08-20 Jim Blandy <jimb@redhat.com>
1791
1792 * Makefile.in (LDFLAGS): Allow the configure script to establish a
1793 default for this.
1794
1795 2002-08-20 Keith Seitz <keiths@redhat.com>
1796
1797 * breakpoints.c (watch_command_1): Use internal breakpoint
1798 when setting a watchpoint_scope breakpoint.
1799
1800 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
1801
1802 * gdbtypes.c (build_builtin_type_vec64): Add name to type.
1803 (build_builtin_type_vec64i): Ditto.
1804 (build_builtin_type_vec128): Ditto.
1805 (build_builtin_type_vec128i): Ditto.
1806
1807 2002-08-19 Michael Snyder <msnyder@redhat.com>
1808
1809 * config/mips/tm-mips.h (ELF_MAKE_MSYMBOL_SPECIAL): Delete.
1810 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Change into functions.
1811 (FIX_CALL_DUMMY, PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME,
1812 POP_FRAME, INIT_EXTRA_FRAME_INFO): Delete.
1813 (CALL_DUMMY_START_OFFSET, CALL_DUMMY_BREAKPOINT_OFFSET,
1814 CALL_DUMMY_ADDRESS): Delete.
1815 * mips-tdep.c (mips_elf_make_msymbol_special, mips_msymbol_size,
1816 mips_msymbol_is_special, mips_fix_call_dummy): New functions.
1817 (mips_gdbarch_init): Set elf_make_msymbol_special, pop_frame,
1818 push_dummy_frame, fix_call_dummy, init_extra_frame_info,
1819 push_return_address.
1820 (mips_register_raw_size, mips_eabi_use_struct_convention,
1821 mips_n32n64_use_struct_convention, mips_o32_use_struct_convention,
1822 mips_o32_reg_struct_has_addr, mips_frame_saved_pc, mips_frame_chain,
1823 mips_init_extra_frame_info, mips_eabi_push_arguments,
1824 mips_n32n64_push_arguments, mips_push_return_address,
1825 mips_push_dummy_frame, mips_pop_frame, mips_skip_prologue,
1826 mips_breakpoint_from_pc, mips_call_dummy_address): Make static.
1827
1828 2002-08-19 Michael Snyder <msnyder@redhat.com>
1829
1830 * mips-tdep.c (mips_frame_num_args): New function.
1831 (mips_gdbarch_init): Set frame_chain, frameless_function_invocation,
1832 frame_saved_pc, frame_args_address, frame_locals_address,
1833 frame_num_args, and frame_args_skip.
1834 * config/mips/tm-mips.h (FRAME_CHAIN, FRAMELESS_FUNCTION_INVOCATION,
1835 FRAME_SAVED_PC, FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS,
1836 FRAME_NUM_ARGS, FRAME_ARGS_SKIP): Delete.
1837 * config/mips/tm-mipsv4.h (FRAME_CHAIN_VALID): Delete.
1838
1839 2002-08-20 Michael Snyder <msnyder@redhat.com>
1840
1841 * config/mips/tm-mips.h (STORE_STRUCT_RETURN): Delete.
1842 (EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
1843 * mips-tdep.c (mips_store_struct_return): New function.
1844 (mips_extract_struct_value_address): New function.
1845 (mips_gdbarch_init): Set store_struct_return and
1846 extract_struct_value_address.
1847
1848 2002-08-20 David Carlton <carlton@math.stanford.edu>
1849
1850 * dwarf2read.c (dwarf2_build_psymtabs): Check that
1851 dwarf_line_offset is nonzero before creating dwarf_line_buffer.
1852 (read_file_scope): Check that line_header is nonzero before
1853 decoding macro information.
1854
1855 2002-08-20 Mark Kettenis <kettenis@gnu.org>
1856
1857 * i386-tdep.h (FP_REGNUM_P): Change such that we don't incorrectly
1858 flag the general-purpose registers as floating-point on targets
1859 that don't support the floating-point registers.
1860
1861 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
1862
1863 * rs6000-tdep.c (altivec_register_p): Delete.
1864 (rs6000_do_altivec_registers): Delete.
1865 (rs6000_altivec_registers_info): Delete.
1866 (rs6000_do_registers_info): Delete.
1867 (_initialize_rs6000_tdep): Remove command 'info powerpc altivec'.
1868 (rs6000_gdbarch_init): Remove setting of do_registers_info.
1869
1870 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
1871
1872 * infcmd.c (do_registers_info): Print vector registers in hex
1873 format only.
1874 (print_vector_info): Check that printing registers
1875 makes sense.
1876 (print_float_info): Ditto.
1877
1878 2002-08-20 Andrew Cagney <ac131313@redhat.com>
1879
1880 * mips-tdep.c (mips_gdbarch_init): Update.
1881 (mips_o32_extract_return_value): Rewrite.
1882 (mips_o32_store_return_value): Rewrite.
1883 (mips_o32_xfer_return_value): New function.
1884 (mips_xfer_register): Tweak debug print message. Allow for
1885 buf_offset when dumping the value transfered.
1886
1887 2002-08-20 Andrew Cagney <ac131313@redhat.com>
1888
1889 * config/mips/tm-nbsd.h (MIPS_DEFAULT_ABI): Delete.
1890 * config/mips/tm-linux.h (MIPS_DEFAULT_ABI): Delete.
1891 * config/mips/tm-irix5.h (MIPS_DEFAULT_ABI): Delete.
1892 * config/mips/tm-irix6.h (MIPS_DEFAULT_ABI): Delete.
1893 * mips-tdep.c (mips_gdbarch_init) [MIPS_DEFAULT_ABI]: Delete code.
1894
1895 2002-08-14 Michael Snyder <msnyder@redhat.com>
1896
1897 * mips-tdep.c (mips_frame_chain): Check for call-dummy frames.
1898
1899 2002-08-19 Elena Zannoni <ezannoni@redhat.com>
1900
1901 * rs6000-tdep.c (struct reg): Add field to indicate a pseudo
1902 register.
1903 (P): New macro to define a register as a pseudo register.
1904 (R, R4, R8, R16, FR32, R64, R0): Updated.
1905 (struct variant): Add new fields for number of pseudo registers
1906 and number of total registers.
1907 (tot_num_registers): New macro replacing....
1908 (num_registers): ...deleted macro.
1909 (num_registers): New function.
1910 (num_pseudo_registers): New function.
1911 (variants): Update all variants to intialize new fields correctly.
1912 Postpone initialization of number of pseudo regs and real regs.
1913 (init_variants): New function.
1914 (rs6000_gdbarch_init): Initialize variants. Update calculation of
1915 registers offsets.
1916
1917 2002-08-19 David Carlton <carlton@math.stanford.edu>
1918
1919 * valops.c (search_struct_field): Change error message to treat
1920 return value of 0 from value_static_field as meaning that field is
1921 optimized out.
1922 (value_struct_elt_for_reference): Ditto.
1923 * values.c (value_static_field): Treat an unresolved location the
1924 same as a nonexistent symbol. Fix PR gdb/635.
1925 * gnu-v2-abi.c (gnuv2_value_rtti_type): Eliminate test for being
1926 enclosed. Fix PR gdb/574.
1927 * MAINTAINERS: Add self to Write After Approval list.
1928
1929 2002-08-19 Andrew Cagney <ac131313@redhat.com>
1930
1931 * mips-tdep.c (mips_xfer_register): New function.
1932 (mips_n32n64_extract_return_value): Rewrite.
1933 (mips_gdbarch_init): For N32 and N64, set extract_return_value
1934 instead of deprecated_extract_return_value.
1935
1936 2002-08-19 Elena Zannoni <ezannoni@redhat.com>
1937
1938 * rs6000-tdep.c (TDEP): Delete macro.
1939 (branch_dest): Replace use of TDEP macro with its body.
1940 (rs6000_pop_frame): Ditto.
1941 (rs6000_push_arguments): Ditto.
1942 (rs6000_skip_trampoline_code): Ditto.
1943 (rs6000_frame_saved_pc): Ditto.
1944 (rs6000_frame_chain): Ditto.
1945 (rs6000_register_name): Ditto.
1946 (rs6000_register_byte): Ditto.
1947 (rs6000_register_raw_size): Ditto.
1948 (rs6000_register_virtual_type): Ditto.
1949 (rs6000_register_convertible): Ditto.
1950 (rs6000_convert_from_func_ptr_addr): Ditto.
1951
1952 2002-08-19 Daniel Jacobowitz <drow@mvista.com>
1953
1954 * config/mips/tm-linux.h (REALTIME_LO, REALTIME_HI): Define
1955 conditionally.
1956 (JB_PC, JB_ELEMENT_SIZE): Rename to MIPS_LINUX_JB_PC and
1957 MIPS_LINUX_JB_ELEMENT_SIZE.
1958 * mips-linux-tdep.c (supply_gregset, fill_gregset): Use alloca
1959 for MAX_REGISTER_RAW_SIZE arrays.
1960 (mips_linux_get_longjmp_target): Use MIPS_LINUX_JB_PC and
1961 MIPS_LINUX_JB_ELEMENT_SIZE.
1962
1963 2002-08-19 Pierre Muller <muller@ics.u-strasbg.fr>
1964
1965 * i387-tdep.c (i387_print_float_info): Fix typo in comment.
1966
1967 2002-08-19 Aidan Skinner <aidan@velvet.net>
1968
1969 * Makefile.in (SFILES): Add ada-exp.y ada-lang.c ada-typeprint.c
1970 ada-valprint.c ada-tasks.c.
1971 (YYFILES): Add ada-exp.y.
1972 (ada-exp.tab.c ada-lex.c ada-lang.o): New target.
1973 (ada-tasks.o ada-typeprint.o ada-valprint.o): New target.
1974 (ada-exp.tab.o): New target.
1975
1976 2002-08-18 Andrew Cagney <ac131313@redhat.com>
1977
1978 * regcache.c (regcache_xfer_part): New function.
1979 (regcache_raw_read_part): New function.
1980 (regcache_raw_write_part): New function.
1981 (regcache_cooked_read_part): New function.
1982 (regcache_cooked_write_part): New function.
1983 * regcache.h (regcache_raw_read_part): Declare.
1984 (regcache_raw_write_part): Declare.
1985 (regcache_cooked_read_part): Declare.
1986 (regcache_cooked_write_part): Declare.
1987
1988 2002-08-18 Daniel Jacobowitz <drow@mvista.com>
1989
1990 * remote.c (remote_open_1): Add async_p.
1991 (remote_async_open_1): Delete.
1992 (open_remote_target): Delete.
1993 (remote_open, extended_remote_open): Update calls to remote_open_1.
1994 (remote_async_open, extended_remote_async_open): Call
1995 remote_open_1 instead of remote_async_open_1.
1996
1997 2002-08-19 Mark Kettenis <kettenis@gnu.org>
1998
1999 * blockframe.c: Fix a few coding standard violations.
2000
2001 2002-08-19 Mark Kettenis <kettenis@gnu.org>
2002
2003 * config/i386/nm-i386sco5.h (START_INFERIOR_TRAPS_EXPECTED): Moved
2004 here from ...
2005 * config/i386/tm-i386sco5.h: ... here. File removed.
2006 * config/i386/i386sco5.mt (TM_FILE): Set to tm-i386v4.h.
2007
2008 * config/i386/nm-i386v.h (START_INFERIOR_TRAPS_EXPECTED): New define.
2009 * config/i386/i386aout.mt (TDEPFILES): Add i387-tdep.o
2010 (TM_FILE): Set to tm-i386.h.
2011 * config/i386/i386v.mt (TM_FILE): Set to tm-i386.h.
2012 * config/i386/tm-i386v.h: Remove file.
2013 * config/i386/tm-ptx.h [!SEQUENT_PTX4]: Include "i386/tm-i386.h"
2014 instead of "i386/tm-i386v.h".
2015 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
2016 * config/i386/tm-symmetry: Include "i386/tm-i386.h" instead of
2017 "i386/tm-i386v.h".
2018 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
2019 * config/i386/tm-vxworks.h: Include "i386/tm-i386.h" instead of
2020 "i386/tm-i386.h".
2021
2022 2002-08-18 Mark Kettenis <kettenis@gnu.org>
2023
2024 * config/i386/nm-i386v.h: Add protection against
2025 multiple-inclusion.
2026 (i386_register_u_addr): Remove prototype.
2027 (register_u_addr): New prototype.
2028 (REGISTER_U_ADDR): Redefine accordingly.
2029 * i386v-nat.c: Improve several comments.
2030 (i386_register_u_addr): Change signature and rename to
2031 register_u_addr. Use FP_REGNUM_P. Rewrite slightly to get rid of
2032 ubase variable.
2033
2034 2002-08-18 Andrew Cagney <ac131313@redhat.com>
2035
2036 * config/mips/tm-mips.h (STORE_RETURN_VALUE): Delete macro.
2037 (DEPRECATED_EXTRACT_RETURN_VALUE): Delete macro.
2038 * mips-tdep.c (mips_gdbarch_init): Set store_return_value and
2039 deprecated_extract_return_value.
2040 (mips_o32_push_arguments, mips_o64_push_arguments): Clone and
2041 rename mips_o32o64_push_arguments.
2042 (mips_gdbarch_init): Update.
2043 (mips_extract_return_value): Delete.
2044 (mips_o32_extract_return_value): Clone mips_extract_return_value.
2045 (mips_o64_extract_return_value): Clone mips_extract_return_value.
2046 (mips_eabi_extract_return_value): Clone mips_extract_return_value.
2047 (mips_n32n64_extract_return_value): Clone
2048 mips_extract_return_value.
2049 (mips_store_return_value): Delete.
2050 (mips_o32_store_return_value): Clone mips_store_return_value.
2051 (mips_o64_store_return_value): Clone mips_store_return_value.
2052 (mips_eabi_store_return_value): Clone mips_store_return_value.
2053 (mips_n32n64_store_return_value): Clone mips_store_return_value.
2054
2055 2002-08-18 Aidan Skinner <aidan@velvet.net>
2056
2057 * ada-lang.c: Use gdb_string.h instead of <string.h>.
2058 * ada-typeprint.c: Use gdb_string.h instead of <string.h>.
2059
2060 2002-08-18 Aidan Skinner <aidan@velvet.net>
2061
2062 * ada-lang.c: Run through gdb_indent.sh.
2063 * ada-lang.h: Run through gdb_indent.sh.
2064 * ada-tasks.c: Run through gdb_indent.sh.
2065 * ada-typeprint.c: Run through gdb_indent.sh.
2066 * ada-valprint.c: Run through gdb_indent.sh.
2067
2068 2002-08-18 Andrew Cagney <ac131313@redhat.com>
2069
2070 * osabi.c (gdbarch_init_osabi): Don't complain about an unknown
2071 ABI.
2072
2073 2002-08-18 Mark Kettenis <kettenis@gnu.org>
2074
2075 * i386b-nat.c [FETCH_INFERIOR_REGISTERS]: Remove dead code.
2076
2077 * config/i386/nm-i386bsd.h (FLOAT_INFO): Remove redundant #undef.
2078 * i386b-nat.c [FLOAT_INFO]: Remove dead code.
2079
2080 * i386-tdep.c (i386_do_pop_frame, i386_store_return_value): Call
2081 write_register_gen instead of write_register_bytes.
2082
2083 * NEWS: Mention that the i[3456]-*mach3*, i[3456]-*-mach* and
2084 i[3456]-*-osf1mk* configurations have been made obsolete.
2085 * configure.host: Make i[3456]86-*-mach3*, i[3456]86-*mach* and
2086 i[3456]86-*-osf1mk* hosts obsolete.
2087 * confighure.tgt: Make i[3456]86-*-mach3*, i[3456]86-*-osf1mk*
2088 targets obsolete.
2089 * config/i386/i386mach.mh, config/i386/nm-i386mach.h,
2090 config/i386/xm-i386mach.h, config/i386/i386m3.mh,
2091 config/i386/i386m3.mt, config/i386/nm-m3.h,
2092 config/i386/tm-i386m3.h, config/i386/xm-i386m3.h,
2093 config/i386/i386mk.mh, config/i386/i386mk.mt,
2094 config/i386/tm-i386mk.h, config/i386/xm-i386mk.h: Make files
2095 obsolete.
2096 * i386mach-nat.c, i386m3-nat.c: Make files obsolete.
2097 * Makefile.in (ALLDEPFILES): Remove i386mach.c i386m3-nat.c
2098 (i386mach-nat.o, i386m3-nat.o):Make targets obsolete.
2099
2100 2002-08-18 Andrew Cagney <ac131313@redhat.com>
2101
2102 * config/pa/tm-hppa.h (hppa_store_return_value): Declare.
2103 (hppa_value_returned_from_stack): Declare.
2104 (hppa_extract_return_value): Declare.
2105 * config/pa/hppa.mt: New file.
2106 * configure.tgt: Recognize hppa*-*-*.
2107 * MAINTAINERS: Change HPPA target to hppa-elf. Still broken.
2108
2109 2002-08-18 Mark Kettenis <kettenis@gnu.org>
2110
2111 * i386-sol2-tdep.c (_initialize_i386_sol2_tdep): Fix typo in
2112 comment.
2113
2114 2002-08-17 Mark Kettenis <kettenis@gnu.org>
2115
2116 * top.c (gdb_rl_operate_and_get_next): Make sure
2117 operate-and-get-next functions correctly even when the history
2118 list is completely filled.
2119
2120 2002-08-18 Andrew Cagney <ac131313@redhat.com>
2121
2122 * MAINTAINERS (Target Instruction Set Architectures): Rename
2123 Target/Architectures. Replace vax-dec-vms5.5 with vax-netbsd.
2124 Replace s390-linux with s390-linux-gnu. Remove i386-aout,
2125 mcore-pe, mips64-elf, sparc64-elf. Remove i586-pc-msdosdjgpp,
2126 already listed under Host/Native.
2127
2128 * configure.tgt: Combine i[3456]86-*-coff*, i[3456]86-*-elf*,
2129 i[3456]86-*-pe*, and i[3456]86-*-aout* into i[3456]86-*-*. Add
2130 mips*-*-*.
2131
2132 2002-08-17 Andrew Cagney <ac131313@redhat.com>
2133
2134 * config/ia64/ia64.mt: New file.
2135 * config/alpha/alpha.mt: New file.
2136 * MAINTAINERS: Change the alpha target to alpha-elf and IA-64 to
2137 ia64-linux-gnu. Mention that ia64-elf is broken.
2138 * configure.tgt: Add alpha*-*-* and ia64*-*-* patterns.
2139
2140 2002-08-17 Mark Kettenis <kettenis@elgar.kettenis.dyndns.org>
2141
2142 * i386-tdep.c (i386_svr4_init_abi, i386_nw_init_abi): Use
2143 generic_func_frame_valid instead of func_frame_valid.
2144
2145 2002-08-16 Joel Brobecker <brobecker@gnat.com>
2146
2147 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Unfortunately,
2148 procfs appears to be broken when debugging on multi-processor
2149 machines. So enable software single stepping in order to avoid
2150 using the procfs interface to do next/step operations, using
2151 internal breakpoints instead.
2152
2153 * infrun.c (handle_inferior_event): Readjust the stop_pc by
2154 DECR_PC_AFTER_BREAK when hitting a single step breakpoint, to
2155 make this pc address equal to the value it would have if the
2156 system stepping capability was used. Also set a new flag used
2157 to ensure that we don't readjust the PC one more time later.
2158
2159 * breakpoint.c (bpstat_stop_status): Do not adjust the PC
2160 address by DECR_PC_AFTER_BREAK when software single step is
2161 in use for this architecture, as this has already been taken
2162 care of in handle_inferior_event().
2163
2164 2002-08-16 Joel Brobecker <brobecker@gnat.com>
2165
2166 * infrun.c (handle_inferior_event): Minor reformatting, to make
2167 a rather long condition expression easier to read.
2168
2169 2002-08-16 Andrew Cagney <ac131313@redhat.com>
2170
2171 * Makefile.in (gdbtk.o): Move to end of file.
2172 (gdbtk-bp.o, gdbtk-cmds.o): Ditto.
2173 (gdbtk-hooks.o, gdbtk-register.o): Ditto.
2174 (gdbtk-stack.o, gdbtk-varobj.o): Ditto.
2175 (gdbtk-wrapper.o, gdbres.o): Ditto.
2176
2177 2002-08-16 Andrew Cagney <ac131313@redhat.com>
2178
2179 * Makefile.in (copying.o): Separate out compile rule.
2180 (hpux-thread.o, procfs.o, signals.o): Ditto.
2181 (v850ice.o, z8k-tdep.o): Ditto.
2182 (tui-file.o): Move to TUI section.
2183 (xdr_ptrace.o, xdr_rdb.o, xdr_ld.o): Move to separate section.
2184 (nindy.o, Onindy.o, ttyflush.o): Move to separate section.
2185
2186 2002-08-16 Joel Brobecker <brobecker@gnat.com>
2187
2188 * i386-tdep.c (i386_pe_skip_trampoline_code): renamed from
2189 skip_trampoline_code, for better namespace-proofing.
2190
2191 * i386-tdep.h (i386_pe_skip_trampoline_code): Add declaration.
2192
2193 2002-08-16 Joel Brobecker <brobecker@gnat.com>
2194
2195 * config/i386/tm-cygwin.h: Remove some "#if 0"'ed macros.
2196
2197 2002-08-16 Joel Brobecker <brobecker@gnat.com>
2198
2199 * infrun.c (handle_inferior_event): When receiving a SIGTRAP
2200 signal, check whether we hit a breakpoint before checking for a
2201 single step breakpoint. Otherwise, GDB fails to notice that a
2202 breakpoint has been hit when stepping onto a breakpoint.
2203
2204 2002-08-16 Keith Seitz <keiths@redhat.com>
2205
2206 * gdb-events.sh (clear_gdb_event_hooks): New function.
2207 * gdb-events.c: Regenerate.
2208 * gdb-events.h: Regenerate.
2209
2210 2002-08-16 Andrew Cagney <ac131313@redhat.com>
2211
2212 * breakpoint.c (bpstat_stop_status): Rename not_a_breakpoint to
2213 not_a_sw_breakpoint.
2214 * breakpoint.h (bpstat_stop_status): Add parameter names.
2215
2216 2002-08-16 Grace Sainsbury <graces@redhat.com>
2217
2218 * remote.c (remote_insert_hw_breakpoint)
2219 (remote_remove_hw_breakpoint): Fix calculation of length field
2220 for Z-packet.
2221
2222 2002-08-15 Michael Snyder <msnyder@redhat.com>
2223
2224 * irix5-nat.c (supply_gregset): Allocate plenty-big buffer
2225 (32 bytes) instead of using MAX_REGISTER_RAW_SIZE.
2226 (supply_fpregset): Ditto.
2227
2228 * config/mips/tm-mips.h (REGISTER_CONVERT_TO_VIRTUAL,
2229 REGISTER_CONVERT_TO_RAW, REGISTER_CONVERTIBLE,
2230 MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE): Delete.
2231 (TARGET_READ_SP): Delete.
2232 (DO_REGISTERS_INFO): Delete.
2233 (FUNCTION_START_OFFSET, IN_SIGTRAMP, REGISTER_VIRTUAL_SIZE):
2234 Delete.
2235 (REGISTER_CONVERT_FROM_TYPE, REGISTER_CONVERT_TO_TYPE): Convert
2236 from macros to functions.
2237
2238 * mips-tdep.c (mips_gdbarch_init): Set the above in the gdbarch.
2239 (mips_register_convertible, mips_register_convert_to_virtual,
2240 mips_register_convert_to_raw): Make static.
2241 (mips_read_sp): New function.
2242 (mips_gdbarch_init): Set gdbarch read_sp to mips_read_sp.
2243 (mips_do_registers_info): Make static.
2244 (mips_gdbarch_init): Insert mips_do_registers_info into gdbarch.
2245 (in_sigtramp): Make static, rename to mips_pc_in_sigtramp.
2246 (mips_register_convert_from_type, mips_register_convert_to_type):
2247 New functions.
2248 (mips_gdbarch_init): Set up function_start_offset,
2249 register_virtual_size, pc_in_sigtramp.
2250
2251 2002-08-15 Andrew Cagney <ac131313@redhat.com>
2252
2253 * infcmd.c (vector_info): New function.
2254 (_initialize_infcmd): Add command "info vector".
2255 (print_vector_info): New function.
2256
2257 * gdbarch.sh (PRINT_VECTOR_INFO): New method
2258 * gdbarch.h, gdbarch.c: Regenerate.
2259
2260 2002-08-15 Andrew Cagney <ac131313@redhat.com>
2261
2262 * infcmd.c (do_registers_info): Rename parameter ``fpregs'' to
2263 ``print_all''. Only print vector registers when ``print_all''.
2264
2265 2002-08-15 Andrew Cagney <ac131313@redhat.com>
2266
2267 * i387-tdep.h (i387_print_float_info): Add `args' parameter.
2268 * i387-tdep.c (i387_print_float_info): Add `args' parameter.
2269
2270 * gdbarch.sh (PRINT_FLOAT_INFO): Change to a predicate method.
2271 Add `args' parameter.
2272 * gdbarch.h, gdbarch.c: Regenerate.
2273
2274 * arm-tdep.c (arm_print_float_info): Add the parameter `args'.
2275
2276 * infcmd.c (float_info): Call print_float_info.
2277 (print_float_info): New function. By default, print the
2278 floating-point registers.
2279
2280 * arch-utils.h (default_print_float_info): Delete declaration.
2281 * arch-utils.c (default_print_float_info): Delete function.
2282
2283 2002-08-16 Mark Kettenis <kettenis@gnu.org>
2284
2285 * config/i386/nm-i386v.h (FLOAT_INFO): Remove already commented
2286 out define.
2287
2288 * i387-tdep.c (i387_print_float_info): Add comment about ignoring
2289 FRAME.
2290
2291 * NEWS: Mention that the i[3456]-*-aix target has been made obsolete.
2292 * configure.host: Make i[3456]86-*-aix host obsolete.
2293 * configure.tgt: Make i[3456]86-*-aix target obsolete.
2294 * config/i386/i386aix.mh, config/i386/i386aix.mt,
2295 config/i386/nm-i386aix.h, condig/i386/tm-i386aix.h,
2296 config/i386/xm-i386aix.h: Make files obsolete.
2297 * i386aix-nat.c: Make file obsolete.
2298 * Makefile.in (ALLDEPFILES): Remove i386aix-nat.c.
2299 (i386aix-nat.o): Make target obsolete.
2300
2301 * config/i386/nm-gnu.h: Removed.
2302 * config/i386/nm-i386gnu.h: New file.
2303 (THREAD_STATE_FLAVOR, THREAD_STATE_SIZE,
2304 THREAD_STATE_SET_TRACED, THREAD_STATE_CLEAR_STATE, ATTACH_DETACH):
2305 Moved here from ...
2306 * config/i386/tm-i386gnu.h: ... here. Removed.
2307 * config/i386/xm-i386gnu.h: Removed.
2308 * config/i386/i386gnu.mh (XM_FILE): Set to xm-i386.h.
2309 (NAT_FILE): Set to nm-i386gnu.h.
2310 * config/i386/i386gnu.mt (TDEPFILES): Add i386gnu-tdep.o.
2311 * i386-tdep.c: New file.
2312 * Makefile.in (ALLDEPFILES): Add i386gnu-nat.c and i386gnu-tdep.c.
2313 (i386gnu-tdep.o): Specify dependencies.
2314
2315 2002-08-15 Mark Kettenis <kettenis@gnu.org>
2316
2317 * config/i386/tm-i386sco5.h: Include "i386/tm-i386v4.h" instead of
2318 "i386/tm-i386.h", "i386/tm-i386v.h" and "config/tm-sysv.h".
2319 Adjust a few comments to reflect reality a bit closer.
2320 (KERNEL_U_SIZE, TARGET_HAS_HARDWARE_WATCHPOINTS,
2321 TARGET_CAN_USE_HARDWARE_WATCHPOINT, HAVE_CONTINUEABLE_WATCHPOINT,
2322 HAVE_STEPPABLE_WATCHPOINT, STOPPED_BY_WATCHPOINT,
2323 target_insert_watchpoint, target_remove_watchpoint):
2324 Move defines to ...
2325 * config/i386/nm-i386sco5.h: ... here.
2326 (kernel_u_size): Add prototype. Improve a few comments and add
2327 protection against multiple inclusion.
2328
2329 * config/i386/nm-i386sco.h (FLOAT_INFO): Remove already commented
2330 out define.
2331
2332 * uw-thread.c (SP_ARG0): Define if not already defined.
2333 * config/i386/tm-i386.h (SO_ARG0): Remove define.
2334
2335 * config/i386/tm-i386v4.h (HAVE_I387_REGS): Remove define.
2336
2337 * config/i386/tm-i386.h: Don't include "regcache.h".
2338
2339 * i387-tdep.h (i387_print_float_info): New prototype.
2340 * i387-tdep.c (print_i387_value, print_i387_ext,
2341 print_i387_status_word, print_i387_control_word): Add `struct
2342 ui_file *' argument and use it for output.
2343 (i387_print_float_info): Renamed from i387_float_info. Add
2344 `struct gdbarch *' and `struct ui_file *' arguments and use the
2345 latter for output.
2346 * i386-tdep.c: Include "i387-tdep.h".
2347 (i386_gdbarch_init): Set print_float_info.
2348 * config/i386/tm-i386.h (i387_float_info): Remove prototype.
2349 (FLOAT_INFO): Remove define.
2350
2351 2002-08-13 Michael Snyder <msnyder@redhat.com>
2352
2353 * mips-tdep.c (mips_push_arguments): Rename to
2354 mips_eabi_push_arguments, and tune for EABI.
2355 (MIPS_REGS_HAVE_HOME_P): Delete.
2356 (struct gdbarch_tdep): Remove mips_regs_have_home_p field.
2357 (mips_gdbarch_init): Set gdbarch push_arguments for eabi.
2358 Delete references to mips_regs_have_home_p.
2359
2360 2002-08-14 Keith Seitz <keiths@redhat.com>
2361
2362 * Makefile.in (install-gdbtk): Create insight plugin directory.
2363 Install plugins.tcl file.
2364
2365 2002-08-14 Keith Seitz <keiths@redhat.com>
2366
2367 * configure.in: Move SUBDIRS to near top of the file so that
2368 --enable options may add things to it.
2369 If gdbtk is enabled, add gdbtk directory to SUBDIRS and configdirs.
2370 * configure: Regenerate.
2371
2372 2002-08-13 Michael Snyder <msnyder@redhat.com>
2373
2374 * mips-tdep.c (mips_o32o64_push_arguments): New function,
2375 cloned from mips_push_arguments, tuned for o32/o64 ABI.
2376 (mips_gdbarch_init): Set gdbarch_push_arguments to new func.
2377
2378 2002-08-13 Andrew Cagney <ac131313@redhat.com>
2379
2380 * vax-tdep.c (vax_get_saved_register): Delete function.
2381 (vax_gdbarch_init): Update.
2382 * ns32k-tdep.c (ns32k_get_saved_register): Delete function.
2383 (ns32k_gdbarch_init): Update.
2384 * alpha-tdep.c (alpha_get_saved_register): Delete function.
2385 (alpha_gdbarch_init): Update.
2386
2387 2002-08-13 Andrew Cagney <cagney@redhat.com>
2388
2389 * regcache.c (init_regcache_descr): Overallocate the
2390 raw_register_valid_p array including space for NUM_PSEUDO_REGS.
2391 (registers_changed): Replace NUM_REGS+NUM_PSEUDO_REGS with
2392 nr_raw_registers.
2393 (set_register_cached): Add range checking assertions. Use
2394 current_regcache.
2395
2396 2002-08-13 Mark Kettenis <kettenis@gnu.org>
2397
2398 * i386-tdep.c (i386_stab_reg_to_regnum): Return correct register
2399 numbers for MMX registers.
2400
2401 2002-08-13 Andrew Cagney <cagney@redhat.com>
2402
2403 * i386-tdep.c (i386_gdbarch_init): Use
2404 generic_unwind_get_saved_register.
2405
2406 2002-08-13 Kevin Buettner <kevinb@redhat.com>
2407
2408 * procfs.c (procfs_can_use_hw_breakpoint): New function.
2409 (init_procfs_ops): Define ``to_can_use_hw_breakpoint'' for procfs
2410 target vector.
2411 * config/mips/nm-irix5.h (TARGET_CAN_USE_HARDWARE_WATCHPOINT):
2412 Delete. Add comment regarding this now-deleted target method.
2413
2414 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
2415
2416 * m68hc11-tdep.c (M68HC12_NUM_PSEUDO_REGS): New define.
2417 (M68HC12_HARD_PC_REGNUM): Define specific PC for 68HC12 (pseudo reg).
2418 (m68hc11_pseudo_register_read): Compute the 68HC12 PC using the
2419 real PC and the page number (if it's within the memory bank window).
2420 (m68hc11_pseudo_register_write): Likewise when saving.
2421 (m68hc11_register_name): Name the virtual pc 'pc' and the real one ppc.
2422 (m68hc11_register_virtual_type): Return uint32 for virtual pc.
2423 (m68hc11_register_raw_size): And use 32-bit for it.
2424 (m68hc11_gdbarch_init): Use 32-bit address for 68HC12 if the
2425 16K memory bank is used by the prog; also use the virtual pc.
2426
2427 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
2428
2429 * m68hc11-tdep.c (m68hc11_elf_make_msymbol_special): New function.
2430 (m68hc11_gdbarch_init): Install it in gdbarch.
2431 (MSYMBOL_SET_RTC, MSYMBOL_SET_RTI): New to set symbol specific flags.
2432 (MSYMBOL_IS_RTC, MSYMBOL_IS_RTI): New to test these flags.
2433 (MSYMBOL_SIZE): New for documentation.
2434 (insn_return_kind): Enum to specify how a function returns.
2435 (frame_extra_info): Cleanup and record the return mode.
2436 (gdbarch_tdep, USE_PAGE_REGISTER): New to control the use of page
2437 register in address computation.
2438 (m68hc11_get_return_insn): New to obtain the return instruction used
2439 by the function.
2440 (m68hc11_frame_init_saved_regs): Take into account the return
2441 instruction used by the function for far and interrupt functions.
2442 (m68hc11_init_extra_frame_info): Take into account page register.
2443 (m68hc11_frame_args_address): Adjust according to the return mode.
2444 (show_regs): Print page register only when it's used.
2445
2446 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
2447
2448 * m68hc11-tdep.c (HARD_PAGE_REGNUM): Define for 68HC12 page register.
2449 (M68HC11_LAST_HARD_REG, m68hc11_register_names): Update.
2450 (m68hc11_register_virtual_type): Return a 8-bit type for 8-bit
2451 registers.
2452 (m68hc11_register_raw_size): Likewise.
2453
2454 2002-08-13 Andrew Cagney <cagney@redhat.com>
2455
2456 * i386-tdep.c (i386_register_name): Handle mmx registers.
2457 (mmx_regnum_p): New function.
2458 (i386_mmx_names): New array.
2459 (mmx_num_regs): New variable.
2460 (i386_pseudo_register_read): New function.
2461 (i386_pseudo_register_write): New function.
2462 (mmx_regnum_to_fp_regnum): New function. Code from Fernando Nasser.
2463
2464 * regcache.c (regcache_raw_read_unsigned): New function.
2465 (regcache_raw_read_signed): New function.
2466 * regcache.h (regcache_raw_read_unsigned): Declare.
2467 (regcache_raw_read_signed): Declare.
2468
2469 2002-08-13 Andrew Cagney <cagney@redhat.com>
2470
2471 * regcache.c (regcache_raw_read_as_address): Delete function.
2472 (regcache_cooked_read_signed): New function.
2473 (regcache_cooked_read_unsigned): New function.
2474 * regcache.h (regcache_cooked_read_signed): Declare.
2475 (regcache_cooked_read_unsigned): Declare.
2476 (regcache_raw_read_as_address): Delete declaration.
2477
2478 * blockframe.c (generic_read_register_dummy): Use
2479 regcache_cooked_read_unsigned.
2480 * i386-tdep.c (i386_extract_struct_value_address): Use
2481 regcache_cooked_read_unsigned.
2482
2483 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
2484
2485 * m68hc11-tdep.c (m68hc11_gdbarch_init): Set int, double and long
2486 double sizes according to ELF ABI flags.
2487 (gdbarch_tdep): Record elf_flags.
2488
2489 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
2490
2491 * m68hc11-tdep.c (M6812_OP_PSHX, M6812_OP_PSHY): New defines.
2492 (m6812_prolog): They can appear in 68HC12 function prologue.
2493 (m68hc11_frame_chain): Cleanup.
2494
2495 2002-08-12 Andrew Cagney <cagney@redhat.com>
2496
2497 * i386-tdep.h (i386_register_byte, i386_register_raw_size): Delete
2498 declarations.
2499 * i386-linux-tdep.c (i386_linux_register_byte): Delete function.
2500 (i386_linux_register_raw_size): Delete function.
2501 (i386_linux_init_abi): Update.
2502 * i386-tdep.c (i386_register_raw_size): Delete function.
2503 (i386_register_byte): Delete function.
2504 (i386_gdbarch_init): Update.
2505 (i386_register_size): Delete array.
2506 (i386_register_offset): Delete array.
2507
2508 * config/i386/tm-symmetry.h (REGISTER_BYTE): Delete macro.
2509 (REGISTER_RAW_SIZE): Delete macro.
2510 * config/i386/tm-ptx.h (REGISTER_RAW_SIZE): Delete macro.
2511 (REGISTER_BYTE): Delete macro.
2512
2513 2002-08-11 Aidan Skinner <aidan@velvet.net>
2514
2515 * ada-lang.c (ada_lookup_partial_symbol)
2516 (to_fixed_variant_branch_type) (find_line_in_linetable): Fix
2517 prototype names so that grep ^func works properly.
2518
2519 * ada-lang.c (ada_array_element_type)
2520 (ada_lookup_partial_symbol): Fix typos in parameter list.
2521
2522 * ada-valprint.c (val_print_packed_array_elements) (ada_val_print_1):
2523 Fix prototype names so that grep ^func works properly.
2524
2525 2002-08-10 Andrew Cagney <cagney@redhat.com>
2526 Elena Zannoni <ezannoni@redhat.com>
2527 Martin M. Hunt <hunt@redhat.com>
2528
2529 * gdbtypes.c (build_builtin_type_vec128): Set the vector bit.
2530 (build_builtin_type_vec128i): Set the vector bit.
2531 * gdbtypes.h (builtin_type_vec64, builtin_type_vec64i): Declare.
2532 * gdbtypes.c (builtin_type_vec64, builtin_type_vec64i): Define.
2533 (build_builtin_type_vec64): New function.
2534 (build_builtin_type_vec64i): New function.
2535 (build_gdbtypes): Initialize builtin_type_vec64 and
2536 builtin_type_vec64i.
2537
2538 2002-08-09 Andrew Cagney <cagney@redhat.com>
2539
2540 * regcache.c (regcache_dump): Compare the register offset
2541 with REGISTER_BYTE.
2542 * arch-utils.c (generic_register_byte): New function.
2543 * arch-utils.h (generic_register_byte): Declare.
2544 * gdbarch.sh (REGISTER_BYTE): Default to generic_register_byte.
2545 * gdbarch.h, gdbarch.c: Regenerate.
2546
2547 2002-08-09 Andrew Cagney <cagney@redhat.com>
2548
2549 * regcache.c: Include "gdbcmd.h"
2550 (_initialize_regcache): Add commands "maintenance print
2551 registers", "maintenance print raw-registers" and "maintenance
2552 print cooked-registers".
2553 (enum regcache_dump_what): Define.
2554 (dump_endian_bytes): New function.
2555 (regcache_dump): New function.
2556 (regcache_print): New function.
2557 (maintenance_print_registers): New function.
2558 (maintenance_print_raw_registers): New function.
2559 (maintenance_print_cooked_registers): New function.
2560 * Makefile.in (regcache.o): Update dependencies.
2561
2562 2002-08-09 Michael Snyder <msnyder@redhat.com>
2563
2564 * mips-tdep.c (ROUND_DOWN, ROUND_UP): Move to global scope.
2565 (mips_push_arguments): Correct some comments. Use paddr_nz
2566 for printing addresses in debug output. Replace static
2567 allocation using MAX_REGISTER_RAW_SIZE with alloca.
2568 (mips_n32n64_push_arguments): New function, cloned from
2569 mips_push_arguments and tuned for the n32/n64 ABI.
2570 (mips_push_register): Buffer needs dynamic allocation.
2571 (mips_print_register): Ditto.
2572 (do_gp_register_row): Ditto.
2573 (mips_store_return_value): Ditto.
2574 (mips_gdbarch_init): Set gdbarch_push_arguments per ABI.
2575
2576 2002-08-09 Don Howard <dhoward@redhat.com>
2577
2578 * memattr.c (mem_info_command): Print special case of upper bound
2579 as max CORE_ADDR + 1.
2580
2581 2002-08-08 Michael Snyder <msnyder@redhat.com>
2582
2583 * mips-tdep.c (mips_n32n64_use_struct_convention): N32 only
2584 returns structs by ref if they're too big to fit in two registers.
2585
2586 2002-08-09 Kevin Buettner <kevinb@redhat.com>
2587
2588 * mips-tdep.c (mips_init_extra_frame_info): Initialize SP_REGNUM's
2589 saved regs value.
2590 (read_next_frame_reg): Call FRAME_INIT_SAVED_REGS instead of
2591 mips_find_saved_regs().
2592 (mips_pop_frame): Likewise.
2593
2594 2002-08-09 Kevin Buettner <kevinb@redhat.com>
2595
2596 * blockframe.c (frame_saved_regs_register_unwind): Revise
2597 PC_IN_CALL_DUMMY assertion to only apply when generic dummy
2598 frames are in use.
2599
2600 2002-08-09 Grace Sainsbury <graces@redhat.com>
2601
2602 * remote.c: (remote_wait, remote_async_wait): Add check for awatch
2603 T-packets; the 'a' is not taken as a register number.
2604 (remote_check_watch_resources, remote_stopped_by_watchpoint)
2605 (remote_stopped_data_address): New functions; add to target
2606 vector.
2607 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Change
2608 prototypes to match other implementations of this
2609 function. replace integer argument with pointer -- the length
2610 field in the Z-packet is the length of what is pointed to or 1 if
2611 pointer is null. Add to target vector.
2612 (remote_insert_watchpoint, remote_remove_watchpoint): Add to
2613 target vector.
2614
2615 From Mark Salter:
2616 * remote.c (remote_wait): Add support to extract optional
2617 watchpoint information from T-packet. Ignore unrecognized
2618 optional info in T-packet.
2619 (remote_async_wait): Ditto.
2620
2621 2002-08-09 Corinna Vinschen <vinschen@redhat.com>
2622
2623 * cli/cli-dump.c: Change fopen modes to use binary open modes
2624 as defined in include/fopen-bin.h throughout.
2625
2626 2002-08-08 Michael Snyder <msnyder@redhat.com>
2627
2628 * mips-tdep.c: Minor whitespace and indentation clean-ups.
2629
2630 2002-08-08 Kevin Buettner <kevinb@redhat.com>
2631
2632 * doublest.c (store_floating): Avoid floatformat_from_doublest()
2633 assertion failure by returning early after a warning.
2634
2635 2002-08-08 Kevin Buettner <kevinb@redhat.com>
2636
2637 * mips-tdep.c (mips_find_saved_regs): Make static.
2638 (mips_frame_init_saved_regs): New function.
2639 (mips_gdbarch_init): Setup FRAME_INIT_SAVED_REGS method.
2640 * config/mips/tm-mips.h (FRAME_INIT_SAVED_REGS): Delete macro.
2641 (mips_find_saved_regs): Delete declaration.
2642
2643 2002-08-08 Grace Sainsbury <graces@redhat.com>
2644
2645 * remote.c (remote_wait, remote_async_wait): Change
2646 thread_num from int to ULONGEST.
2647 (unpack_varlen_hex): Change result parameter from
2648 int * to ULONGEST *.
2649
2650 2002-08-08 Andrew Cagney <ac131313@redhat.com>
2651
2652 * configure.tgt: Replace powerpc-*-sysv*, powerpc-*-elf*,
2653 powerpcle-*-eabi*, powerpcle-*-sysv* and powerpcle-*-elf* with
2654 powerpc*-*-*.
2655 * MAINTAINERS: Remove redundant rs6000-ibm-aix4.1 target.
2656
2657 2002-08-08 Andrew Cagney <cagney@redhat.com>
2658
2659 * gcore.c (override_derive_stack_segment): Delete variable.
2660 (preempt_derive_stack_segment): Delete function.
2661 (derive_stack_segment): Delete function.
2662 (default_derive_stack_segment): Renamed to derive_stack_segment.
2663 (override_derive_heap_segment): Delete variable.
2664 (preempt_derive_heap_segment): Delete function.
2665 (derive_heap_segment): Delete function.
2666 (default_derive_heap_segment): Rename to derive_heap_segment.
2667
2668 2002-08-06 Michael Snyder <msnyder@redhat.com>
2669
2670 * config/mips/tm-mips.h: Remove #define USE_STRUCT_CONVENTION.
2671 * mips-tdep.c (mips_EABI_use_struct_convention,
2672 mips_OABI_use_struct_convention, mips_NABI_use_struct_convention):
2673 New functions. (mips_use_struct_convention): Delete.
2674 (mips_gdbarch_init): set use_gdbarch_convention.
2675
2676 2002-08-06 Michael Snyder <msnyder@redhat.com>
2677
2678 * mips-tdep.c: gdbarch-ify reg_struct_has_addr.
2679 (mips_eabi_reg_struct_has_addr, mips_n32n64_reg_struct_has_addr,
2680 mips_o32_reg_struct_has_addr): New functions.
2681 (mips_gdbarch_init): Set gdbarch reg_struct_has_addr.
2682
2683 2002-08-07 Andrew Cagney <ac131313@redhat.com>
2684
2685 * regcache.c (pseudo_register): Delete function.
2686 (fetch_register): Delete function.
2687 (store_register): Delete function.
2688 (regcache_raw_read, legacy_read_register_gen): Use
2689 target_fetch_registers instead of fetch_register.
2690 (legacy_write_register_gen, regcache_raw_write): Use
2691 target_store_register instead of store_register.
2692 (write_register_bytes): Ditto.
2693
2694 * gdbarch.sh (FETCH_PSEUDO_REGISTER): Delete.
2695 (STORE_PSEUDO_REGISTER): Delete.
2696 * gdbarch.h, gdbarch.c: Regenerate.
2697
2698 2002-08-06 Corinna Vinschen <vinschen@redhat.com>
2699
2700 * cli/cli-dump.c (add_dump_command): Explicitely use "b" flag to
2701 write dump file binary.
2702
2703 2002-08-05 Michael Snyder <msnyder@redhat.com>
2704
2705 * mips-tdep.c (mips_find_saved_regs): Adjust stack according
2706 to MIPS_SAVED_REGSIZE, not GDB_TARGET_IS_MIPS64. Enhance comment.
2707 (mips_gdbarch_init): Set N32 target to be mips64.
2708
2709 2002-08-06 Kevin Buettner <kevinb@redhat.com>
2710
2711 * frame.c (find_saved_register): Break out of loop once saved
2712 register address is found. Don't mention sparc in loop comment
2713 anymore.
2714
2715 2002-08-06 Kevin Buettner <kevinb@redhat.com>
2716
2717 * mips-tdep.c (mips_gdbarch_init): For the N32 ABI, set
2718 mips_default_saved_regsize to 8.
2719
2720 2002-08-06 Andrew Cagney <ac131313@redhat.com>
2721
2722 * gcore.c: Do not include <sys/procfs.h>.
2723 * Makefile.in (gcore.o): Update dependencies.
2724
2725 2002-08-06 Andrew Cagney <cagney@redhat.com>
2726
2727 * configure.tgt: Make arc-*-* obsolete.
2728 * NEWS: Mention that arc-*-* has been identifed as obsolete.
2729 * MAINTAINERS: Make arc-elf obsolete.
2730 * arc-tdep.c: Make file obsolete.
2731 * config/arc/arc.mt: Ditto.
2732 * config/arc/tm-arc.h: Ditto.
2733
2734 2002-08-05 Theodore A. Roth <troth@verinet.com>
2735
2736 * avr-tdep.c (avr_skip_prologue): Fix to return the correct pc.
2737
2738 2002-08-05 Andrew Cagney <ac131313@redhat.com>
2739
2740 * mcore-tdep.c (mcore_gdbarch_init): Use
2741 generic_unwind_get_saved_register instead of
2742 generic_get_saved_register.
2743 * v850-tdep.c (v850_gdbarch_init): Ditto.
2744 * frv-tdep.c (frv_gdbarch_init): Ditto.
2745 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
2746 * s390-tdep.c (s390_gdbarch_init): Ditto.
2747 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
2748 * config/mn10200/tm-mn10200.h (GET_SAVED_REGISTER): Ditto.
2749 * config/h8300/tm-h8300.h (GET_SAVED_REGISTER): Ditto.
2750
2751 2002-08-05 Joel Brobecker <brobecker@gnat.com>
2752
2753 * objfiles.h: Add missing #include "symfile.h"
2754
2755 * Makefile.in (objfiles_h): Add dependency on symfile.h and dependents.
2756
2757 2002-08-04 Andrew Cagney <ac131313@redhat.com>
2758
2759 From 2002-08-01 david carlton <carlton@math.stanford.edu>:
2760 * hpread.c (hpread_read_struct_type): Deleted superfluous setting
2761 of FIELD_BITSIZE.
2762
2763 2002-08-04 Daniel Jacobowitz <drow@mvista.com>
2764
2765 * NEWS: Cleanup and nitpick.
2766
2767 2002-08-03 Andrew Cagney <ac131313@redhat.com>
2768
2769 * NEWS: Cleanup. Use *-linux*-gnu*. Only use `*' for headings.
2770
2771 2002-08-03 Andrew Cagney <ac131313@redhat.com>
2772
2773 * Makefile.in (gdbtk-bp.o): Update dependencies.
2774 (gdbtk-register.o): Ditto.
2775 (gdbtk-varobj.o): Ditto.
2776
2777 2002-08-03 Andrew Cagney <cagney@redhat.com>
2778
2779 * m68hc11-tdep.c (m68hc11_pseudo_register_read): Replace
2780 m68hc11_fetch_pseudo_register.
2781 (m68hc11_pseudo_register_write): Replace
2782 m68hc11_store_pseudo_register.
2783 (m68hc11_gdbarch_init): Update.
2784
2785 Fri Aug 2 15:53:50 2002 Andrew Cagney <cagney@redhat.com>
2786
2787 * gdbarch.sh: Include "gdb_string.h".
2788 * gdbarch.c: Regenerate.
2789
2790 * regcache.c: Include "gdb_string.h".
2791 * ax-general.c: Ditto.
2792 * varobj.c: Ditto.
2793 * std-regs.c: Ditto.
2794 * fbsd-proc.c: Ditto.
2795 * thread.c: Ditto.
2796
2797 * Makefile.in (regcache.o): Update dependencies.
2798 (thread.o, gdbarch.o): Ditto.
2799 (ax-general.o, gdbarch.o): Ditto.
2800 (varobj.o, std-regs.o): Ditto.
2801 (fbsd-proc.o): Specify dependencies.
2802
2803 2002-08-02 Andrew Cagney <cagney@redhat.com>
2804
2805 * regcache.c (regcache_cooked_read): Rename rawnum parameter to
2806 regnum.
2807 (regcache_cooked_write): Ditto.
2808
2809 2002-08-02 Andrew Cagney <ac131313@redhat.com>
2810
2811 * regcache.c (regcache_cooked_read): New function.
2812 (regcache_cooked_write): New function.
2813 (read_register_gen): Rewrite using regcache_cooked_read.
2814 (write_register_gen): Rewrite using regcache_cooked_write.
2815
2816 * regcache.h (regcache_cooked_read, regcache_cooked_write):
2817 Declare.
2818
2819 2002-08-02 Andrew Cagney <cagney@redhat.com>
2820
2821 * gdbarch.sh (pseudo_register_read, pseudo_register_write):
2822 Replace the architecture methods register_read and register_write.
2823 * gdbarch.h, gdbarch.c: Regenerate.
2824 * regcache.c (init_regcache_descr): Update.
2825 (read_register_gen): Update.
2826 (write_register_gen): Update.
2827 (supply_register): Update comment.
2828
2829 * sh-tdep.c (sh_gdbarch_init): Update.
2830 (sh_pseudo_register_read, sh64_pseudo_register_read): Add
2831 `regcache' and `gdbarch' parameters. Make `buffer' a void
2832 pointer. Update code.
2833 (sh_pseudo_register_write, sh64_pseudo_register_write): Add
2834 `regcache' and `gdbarch' parameters. Make `buffer' a constant
2835 void pointer. Update code.
2836 (sh64_register_write): Delete.
2837 (sh4_register_read): Delete.
2838 (sh64_register_read): Delete.
2839 (sh4_register_write): Delete.
2840 (sh_sh4_register_convert_to_raw): Make `from' parameter a constant
2841 void pointer, `to' parameter a void pointer.
2842 (sh_sh64_register_convert_to_raw): Ditto.
2843
2844 2002-08-01 Kevin Buettner <kevinb@redhat.com>
2845
2846 * mips-tdep.c (mips_register_virtual_type): Use architecture
2847 invariant return values.
2848
2849 2002-08-01 Andrew Cagney <cagney@redhat.com>
2850
2851 * linux-proc.c: Include "gdb_string.h".
2852 * Makefile.in (linux-proc.o): Update dependency list.
2853
2854 2002-08-01 Kevin Buettner <kevinb@redhat.com>
2855
2856 * mips-tdep.c (mips_gdbarch_init): Add comments. Fix typo in
2857 comment.
2858
2859 2002-08-01 Grace Sainsbury <graces@redhat.com>
2860
2861 * target.h: Add to_insert_hw_breakpoint, to_remove_hw_breakpoint,
2862 to_insert_watchpoint, to_remove_watchpoint,
2863 to_stopped_by_watchpoint, to_stopped_data_address,
2864 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint to
2865 target vecctor. Define their corresponding macros so they call
2866 them.
2867
2868 * target.c: Add default and debug versions of for
2869 to_insert_hw_breakpoint, to_remove_hw_breakpoint,
2870 to_insert_watchpoint, to_remove_watchpoint,
2871 to_stopped_by_watchpoint, to_stopped_data_address,
2872 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint.
2873
2874 2002-08-01 Kevin Buettner <kevinb@redhat.com>
2875
2876 * mips-tdep.c (mips_register_virtual_type): New function.
2877 (mips_gdbarch_init): Register mips_register_virtual_type()
2878 with gdbarch machinery.
2879 * config/mips/tm-irix6.h (mips/tm-bigmips64.h): Include
2880 this file instead of tm-bigmips.h.
2881 (MIPS_REGSIZE): Delete this macro.
2882 (REGISTER_VIRTUAL_TYPE): Delete macro. Undef macro so that
2883 multiarch version in mips-tdep.c will be found.
2884
2885 2002-08-01 Andrew Cagney <cagney@redhat.com>
2886
2887 * NEWS: Menion that CHILL has been made obsolete.
2888
2889 * gdbtypes.c (chill_varying_type): Make chill references obsolete.
2890 * stabsread.c (read_range_type): Ditto.
2891 * gdbtypes.h: Ditto.
2892 * language.c (binop_type_check): Ditto.
2893 (binop_result_type): Ditto.
2894 (integral_type): Ditto.
2895 (character_type): Ditto.
2896 (string_type): Ditto.
2897 (boolean_type): Ditto.
2898 (structured_type): Ditto.
2899 (lang_bool_type): Ditto.
2900 (binop_type_check): Ditto.
2901 * language.h (_LANG_chill): Ditto.
2902 * dwarfread.c (set_cu_language): Ditto.
2903 * dwarfread.c (CHILL_PRODUCER): Ditto.
2904 * dwarfread.c (handle_producer): Ditto.
2905 * expression.h (enum exp_opcode): Ditto.
2906 * eval.c: Ditto for comments.
2907 * typeprint.c (typedef_print) [_LANG_chill]: Ditto.
2908 * expprint.c (print_subexp): Ditto.
2909 (print_subexp): Ditto.
2910 * valops.c (value_cast): Ditto.
2911 (search_struct_field): Ditto.
2912 * value.h (COERCE_VARYING_ARRAY): Ditto.
2913 * symfile.c (init_filename_language_table): Ditto.
2914 (add_psymbol_with_dem_name_to_list): Ditto.
2915 * valarith.c (value_binop): Ditto.
2916 (value_neg): Ditto.
2917 * valops.c (value_slice): Ditto.
2918 * symtab.h (union language_specific): Ditto.
2919 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Ditto.
2920 (SYMBOL_DEMANGLED_NAME): Ditto.
2921 (SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
2922 * defs.h (enum language): Ditto.
2923 * symtab.c (got_symtab): Ditto.
2924 * utils.c (fprintf_symbol_filtered): Ditto.
2925
2926 * ch-typeprint.c: Make file obsolete.
2927 * ch-valprint.c: Make file obsolete.
2928 * ch-lang.h: Make file obsolete.
2929 * ch-exp.c: Make file obsolete.
2930 * ch-lang.c: Make file obsolete.
2931
2932 * Makefile.in (FLAGS_TO_PASS): Do not pass CHILL or CHILLFLAGS or
2933 CHILL_LIB.
2934 (TARGET_FLAGS_TO_PASS): Ditto.
2935 (CHILLFLAGS): Obsolete.
2936 (CHILL): Obsolete.
2937 (CHILL_FOR_TARGET): Obsolete.
2938 (CHILL_LIB): Obsolete.
2939 (SFILES): Remove ch-exp.c, ch-lang.c, ch-typeprint.c and
2940 ch-valprint.c.
2941 (HFILES_NO_SRCDIR): Remove ch-lang.h.
2942 (COMMON_OBS): Remove ch-valprint.o, ch-typeprint.o, ch-exp.o and
2943 ch-lang.o.
2944 (ch-exp.o, ch-lang.o, ch-typeprint.o, ch-valprint.o): Delete
2945 targets.
2946
2947 2002-07-31 Joel Brobecker <brobecker@gnat.com>
2948
2949 * dwarf2read.c (set_cu_language): Add handler for LANG_Ada95.
2950 This does not change anything at the moment, but will be helpful
2951 later when full Ada support is integrated.
2952
2953 2002-07-31 Kevin Buettner <kevinb@redhat.com>
2954
2955 * mips-tdep.c (_initialize_mips_tdep): Add "n64" to "set mips abi"
2956 help message.
2957
2958 2002-07-31 Kevin Buettner <kevinb@redhat.com>
2959
2960 * mips-tdep.c (mips_push_arguments): Fetch gdbarch_tdep struct
2961 and save it in a local variable. Use variable in later test.
2962
2963 2002-07-31 Kevin Buettner <kevinb@redhat.com>
2964
2965 * mips-tdep.c (mips_find_abi_section): Add N64 ABI recognition
2966 test. (Thanks to Daniel Jacobowitz.)
2967
2968 2002-07-31 Kevin Buettner <kevinb@redhat.com>
2969
2970 * mips-tdep.c (enum mips_abi): Add MIPS_ABI_N64.
2971 (mips_abi_strings): Add "n64".
2972 (mips_gdbarch_init): Add test for n64 abi. Add MIPS_ABI_N64 case.
2973
2974 2002-07-31 Kevin Buettner <kevinb@redhat.com>
2975
2976 * config/mips/tm-irix6.h (MIPS_REGSIZE): Define to be 8.
2977 (REGISTER_VIRTUAL_TYPE): Some registers are now 64 bits wide.
2978
2979 2002-07-31 Kevin Buettner <kevinb@redhat.com>
2980
2981 * utils.c (host_pointer_to_address, address_to_host_pointer):
2982 Use gdb_assert() instead of explicit call to internal_error().
2983
2984 2002-07-30 Kevin Buettner <kevinb@redhat.com>
2985
2986 * Makefile.in (rs6000-nat.o): Update dependencies.
2987
2988 From Nicholas Duffek:
2989 * Makefile.in (ALLDEPFILES): Add aix-thread.c.
2990 (aix-thread.o): New rule.
2991 * configure.host (gdb_host): Set to aix432 on AIX 4.3.2+.
2992 * config/powerpc/aix432.mh: New file.
2993
2994 2002-07-30 Daniel Jacobowitz <drow@mvista.com>
2995
2996 * ppc-linux-tdep.c (ELF_NGREG, ELF_NFPREG, ELF_NVRREG)
2997 (ELF_FPREGSET_SIZE, ELF_GREGSET_SIZE): New enums.
2998 (fetch_core_registers, ppc_linux_supply_gregset)
2999 (ppc_linux_supply_fpregset): New functions.
3000 (ppc_linux_regset_core_fns): New.
3001 (_initialize_ppc_linux_tdep): Call add_core_fns.
3002 * ppc-tdep.h: Add prototypes for ppc_linux_supply_fpregset
3003 and ppc_linux_supply_gregset.
3004 * ppc-linux-nat.c (supply_gregset): Call ppc_linux_supply_gregset.
3005 (supply_fpregset): Call ppc_linux_supply_fpregset.
3006 * config/powerpc/linux.mh (NATDEPFILES): Remove core-regset.o and
3007 corelow.o.
3008 * config/powerpc/linux.mt (TDEPFILES): Add corelow.o.
3009
3010 2002-07-30 Daniel Jacobowitz <drow@mvista.com>
3011
3012 * symtab.c (lookup_symbol): Demangle before lowercasing.
3013
3014 2002-07-30 Andrew Cagney <ac131313@redhat.com>
3015
3016 * symtab.h: Replace #include "gdb_obstack.h" with opaque
3017 declaration.
3018 * cli/cli-cmds.c, cli/cli-script.c: Include "gdb_string.h".
3019 * gnu-v3-abi.c, arc-tdep.c, cli/cli-decode.c: Ditto.
3020 * avr-tdep.c, mon960-rom.c, i960-tdep.c: Ditto.
3021 * arch-utils.c, cli/cli-setshow.c: Unconditionally include
3022 "gdb_string.h".
3023 * Makefile.in (cli-script.o, cli-cmds.o): Update dependencies.
3024 (gnu-v3-abi.o, cli-setshow.o, i960-tdep.o): Ditto.
3025 (cli-decode.o, mi-cmd-var.o, mi-cmd-disas.o): Ditto.
3026 (avr-tdep.o, mon960-rom.o): Ditto.
3027 (aout_stabs_gnu_h): Define.
3028 (symtab_h): Remove $(gdb_obstack_h).
3029
3030 2002-07-30 Jim Blandy <jimb@redhat.com>
3031
3032 Patch from David Carlton <carlton@math.stanford.edu>:
3033 * gdbinit.in: Move the `dir' commands that add GDB's own source
3034 directory to the search path to the end, so that the `gdb' source
3035 directory will be searched first.
3036
3037 2002-07-29 Andrew Cagney <ac131313@redhat.com>
3038
3039 * gdb_obstack.h: New file.
3040 * symtab.h: Include "gdb_obstack.h" instead of "obstack.h".
3041 (obstack_chunk_alloc, obstack_chunk_free): Delete macros.
3042 * objfiles.h: Include "gdb_obstack.h".
3043 * Makefile.in (gdb_obstack_h): Define.
3044 (symtab_h): Add $(gdb_obstack_h).
3045 (objfiles_h): Add $(gdb_obstack_h).
3046
3047 * objfiles.c: Include "gdb_obstack.h" instead of "obstack.h".
3048 * macrotab.c, cp-valprint.c, dbxread.c: Ditto.
3049 * ch-typeprint.c, ch-valprint.c, dstread.c: Ditto.
3050 * macroexp.c, p-typeprint.c, stabsread.c: Ditto.
3051 * symtab.c, f-typeprint.c, mdebugread.c: Ditto.
3052 * p-valprint.c, symmisc.c, typeprint.c: Ditto.
3053 * symfile.c, coffread.c, c-typeprint.c: Ditto.
3054 * buildsym.c, bcache.c, ada-typeprint.c: Ditto.
3055
3056 * Makefile.in (bcache.o): Update dependencies.
3057 (buildsym.o, c-typeprint.o, ch-typeprint.o): Ditto.
3058 (ch-valprint.o, coffread.o, cp-valprint.o): Ditto.
3059 (dbxread.o, dstread.o, f-typeprint.o): Ditto.
3060 (objfiles.o, p-typeprint.o, p-valprint.o): Ditto.
3061 (stabsread.o, symfile.o, symmisc.o): Ditto.
3062 (symtab.o, typeprint.o, macroexp.o): Ditto.
3063 (macrotab.o, mdebugread.o): Ditto.
3064 (f_lang_h, coff_sym_h, coff_symconst_h): Define.
3065 (coff_ecoff_h, aout_aout64_h): Define.
3066 (aout_stabs_gnu_h, libaout_h): Define.
3067
3068 2002-07-29 Andrew Cagney <cagney@redhat.com>
3069
3070 * regcache.c (struct regcache_descr): Rename nr_registers to
3071 nr_cooked_registers. Revise comments describing the structure
3072 member fields.
3073 (init_regcache_descr): Update.
3074 (init_legacy_regcache_descr): Update.
3075 (read_register_gen, write_register_gen): When a cooked register in
3076 the raw register range, directly access the value from the raw
3077 register cache.
3078
3079 2002-07-29 Andrew Cagney <ac131313@redhat.com>
3080
3081 * z8k-tdep.c: Do not include "obstack.h".
3082 * h8300-tdep.c, h8500-tdep.c: Ditto.
3083 * m68hc11-tdep.c, sh-tdep.c: Ditto.
3084 * valprint.c, v850-tdep.c: Ditto.
3085 * d10v-tdep.c, mn10300-tdep.c: Ditto.
3086 * mn10200-tdep.c: Ditto.
3087
3088 * Makefile.in (z8k-tdep.o): Update dependencies.
3089 (m68hc11-tdep.o, valprint.o): Ditto.
3090 (v850-tdep.o, d10v-tdep.o): Ditto.
3091 (mn10300-tdep.o, sparc-tdep.o): Ditto.
3092 (sh-tdep.o, h8500-tdep.o, h8300-tdep.o): Ditto.
3093 (m32r-tdep.o, mn10200-tdep.o): Specify dependencies.
3094 (sh_opc_h, gdb_sim_sh_h): Define.
3095 (elf_sh_h, elf_bfd_h): Define.
3096 (opcode_m68hc11_h): Define.
3097 (OPCODES_SRC, OPCODES_DIR): define.
3098 (OPCODES): Use $(OPCODES_DIR).
3099 (gdb_sim_d10v_h): Rename sim_d10v_h.
3100 (gdb_sim_arm_h): Rename sim_arm_h.
3101
3102 2002-07-26 Kevin Buettner <kevinb@redhat.com>
3103
3104 * utils.c (host_pointer_to_address, address_to_host_pointer):
3105 Change internal_error() message to indicate function responsible
3106 for the error.
3107
3108 2002-07-26 Kevin Buettner <kevinb@redhat.com>
3109
3110 * ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in
3111 calls to local_hex_string_custom().
3112
3113 2002-07-26 Kevin Buettner <kevinb@redhat.com>
3114
3115 * irix5-nat.c: Move IRIX shared library support from here...
3116 * solib-irix.c: ...to here. Revised substantially to work with
3117 generic solib framework.
3118
3119 * osabi.h (gdb_osabi): Add new enum constant GDB_OSABI_IRIX.
3120 * osabi.c (gdb_osabi_names): Add corresponding string for Irix.
3121 * mips-irix-tdep.c: New file.
3122
3123 * Makefile.in (ALLDEPFILES): Add mips-irix-tdep.c and solib-irix.c.
3124 (mips-irix-tdep.o, solib-irix.o): New rules.
3125 * config/mips/irix5.mt (TDEPFILES): Add mips-irix-tdep.o, solib.o,
3126 solib-irix.o.
3127 * config/mips/irix6.mt (TDEPFILES): Likewise.
3128 * config/mips/irix6.mh (NATDEPFILES): Remove solib.o.
3129
3130 2002-07-26 Kevin Buettner <kevinb@redhat.com>
3131
3132 * aix-thread.c (coff/internal.h, bfd/libcoff.h, pthread.h): Remove
3133 disabled (via ``#if 0'') includes.
3134
3135 2002-07-26 Kevin Buettner <kevinb@redhat.com>
3136
3137 * aix-thread.c (special_register_p, supply_sprs64, supply_sprs32)
3138 (fetch_regs_user_thread, fetch_regs_kernel_thread, fill_sprs64)
3139 (fill_sprs32, store_regs_user_thread, store_regs_kernel_thread):
3140 Add support for the fpscr register.
3141 * rs6000-nat.c (regmap, fetch_inferior_registers)
3142 (store_inferior_registers, fetch_core_registers): Likewise.
3143
3144 2002-07-26 Kevin Buettner <kevinb@redhat.com>
3145
3146 * rs6000-nat.c (language.h): Include.
3147 (special_regs): Delete this array.
3148 (regmap): New function.
3149 (fetch_register, store_register): Use regmap() to map gdb
3150 register numbers to ptrace register numbers. Also, use
3151 outputs from regmap() to make decisions regarding type of
3152 ptrace() call to make. In particular, don't compare against
3153 FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
3154 (fetch_inferior_registers, store_inferior_registers): Where
3155 possible, obtain register numbers from tdep struct. Don't
3156 refer to FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
3157 * config/rs6000/tm-rs6000.h (FIRST_UISA_SP_REGNUM)
3158 (LAST_UISA_SP_REGNUM): Delete.
3159
3160 2002-07-25 Kevin Buettner <kevinb@redhat.com>
3161
3162 * rs6000-nat.c (ppc-tdep.h): Include.
3163 (fetch_registers, store_register, fetch_core_registers): Don't
3164 access registers[] directly. Instead, use supply_register() or
3165 regcache_collect() as appropriate.
3166 (find_toc_address): Format hex address with local_hex_string().
3167
3168 2002-07-25 Andrew Cagney <ac131313@redhat.com>
3169
3170 * config/djgpp/fnchange.lst: Rename bfd/elf32-fr30.c and
3171 bfd/elf32-frv.c.
3172
3173 2002-07-24 Tom Tromey <tromey@redhat.com>
3174
3175 * jv-exp.y: Marked all strings with _().
3176 (ClassInstanceCreationExpression, ArrayCreationExpression): Use
3177 internal_error.
3178 (MethodInvocation, CastExpression, parse_number, yyerror,
3179 java_type_from_name, push_expression_name, yylex): Typo fixes.
3180
3181 2002-07-24 Daniel Jacobowitz <drow@mvista.com>
3182
3183 * ui-file.c (struct tee_file, tee_file_new, tee_file_delete)
3184 (tee_file_flush, tee_file_write, tee_file_fputs)
3185 (tee_file_isatty): New.
3186 * ui-file.h (tee_file_new): Add prototype.
3187
3188 2002-07-24 Aidan Skinner <aidan@velvet.net>
3189
3190 * ada-lang.c: Change k&r style function definitions to prototyped
3191 form.
3192 * ada-typeprint.c: Change k&r style function definitions to prototyped
3193 form.
3194 * ada-valprint.c: Change k&r style function definitions to prototyped
3195 form.
3196
3197 2002-07-24 Andrew Cagney <cagney@redhat.com>
3198
3199 * README: Remove reference to remote-bug.
3200 * Makefile.in (ALLDEPFILES): Remove m88k-nat.c, m88k-tdep.c and
3201 remote-bug.c.
3202 (m88k-nat.o): Delete rule.
3203 (m88k-tdep.o): Delete rule.
3204 (remote-bug.o): Delete rule.
3205 * MAINTAINERS: Mark as obsolete.
3206 * elfread.c (elf_symtab_read): Mention that m88k is obsolete.
3207 * m88k-tdep.c: Make file obsolete.
3208 * config/m88k/m88k.mh: Ditto.
3209 * config/m88k/delta88v4.mh: Ditto.
3210 * config/m88k/delta88v4.mt: Ditto.
3211 * config/m88k/delta88.mt: Ditto.
3212 * config/m88k/delta88.mh: Ditto.
3213 * remote-bug.c: Ditto.
3214 * config/m88k/tm-delta88.h: Ditto.
3215 * config/m88k/nm-delta88v4.h: Ditto.
3216 * config/m88k/xm-delta88.h: Ditto.
3217 * config/m88k/xm-dgux.h: Ditto.
3218 * config/m88k/tm-m88k.h: Ditto.
3219 * config/m88k/nm-m88k.h: Ditto.
3220 * config/m88k/tm-delta88v4.h: Ditto.
3221 * m88k-nat.c: Ditto.
3222 * cxux-nat.c: Ditto.
3223 * configure.host: Make m88*-motorola-sysv4*, m88*-motorola-sysv*
3224 and m88*-*-* obsolete.
3225 * configure.tgt: Make m88*-motorola-sysv4*, m88*-motorola-* and
3226 m88*-*-* obsolete.
3227
3228 2002-07-24 Andrew Cagney <cagney@redhat.com>
3229
3230 * findvar.c (extract_unsigned_integer): Make `addr' parameter
3231 constant. Same for local pointer variables.
3232 (extract_signed_integer): Ditto.
3233 * defs.h (extract_unsigned_integer): Update.
3234 (extract_signed_integer): Update.
3235
3236 2002-07-24 Andrew Cagney <cagney@redhat.com>
3237
3238 * regcache.c (regcache_raw_write): Change buf parameter to a
3239 constant void pointer.
3240 (regcache_raw_read): Change buf parameter to a void pointer.
3241 (legacy_write_register_gen): Change myaddr parameter a constant
3242 void pointer.
3243 (supply_register): Change val parameter to a const void pointer.
3244 * regcache.h (regcache_raw_write): Update declaration.
3245 (regcache_raw_read): Update declaration.
3246 (supply_register): Update declaration.
3247
3248 2002-07-24 Tom Tromey <tromey@redhat.com>
3249
3250 * defs.h (gdb_readline_wrapper): Declare.
3251 * utils.c (prompt_for_continue): Use gdb_readline_wrapper.
3252 * tracepoint.c (read_actions): Use gdb_readline_wrapper.
3253 * top.c (gdb_readline_wrapper): New function.
3254 (command_line_input): Use it.
3255
3256 2002-07-24 Andrew Cagney <cagney@redhat.com>
3257
3258 * regcache.h (regcache_raw_read, regcache_raw_write): Replace
3259 regcache_read and regcache_write.
3260 (regcache_raw_read_as_address): Replace regcache_read_as_address.
3261 * regcache.c: Update.
3262 * sh-tdep.c (sh64_push_arguments): Update comment.
3263 (sh_pseudo_register_read): Update.
3264 (sh_pseudo_register_write): Update.
3265 (sh4_register_read): Update.
3266 (sh4_register_write): Update.
3267 (sh64_pseudo_register_read): Update.
3268 (sh64_pseudo_register_write): Update.
3269 (sh64_register_read): Update.
3270 (sh64_register_write): Update.
3271 * i386-tdep.c (i386_extract_return_value): Update.
3272 (i386_extract_struct_value_address): Update.
3273 (i386_extract_return_value): Update.
3274 * blockframe.c (generic_read_register_dummy): Update.
3275 (generic_call_dummy_register_unwind): Update
3276 * infrun.c (write_inferior_status_register): Update.
3277
3278 2002-07-23 Jim Blandy <jimb@redhat.com>
3279
3280 * parser-defs.h (expression_context_pc): Make this extern.
3281 (Thanks to Michael Snyder.)
3282
3283 2002-07-23 Andrew Cagney <ac131313@redhat.com>
3284
3285 GDB 5.2.1 released from 5.2 branch.
3286 * NEWS: Mention changes in 5.2.1 including addition of AVR target.
3287 * README: Update to mention 5.2.1.
3288
3289 2002-07-23 Mark Salter <msalter@redhat.com>
3290
3291 * remote.c (remote_read_bytes): Fix check for error.
3292
3293 2002-07-22 Kevin Buettner <kevinb@redhat.com>
3294
3295 * aix-thread.c (language.h): Include.
3296 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
3297 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
3298 Print newlines at end of debug messages.
3299 (pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
3300 (pdc_write_data): Use local_hex_string() instead of %llx formats.
3301
3302 2002-07-22 Kevin Buettner <kevinb@redhat.com>
3303
3304 * aix-thread.c (ppc-tdep.h): Include.
3305 (special_register_p): New function.
3306 (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32)
3307 (store_regs_user_thread): Use register number information from
3308 gdbarch_tdep struct instead of hardcoded offsets relative to
3309 FIRST_UISA_SP_REGNUM.
3310 (fetch_regs_kernel_thread, store_regs_kernel_thread): Call
3311 special_register_p() instead of using FPLAST_REGNUM and
3312 LAST_UISA_SP_REGNUM as lower and upper bounds on the special
3313 register numbers. Also, don't assume that LAST_UISA_SP_REGNUM
3314 will be MQ's register number.
3315
3316 2002-07-22 Michael Snyder <msnyder@redhat.com>
3317
3318 * aix-thread.c (ops): Rename to aix_thread_ops.
3319 (base_ops): Rename to base_target.
3320 (ops_attach): Rename to aix_thread_attach.
3321 (ops_detach): Rename to aix_thread_detach.
3322 (ops_resume): Rename to aix_thread_detach.
3323 (ops_wait): Rename to aix_thread_wait.
3324 (ops_kill): Rename to aix_thread_kill.
3325 (init_ops): Rename to init_aix_thread_ops.
3326 (ops_fetch_register): Rename to aix_thread_fetch_register.
3327 (ops_store_register): Rename to aix_thread_store_register.
3328 (ops_mourn_inferior): Rename to aix_thread_mourn_inferior.
3329 (ops_thread_alive): Rename to aix_thread_thread_alive.
3330 (ops_extra_thread_info: Rename to aix_thread_extra_thread_info.
3331 (ops_pid_to_str): Rename to aix_thread_pid_to_str.
3332 (ops_xfer_memory): Rename to aix_thread_xfer_memory.
3333 (fetch_regs_lib): Rename to fetch_regs_user_thread.
3334 (fetch_regs_kern): Rename to fetch_regs_kernel_thread.
3335 (store_regs_lib): Rename to store_regs_user_thread.
3336 (store_regs_kern): Rename to store_regs_kernel_thread.
3337
3338 2002-07-22 Michael Snyder <msnyder@redhat.com>
3339
3340 * aix-thread.c (ops_prepare_to_store): Eliminate.
3341 (init_ops): Don't initialize ops.prepare_to_store.
3342 (store_regs_kern): Pre-fetch register buffers from child,
3343 because some registers may not be in the cache. Copy
3344 regs from register cache only if they are cached.
3345 (store_regs_lib): Copy regs from register cache only
3346 if they are cached.
3347 (fill_sprs32, (fill_sprs64, fill_fprs, fill_gprs32,
3348 fill_gprs64): Ditto.
3349
3350 2002-07-22 Kevin Buettner <kevinb@redhat.com>
3351
3352 * aix-thread.c (gdb_assert.h): Include.
3353 (fill_sprs64, fill_sprs32): Add selected asserts to make sure that
3354 register sizes (from register cache) match size of buffer holding
3355 register data.
3356 (fill_sprs32): Change parameter types to match those in the ptrace()
3357 buffer.
3358 (store_regs_lib): Likewise, but for 32-bit temporary variables.
3359 (ops_prepare_to_store): Rename loop variable ``i'' to ``regno''.
3360
3361 2002-07-22 Michael Snyder <msnyder@redhat.com>
3362
3363 * aix-thread.c (supply_sprs64): Cosmetic change.
3364 (supply_sprs32): Cosmetic change.
3365 (fill_gprs64, fill_gprs32, fill_fprs, fill_sprs32): New funcs.
3366 (fill_sprs64): Use regcache_collect instead of read_register.
3367 (store_regs_lib): Use regcache_collect instead of
3368 read_register. Use fill_sprs32 instead of fill_sprs64,
3369 if debugging a 32-bit architecture.
3370 (store_regs_kern): Use fill_gprs64 etc. to pull the values
3371 out of the register cache, instead of passing a pointer into
3372 the register cache directly to ptrace. Use regcache_collect
3373 insteaad of read_register.
3374 (ops_prepare_to_store): Use target_read_registers instead
3375 of read_register_bytes.
3376
3377 2002-07-20 Aidan Skinner <aidan@velvet.net>
3378
3379 * MAINTAINERS: Add self under write after approval.
3380
3381 2002-07-20 Aidan Skinner <aidan@velvet.net>
3382
3383 * ada-tasks.c: Change k&r style function definitions to prototyped
3384 form.
3385
3386 2002-07-19 Andrew Cagney <ac131313@redhat.com>
3387
3388 * Makefile.in (x86-64-tdep.o): Add $(objfiles_h).
3389 * x86-64-tdep.c: Include "objfiles.h".
3390 (x86_64_gdbarch_init): Set in_solib_call_trampoline to
3391 in_plt_section. From 2002-07-18 Michal Ludvig <mludvig@suse.cz>.
3392
3393 2002-07-17 Michal Ludvig <michal@suse.cz>
3394
3395 * dwarf2cfi.c (execute_stack_op): Complain on unknown DW_OP_ value.
3396 (update_context): Initialise cfa variable.
3397
3398 2002-07-17 Michael Snyder <msnyder@redhat.com>
3399
3400 * aix-thread.c: Shorten some long lines.
3401 Bring comments into line with code spec.
3402
3403 2002-07-18 Joel Brobecker <brobecker@gnat.com>
3404
3405 * infrun.c: Re-indent using gdb_indent.sh.
3406
3407 2002-07-18 Joel Brobecker <brobecker@gnat.com>
3408
3409 * infrun.c (handle_inferior_event): Remove unneeded extra brace.
3410 Leave the indentation temporarily untouched, to minimize the diffs.
3411
3412 2002-07-18 Elena Zannoni <ezannoni@redhat.com>
3413
3414 * stabsread.c: Make os9k sections of the code obsolete,
3415 for real this time.
3416 * stabsread.h: Make os9k sections of the code obsolete.
3417
3418 2002-07-18 Michal Ludvig <mludvig@suse.cz>
3419
3420 * linux-low.c (regsets_store_inferior_registers): Add free()
3421 at the end of a loop to prevent memory leak.
3422 * linux-x86-64-low.c (x86_64_regmap): Add CS, SS registers.
3423 (X86_64_NUM_GREGS): Count it from the size of x86_64_regmap.
3424 * config/sparc/tm-sp64linux.h: Make the rest of #endif
3425 line a comment.
3426 * Makefile.in (x86-64-linux-nat.o): Remove dependency on i387-tdep.h
3427
3428 2002-07-17 Jim Blandy <jimb@redhat.com>
3429
3430 * macrocmd.c (info_macro_command): Remove newline from error
3431 message.
3432
3433 2002-07-17 J"orn Rennecke <joern.rennecke@superh.com>
3434
3435 * sh-tdep.c (sh_dsp_register_sim_regno): New function.
3436 (sh_gdbarch_init): Use it for sh-dsp.
3437
3438 2002-07-16 Kevin Buettner <kevinb@redhat.com>
3439
3440 * dwarf2read.c (read_initial_length): Handle older, non-standard,
3441 64-bit DWARF2 format.
3442
3443 2002-07-16 Joel Brobecker <brobecker@gnat.com>
3444
3445 * proc-api.c: use HAVE_SYS_PROC_H macro to avoid including
3446 <sys/proc.h> when not available.
3447
3448 2002-07-16 Andrew Cagney <ac131313@redhat.com>
3449
3450 * NEWS: Mention that the i[34]86-*-os9k has been made obsolete.
3451 * stabsread.c: Make os9k sections of the code obsolete.
3452 * configure.tgt: Make i[3456]86-*-os9k target obsolete.
3453 * config/i386/i386os9k.mt: Make file obsolete.
3454 * Makefile.in (ALLDEPFILES): Remove remote-os9k.c.
3455 (COMMON_OBS): Remove os9kread.o
3456 (SFILES): Remove os9kread.c.
3457 (os9kread.o, remote-os9k.o): Make target obsolete.
3458 * remote-os9k.c: Make file obsolete.
3459 * os9kread.c: Make file obsolete.
3460 * Makefile.in
3461
3462 2002-07-16 Andrew Cagney <ac131313@redhat.com>
3463
3464 * NEWS: Mention that the FR30 has been made obsolete.
3465 * fr30-tdep.c: Make file obsolete.
3466 * config/fr30/tm-fr30.h: Ditto.
3467 * config/fr30/fr30.mt: Ditto.
3468 * configure.tgt: Make fr30-*-elf obsolete.
3469 * MAINTAINERS: Make fr30-elf obsolete.
3470
3471 2002-07-16 Pierre Muller <muller@ics.u-strasbg.fr>
3472
3473 * blockframe.c (get_pc_function_start): return 0 if the minimal symbol
3474 found is not inside a section.
3475
3476 2002-07-15 Kevin Buettner <kevinb@redhat.com>
3477
3478 * aix-thread.c (ptrace_check): Use safe_strerror() instead of
3479 strerror().
3480 (pdc_realloc): Use xrealloc() instead of realloc().
3481
3482 2002-07-15 Kevin Buettner <kevinb@redhat.com>
3483
3484 * aix-thread.c (PD_ERROR, CALL_BASE): Delete.
3485 (ops_resume, ops_wait, fetch_regs_lib, store_regs_lib)
3486 (ops_xfer_memory, ops_kill): Don't use PD_ERROR or CALL_BASE
3487 macros.
3488
3489 2002-07-15 Kevin Buettner <kevinb@redhat.com>
3490
3491 * aix-thread.c (ptrace_check): Eliminate goto.
3492 (sync_threadlists): Eliminate gotos. Also, fix array overrun
3493 problem.
3494
3495 2002-07-15 Kevin Buettner <kevinb@redhat.com>
3496
3497 * aix-thread.c (gdbcmd.h): Include.
3498 (DEBUG, DBG, DBG2, dbg): Eliminate.
3499 (debug_aix_thread): New static global.
3500 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
3501 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
3502 (fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
3503 invocations to DBG and DBG2 macros to test against
3504 ``debug_aix_thread'' and call fprintf_unfiltered().
3505 (_initialize_aix_thread): Add new command "set debug aix-thread".
3506
3507 2002-07-15 Andrew Cagney <ac131313@redhat.com>
3508
3509 From Gerhard Tonn <TON@de.ibm.com>:
3510 * s390-nat.c (fill_fpregset, fill_gregset): Use regcache_collect
3511 instead of supply_register.
3512
3513 2002-07-15 Andrew Cagney <ac131313@redhat.com>
3514
3515 * dwarf2cfi.c: Include "gdb_assert.h".
3516 (frame_state_for): Use gdb_assert to check that fde->cie_ptr is
3517 non-NULL.
3518 (update_context): Do not use __func__. Add missing ``break''.
3519 (update_context): Do not use __func__.
3520
3521 2002-07-15 Elena Zannoni <ezannoni@redhat.com>
3522
3523 * rs6000-tdep.c (rs6000_gdbarch_init): Remove variable print_insn
3524 and its setting. Set gdbarch instruction printing functions
3525 directly. For non-rs6000 case use new function
3526 gdb_print_insn_powerpc.
3527 (gdb_print_insn_powerpc): New function.
3528
3529 2002-07-13 Andrew Cagney <ac131313@redhat.com>
3530
3531 * NEWS: Mention that the d30v has been marked obsolete.
3532 * MAINTAINERS: Note that d30v / d30v-elf has been made obsolete.
3533 * configure.tgt: Mark d30v-*-* as obsolete.
3534 * d30v-tdep.c: Mark file as obsolete.
3535 * config/d30v/d30v.mt: Ditto.
3536 * config/d30v/tm-d30v.h: Ditto.
3537
3538 2002-07-13 Aidan Skinner <aidan@velvet.net>
3539
3540 * ada-tasks.c (add_task_entry): replace calls to
3541 malloc() with xmalloc
3542 * ada-tasks.c (init_task_list): replace calls to free with xfree()
3543
3544 * ada-lang.c (replace_operator_with_call, fill_in_ada_prototype,
3545 ada_finish_decode_line_1, all_sals_for_line
3546 ada_breakpoint_rewrite): replace calls to free() with xfree()
3547
3548 2002-07-12 Kevin Buettner <kevinb@redhat.com>
3549
3550 From Nicholas Duffek (with minor changes by Martin Hunt,
3551 Louis Hamilton, and Kevin Buettner):
3552 * aix-thread.c: New file.
3553
3554 2002-07-12 Petr Sorfa <petrs@caldera.com>
3555
3556 * dwarf2read.c (dwarf2_invalid_attrib_class): New
3557 complaint for invalid attribute class or form.
3558 (read_func_scope): DW_AT_frame_base
3559 better handling of DW_AT_block*.
3560 (dwarf2_add_member_fn): DW_AT_vtable_elem_location
3561 better handling of DW_AT_block*.
3562 (read_common_block): DW_AT_location
3563 better handling of DW_AT_block*.
3564 (read_partial_die): DW_AT_location better handling
3565 of DW_AT_block*.
3566 (new_symbol): DW_AT_external better handling of
3567 DW_AT_block*. Proper initialization of variable
3568 "addr".
3569 (attr_form_is_block): New function that returns true
3570 if the attribute's form is of DW_FORM_block*.
3571
3572 2002-07-12 Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
3573
3574 * valops.c (find_method_list): Remove comment about
3575 removed STATIC_MEMFUNCP argument.
3576 (value_find_oload_method_list): Likewise.
3577
3578 2002-07-12 Kevin Buettner <kevinb@redhat.com>
3579
3580 From Nicholas Duffek:
3581 * rs6000-nat.c (vmap_ldinfo, xcoff_relocate_core): Call
3582 target_new_objfile_hook.
3583
3584 2002-07-12 Kevin Buettner <kevinb@redhat.com>
3585
3586 From Nicholas Duffek:
3587 * xcoffread.c (scan_xcoff_symtab): Recognize XMC_TD as a data storage
3588 csect.
3589
3590 2002-07-12 Andrew Cagney <cagney@redhat.com>
3591
3592 * MAINTAINERS: Mention --enable-sim-build-warnings.
3593 (m68hc11-elf): Disable sim build warnings.
3594 (m32r-elf): Mark as broken obsolete candidate.
3595 (x86_64-linux-gnu): Mark as buildable with -Werror.
3596 (arm-elf): Change -w to ``,'' which enables warnings but not
3597 -Werror.
3598
3599 2002-07-12 Andrew Cagney <ac131313@redhat.com>
3600
3601 * bcache.h: Update copyright.
3602 (struct bstring, struct bcache): Move definition to "bcache.c".
3603 Replaced by opaque declaration.
3604 (bcache_xfree): Replace free_bcache.
3605 (bcache_xmalloc, bcache_memory_used): Declare.
3606
3607 * bcache.c: Update copyright.
3608 (struct bstring, struct bcache): Moved to here from "bcache.h".
3609 Update comments.
3610 (bcache_xmalloc, bcache_memory_used): New functions.
3611 (bcache_xfree): Replace function free_bcache.
3612
3613 * Makefile.in (objfiles.o): Add $(bcache_h).
3614 (objfiles_h): Remove $(bcache_h).
3615 (symfile.o): Add $(bcache_h).
3616
3617 * symmisc.c: Update copyright.
3618 (print_symbol_bcache_statistics): Pass psymbol_cache by value.
3619 (print_objfile_statistics): Use bcache_memory_used.
3620
3621 * symfile.c: Include "bcache.h".
3622 (reread_symbols): Use bcache_xfree.
3623 (reread_symbols): Use bcache_xmalloc and bcache_xfree.
3624 (add_psymbol_to_list): Pass psymbol_cache by value.
3625 (add_psymbol_with_dem_name_to_list): Ditto.
3626
3627 * objfiles.h: Update copyright.
3628 (struct bcache): Declare opaque. Do not include "bcache.h".
3629 (struct objfile): Change psymbol_cache and macro_cache to ``struct
3630 bcache'' pointers.
3631 * dwarf2read.c (macro_start_file): Pass macro_cache by value.
3632
3633 * objfiles.c: Include "bcache.h". Update copyright.
3634 (allocate_objfile): Use bcache_xmalloc to create psymbol_cache and
3635 macro_cache.
3636 (free_objfile): Use bcache_xfree.
3637
3638 2002-07-11 Grace Sainsbury <graces@redhat.com>
3639
3640 * monitor.c (monitor_fetch_register): Make name a constant.
3641 (monitor_store_register): Same.
3642
3643 2002-07-11 Daniel Jacobowitz <drow@mvista.com>
3644
3645 Based on patch from Daniel Berlin <dberlin@dberlin.org>.
3646 * buildsym.c: Include "demangle.h" for SYMBOL_INIT_DEMANGLED_NAME.
3647 (finish_block) For non-function blocks, hash the symbol table. For
3648 function blocks, mark the symbol table as unhashed.
3649 * minsyms.c (msymbol_hash): Return hash value without taking modulus.
3650 (msymbol_hash_iw): Likewise.
3651 (add_minsym_to_hash_table): Take modulus of msymbol_hash's return
3652 value.
3653 (add_minsym_to_demangled_hash_table): Likewise for msymbol_hash_iw.
3654 (lookup_minimal_symbol): Likewise for both.
3655 * symtab.h (struct block): Add `hashtable' flag. Comment the
3656 hashtable.
3657 (BLOCK_HASHTABLE, BLOCK_BUCKETS, BLOCK_BUCKET): New macro.
3658 (ALL_BLOCK_SYMBOLS): Update.
3659 (BLOCK_SHOULD_SORT): Do not sort hashed blocks.
3660 (struct symbol): Add `hash_next' pointer.
3661 * symtab.c (lookup_block_symbol): Search using the hash table when
3662 possible.
3663 (find_pc_sect_symtab): Use ALL_BLOCK_SYMBOLS.
3664 (search_symbols, find_addr_symbol): Likewise.
3665
3666 * dstread.c (process_dst_block): Clear hashtable bit for new block.
3667 (read_dst_symtab): Likewise.
3668 * jv-lang.c (get_java_class_symtab): Likewise.
3669 * mdebugread.c: Include "gdb_assert.h".
3670 (shrink_block): Assert that the block being modified is not hashed.
3671 * coffread.c (patch_opaque_types): Use ALL_BLOCK_SYMBOLS.
3672 * symmisc.c (free_symtab_block): Walk the hash table when freeing
3673 symbols.
3674 (dump_symtab): Recognize hashed blocks.
3675 * printcmd.c (print_frame_args): Assert that function blocks do not
3676 have hashed symbol tables.
3677 * ada-lang.c (symtab_for_sym): Use ALL_BLOCK_SYMBOLS.
3678 (fill_in_ada_prototype, debug_print_block): Likewise.
3679 (ada_add_block_symbols): Use ALL_BLOCK_SYMBOLS. Handle hash tables.
3680
3681 2002-07-11 Corinna Vinschen <vinschen@redhat.com>
3682
3683 * stack.c (print_frame): Use result of frame_address_in_block()
3684 instead of fi->pc when evaluating symbols.
3685 (backtrace_command_1): Ditto.
3686
3687 2002-07-11 Andrew Cagney <cagney@redhat.com>
3688
3689 * cris-tdep.c (cris_saved_pc_after_call): Fix parameter type.
3690 Make static.
3691
3692 * arm-tdep.c (arm_register_name): Make return type constant.
3693
3694 2002-07-10 Andrew Cagney <ac131313@redhat.com>
3695
3696 * win32-nat.c (has_detach_ability): Convert to strict ISO C
3697 prototype.
3698 * top.c (gdb_rl_operate_and_get_next_completion): Ditto.
3699 * s390-tdep.c (s390_fp_regnum): Ditto.
3700 (s390_read_fp): Ditto.
3701 (s390_pop_frame): Ditto.
3702 (_initialize_s390_tdep): Ditto.
3703 * remote.c (get_remote_state): Ditto.
3704 * procfs.c (mappingflags): Ditto.
3705 * memattr.c (_initialize_mem): Ditto.
3706 * mcore-tdep.c (mcore_pop_frame): Ditto.
3707 * m68klinux-nat.c (_initialize_m68k_linux_nat): Ditto.
3708 * m68k-tdep.c (m68k_register_bytes_ok): Ditto.
3709 * language.c (set_case_str): Ditto.
3710 * gnu-v3-abi.c (vtable_address_point_offset): Ditto.
3711 * frv-tdep.c (new_variant): Ditto.
3712 (frv_stopped_data_address): Ditto.
3713 * dwarf2cfi.c (fde_chunks_need_space): Ditto.
3714 (context_alloc): Ditto.
3715 (frame_state_alloc): Ditto.
3716 (unwind_tmp_obstack_init): Ditto.
3717 (unwind_tmp_obstack_free): Ditto.
3718 (cfi_read_fp): Ditto.
3719 * cris-tdep.c (cris_saved_pc_after_call): Ditto.
3720 (cris_pop_frame): Ditto.
3721 * c-lang.c (scanning_macro_expansion): Ditto.
3722 (finished_macro_expansion): Ditto.
3723 (c_preprocess_and_parse): Ditto.
3724 * gdbarch.sh: Ditto.
3725 * gdbarch.h, gdbarch.c: Regenerate.
3726 * config/mn10200/tm-mn10200.h: Adjust indentation.
3727 * target.c: Adjust indentation.
3728 * symtab.h: Adjust indentation.
3729 * stabsread.h: Adjust indentation.
3730 * remote-es.c: Adjust indentation.
3731 * os9kread.c: Adjust indentation.
3732
3733 2002-07-10 Andrew Cagney <ac131313@redhat.com>
3734
3735 * wince.c (_initialize_wince): Rename _initialize_inftarg.
3736 * win32-nat.c (_initialize_win32_nat): Rename _initialize_inftarg.
3737
3738 2002-07-10 Grace Sainsbury <graces@redhat.com>
3739
3740 * NEWS: Mention m68k, mcore multi-arching.
3741 * MAINTAINERS: Change status of m68k, mcore to reflect
3742 multi-arching.
3743
3744 2002-07-10 Daniel Jacobowitz <drow@mvista.com>
3745
3746 * valops.c (find_overload_match): Free oload_syms.
3747
3748 2002-07-09 Joel Brobecker <brobecker@gnat.com>
3749
3750 Define HAVE_SYS_PROC_H if sys/proc.h exists
3751 * configure.in: Add check for sys/proc.h
3752 * config.in: Regenerate.
3753 * configure: Regenerate.
3754
3755 2002-07-09 Grace Sainsbury <graces@redhat.com>
3756
3757 * config/m68k/tm-m68k.h: Remove macros wrapped in
3758 #if !GDB_MULTI_ARCH.
3759
3760 2002-07-08 Andrew Cagney <ac131313@redhat.com>
3761
3762 * config.in, configure: Regenerate.
3763
3764 2002-07-08 Mark Kettenis <kettenis@gnu.org>
3765
3766 * dwarf2cfi.c: Include "gcore.h".
3767 (execute_stack_op): Fix implementation of the
3768 DW_OP_deref and DW_OP_deref_size operators by letting do their
3769 lookup in the target.
3770
3771 2002-07-07 Mark Kettenis <kettenis@gnu.org>
3772
3773 From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de>:
3774 * i386-sol2-tdep.c (i386_sol2_init_abi): Correct value for
3775 tdep->sc_sp_offset.
3776
3777 2002-07-05 Daniel Jacobowitz <drow@mvista.com>
3778
3779 Fix PR gdb/595, gdb/602
3780 * gnu-v3-abi.c (gnuv3_baseclass_offset): Remove unused variables.
3781 Don't call value_cast, just read the vtable pointer; update comments
3782 to match.
3783
3784 2002-07-05 Grace Sainsbury <graces@redhat.com>
3785
3786 * config/mcore/tm-mcore.h: Remove file.
3787 * config/mcore/mcore.mt: Remove definition of TM_FILE
3788 * configure.tgt: Set gdb_multi_arch to yes for the mcore target.
3789
3790 2002-07-05 Mark Kettenis <kettenis@gnu.org>
3791
3792 * i386bsd-tdep.c: Include "gdb_string.h".
3793
3794 2002-07-04 Grace Sainsbury <graces@redhat.com>
3795
3796 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Set to 2.
3797 (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG,RETVAL_REGNUM): Move to
3798 mcore-tdep.
3799 (REG_STRUCT_HAS_ADDR, USE_STRUCT_CONVENTION, GET_SAVED_REGISTER)
3800 (TARGET_VIRTUAL_FRAME_POINTER, BELIEVE_PCC_PROMOTION): Remove.
3801 * mcore-tdep.c (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG)
3802 (RETVAL_REGNUM): Move macros from tm-mcore.h
3803 (mcore_reg_struct_has_addr): New function.
3804 (mcore_gdbarch_init): Added initializations for the macros removed
3805 from tm-mcore.h.
3806
3807 2002-07-04 Mark Kettenis <kettenis@gnu.org>
3808
3809 * osabi.c (generic_elf_osabi_sniffer): Add check for FreeBSD 3.x's
3810 traditonal string branding within the ELF header.
3811
3812 2002-07-04 Daniel Jacobowitz <drow@mvista.com>
3813
3814 * symtab.c (remove_params): New function.
3815 (make_symbol_overload_list): Use it instead of cplus_demangle.
3816 (overload_list_add_symbol): Likewise. Reorder. Fix memory leak.
3817
3818 2002-07-04 Mark Kettenis <kettenis@gnu.org>
3819
3820 * i386obsd-nat.c (_initialize_i386obsd_nat): Fix typo in prototype.
3821
3822 * i386bsd-tdep.c (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end):
3823 New variables.
3824 (i386nbsd_init_abi): Use these to initialize tdep->sigtramp_start
3825 and tdep->sigtramp_end.
3826 * i386obsd-nat.c: New file.
3827 * config/i386/obsd.mh (NATDEPFILES): Add i386obsd-nat.o.
3828
3829 * dwarf2cfi.c (cfi_pop_frame): Use alloca() for regbuf.
3830 Don't call get_current_frame().
3831
3832 2002-07-04 Pierre Muller <muller@ics.u-strasbg.fr>
3833
3834 * i386-nat.c (child_post_startup_inferior): New function
3835 calling i386_cleanup_dregs if
3836 I386_USE_GENERIC_WATCHPOINTS is defined.
3837 * config/i386/nm-i386.h: define CHILD_POST_STARTUP_INFERIOR
3838 conditional to acknowledge that i386-nat.c has its
3839 own child_post_startup_inferior function.
3840
3841 2002-07-04 Mark Kettenis <kettenis@gnu.org>
3842
3843 * i386-tdep.h (I386_MAX_REGISTER_SIZE): New define.
3844 * i386-tdep.c (i386_do_pop_frame): Use I386_MAX_REGISTER_SIZE
3845 instead of MAX_REGISTER_RAW_SIZE.
3846 (i386_extract_return_value, i386_extract_struct_value_address):
3847 Convert to use regcache.
3848 (i386_gdbarch_init): Set max_register_raw_size and
3849 max_register_virtual_size to I386_MAX_REGISTER_SIZE.
3850 Set extract_return_value and extract_struct_value_address instead
3851 of their deprecated variants.
3852
3853 Convert i386 target to generic dummy frames.
3854 * i386-tdep.c: Include "symfile.h".
3855 (i386_frameless_signal_p): Consider a function to be frameless if
3856 the pc points at the first instruction of the function.
3857 (i386_frame_chain): Handle (generic) call dummies.
3858 (i386_frame_saved_pc): Likewise.
3859 (i386_frame_init_saved_regs): Remove code dealing with call
3860 dummies on the stack.
3861 (i386_push_dummy_frame): Removed.
3862 (i386_call_dummy_words): Removed.
3863 (i386_fix_call_dummy): Removed.
3864 (i386_push_return_address): New function.
3865 (i386_do_pop_frame): Renamed from i386_pop_frame. Add FRAME
3866 parameter, and don't call get_current_frame.
3867 (i386_pop_frame): New function.
3868 (i386_gdbarch_init): Set use_generic_dummy_frames to 1, set
3869 call_dummy_location to AT_ENTRY_POINT, set call_dummy_address to
3870 entry_point_address, set call_dummy_breakpoint_offset to 0, set
3871 call_dummy_length to 0, set call_dummy_words to NULL, set
3872 sizeof_call_dummy_words to 0, set fix_call_dummy to
3873 generic_fix_call_dummy, set pc_in_call_dummy to
3874 pc_in_call_dummy_at_entry_point, set push_dummy_frame to
3875 generic_push_dummy_frame, set push_return_address to
3876 i386_push_return_address and set frame_chain_valid to
3877 generic_file_frame_chain_valid.
3878
3879 2002-07-03 Andrew Cagney <ac131313@redhat.com>
3880
3881 * gdbarch.sh (struct regcache): Add opaque declaration.
3882 (EXTRACT_RETURN_VALUE): New architecture method.
3883 (EXTRACT_STRUCT_VALUE_ADDRESS): Ditto.
3884 * gdbarch.h, gdbarch.c: Regenerate.
3885 * arch-utils.c (legacy_extract_return_value): New function.
3886 * arch-utils.h (legacy_extract_return_value): Declare.
3887 * values.c (value_being_returned): Re-enable code handling
3888 EXTRACT_STRUCT_VALUE_ADDRESS. Move
3889 deprecated_grub_regcache_for_registers call to block handling
3890 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
3891 (EXTRACT_RETURN_VALUE): Do not define.
3892
3893 2002-07-03 Grace Sainsbury <graces@redhat.com>
3894
3895 * config/mcore/tm-mcore.h (REGISTER_BYTES, NUM_REGS, PC_REGNUM)
3896 (SP_REGNUM, FP_REGNUM, FUNCTION_START_OFFSET, DECR_PC_AFTER_BREAK)
3897 (BREAKPOINT_FROM_PC, INNER_THAN, SAVED_PC_AFTER_CALL)
3898 (INIT_EXTRA_FRAME_INFO, FRAME_INIT_SAVED_REGS, INIT_FRAME_PC)
3899 (FRAME_CHAIN, FRAME_CHAIN_VALID, FRAME_SAVED_PC)
3900 (STORE_RETURN_VALUE, DEPRECATED_EXTRACT_RETURN_VALUE)
3901 (STORE_STRUCT_RETURN, DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
3902 (SKIP_PROLOGUE, FRAME_ARGS_SKIP, FRAME_ARGS_ADDRESS)
3903 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, POP_FRAME)
3904 (PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME, PUSH_ARGUMENTS): Remove.
3905 * mcore-tdep.c (mcore_init_extra_frame_info): Add fromleaf
3906 argument so the function fits the prototype in the architecture
3907 vector.
3908 (mcore_pop_frame): Remove argument so the function fits the
3909 prototype. Use get_current_frame instead of the argument.
3910 (mcore_push_arguments): Change type of struct_return so the
3911 function can be used in the architecture vector.
3912 (mcore_store_struct_return): Add.
3913 (mcore_frame_init_saved_regs): Add.
3914 (mcore_gdbarch_init): Add function calls to replace the macros
3915 removed from tm-mcore.h
3916
3917 2002-07-03 Andrew Cagney <ac131313@redhat.com>
3918
3919 * infcmd.c (print_return_value): Remove compatibility code calling
3920 deprecated_grub_regcache_for_registers.
3921
3922 * values.c: Include "regcache.h".
3923 (value_being_returned): Update. Use
3924 deprecated_grub_regcache_for_registers to extract the register
3925 buffer address.
3926 * value.h (value_being_returned): Change ``retbuf'' parameter to a
3927 ``struct regcache''.
3928 * Makefile.in (values.o): Add dependency on $(regcache_h).
3929
3930 * inferior.h (run_stack_dummy): Change type of second parameter to
3931 a ``struct regcache''.
3932 * valops.c (hand_function_call): Change type of retbuf to ``struct
3933 regcache''. Allocate using regcache_xmalloc, clean using
3934 make_cleanup_regcache_xfree.
3935 * infcmd.c (run_stack_dummy): Update. Use
3936 regcache_cpu_no_passthrough instead of memcpy to copy the buffer.
3937
3938 * regcache.c (do_regcache_xfree): New function.
3939 (make_cleanup_regcache_xfree): New function.
3940 * regcache.h (make_cleanup_regcache_xfree): Declare.
3941
3942 2002-07-03 Martin M. Hunt <hunt@redhat.com>
3943
3944 * event-top.c (command_line_handler): Don't read past
3945 beginning of buffer.
3946
3947 2002-07-03 Martin M. Hunt <hunt@redhat.com>
3948
3949 * varobj.c (struct varobj_root): Change frame from CORE_ADDR to
3950 struct frame_id.
3951 (varobj_create): Store frame_id for root.
3952 (varobj_gen_name): Use xasprintf.
3953 (varobj_update): Save and restore frame using get_frame_id() and
3954 frame_find_by_id().
3955 (create_child): Use xasprintf.
3956 (new_root_variable): Initialize frame_id.
3957 (c_name_of_child): Use xasprintf. Call find_frame_by_id().
3958 (c_value_of_variable): Use xasprintf. Move mem_fileopen call
3959 to prevent memory leak.
3960
3961 2002-07-03 Andrew Cagney <ac131313@redhat.com>
3962
3963 * valops.c (hand_function_call): Move declaration of retbuf to
3964 start of function, allocate using malloc, add a cleanup but before
3965 the inf_status cleanup, cleanup the buffer. Rename local variable
3966 old_chain to inf_status_cleanup.
3967
3968 2002-07-03 Martin M. Hunt <hunt@redhat.com>
3969
3970 * top.c (execute_command): Use cmd_func() and cmd_func_p().
3971
3972 * cli/cli-decode.c (cmd_func_p): New function.
3973 (cmd_func): New function.
3974
3975 * command.h: Add cmd_func() and cmd_func_p().
3976
3977 2002-07-03 Grace Sainsbury <graces@redhat.com>
3978
3979 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Add macro. Set to 0.
3980 (REGISTER_SIZE): Remove.
3981 (MAX_REGISTER_RAW_SIZE): Remove.
3982 (REGISTER_VIRTUAL_TYPE): Remove.
3983 (MAX_REGISTER_VIRTUAL_SIZE): Remove.
3984 (REGISTER_NAME): Remove.
3985 (USE_GENERIC_DUMMY_FRAMES): Remove.
3986 (CALL_DUMMY): Remove.
3987 (CALL_DUMMY_START_OFFSET): Remove.
3988 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
3989 (CALL_DUMMY_LOCATION): Remove.
3990 (FIX_CALL_DUMMY): Remove.
3991 (CALL_DUMMY_ADDRESS): Remove.
3992 (SIZEOF_CALL_DUMMY_WORDS): Remove.
3993 (SAVE_DUMMY_FRAME_TOS): Remove.
3994 * mcore-tdep.c (MCORE_REG_SIZE, MCORE_NUM_REGS): Add macros.
3995 (mcore_register_virtual_type): New function.
3996 (mcore_register_byte): New function.
3997 (mcore_register_size): New function.
3998 (mcore_register_name): New function.
3999 (mcore_gdbarch_init): New function. Add set_gdbarch calls for
4000 macros removed from tm-mcore.h.
4001 (mcore_dump_tdep): Add.
4002 (_initialize_mcore_tdep): Add gdbarch_register call.
4003
4004 2002-07-03 Mark Kettenis <kettenis@gnu.org>
4005
4006 * i386-tdep.c (i386_frameless_signal_p): Provide an argument in to
4007 frameless_look_for_prologue, such that we actually call this
4008 function.
4009
4010 2002-07-02 Joel Brobecker <brobecker@gnat.com>
4011
4012 * frame.h (frame_address_in_block): New function.
4013
4014 * blockframe.c (frame_address_in_block): New function extracted
4015 from get_frame_block().
4016 (get_frame_block): Use frame_address_in_block().
4017 (block_innermost_frame): Use frame_address_in_block() to match
4018 the frame pc address against the block boundaries rather than
4019 the frame pc directly. This prevents a failure when a frame pc
4020 is actually a return-address pointing immediately after the end
4021 of the given block.
4022
4023 2002-07-02 Grace Sainsbury <graces@redhat.com>
4024
4025 * MAINTAINERS: Add self under write after approval.
4026
4027 2002-07-02 Grace Sainsbury <graces@redhat.com>
4028
4029 * m68k-tdep.c (m68k_remote_breakpoint_from_pc): Add. Currently not
4030 used in architecture vector. The default is
4031 m68k_local_breakpoint_from_pc.
4032 (m68k_local_breakpoint_from_pc): Add.
4033 (enum): Add register numbers from tm-m68k.h.
4034 (m68k_gdbarch_init): Add breakpoint_from_pc to architecture
4035 vector.
4036 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Set to
4037 GDB_MULTI_ARCH_PARTIAL.
4038 (BPT_VECTOR, REGISTER_BYTES_FP, REGISTER_BYTES_NOFP)
4039 (NUM_FREGS, SIG_PC_FP_OFFSET, SP_ARG0, REMOTE_BPT_VECTOR): Move to
4040 m68k-tdep.c.
4041 (BREAKPOINT, REMOTE_BREAKPOINT): Remove.
4042 (A1_REGNUM, FP0_REGNUM, FPC_REGNUM, FPS_REGNUM, FPI_REGNUM): Move
4043 to enum in m68k-tdep.c
4044
4045 2002-07-02 Joel Brobecker <brobecker@gnat.com>
4046
4047 * solib-osf.c (open_map): Compute the list of shared libraries
4048 loaded by the inferior, rather than the list of libraries loaded
4049 by GDB itself. Otherwise, GDB ends up reading the symbols from
4050 the wrong shared libraries...
4051
4052 2002-07-02 Mark Kettenis <kettenis@gnu.org>
4053
4054 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Make static.
4055 (LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONEXT_SP_OFFSET): Remove
4056 macros.
4057 (i386_linux_sigtramp_saved_pc, i386_linux_sigtramp_saved_sp):
4058 Remove functions.
4059 (FRAMELESS_SIGNAL): Remove function.
4060 (i386_linux_frame_chain, i386_linux_frame_saved_pc,
4061 i386_linux_saved_pc_after_call): Removed.
4062 (i386_linux_init_abi): Initialize tdep->sigcontext_addr,
4063 tdep->sc_pc_offset and tdep->sc_sp_offset. Don't override
4064 frame_chain, frame_saved_pc and saved_pc_after_call any longer.
4065
4066 * i386-tdep.c (i386_frameless_signal_p): New function.
4067 (i386_frame_chain): Deal with frameless signals.
4068 (i386_sigtramp_saved_sp): New function.
4069 (i386_frame_saved_pc): Deal with frameless signals.
4070 (i386_saved_pc_after_call): Make sure the correct value is
4071 returned just after entry into a sigtramp.
4072 * i386bsd-tdep.c (i386bsd_sc_sp_offset, i386nbsd_sc_sp_offset,
4073 i386fbsd4_sc_sp_offset): New variables.
4074 (i386bsd_init_abi, i386nbsd_init_abi, i386fbsd4_init_abi): Use
4075 these variables to initialize tdep->sc_sp_offset. * i386bsd-nat.c
4076 (_initialize_i386bsd_nat): Add sanity check for sc_sp_offset
4077 similiar to what we already did for sc_pc_offset.
4078 * i386-sol2-tdep.c (i386_sol2_init_abi): Initialize
4079 tdep->sc_sp_offset.
4080
4081 * i386nbsd-tdep.c (fetch_elfcore_registers): Wrap long line.
4082
4083 2002-07-02 Michal Ludvig <mludvig@suse.cz>
4084
4085 * config/i386/tm-x86-64linux.h: New.
4086 * config/i386/x86-64linux.mt: Add GDB_MULTI_ARCH and TM_FILE
4087 definitions.
4088 * config/i386/nm-x86-64.h: Rename to ...
4089 * config/i386/nm-x86-64linux.h: ... this one.
4090 * config/i386/x86-64linux.mh: Reflect the above change.
4091
4092 2002-07-01 Mark Kettenis <kettenis@gnu.org>
4093
4094 * i386-tdep.h (struct gdbarch_tdep): Replace sigtramp_saved_pc
4095 with sigcontext_addr. Add sc_sp_offset.
4096 (i386bsd_sigtramp_saved_pc): Remove prototype.
4097 (i386bsd_sicontext_addr): Add prototype.
4098 * i386-tdep.c (i386_sigtramp_saved_pc): New function.
4099 (i386_frame_saved_pc): Rewrite to call i386_sigtramp_saved_pc.
4100 (i386_svr4_sigtramp_saved_pc): Removed.
4101 (i386_svr4_sigcontext_addr): New function.
4102 (i386_svr4_init_abi): Don't initialize tdep->sigtramp_saved_pc.
4103 Initialize tdep->sigcontext_addr instead. Initialize
4104 tdep->sc_pc_offset and tdep->sc_sp_offset.
4105 (i386_gdbarch_init): Likewise.
4106 * i386bsd-tdep.c (i386bsd_sigcontext_addr): Don't make it static
4107 any more.
4108 (i386bsd_sigtramp_saved_pc): Remove function.
4109 (i386bsd_init_abi): Don't initialize tdep->sigtramp_saved_pc.
4110 Initialize tdep->sigcontext_addr instead. Initialize
4111 tdep->sc_pc_offset.
4112 * i386-linux-tdep.c (i386_linux_init_abi): Remove initialization
4113 of tdep->sigtramp_saved_pc.
4114 * i386-sol2-tdep.c (i386_sol2_init_abi): Don't initialize
4115 tdep->sigtramp_saved_pc. Initialize tdep->sigcontext_addr
4116 instead.
4117
4118 * i386-tdep.c (i386_frameless_function_invocation,
4119 i386_frame_num_args, i386_frame_init_saved_regs,
4120 i386_skip_prologue, i386_push_dummy_frame, i386_fix_call_dummy,
4121 i386_pop_frame, i386_push_arguments, i386_store_struct_return,
4122 i386_extract_return_value, i386_store_return_value,
4123 i386_extract_struct_value_address, i386_register_virtual_type,
4124 i386_register_convertible, i386_register_convert_to_virtual,
4125 i386_register_convert_to_raw, i386_svr4_sigtramp_saved_pc,
4126 i386_go32_init_abi, i386_nw_init_abi, i386_gdbarch_init): Make
4127 static.
4128
4129 2002-07-01 Mark Kettenis <kettenis@gnu.org>
4130
4131 * i386bsd-tdep.c (i386bsd_frame_saved_pc): Removed.
4132
4133 * config/i386/tm-i386sol2.h (COERCE_FLOAT_TO_DOUBLE): Removed.
4134 * i386-sol2-tdep.c (i386_sol2_init_abi): Adjust for the removal of
4135 this macro. Include "value.h".
4136
4137 2002-06-30 Aidan Skinner <aidan@velvet.net>
4138
4139 * ada-exp.tab.c: remove as it's a generated file
4140 * ada-lex.c: remove as it's a generated file
4141
4142 2002-06-30 Mark Kettenis <kettenis@gnu.org>
4143
4144 * config/i386/tm-i386.h (struct frame_info, struct
4145 frame_saved_regs, struct value, struct type): Remove forward
4146 declarations.
4147
4148 * config/i386/tm-linux.h [HAVE_PTRACE_GETFPXREGS]
4149 (FILL_FPXREGSET, HAVE_SSE_REGS): Remove define.
4150 * config/i386/nm-linux.h [HAVE_PTRACE_GETFPXREGS]
4151 (FILL_FPXREGSET): Define.
4152
4153 * config/i386/tm-nbsd.h (HAVE_SSE_REGS): Remove define.
4154
4155 * configure.tgt (i[3456]86-*-openbsd*): Fold into
4156 i[3456]86-*-netbsd* case.
4157 * config/i386/tm-obsd.h: Removed.
4158 * config/i386/obsd.mt: Removed.
4159 * config/i386/obsd.mh (NATDEPFILES): Remove corelow.o and
4160 core-aout.o.
4161 (MH_CFLAGS): Add -DYYDEBUG=0.
4162
4163 * i386bsd-nat.c (_initialize_i386bsd_nat): Define SC_PC_OFFSET to
4164 i386nbsd_sc_pc_offset on OpenBSD too.
4165
4166 * config/i386/tm-fbsd.h [!SVR4_SHARED_LIBS]
4167 (IN_SOLIB_CALL_TRAMPOLINE): Remove define.
4168 * config/i386/tm-nbsdaout.h (IN_SOLIB_CALL_TRAMPOLINE): Remove
4169 define.
4170 * i386bsd-tdep.c: Include "arch-utils.h".
4171 (i386bsd_aout_in_solib_call_trampoline): New function.
4172 (i386bsd_init_abi): Set in_solib_call_trampoline to
4173 i386bsd_aout_in_solib_call_trampoline.
4174 (i386nbsdelf_init_abi, i386fbsd_init_abi): Set
4175 in_solib_call_trampoline to generic_in_solib_call_trampoline.
4176
4177 2002-06-28 Andrew Cagney <ac131313@redhat.com>
4178
4179 * macrotab.h: Do not include "obstack.h" or "bcache.h".
4180 (struct obstack, struct bcache): Add opaque declarations.
4181 * Makefile.in (macrotab_h): Update
4182
4183 2002-06-28 Andrew Cagney <ac131313@redhat.com>
4184
4185 * blockframe.c (generic_find_dummy_frame): Change return type to
4186 ``struct regcache''.
4187 (struct dummy_frame): Replace field ``registers'' with regcache, a
4188 struct regcache object.
4189 (generic_find_dummy_frame): Update.
4190 (generic_push_dummy_frame): Update. Use regcache_xfree,
4191 regcache_xmalloc and regcache_cpy.
4192 (generic_pop_dummy_frame): Update. Use regcache_cpy and
4193 regcache_xfree.
4194 (deprecated_generic_find_dummy_frame): Update.
4195 (generic_read_register_dummy): Update. Use
4196 regcache_read_as_address.
4197 (generic_call_dummy_register_unwind): Update. Use regcache_read.
4198 (generic_get_saved_register): Update. Use regcache_read.
4199
4200 2002-06-28 Andrew Cagney <ac131313@redhat.com>
4201
4202 * Makefile.in (objfiles_h): Add $(bcache_h).
4203 * objfiles.h: Include "bcache.h".
4204
4205 * Makefile.in (symtab_h): Remove $(bcache_h).
4206 * symtab.h: Do not include "bcache.h".
4207
4208 2002-06-28 Andrew Cagney <ac131313@redhat.com>
4209
4210 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Set frame_chain_valid to
4211 generic_func_frame_chain_valid.
4212
4213 2002-06-28 David O'Brien <obrien@FreeBSD.org>
4214
4215 * config/i386/nm-fbsd.h: Include <sys/param.h>.
4216 * config/i386/tm-fbsd.h: Likewise.
4217
4218 2002-06-28 Andrew Cagney <ac131313@redhat.com>
4219
4220 * rs6000-tdep.c (rs6000_gdbarch_init): Use
4221 generic_unwind_get_saved_register.
4222
4223 2002-06-27 Andrew Cagney <ac131313@redhat.com>
4224
4225 From 2002-06-27 John David Anglin <dave@hiauly1.hia.nrc.ca>:
4226 * regcache.c (supply_register): Add missing argument to
4227 register_buffer call.
4228
4229 2002-06-27 Andrew Cagney <ac131313@redhat.com>
4230
4231 * Makefile.in (init.c): Drop -e option to grep. Not necessary and
4232 Solaris /bin/grep does not not like it. From Peter Schauer.
4233
4234 2002-06-26 Tom Tromey <tromey@redhat.com>
4235
4236 * command.h (add_setshow_cmd): Declare.
4237 (add_setshow_cmd_full): Declare.
4238 * cli/cli-decode.c (add_setshow_cmd): No longer static. Now
4239 returns void. Use add_setshow_cmd_full.
4240 (add_setshow_cmd_full): New function.
4241 (add_setshow_auto_boolean_cmd): Use add_setshow_cmd_full.
4242 (add_setshow_boolean_cmd): Likewise.
4243
4244 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
4245
4246 * config/vax/tm-vax.h: Protect from multiple inclusion.
4247 (TARGET_UPAGES, TARGET_NBPG, STACK_END_ADDR)
4248 (SIGTRAMP_START, SIGTRAMP_END, SIGCONTEXT_PC_OFFSET): Move to...
4249 * config/vax/tm-vaxbsd.h: ...here. New file.
4250 * config/vax/vax.mt (TM_FILE): Set to tm-vaxbsd.h.
4251
4252 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
4253
4254 * config/vax/tm-vax.h (BREAKPOINT): Remove.
4255 (BELIEVE_PCC_PROMOTION): Remove.
4256 (AP_REGNUM): Move to...
4257 * config/vax/nm-vax.h: ...here.
4258 * vax-tdep.c: Use VAX_AP_REGNUM instead of AP_REGNUM.
4259 (vax_breakpoint_from_pc): New function.
4260 (vax_gdbarch_init): Initialize gdbarch_breakpoint_from_pc
4261 and gdbarch_believe_pcc_promotion.
4262
4263 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
4264
4265 * Makefile.in (vax_tdep_h): Define.
4266 (vax-tdep.o): Use $(vax_tdep_h).
4267 * vax-tdep.c (vax_gdbarch_init): Use generic OS ABI framework.
4268 (vax_dump_tdep): New function.
4269 (_initialize_vax_tdep): Register vax_dump_tdep.
4270 * vax-tdep.h: Include osabi.h.
4271 (struct gdbarch_tdep): New.
4272
4273 2002-06-26 Andrew Cagney <cagney@redhat.com>
4274
4275 * frame.h (deprecated_generic_find_dummy_frame): Rename
4276 generic_find_dummy_frame.
4277 * blockframe.c (generic_find_dummy_frame): Make static.
4278 (deprecated_generic_find_dummy_frame): New function.
4279 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Replace
4280 generic_find_dummy_frame with deprecated_find_dummy_frame.
4281 (sh64_nofp_frame_init_saved_regs): Ditto.
4282 (sh_fp_frame_init_saved_regs): Ditto.
4283 * s390-tdep.c (s390_frame_saved_pc_nofix): Ditto.
4284 (s390_frame_chain): Ditto.
4285 * cris-tdep.c (cris_frame_init_saved_regs): Ditto.
4286
4287 2002-06-26 Grace Sainsbury <graces@redhat.com>
4288
4289 * config/m68k/tm-m68k.h: Rearrange code so macros not in the
4290 gdbarch vector are at the top.
4291 (NUM_REGS): Remove.
4292 (FP_REGNUM, SP_REGNUM, PS_REGNUM, PC_REGNUM, FP0_REGNUM): Remove.
4293 (FRAME_ARGS_ADDRESS): Remove.
4294 (FRAME_LOCALS_ADDRESS): Remove.
4295 (FRAME_NUM_ARGS): Remove.
4296 (FRAME_ARGS_SKIP): Remove.
4297 * m68k-tdep.c (enum): Add eumeration of special register numbers.
4298 (m68k_gdbarch_init): Add gdbarch initializations for macros
4299 undefined in tm-m68k.h
4300
4301 2002-06-26 Grace Sainsbury <graces@redhat.com>
4302
4303 * monitor.h: Add the function regname to monitor_ops
4304 structure. This way NUM_REGS does not have to be a constant.
4305 * monitor.c (monitor_fetch_register): Added support for regname
4306 function. The function is called if the array regnames is NULL.
4307 (monitor_store_register): Same.
4308 * cpu32bug-rom.c (cpu32bug_regname): Add function. Replaces
4309 regnames array.
4310 (init_cpu32bug_cmds): set cpu32bug_cmds.regnames to NULL,
4311 cpu32bug_cmds.regname to point to new function.
4312 * abug-rom.c (abug_regname): Same as above.
4313 (init_abug_cmds): Same.
4314 * dbug-rom.c (dbug_regname): Same as above.
4315 (init_dbug_cmds): Same.
4316 * remote-est.c (est_regname): Same.
4317 (init_est_cmds): Same.
4318 * rom68k-rom.c (rom68k_regname): Same.
4319 (init_rom68k_cmds): Same.
4320
4321 2002-06-25 Tom Tromey <tromey@redhat.com>
4322
4323 * breakpoint.c (delete_command): Don't repeat `delete' commands.
4324
4325 2002-06-25 Andrew Cagney <cagney@redhat.com>
4326
4327 * infrun.c (stop_registers): Change variable's type to ``struct
4328 regcache'''.
4329 (xmalloc_inferior_status): Delete function.
4330 (free_inferior_status): Delete function.
4331 (normal_stop): Use regcache_cpy.
4332 (struct inferior_status): Change type of fields ``stop_registers''
4333 and ``registers'' to ``struct regcache''.
4334 (write_inferior_status_register): Use regcache_write.
4335 (save_inferior_status): Instead of calling
4336 xmalloc_inferior_status, allocate the inf_status buffer directly.
4337 Use regcache_dup_no_passthrough and regcache_dup to save the
4338 buffers.
4339 (restore_inferior_status): Use regcache_xfree and regcache_cpy.
4340 Replace the stop_registers regcache instead of overriding it. Use
4341 regcache_xfree. Instead of calling free_inferior_status, xfree
4342 the buffer directly.
4343 (discard_inferior_status): Use regcache_xfree. Instead of calling
4344 free_inferior_status, xfree the buffer directly.
4345 (build_infrun): Use regcache_xmalloc.
4346 (_initialize_infrun): Delete redundant call to build_infrun.
4347
4348 * Makefile.in (infcmd.o): Add $(regcache_h).
4349
4350 * infcmd.c: Include "regcache.h".
4351 (run_stack_dummy): Use deprecated_grub_regcache_for_registers to
4352 obtain the address of `stop_registers' register buffer.
4353 (print_return_value): Ditto.
4354
4355 * inferior.h (struct regcache): Add opaque declaration.
4356 (stop_registers): Change variable's declared type to ``struct
4357 regcache''.
4358
4359 2002-06-24 Tom Tromey <tromey@redhat.com>
4360
4361 * cli/cli-decode.c (add_show_from_set): Fixed typo in comment.
4362 * target.c (initialize_targets): Fixed typo in
4363 trust-readonly-sections `show' documentation.
4364
4365 * main.c: Marked all strings with _().
4366
4367 2002-06-24 Don Howard <dhoward@redhat.com>
4368
4369 * memattr.c (create_mem_region): Treat hi == 0 as a special case
4370 that means max CORE_ADDR+1.
4371 (lookup_mem_region): Ditto.
4372 (mem_info_command): Ditto.
4373
4374 2002-06-24 Grace Sainsbury <graces@redhat.com>
4375
4376 * config/m68k/tm-m68k.h (DECR_PC_AFTER_BREAK): Remove.
4377 (REGISTER_BYTES_OK): Remove.
4378 (REGISTER_BYTES): Remove.
4379 (STORE_STRUCT_RETURN): Remove.
4380 (DEPRECATED_EXTRACT_RETURN_VALUE): Remove.
4381 (STORE_RETURN_VALUE): Remove.
4382 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Remove.
4383 (FRAME_CHAIN): Remove.
4384 (FRAMELESS_FUNCTION_INVOCATION): Remove.
4385 (FRAME_SAVED_PC): Remove.
4386 * m68k-tdep.c (m68k_register_bytes_ok):Add.
4387 (m68k_store_struct_return): Add.
4388 (m68k_deprecated_extract_return_value): Add.
4389 (m68k_deprecated_extract_struct_value_address): Add.
4390 (m68k_store_return_value): Add.
4391 (m68k_frame_chain): Add.
4392 (m68k_frameless_function_invocation): Add.
4393 (m68k_frame_saved_pc): Add.
4394 (m68k_gdbarch_init): added set_gdbarch calls for new
4395 functions and deleted macros.
4396
4397 2002-06-23 Tom Tromey <tromey@redhat.com>
4398
4399 * Makefile.in (HFILES_NO_SRCDIR): Remove old files.
4400 (ALLDEPFILES): Likewise.
4401 (udiheaders): Removed.
4402 (udip2soc.o): Likewise.
4403 (udi2go32.o): Likewise.
4404 (udr.o): Likewise.
4405 (HFILES_WITH_SRCDIR): Don't mention udiheaders.
4406
4407 2002-06-22 Andrew Cagney <ac131313@redhat.com>
4408
4409 * infrun.c (_initialize_infrun): Delete unnecessary call to
4410 build_infrun.
4411
4412 * regcache.h: Update comments describing the regcache_cpy family
4413 of functions.
4414 (regcache_save, regcache_restore): Delete declaration.
4415 (regcache_save_no_passthrough): Delete declaration.
4416 (regcache_restore_no_passthrough): Delete declaration.
4417 * regcache.c (regcache_save): Delete function.
4418 (regcache_save_no_passthrough): Delete function.
4419 (regcache_restore): Delete function.
4420 (regcache_restore_no_passthrough): Delete function.
4421
4422 2002-06-21 Andrew Cagney <ac131313@redhat.com>
4423
4424 * config/m68k/tm-m68k.h: Fix typo.
4425 (FRAME_INIT_SAVED_REGS): Define when non-multi-arch.
4426 (m68k_frame_init_saved_regs): Declare.
4427
4428 2002-06-21 Jim Blandy <jimb@redhat.com>
4429
4430 Remove some vestiges of Harris 88k support.
4431 * dwarf2read.c (decode_locdesc): Remove `#if' block for Harris 88k
4432 register numbering quirk.
4433 * elfread.c (elf_symtab_read): Remove `#if' block for skipping
4434 odd symbols occurring in Harris 88k ELF targets.
4435
4436 2002-06-21 Tom Tromey <tromey@redhat.com>
4437
4438 * gdb_locale.h: New file.
4439 * Makefile.in (GDB_CFLAGS): Define LOCALEDIR.
4440 (defs_h): Added gdb_locale.h.
4441 * configure, config.in: Rebuilt.
4442 * configure.in (PACKAGE): Define.
4443 * defs.h: Include gdb_locale.h.
4444 * main.c (captured_main): Call setlocale, bindtextdomain,
4445 textdomain.
4446
4447 2002-06-21 Dave Brolley <brolley@redhat.com>
4448
4449 From Stan Shebs, Jim Blandy, Mark Salter, Kevin Buettner:
4450 * config/frv/frv.mt: New file.
4451 * config/frv/tm-frv.h: New file.
4452 * configure.tgt: Support frv-*-*.
4453 * Makefile.in (frv-tdep.o): New target.
4454 * frv-tdep.c: New file.
4455 * NEWS: Mention frv.
4456
4457 2002-06-21 Dave Brolley <brolley@redhat.com>
4458
4459 * MAINTAINERS: Add self to "Write After Approval" list.
4460
4461 2002-06-21 Grace Sainsbury <graces@redhat.com>
4462
4463 * config/m68k/tm-m68k.h (REGISTER_BYTE, REGISTER_RAW_SIZE)
4464 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
4465 (REGISTER_VIRTUAL_TYPE, REGISTER_NAMES, TARGET_LONG_DOUBLE_FORMAT)
4466 (FUNCTION_START_OFFSET, SKIP_PROLOGUE, SAVED_PC_AFTER_CALL)
4467 (INNER_THAN, STACK_ALIGN, REGISTER_SIZE): Remove macros.
4468
4469 * m68k-tdep.c: Include arch-utils.h
4470 (m68k_register_raw_size): Add.
4471 (m68k_register_virtual_size): Add.
4472 (m68k_register_virtual_type): Add.
4473 (m68k_register_name): Add.
4474 (m68k_stack_align): Add.
4475 (m68k_register_byte): Add.
4476 (m68k_gdbarch_init): Add set_gdbarch calls for macros removed in
4477 tm-m68k.h.
4478
4479 2002-06-21 Grace Sainsbury <graces@redhat.com>
4480
4481 * m68k-tdep.c (m68k_frame_init_saved_regs): Replace
4482 m68k_find_saved_regs.
4483 (m68k_pop_frame): Removed saved_regs structure, and replaced
4484 references to it with frame->saved_regs.
4485 (m68k_gdbarch_init): Added function calls to initialize the
4486 gdbarch structure.
4487 (m68k_fix_call_dummy): Add.
4488 * config/m68k/tm-m68k.h: (FRAME_FIND_SAVED_REGS): Remove.
4489 (CALL_DUMMY): Remove.
4490 (CALL_DUMMY_LENGTH): Remove.
4491 (CALL_DUMMY_START_OFFSET): Remove.
4492 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
4493 (FIX_CALL_DUMMY): Remove.
4494 (PUSH_DUMMY_FRAME): Remove.
4495 (POP_FRAME): Remove.
4496
4497 2002-06-19 Pierre Muller <muller@ics.u-strasbg.fr>
4498
4499 * parse.c (parse_fprintf): New function used to avoid calls to
4500 fprintf in bison parser generated debug code.
4501 * parser-defs.h: Declaration of new parse_fprintf function.
4502 * ada-exp.y, c-exp.y, f-exp.y, jv-exp.y, m2-exp.y, p-exp.y:
4503 Set YYDEBUG to 1 by default.
4504 Set YYFPRINTF as parse_fprintf.
4505
4506 2002-06-21 Michal Ludvig <mludvig@suse.cz>
4507
4508 * dwarf2cfi.c (read_encoded_pointer): Don't handle pointer
4509 encoding anymore.
4510 (pointer_encoding, enum ptr_encoding): New.
4511 (execute_cfa_program): Take care about pointer encoding.
4512 (dwarf2_build_frame_info): Only call parse_frame_info for
4513 .debug_frame and .eh_frame.
4514 (parse_frame_info): New, derived from former dwarf2_build_frame_info.
4515 fixed augmentation handling, added relative addressing,
4516 ignore duplicate FDEs. Added comments.
4517 * dwarf2cfi.c: Reindented.
4518
4519 2002-06-20 Elena Zannoni <ezannoni@redhat.com>
4520
4521 * event-top.c (command_handler): Don't use space_at_cmd_start
4522 unless there is sbrk() on the host. Assign time and space data
4523 to union fields of the appropriate length.
4524
4525 2002-06-20 Michal Ludvig <mludvig@suse.cz>
4526
4527 * x86-64-tdep.c (x86_64_register_nr2name): Rename to
4528 x86_64_register_name. Return type changed to 'const char *'.
4529 (x86_64_register_name2nr): Rename to x86_64_register_number.
4530 (x86_64_gdbarch_init): Update to reflect the change.
4531 * x86-64-tdep.h: Ditto.
4532 * x86-64-linux-nat.c (x86_64_fxsave_offset)
4533 (supply_fpregset): Ditto.
4534
4535 2002-06-19 Andrew Cagney <cagney@redhat.com>
4536
4537 * regcache.h: Update copyright.
4538 (struct regcache, struct gdbarch): Add opaque declarations.
4539 (current_regcache): Declare global variable.
4540 (regcache_read, regcache_write): Add gdbarch parameter.
4541 (regcache_save, regcache_save_no_passthrough)
4542 (regcache_restore, regcache_restore_no_passthrough)
4543 (regcache_dup, regcache_dup_no_passthrough)
4544 (regcache_cpy, regcache_cpy_no_passthrough)
4545 (deprecated_grub_regcache_for_registers)
4546 (deprecated_grub_regcache_for_register_valid)
4547 (regcache_valid_p): Add function declarations.
4548
4549 * regcache.c: Update copyright.
4550 (regcache_descr_handle): New global variable.
4551 (struct regcache_descr): Define.
4552 (init_legacy_regcache_descr, init_regcache_descr): New functions.
4553 (regcache_descr, xfree_regcache_descr): New functions.
4554 (struct regcache): Define.
4555 (regcache_xmalloc, regcache_xfree): New functions.
4556 (regcache_cpy, regcache_cpy_no_passthrough): New functions.
4557 (regcache_dup, regcache_dup_no_passthrough): New functions.
4558 (regcache_valid_p, regcache_read_as_address): New functions.
4559 (deprecated_grub_regcache_for_registers): New function.
4560 (deprecated_grub_regcache_for_register_valid): New function.
4561 (current_regcache): New global variable.
4562 (register_buffer): Add regcache parameter. Update calls.
4563 (regcache_read, regcache_write): Add regcache parameter. Rewrite.
4564 (read_register_gen, write_register_gen): Update register_buffer
4565 call. Test for legacy_p instead of gdbarch_register_read_p or
4566 gdbarch_register_write_p.
4567 (regcache_collect): Update register_buffer call.
4568 (build_regcache): Rewrite. Use deprecated grub functions.
4569 (regcache_save, regcache_save_no_passthrough): New functions.
4570 (regcache_restore, regcache_restore_no_passthrough): New
4571 functions.
4572 (_initialize_regcache): Create the regcache_data_handle. Swap
4573 current_regcache global variable.
4574
4575 * sh-tdep.c (sh_pseudo_register_read): Add current_regcache
4576 parameter to regcache_read and regcache_write calls.
4577 (sh4_register_read): Ditto.
4578 (sh64_pseudo_register_read): Ditto.
4579 (sh64_register_read): Ditto.
4580 (sh_pseudo_register_write): Ditto.
4581 (sh4_register_write): Ditto.
4582 (sh64_pseudo_register_write): Ditto.
4583 (sh64_register_write): Ditto.
4584
4585 * defs.h (XCALLOC): Define.
4586
4587 2002-06-19 Grace Sainsbury <graces@redhat.com>
4588
4589 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Added (set to 0).
4590 * m68k-tdep.c (m68k_gdbarch_init): Added.
4591 (m68k_dump_tdep): Added.
4592
4593 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
4594
4595 * ada-lang.c (fill_in_ada_prototype): Update comment.
4596
4597 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
4598
4599 * mips-tdep.c (enum mips_abi): Explicitly start at 0. Add
4600 MIPS_ABI_LAST.
4601 (mips_abi_string, mips_abi_strings): New.
4602 (struct gdbarch_tdep): Remove mips_abi_string, add found_abi.
4603 (mips_gdbarch_init): Set tdep->found_abi. Don't set
4604 tdep->mips_abi_string. Honor mips_abi_string. Default to
4605 O32 if no ABI is found.
4606 (mips_dump_tdep): Use mips_abi_strings.
4607 (mips_abi_update): New function.
4608 (_initialize_mips_tdep): Initialize mips_abi_string. Add
4609 ``set mips abi'' and ``show mips abi''. Check the size of
4610 mips_abi_strings.
4611
4612 2002-06-19 Andrew Cagney <cagney@redhat.com>
4613
4614 * i386-linux-tdep.c (i386_linux_register_name): Make return type
4615 constant.
4616
4617 2002-06-18 Joel Brobecker <brobecker@gnat.com>
4618
4619 * alpha-tdep.c (heuristic_proc_desc): Compute the size of the
4620 current frame using only the first stack size adjustment. All
4621 subsequent size adjustments are not considered to be part of
4622 the "static" part of the current frame.
4623 Compute the address of the saved registers relative to the
4624 Frame Pointer ($fp) instead of the Stack Pointer if $fp is
4625 in use in this frame.
4626
4627 2002-06-18 Don Howard <dhoward@redhat.com>
4628
4629 * valops.c (value_ind): Use value_at_lazy() when dereferencing
4630 type int expressions. Thanks to Jim Blandy <jimb@redhat.com> for
4631 suggesting this solution.
4632
4633 2002-06-18 Andrew Cagney <ac131313@redhat.com>
4634
4635 * config/romp/xm-rtbsd.h: Delete file.
4636 * config/romp/rtbsd.mh: Delete file.
4637
4638 2002-06-18 Keith Seitz <keiths@redhat.com>
4639
4640 * breakpoint.c (condition_command): Post breakpoint_modify
4641 when a condition is added to an existing breakpoint.
4642 (commands_command): Likewise for commands.
4643 (set_ignore_count): Likewise for ignore counts.
4644 If no tty, do not simply return, still need to send event
4645 notification.
4646 (ignore_command): Only print a newline if the command came
4647 from a tty.
4648 Don't call breakpoints_changed, since this is now properly
4649 handled by set_ignore_count.
4650
4651 2002-06-18 Andrew Cagney <cagney@redhat.com>
4652
4653 * MAINTAINERS: Note that cris-elf target can be compiled with
4654 -Werror.
4655 * cris-tdep.c (cris_register_name): Make return type constant.
4656 (cris_breakpoint_from_pc): Ditto.
4657
4658 2002-06-18 Michal Ludvig <mludvig@suse.cz>
4659
4660 * frame.h (struct frame_info): Change type of context to
4661 'struct context'.
4662
4663 2002-06-17 Andrew Cagney <cagney@redhat.com>
4664
4665 * gdbarch.sh (REGISTER_NAME): Change return type a constant string
4666 pointer.
4667 * gdbarch.h, gdbarch.c: Regenerate.
4668 * config/mips/tm-mips.h (mips_register_name): Update.
4669 * i386-tdep.h (i386_register_name): Update.
4670 * mips-tdep.c (mips_register_name): Update
4671 * alpha-tdep.c (alpha_register_name): Update.
4672 * arch-utils.c (legacy_register_name): Update.
4673 * arch-utils.h (legacy_register_name): Update.
4674 * avr-tdep.c (avr_register_name): Update.
4675 * ia64-tdep.c (ia64_register_name): Update.
4676 * i386-tdep.c (i386_register_name): Update.
4677 * sparc-tdep.c (sparc32_register_name): Update.
4678 (sparc64_register_name): Update.
4679 (sparclite_register_name): Update.
4680 (sparclet_register_name): Update.
4681 * sh-tdep.c (sh_generic_register_name): Update.
4682 (sh_sh_register_name): Update.
4683 (sh_sh3_register_name): Update.
4684 (sh_sh3e_register_name): Update.
4685 (sh_sh_dsp_register_name): Update.
4686 (sh_sh3_dsp_register_name): Update.
4687 (sh_sh4_register_name): Update.
4688 (sh_sh64_register_name): Update.
4689 * s390-tdep.c (s390_register_name): Update.
4690 * rs6000-tdep.c (rs6000_register_name): Update.
4691 * ns32k-tdep.c (ns32k_register_name_32082): Update.
4692 (ns32k_register_name_32382): Update.
4693 * d10v-tdep.c (d10v_ts2_register_name): Update.
4694 (d10v_ts3_register_name): Update.
4695 * xstormy16-tdep.c (xstormy16_register_name): Update.
4696 * vax-tdep.c (vax_register_name): Update.
4697 * v850-tdep.c (v850_register_name): Update.
4698 * m68hc11-tdep.c (m68hc11_register_name): Update.
4699 * mn10300-tdep.c (mn10300_generic_register_name): Update.
4700 (am33_register_name): Update.
4701
4702 2002-06-17 Grace Sainsbury <graces@redhat.com>
4703
4704 * m68k-tdep.c: Reindented.
4705
4706 2002-06-17 Andrew Cagney <ac131313@redhat.com>
4707
4708 * gdb_indent.sh: Add prgregset_t, fpregset_t, and gregset_t to the
4709 list of predefined types.
4710
4711 2002-06-16 Mark Kettenis <kettenis@gnu.org>
4712
4713 * config/i386/tm-i386.h (REGISTER_VIRTUAL_TYPE,
4714 REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL,
4715 REGISTER_CONVERT_TO_RAW): Remove defines.
4716 (i386_register_virtual_type, i386_register_convertible,
4717 i386_register_convert_to_virtual, i386_register_convert_to_raw):
4718 Remove prototypes.
4719 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
4720 macros mentioned above.
4721
4722 * config/i386/tm-i386lynx.h (SAVED_PC_AFTER_CALL): Remove define.
4723 (i386lynx_saved_pc_after_call): Remove prototype.
4724 * i386ly-tdep.c: Include "i386-tdep.h".
4725 (i386lynx_saved_pc_after_call): Make static. Use
4726 read_memory_nobpt instead of read_memory. Use
4727 read_memory_unsigned_integer instead of read_memory_integer.
4728 (i386lynx_init_abi): New function.
4729 (i386lynx_coff_osabi_sniffer): New function.
4730 (_initialize_i386bsd_tdep): New function.
4731
4732 * config/i386/tm-i386.h (PARM_BOUNDARY, CALL_DUMMY,
4733 CALL_DUMMY_LENGTH, CALL_DUMMY_START_OFFSET,
4734 CALL_DUMMY_BREAKPOINT_OFFSET, FIX_CALL_DUMMY): Remove defines.
4735 (i386_fix_call_dummy): Remove prototype.
4736 * i386-tdep.c (i386_call_dummy_words): New variable.
4737 (i386_gdbarch_init): Adjust for removal of the
4738 macros mentioned above.
4739
4740 2002-06-15 Andrew Cagney <ac131313@redhat.com>
4741
4742 * command.h (add_setshow_auto_boolean_cmd): Replace
4743 add_set_auto_boolean_cmd.
4744 * cli/cli-decode.c (add_setshow_auto_boolean_cmd): Replace
4745 add_set_auto_boolean_cmd.
4746 * cli/cli-decode.h (add_set_auto_boolean_cmd): Delete declaration.
4747 * mips-tdep.c (_initialize_mips_tdep): Update ``set mips
4748 mask-address'' command.
4749 (show_mask_address): Add cmd parameter.
4750 * remote.c (add_packet_config_cmd): Update. Change type of
4751 set_func and show_func to cmd_sfunc_ftype.
4752 (_initialize_remote): Update `set remote Z-packet'
4753 (show_remote_protocol_qSymbol_packet_cmd): Add cmd parameter.
4754 (show_remote_protocol_e_packet_cmd): Ditto.
4755 (show_remote_protocol_E_packet_cmd): Ditto.
4756 (show_remote_protocol_P_packet_cmd): Ditto.
4757 (show_remote_protocol_Z_software_bp_packet_cmd): Ditto.
4758 (show_remote_protocol_Z_hardware_bp_packet_cmd): Ditto.
4759 (show_remote_protocol_Z_write_wp_packet_cmd): Ditto.
4760 (show_remote_protocol_Z_read_wp_packet_cmd): Ditto.
4761 (show_remote_protocol_Z_access_wp_packet_cmd): Ditto.
4762 (show_remote_protocol_Z_packet_cmd): Ditto.
4763 (show_remote_protocol_binary_download_cmd): Ditto.
4764 (show_remote_cmd): Pass NULL to all of above.
4765
4766 2002-06-15 Mark Kettenis <kettenis@gnu.org>
4767
4768 * config/i386/tm-i386.h (PUSH_ARGUMENTS, STORE_STRUCT_RETURN,
4769 DEPRECATED_EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE,
4770 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS, PUSH_DUMMY_FRAME,
4771 POP_FRAME): Remove defines.
4772 (i386_push_arguments, i386_store_struct_return,
4773 i386_extract_return_value, i386_store_return_value,
4774 i386_extract_struct_value_address, i386_push_dummy_frame,
4775 i386_pop_frame): Renove prototypes.
4776 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
4777 macros mentioned above.
4778
4779 2002-06-15 Andrew Cagney <ac131313@redhat.com>
4780
4781 * cli/cli-decode.c (add_setshow_boolean_cmd): Replace
4782 add_set_boolean_cmd.
4783 (add_setshow_cmd): New function.
4784 * command.h (add_setshow_boolean_cmd): Replace
4785 add_set_boolean_cmd.
4786 * remote-rdi.c (_initialize_remote_rdi): Update ``set rdiheartbeat''
4787 and ``set rdiromatzero''.
4788 * maint.c (_initialize_maint_cmds): Update commented out code.
4789 * cli/cli-decode.h (add_set_boolean_cmd): Delete declaration.
4790 * target.c (initialize_targets): Update `set
4791 trust-readonly-sections'.
4792 * remote.c (_initialize_remote): Update `set remotebreak'.
4793
4794 2002-06-15 Mark Kettenis <kettenis@gnu.org>
4795
4796 * config/i386/tm-i386.h (FUNCTION_START_OFFSET, INNER_THAN,
4797 BREAKPOINT, DECR_PC_AFTER_BREAK): Removed.
4798 * i386-tdep.c (i386_skip_prologue): Adjust function signature to
4799 fit into multi-arch framework.
4800 (i386_breakpoint_from_pc): New function.
4801 (i386_gdbarch_init): Adjust for removal of the macros mentioned
4802 above.
4803
4804 * config/i386/tm-i386.h (FRAMELESS_FUNCTION_INVOCATION,
4805 FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS,
4806 FRAME_ARGS_SKIP, FRAME_INIT_SAVED_REGS): Remove defines.
4807 (i386_frameless_function_invocation, i386_frame_num_args,
4808 i386_frame_init_saved_regs): Remove prototypes.
4809 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
4810 macros mentioned above.
4811
4812 2002-06-15 Andrew Cagney <ac131313@redhat.com>
4813
4814 * cli/cli-decode.c (set_cmd_cfunc): Update.
4815 (set_cmd_sfunc): Update.
4816 * command.h (cmd_cfunc_ftype, cmd_sfunc_ftype): Declare.
4817 (set_cmd_sfunc, set_cmd_cfunc): Update.
4818 * cli/cli-decode.h: Update.
4819
4820 2002-06-15 Mark Kettenis <kettenis@gnu.org>
4821
4822 * i386-sol2-tdep.c (i386_sol2_osabi_sniffer): New function.
4823 (_initialize_i386_sol2_tdep): Register i386_sol2_osabi_sniffer.
4824
4825 2002-06-15 Andrew Cagney <ac131313@redhat.com>
4826
4827 * defs.h (auto_boolean): Declare enum.
4828 * command.h (cmd_auto_boolean): Delete enum.
4829 * mips-tdep.c (mask_address_var): Update.
4830 (mips_mask_address_p): Update.
4831 (show_mask_address): Update.
4832 * remote.c (struct packet_config): Update.
4833 (update_packet_config): Update.
4834 (show_packet_config_cmd): Update.
4835 (packet_ok): Update.
4836 (add_packet_config_cmd): Update.
4837 (_initialize_remote):
4838 * command.h: Update.
4839 * cli/cli-setshow.c (parse_auto_binary_operation): Update.
4840 (do_setshow_command): Update.
4841 * cli/cli-decode.c (add_set_auto_boolean_cmd): Update.
4842 * cli/cli-decode.h: Update.
4843
4844 2002-06-15 Mark Kettenis <kettenis@gnu.org>
4845
4846 * config/i386/tm-cygwin.h, config/i386/tm-fbsd.h,
4847 config/i386/tm-go32.h, config/i386/tm-i386gnu.h,
4848 config/i386/tm-i386sol2.h, config/i386/tm-i386v4.h,
4849 config/i386/tm-linux.h, config/i386/tm-nbsd.h,
4850 config/i386/tm-obsd.h (HAVE_I387_REGS): Remove define.
4851 * config/i386/tm-i386.h: Unconditionally define FLOAT_INFO.
4852
4853 * i386-tdep.c (i386_coff_osabi_sniffer): Add "coff-go32" to the
4854 list of DJGPP COFF targets.
4855
4856 * config/i386/tm-i386.h (REGISTER_SIZE): Remove define.
4857 (NUM_GREGS, NUM_FREGS, NUM_SSE_REGS): Remove defines.
4858 (FP_REGNUM, SP_REGNUM, PC_REGNUM, PS_REGNUM): Remove defines.
4859 (FP0_REGNUM): Remove define.
4860 (MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE,
4861 MAX_REGISTER_VIRTUAL_SIZE): Remove define.
4862 (i386_register_virtual_size): Remove protoype.
4863 * i386-tdep.c (i386_register_virtual_size): Removed.
4864 (i386_extract_return_value, i386_store_return_value): Use
4865 FP0_REGNUM instead of NUM_FREGS to determine whether the
4866 floating-point registers are available.
4867 (i386_gdbarch_init): Tweak FIXME about FPU registers.
4868 Adjust for removal of macros mentioned above.
4869
4870 2002-06-15 Mark Kettenis <kettenis@gnu.org>
4871
4872 * i386v4-nat.c: Include "i386-tdep.h". Reformat and tweak various
4873 comments.
4874 (fill_gregset, supply_gregset, supply_fpregset, fill_fpregset):
4875 Remove prototypes.
4876 (supply_gregset, fill_gregset): Remove use of register keyword and
4877 remove declaration for regmap. Use I386_NUM_GREGS instead of
4878 NUM_REGS and NUM_FREGS.
4879 (FPREGSET_FSAVE_OFFSET): Remove.
4880 (supply_fpregset, fill_fpregset): Use FPO_REGNUM instead of
4881 NUM_FREGS to determine whether the floating-point registers are
4882 available.
4883
4884 * i386gnu-nat.c (supply_gregset, gnu_fetch_registers,
4885 gnu_store_registers): Replace usage of NUM_GREGS with
4886 I386_NUM_GREGS.
4887
4888 * i386-linux-nat.c (OLD_CANNOT_FETCH_REGISTER,
4889 OLD_CANNOT_STORE_REGISTER, supply_gregset, fill_gregset): Replace
4890 usage of NUM_GREGS with I386_NUM_GREGS.
4891
4892 * i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
4893
4894 * i386bsd-nat.c: Include "i386-tdep.h".
4895 (supply_gregset, fill_gregset): Replace usage of NUM_GREGS with
4896 I386_NUM_GREGS.
4897
4898 * i386v-nat.c: Remove copnditional inclusion of <asm/debugreg.h>,
4899 and associated comment. They no longer make any sense, since we
4900 don't use this file anymore on Linux.
4901
4902 * config/i386/tm-i386.h (MAX_NUM_REGS): Removed.
4903 * i386-tdep.c (i386_register_offset, i386_register_size): Use
4904 I386_SSE_NUM_REGS instead of MAX_NUM_REGS for the number of
4905 elements in these arrays.
4906 (_initialize_i386_tdep): Use I386_SSE_NUM_REGS instead of
4907 MAX_NUM_REGS.
4908
4909 2002-06-15 Mark Kettenis <kettenis@gnu.org>
4910
4911 * osabi.h (gdb_osabi): Add GDB_OSABI_LYNXOS.
4912 * osabi.c (gdb_osabi_names): Add entry for "LynxOS".
4913
4914 2002-06-14 Andrew Cagney <cagney@redhat.com>
4915
4916 * gdbarch.sh (DEPRECATED_EXTRACT_RETURN_VALUE): Rename
4917 EXTRACT_RETURN_VALUE.
4918 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Rename
4919 EXTRACT_STRUCT_VALUE_ADDRESS.
4920 * gdbarch.h, gdbarch.c: Regenerate.
4921
4922 * values.c (value_being_returned): Handle
4923 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
4924 (EXTRACT_RETURN_VALUE): Define as DEPRECATED_EXTRACT_RETURN_VALUE.
4925
4926 * arm-linux-tdep.c (arm_linux_init_abi): Update.
4927 * arm-tdep.c (arm_gdbarch_init): Update.
4928 * avr-tdep.c (avr_gdbarch_init): Update.
4929 * cris-tdep.c (cris_gdbarch_init): Update.
4930 * d10v-tdep.c (d10v_gdbarch_init): Update.
4931 * ia64-tdep.c (ia64_gdbarch_init): Update.
4932 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
4933 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
4934 * s390-tdep.c (s390_gdbarch_init): Update.
4935 * sh-tdep.c (sh_gdbarch_init): Update.
4936 * s390-tdep.c (s390_gdbarch_init): Update.
4937 * sparc-tdep.c (sparc_gdbarch_init): Update.
4938 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
4939 * v850-tdep.c (v850_gdbarch_init): Update.
4940 * vax-tdep.c (vax_gdbarch_init): Update.
4941 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
4942 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
4943
4944 * config/arc/tm-arc.h: Update.
4945 * config/d30v/tm-d30v.h: Update.
4946 * config/fr30/tm-fr30.h: Update.
4947 * config/h8300/tm-h8300.h: Update.
4948 * config/h8500/tm-h8500.h: Update.
4949 * config/i386/tm-i386.h: Update.
4950 * config/i386/tm-ptx.h: Update.
4951 * config/i386/tm-symmetry.h: Update.
4952 * config/i960/tm-i960.h: Update.
4953 * config/m32r/tm-m32r.h: Update.
4954 * config/m68k/tm-delta68.h: Update.
4955 * config/m68k/tm-linux.h: Update.
4956 * config/m68k/tm-m68k.h: Update.
4957 * config/m88k/tm-m88k.h: Update.
4958 * config/mcore/tm-mcore.h: Update.
4959 * config/mips/tm-mips.h: Update.
4960 * config/mn10200/tm-mn10200.h: Update.
4961 * config/pa/tm-hppa.h: Update.
4962 * config/pa/tm-hppa64.h: Update.
4963 * config/sparc/tm-sp64.h: Update.
4964 * config/sparc/tm-sparc.h: Update.
4965 * config/sparc/tm-sparclet.h: Update.
4966 * config/z8k/tm-z8k.h: Update.
4967
4968 2002-06-14 Andrew Cagney <cagney@redhat.com>
4969
4970 * Makefile.in (i386_linux_tdep_h): Define.
4971 (i386_tdep_h, i387_tdep_h): Define.
4972 (i386-linux-nat.o): Add $(i386_linux_tdep_h),
4973 $(i386_tdep_h) and $(i387_tdep_h).
4974 * i386-linux-nat.c: Include "i386-linux-tdep.h".
4975
4976 2002-06-14 Mark Kettenis <kettenis@gnu.org>
4977
4978 * config/i386/tm-i386.h (START_INFERIOR_TRAPS_EXPECTED): Removed.
4979 Already covered by the default.
4980
4981 * config/i386/tm-i386.h (TARGET_LONG_DOUBLE_FORMAT,
4982 TARGET_LONG_DOUBLE_BIT): Remove. * i386-tdep.c
4983 (i386_gdbarch_init): Initialize long_double_format and long_double
4984 bit.
4985
4986 * config/i386/i386sol2.mt (TDEPFILES): Add i386-sol2-tdep.o and
4987 i386bsd-tdep.o. Remove solib.o, solib-svr4.o and solib-legacy.o.
4988 Move these to ...
4989 * config/i386/i386sol2.mh: ... here.
4990 * config/i386/tm-i386sol2.h (STAB_REG_TO_REGNUM): Remove define.
4991 (sigtramp_saved_pc, I386V4_SIGTRAMP_SAVED_PC): Don't #undef.
4992 (SIGCONTEXT_PC_OFFSET): Remove define.
4993 (IN_SIGTRAMP): Remove define.
4994 * i386-sol2-tdep.c: New file.
4995
4996 * config/i386/i386nw.mt (TM_FILE): Change to tm-i386.h.
4997 * config/i386/tm-i386nw.h: Removed.
4998
4999 * config/i386/tm-fbsd.h (STAB_REG_TO_REGNUM,
5000 USE_STRUCT_CONVENTION): Remove defines.
5001 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
5002 (get_longjmp_target): Remove prototype.
5003 (IN_SIGTRAMP): Remove define.
5004 (i386bsd_in_sigtramp): Remove prototype.
5005 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
5006 function. Update comment accordingly
5007 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
5008 (FRAME_SAVED_PC): Remove define.
5009 (i386bsd_frame_saved_pc): Remove prototype.
5010 * config/i386/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC,
5011 GET_LONGJMP_TARGET): Remove defines.
5012 (get_longjmp_target): Remove prototype.
5013 (IN_SIGTRAMP): Remove define.
5014 (i386bsd_in_sigtramp): Remove prototype.
5015 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
5016 function. Update comment accordingly
5017 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
5018 (FRAME_SAVED_PC): Remove define.
5019 (i386bsd_frame_saved_pc): Remove prototype.
5020 * config/i386/tm-nbsdaout.h (i386nbsd_aout_use_struct_convention):
5021 Remove prototype.
5022 (USE_STRUCT_CONVENTION): Remove prototype.
5023 * i386bsd-nat.c (i386bsd_sigcontext_pc_offset): Remove
5024 declaration.
5025 (_initialize_i386bsd_nat): Revise logic to determine some
5026 constants at compile time when compiling a native GDB. Warn if
5027 things don't match up with what we expect.
5028 * i386bsd-tdep.c (i386bsd_sigtramp_start, i386bsd_sigtramp_end):
5029 Remove variables.
5030 (i386bsd_in_sigtramp): Rename tp i386bsd_pc_in_sigtramp. Rewrite
5031 to use date stored in `struct gdbarch_tdep'.
5032 (i386bsd_sigcontext_offset): Remove varaible.
5033 (i386bsd_sigtramp_saved_pc): Make public. Rewrite to use data
5034 stored in `struct gdbarch_tdep'.
5035 (i386bsd_frame_saved_pc): Make static.
5036 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): New functions.
5037 (i386bsd_sc_pc_offset, i386nbsd_sc_pc_offset,
5038 i386fbsd_sigtramp_start, i386fbsd_sigtramp_end,
5039 i386fbsd4_sc_pc_offset): New variables.
5040 (i386bsd_init_abi, i386nbsd_init_abi, i386nbsdelf_init_abi,
5041 i386fbsdaout_init_abi, i386fbsd_init_abi, i386fbsd4_init_abi): New
5042 functions.
5043 (i386bsd_aout_osabi_sniffer, _initialize_i386bsd_tdep): New
5044 functions.
5045 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Fix type in comment.
5046 Modify the value of i386fbsd_sigtramp_start and
5047 i386fbsd_sigtramp_end instead of i386bsd_sigtramp_start and
5048 i386fbsd_sigtramp_end.
5049 * i386nbsd-tdep.c: (i386nbsd_aout_use_struct_convention): Remove
5050 function.
5051
5052 * config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): Move
5053 define to i386-linux-tdep.h.
5054 (NUM_REGS, MAX_NUM_REGS, REGISTER_BYTES, REGISTER_NAME,
5055 REGISTER_BYTE, REGISTER_RAW_SIZE, STAB_REG_TO_REGNUM): Remove
5056 defines.
5057 (i386_linux_register_name, i386_linux_register_byte,
5058 i386_linux_register_raw_size): Remove prototypes.
5059 (i386_linux_svr4_fetch_link_map_offsets): Remove prototype.
5060 (SVR4_FETCH_LINK_MAP_OFFSETS): Remove define.
5061 (IN_SIGTRAMP, FRAME_CHAIN, FRAME_SAVED_PC, SAVED_PC_AFTER_CALL,
5062 TARGET_WRITE_PC): Remove defines.
5063 (i386_linux_in_sigtramp, i386_linux_frame_chain,
5064 i386_linux_frame_saved_pc, i386_linux_saved_pc_after_call,
5065 i386_linux_write_pc): Remove prototypes.
5066 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
5067 (get_longjmp_target): Remove prototype.
5068 * i386-linux-tdep.h: New file.
5069 * i386-linux-nat.c: Include "i386-linux-tdep.h".
5070 * i386-linux-tdep.c: Include "i386-tdep.h" and
5071 "i386-linux-tdep.h".
5072 (i386_linux_register_name, i386_linux_register_byte,
5073 i386_linux_register_raw_size, i386_linux_in_sigtramp,
5074 i386_linux_write_pc, i386_linux_svr4_fetch_link_map_offsets):
5075 Make static.
5076 (i386_linux_init_abi): New function.
5077 (_initialize_i386_linux_tdep): New function.
5078
5079 * config/i386/tm-i386.h (SAVED_PC_AFTER_CALL): Remove define.
5080 (i386_saved_pc_after_call): Remove prototype.
5081 (MAX_NUM_REGS): Increase to deal with Linux's orig_eax "register".
5082 (REGISTER_NAME, STAB_REG_TO_REGNUM, SDB_REG_TO_REGNUM,
5083 DWARF_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM): Remove defines.
5084 (i386_register_name, i386_stab_reg_to_regnum,
5085 i386_dwarf_reg_to_regnum): Remove prototypes.
5086 (SIZEOF_GREGS, SIZEOF_FPU_REGS, SIZEOF_FPU_CTL_REGS,
5087 SIZEOF_SSE_REGS): Remove defines.
5088 (REGISTER_BYTES): Remove define.
5089 (REGISTER_BYTE, REGISTER_RAW_SIZE): Remove defines.
5090 (i386_register_byte, i386_register_raw_size): Remove prototypes.
5091 (FRAME_CHAIN, FRAME_SAVED_PC): Remove defines.
5092 (i386_frame_chain, i386_frame_saved_pc): Remove prototypes.
5093 * config/i386/tm-i386v4.h (FRAME_CHAIN_VALID): Remove define.
5094 (JB_ELEMENT_SIZE, JB_PC, JB_EBX, JB_ESI, JB_EDI, JB_EBP, JB_ESP,
5095 JB_EDX, GET_LONGJMP_TARGET): Remove defines.
5096 (get_longjmp_target): Remove prototype.
5097 (I386V4_SIGTRAMP_SAVED_PC, IN_SIGTRAMP): Remove defines.
5098 (sigtramp_saved_pc): Remove define.
5099 (i386v4_sigtramp_saved_pc): Remove prototype.
5100 * config/i386/tm-go32.h (FRAME_CHAIN,
5101 FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC): Remove defines.
5102 (i386go32_frame_saved_pc): Remove prototype.
5103 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
5104 (get_longjmp_target): Remove prototype.
5105 * i386-tdep.h: Include "osabi.h".
5106 (enum i386_abi): Removed.
5107 (enum struct_return): New enum.
5108 (struct gdbarch_tdep): Remove abi member, add osabi, jb_pc_offset,
5109 struct_return, sigtramp_saved_pc, sigtramp_start, sigtramp_end and
5110 sc_pc_offset members.
5111 (i386_gdbarch_register_os_abi): Remove prototype.
5112 (I386_NUM_GREGS, I386_NUM_FREGS, I386_NUM_XREGS,
5113 I386_SSE_NUM_REGS): New defines.
5114 (I386_SIZEOF_GREGS, I386_SIZEOF_FREGS, I386_SIZEOF_XREGS,
5115 I386_SSE_SIZEOF_REGS): New defines.
5116 (i386_register_name, i386_register_byte, i386_register_raw_size):
5117 New prototypes.
5118 (i386_elf_init_abi, i386_svr4_init_abi): New prototypes.
5119 (i386bsd_sigtramp_saved_pc): New prototype.
5120 * i386-tdep.c: Don't include "elf-bfd.h".
5121 (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum,
5122 i386_frame_chain, i386_saved_pc_after_call): Make static.
5123 (i386_frame_saved_pc): Rewrite to call architecture dependent
5124 function to deal with signal handlers. Make static.
5125 (i386go32_frame_saved_pc): Removed.
5126 [GET_LONGJMP_TARGET] (JB_PC, JB_ELEMENT_SIZE, get_longjmp_target):
5127 Removed.
5128 (i386_get_longjmp_target): New function.
5129 (default_struct_convention, pcc_struct_convention,
5130 reg_struct_convention, valid_conventions, struct_convention): New
5131 variables.
5132 (i386_use_struct_convention): New function.
5133 (i386v4_sigtramp_saved_pc): Renamed to
5134 i386_svr4_sigtramp_saved_pc. Made static. Moved.
5135 (i386_pc_in_sigtramp): New function.
5136 (i386_abi_names): Removed.
5137 (ABI_TAG_OS_GNU_LINUX, ABI_TAG_OS_GNU_HURD,
5138 ABI_TAG_OS_GNU_SOLARIS, ABI_TAG_OS_FREEBSD, ABI_TAG_OS_NETBSD):
5139 Removed.
5140 (process_note_sections, i386_elf_abi_from_note, i386_elf_abi,
5141 i386_gdbarch_register_os_abi): Removed.
5142 (struct i386_abi_handler): Removed.
5143 (i386_abi_handler_list): Removed.
5144 (i386_svr4_pc_in_sigtramp, i386_go32_pc_in_sigtramp): New
5145 functions.
5146 (i386_elf_init_abi, i386_svr4_init_abi, i386_go32_init_abi,
5147 i386_nw_init_abi): New functions.
5148 (i386_gdbarch_init): Rewritten to use generic OS ABI framework.
5149 Use set_gdbarch_xxx() calls instead of relying on macros for a
5150 number of calls.
5151 (i386_coff_osabi_sniffer, i386_nlm_osabi_sniffer): New functions.
5152 (_initialize_i386_tdep): Add new 'struct-convcention' command.
5153 Register the various architecture variants defined in this file.
5154
5155 2002-06-14 Daniel Jacobowitz <drow@mvista.com>
5156
5157 * gdbtypes.h (TYPE_FLAG_VARARGS): Update comment.
5158 (struct main_type): Remove arg_types member. Update comments for
5159 struct field.
5160 (TYPE_ARG_TYPES): Remove.
5161 (TYPE_FN_FIELD_ARGS): Update.
5162 (smash_to_method_type): Update prototype.
5163
5164 * c-typeprint.c (cp_type_print_method_args): Take method type
5165 instead of argument list. Use new argument layout. Simplify.
5166 (c_type_print_args): Use new argument layout. Simplify.
5167 (c_type_print_base): Update call to cp_type_print_method_args.
5168 * dwarf2read.c (dwarf2_add_member_fn): Remove unneeded type
5169 argument; use die->type instead. Update call to
5170 smash_to_method_type.
5171 (read_structure_scope): Update call to dwarf2_add_member_fn.
5172 * gdbtypes.c (allocate_stub_method): Update comment.
5173 (smash_to_method_type): Take new NARGS and VARARGS arguments.
5174 Use new argument layout.
5175 (check_stub_method): Use new argument layout. Don't count
5176 void as an argument.
5177 (print_arg_types): Update comments. Use new argument layout.
5178 (recursive_dump_type): Don't print arg_types member.
5179 * hpread.c (hpread_read_struct_type): Use new argument layout.
5180 (fixup_class_method_type): Likewise.
5181 (hpread_type_lookup): Likewise.
5182 * stabsread.c (read_type): Update calls to read_args and
5183 smash_to_method_type.
5184 (read_args): Use new argument layout. Simplify.
5185 * valops.c (typecmp): Use new argument layout. Update parameters
5186 and comments. Simplify.
5187 (hand_function_call): Use new argument layout.
5188 (search_struct_method): Update call to typecmp.
5189 (find_overload_match): Use new argument layout.
5190
5191 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
5192
5193 * NEWS: Mention multithreaded debug support for gdbserver.
5194
5195 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
5196
5197 * MAINTAINERS: Mention NEWS.
5198
5199 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
5200
5201 * mips-tdep.c (PROC_SYMBOL): Add warning comment.
5202 (struct mips_objfile_private, compare_pdr_entries): New.
5203 (non_heuristic_proc_desc): Read the ".pdr" section if it
5204 is present.
5205
5206 2002-06-12 Andrew Cagney <ac131313@redhat.com>
5207
5208 * arm-tdep.c (arm_push_arguments): Rewrite using a two-pass loop.
5209 (arm_debug): New static variable.
5210 (_initialize_arm_tdep): Add ``set debug arm'' command.
5211
5212 2002-06-12 Andrew Cagney <ac131313@redhat.com>
5213
5214 * Makefile.in (sim_arm_h): Define.
5215 (arm-tdep.o): Add $(sim_arm_h) and $(gdb_assert_h).
5216 * arm-tdep.c: Include "gdb/sim-arm.h" and "gdb_assert.h".
5217 (arm_register_sim_regno): New function, map an internal REGNUM
5218 onto a simulator register number.
5219 (arm_gdbarch_init): Set register_sim_regno.
5220
5221 2002-06-09 Aldy Hernandez <aldyh@redhat.com>
5222
5223 * MAINTAINERS: Add self.
5224
5225 2002-06-11 Jim Blandy <jimb@redhat.com>
5226
5227 * source.c (source_info): Mention whether the symtab has
5228 information about preprocessor macros.
5229
5230 Call the command `info macro', not `show macro'.
5231 * macrocmd.c (info_macro_command): Renamed from `show_macro_command'.
5232 Fix error message.
5233 (_initialize_macrocmd): Register `info_macro_command' in
5234 `infolist', not `showlist'.
5235
5236 2002-06-11 Daniel Jacobowitz <drow@mvista.com>
5237
5238 * mips-tdep.c (MIPS_FPU_TYPE, FP_REGISTER_DOUBLE, MIPS_EABI)
5239 (MIPS_LAST_FP_ARG_REGNUM, MIPS_LAST_ARG_REGNUM)
5240 (MIPS_DEFAULT_SAVED_REGSIZE, MIPS_REGS_HAVE_HOME_P)
5241 (MIPS_DEFAULT_STACK_ARGSIZE, GDB_TARGET_IS_MIPS64)
5242 (MIPS_DEFAULT_MASK_ADDRESS_P): Remove obsolete definitions. Define
5243 unconditionally.
5244 (set_mipsfpu_single_command, set_mipsfpu_double_command)
5245 (set_mipsfpu_none_command): Remove if (GDB_MULTI_ARCH).
5246 (_initialize_mips_tdep): Remove dead code.
5247 * config/mips/tm-irix5.h (MIPS_LAST_ARG_REGNUM)
5248 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
5249 * config/mips/tm-irix6.h (MIPS_LAST_ARG_REGNUM)
5250 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
5251 * config/mips/tm-mips.h (MIPS_EABI, MIPS_LAST_ARG_REGNUM,
5252 MIPS_LAST_FP_ARG_REGNUM): Remove.
5253
5254 2002-06-11 Michal Ludvig <mludvig@suse.cz>
5255
5256 * dwarf2cfi.c (unwind_tmp_obstack_init): New.
5257 (unwind_tmp_obstack_free, parse_frame_info)
5258 (update_context, cfi_read_fp, cfi_write_fp)
5259 (cfi_frame_chain, cfi_init_extra_frame_info)
5260 (cfi_virtual_frame_pointer): Use the above function.
5261 * dwarf2cfi.c: Reindented (using 'indent dwarf2cfi.c').
5262
5263 2002-06-11 Corinna Vinschen <vinschen@redhat.com>
5264
5265 * v850-tdep.c (v850_type_is_scalar): New function.
5266 (v850_use_struct_convention): Match current gcc implementation
5267 as close as possible.
5268 (v850_push_arguments): Fix stack_offset handling. Don't write
5269 struct_addr into register. This is done by v850_store_struct_return.
5270 (v850_extract_return_value): Care for structs.
5271 (v850_store_return_value): Ditto.
5272 (v850_store_struct_return): Actually write address.
5273
5274 2002-06-11 Michal Ludvig <mludvig@suse.cz>
5275
5276 * x86-64-tdep.c (x86_64_skip_prologue): Fix to work on functions
5277 without debug information too.
5278
5279 2002-06-10 Andrew Cagney <ac131313@redhat.com>
5280
5281 * gdbarch.sh (PRINT_FLOAT_INFO): Add frame and ui_file parameters.
5282 Make multi-arch pure.
5283 * gdbarch.h, gdbarch.c: Re-generate.
5284 * arm-tdep.c (arm_print_float_info): Update.
5285 * arch-utils.h (default_print_float_info): Update.
5286 * arch-utils.c (default_print_float_info): Update.
5287 * infcmd.c (float_info): Update call.
5288
5289 2002-06-10 Andrew Cagney <ac131313@redhat.com>
5290
5291 * Makefile.in (init.c): Move the call to _initialize_gdbtypes to
5292 the front of the initialize list.
5293
5294 2002-06-10 Andrew Cagney <ac131313@redhat.com>
5295
5296 * infrun.c (struct inferior_status): Replace fields
5297 selected_frame_address and selected_level with field
5298 selected_frame_id.
5299 (save_inferior_status): Update. Use get_frame_id.
5300 (struct restore_selected_frame_args): Delete.
5301 (restore_selected_frame): Update. Use frame_find_by_id.
5302 (restore_inferior_status): Update.
5303
5304 * breakpoint.h (struct breakpoint): Change type of
5305 watchpoint_frame to frame_id.
5306 * breakpoint.c (insert_breakpoints): Use frame_find_by_id. Remove
5307 call to get_current_frame.
5308 (do_enable_breakpoint): Use frame_find_by_id. Remove call to
5309 get_current_frame.
5310 (watchpoint_check): Use frame_find_by_id.
5311
5312 * frame.h (record_selected_frame): Delete declaration.
5313 * stack.c (record_selected_frame): Delete function.
5314
5315 * frame.h (struct frame_id): Define.
5316 (get_frame_id): Declare.
5317 (frame_find_by_id): Declare.
5318 * frame.c (frame_find_by_id): New function.
5319 (get_frame_id): New function.
5320
5321 2002-06-10 Andrey Volkov <avolkov@transas.com>
5322
5323 * ser-e7kpc.c: Fix duplicated define and call of
5324 _initialize_ser_e7000pc
5325
5326 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
5327
5328 * signals/signals.c (target_signal_from_host): Fix #ifdef
5329 SIGRTMIN case.
5330 (do_target_signal_to_host): Likewise.
5331
5332 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
5333
5334 * mips-tdep.c (mips_find_abi_section): New function.
5335 (mips_gdbarch_init): Call it.
5336
5337 2002-06-09 Mark Kettenis <kettenis@gnu.org>
5338
5339 * solib-svr4.c (init_fetch_link_map_offsets): Simply return
5340 legacy_fetch_link_map_offsets. Adjust comment to reflect reality
5341 after Andrew's 2002-06-08 gdbarch change.
5342
5343 2002-06-09 Mark Kettenis <kettenis@gnu.org>
5344
5345 * i386-linux-nat.c (suppy_gregset): Don't supply
5346 I386_LINUX_ORIG_EAX_REGNUM if there isn't room for it in GDB's
5347 register cache.
5348 (fill_gregset): Don't fetch it under the same circumstances.
5349
5350 2002-06-09 Andrew Cagney <cagney@redhat.com>
5351
5352 * Makefile.in (callback_h): Define.
5353 (remote_sim_h): Update path to remote-sim.h.
5354 (remote-rdp.o): Add $(callback_h).
5355 (remote-sim.o): Use $(callback_h).
5356 * remote-sim.c: Include "gdb/callback.h" and "gdb/remote-sim.h".
5357 * remote-rdp.c: Include "gdb/callback.h".
5358
5359 2002-06-09 Mark Kettenis <kettenis@gnu.org>
5360
5361 * osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
5362 * osabi.c (gdb_osabi_names): Add "DJGPP" and "NetWare".
5363
5364 2002-06-08 Andrew Cagney <ac131313@redhat.com>
5365
5366 * sparcl-tdep.c: Use __CYGWIN__ instead of __CYGWIN32__.
5367 * rdi-share/serpardr.c: Ditto.
5368 * rdi-share/unixcomm.c: Ditto.
5369 * rdi-share/serdrv.c: Ditto.
5370 * rdi-share/hostchan.h: Ditto.
5371 * rdi-share/hostchan.c: Ditto.
5372 * rdi-share/host.h: Ditto.
5373 * rdi-share/devsw.c: Ditto.
5374
5375 * objfiles.h: Change type of obj_private to void pointer.
5376 * pa64solib.c: Update copyright. Don't include "assert.h", use
5377 strcmp instead of STREQ, use LONGEST, do not use PTR
5378 * somsolib.c: Ditto.
5379
5380 * config/djgpp/fnchange.lst: Fix problems with bfd/elf32-i386.c,
5381 bfd/elf32-i386qnx.c, bfd/elf32-sh.c, bfd/elf32-sh64-nbsd.c,
5382 bfd/elf64-sh64-nbsd.c bfd/elf64-sh64.c.
5383
5384 2002-06-08 Andrew Cagney <ac131313@redhat.com>
5385
5386 * frame.c (GET_SAVED_REGISTER): Delete macro definition.
5387 (default_get_saved_register): Delete function.
5388 * gdbarch.sh (GET_SAVED_REGISTER): Set default to
5389 generic_unwind_get_saved_register.
5390 * gdbarch.h, gdbarch.c: Re-generate.
5391
5392 2002-06-08 Andrew Cagney <ac131313@redhat.com>
5393
5394 * gdbarch.sh (FRAME_CHAIN_VALID): Set default to
5395 generic_func_frame_chain_valid.
5396 * gdbarch.h, gdbarch.c: Re-generate.
5397 * blockframe.c (generic_func_frame_chain_valid): Only check
5398 PC_IN_CALL_DUMMY when generic dummy frames. Don't worry about
5399 passing FP to PC_IN_CALL_DUMMY.
5400 Fix PR gdb/360.
5401
5402 2002-06-08 Andrew Cagney <ac131313@redhat.com>
5403
5404 * gdbarch.sh (struct gdbarch_data): Add field init_p.
5405 (register_gdbarch_data): Initialize init_p.
5406 (gdbarch_data): Initialize data pointer using the init function.
5407 (init_gdbarch_data): Delete function.
5408 (gdbarch_update_p): Update.
5409 (initialize_non_multiarch): Update.
5410 (struct gdbarch): Add field initialized_p.
5411 * gdbarch.h, gdbarch.c: Re-generate.
5412
5413 2002-06-07 Michal Ludvig <mludvig@suse.cz>
5414
5415 * x86-64-linux-nat.c (x86_64_fxsave_offset): New.
5416 (supply_fpregset, fill_fpregset): Don't call i387_*_fxsave,
5417 better do the things actually here.
5418 * x86-64-tdep.c (x86_64_register_name2nr): New.
5419 (x86_64_register_name): Renamed to x86_64_register_nr2name.
5420 (x86_64_gdbarch_init): Respect the above change.
5421 * x86-64-tdep.h (x86_64_register_name2nr)
5422 (x86_64_register_nr2name): Add prototypes.
5423 * config/i386/x86-64linux.mt (TDEPFILES): Remove i387-tdep.o.
5424
5425 2002-06-06 Michael Snyder <msnyder@redhat.com>
5426
5427 * d10v-tdep.c (d10v_push_arguments): Handle struct_return.
5428 Delete extra braces and re-indent.
5429 (d10v_store_return_value): Char return values
5430 must be shifted over by one byte in R0.
5431 (d10v_extract_return_value): Delete extra braces, re-indent.
5432
5433 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
5434
5435 * d10v-tdep.c (d10v_read_sp, d10v_read_fp): Add prototype.
5436 (d10v_register_virtual_type): Make $fp and $sp be pointer to data.
5437 (d10v_integer_to_address): Rewrite.
5438 (d10v_frame_init_saved_regs): When reading fp and sp registers use
5439 the d10v specific functions which take care of converting to the
5440 correct space.
5441
5442 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
5443
5444 * config/djgpp/fnchange.lst: Add testsuite files altivec-abi.c,
5445 altivec-abi.exp, altivec-regs.c, altivec-regs.exp.
5446
5447 2002-06-02 Andrew Cagney <ac131313@redhat.com>
5448
5449 * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm
5450 includes.
5451 * config/tm-linux.h: Ditto.
5452 * config/alpha/tm-alphalinux.h: Ditto.
5453 * config/arm/nm-linux.h, config/arm/tm-linux.h: Ditto.
5454 * config/arm/xm-nbsd.h, config/i386/nm-gnu.h: Ditto.
5455 * config/i386/nm-i386lynx.h, config/i386/nm-i386sol2.h: Ditto.
5456 * config/i386/nm-i386v4.h, config/i386/nm-i386v42mp.h: Ditto.
5457 * config/i386/nm-linux.h, config/i386/nm-m3.h: Ditto.
5458 * config/i386/nm-ptx4.h, config/i386/nm-x86-64.h: Ditto.
5459 * config/i386/tm-i386gnu.h, config/i386/tm-i386lynx.h: Ditto.
5460 * config/i386/tm-i386m3.h, config/i386/tm-i386sco5.h: Ditto.
5461 * config/i386/tm-i386v4.h, config/i386/tm-linux.h: Ditto.
5462 * config/i386/tm-ptx4.h, config/i386/tm-vxworks.h: Ditto.
5463 * config/i386/xm-i386v4.h, config/i386/xm-nbsd.h: Ditto.
5464 * config/i386/xm-ptx.h, config/i386/xm-ptx4.h: Ditto.
5465 * config/i960/tm-vx960.h, config/ia64/nm-aix.h: Ditto.
5466 * config/ia64/nm-linux.h, config/ia64/tm-aix.h: Ditto.
5467 * config/ia64/tm-linux.h, config/ia64/xm-aix.h: Ditto.
5468 * config/m68k/nm-linux.h, config/m68k/nm-m68klynx.h: Ditto.
5469 * config/m68k/nm-sysv4.h, config/m68k/tm-linux.h: Ditto.
5470 * config/m68k/tm-m68klynx.h, config/m68k/tm-m68kv4.h: Ditto.
5471 * config/m68k/tm-sun2os4.h, config/m68k/tm-sun3os4.h: Ditto.
5472 * config/m68k/tm-vx68.h, config/m68k/xm-m68kv4.h: Ditto.
5473 * config/m68k/xm-nbsd.h, config/m88k/nm-delta88v4.h: Ditto.
5474 * config/m88k/tm-delta88v4.h, config/m88k/xm-delta88v4.h: Ditto.
5475 * config/mips/nm-irix5.h, config/mips/nm-linux.h: Ditto.
5476 * config/mips/tm-linux.h, config/mips/tm-mips64.h: Ditto.
5477 * config/mips/tm-mipsm3.h, config/mips/tm-mipsv4.h: Ditto.
5478 * config/mips/tm-vxmips.h, config/mips/xm-irix5.h: Ditto.
5479 * config/mips/xm-mipsv4.h, config/ns32k/xm-nbsd.h: Ditto.
5480 * config/pa/nm-hppao.h, config/powerpc/nm-linux.h: Ditto.
5481 * config/powerpc/tm-linux.h, config/powerpc/tm-vxworks.h: Ditto.
5482 * config/powerpc/xm-aix.h, config/rs6000/nm-rs6000ly.h: Ditto.
5483 * config/rs6000/tm-rs6000ly.h, config/rs6000/xm-aix4.h: Ditto.
5484 * config/sh/tm-linux.h, config/sparc/nm-linux.h: Ditto.
5485 * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4sol2.h: Ditto.
5486 * config/sparc/tm-linux.h, config/sparc/tm-sp64linux.h: Ditto.
5487 * config/sparc/tm-sp64sim.h, config/sparc/tm-sparclynx.h: Ditto.
5488 * config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h: Ditto.
5489 * config/sparc/tm-vxsparc.h, config/sparc/xm-sun4sol2.h: Ditto.
5490
5491 2002-05-04 Aidan Skinner <aidan@velvet.net>
5492
5493 * ada-exp.tab.c: New file
5494 * ada-exp.y: New file
5495 * ada-lang.c: New file
5496 * ada-lang.h: New file
5497 * ada-lex.c: New file
5498 * ada-lex.l: New file
5499 * ada-tasks.c: New file
5500 * ada-typeprint.c: New file
5501 * ada-valprint.c: New file
5502
5503 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
5504
5505 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Don't set
5506 use_struct_convention to ppc_sysv_abi_broken_use_struct_convention.
5507
5508 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
5509
5510 * config/rs6000/aix4.mt (TDEPFILES): Use ppc-sysv-tdep.o
5511 insetead of ppc-linux-tdep.o.
5512 * config/rs6000/rs6000.mt (TDEPFILES): Likewise.
5513 * config/rs6000/rs6000lynx.mt (TDEPFILES): Likewise.
5514
5515 2002-06-02 Andrew Cagney <ac131313@redhat.com>
5516
5517 2002-05-07 Christian Groessler <chris@groessler.org>
5518 * z8k-tdep.c (z8k_print_register_hook): Fix display of 32 and 64
5519 bit register contents for little endian hosts.
5520
5521 2002-06-01 Andrew Cagney <ac131313@redhat.com>
5522
5523 * MAINTAINERS: Mention that any `HP/UX reader' can be changed by
5524 any maintainer.
5525
5526 2002-06-01 Andrew Cagney <ac131313@redhat.com>
5527
5528 * gdbarch.h: Regenerate.
5529
5530 2002-06-01 Andrew Cagney <ac131313@redhat.com>
5531
5532 * MAINTAINERS: Add everyone to write-after-approval list.
5533
5534 2002-06-01 Andrew Cagney <ac131313@redhat.com>
5535
5536 * stack.c (frame_info): Use frame_register_unwind instead of
5537 saved_regs. Mention when the SP is on the stack or in a register.
5538
5539 * frame.h (frame_register_unwind_ftype): Define. Document.
5540 (struct frame_info): Add field register_unwind and
5541 register_unwind_cache.
5542 (frame_register_unwind): Declare.
5543 (generic_unwind_get_saved_register): Declare.
5544
5545 * frame.c (frame_register_unwind): New function.
5546 (generic_unwind_get_saved_register): New function.
5547
5548 * blockframe.c (generic_call_dummy_register_unwind): New function.
5549 (frame_saved_regs_register_unwind): New function.
5550 (set_unwind_by_pc): New function.
5551 (create_new_frame): New function.
5552 (get_prev_frame): New function.
5553
5554 2002-05-30 Andrew Cagney <ac131313@redhat.com>
5555
5556 * a29k-share/: Delete directory.
5557 * remote-vx29k.c: Delete file.
5558
5559 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
5560
5561 * config/djgpp/fnchange.lst: Add ns32knbsd-nat.c, ns32knbsd-tdep.c,
5562 ppcnbsd-nat.c, ppcnbsd-tdep.c, sparcnbsd-nat.c, and sparcnbsd-tdep.c.
5563
5564 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
5565
5566 * Makefile.in (ALLDEPFILES): Add sparc64nbsd-nat.c,
5567 sparcnbsd-nat.c, and sparcnbsd-tdep.c.
5568 (sparc64nbsd-nat.o)
5569 (sparcnbsd-nat.o)
5570 (sparcnbsd-tdep.o): New dependency lists.
5571 * NEWS: Note new UltraSPARC NetBSD native configuration.
5572 * configure.host (sparc64-*-netbsd*): New host.
5573 * configure.tgt (sparc-*-netbsdelf*)
5574 (sparc-*-netbsd*): Set gdb_target to nbsd.
5575 (sparc64-*-netbsd*): New target.
5576 * sparc64nbsd-nat.c: New file.
5577 * sparcnbsd-nat.c: New file.
5578 * sparcnbsd-tdep.c: New file.
5579 * sparcnbsd-tdep.h: New file.
5580 * config/sparc/nbsd.mt: New file.
5581 * config/sparc/nbsd64.mh: New file.
5582 * config/sparc/nbsd64.mt: New file.
5583 * config/sparc/nbsdaout.mh (NATDEPFILES): Remove corelow.o,
5584 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
5585 (HOST_IPC): Remove.
5586 * config/sparc/nbsdaout.mt: Remove.
5587 * config/sparc/nbsdelf.mh (NATDEPFILES): Remove corelow.o,
5588 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
5589 (HOST_IPC): Remove.
5590 * config/sparc/nbsdelf.mt: Remove.
5591 * config/sparc/nm-nbsd.h: Update copyright years. Remove all
5592 sparc-nat.c compatiblity defines.
5593 * config/sparc/tm-nbsd.h: Update copyright years. Include solib.h.
5594 (GDB_MULTI_ARCH): Set to GDB_MULTI_ARCH_PARTIAL.
5595 * config/sparc/tm-nbsd64.h: New file.
5596 * config/sparc/tm-nbsdaout.h: Remove.
5597 * config/sparc/xm-nbsd.h: Remove.
5598
5599 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
5600
5601 * Makefile.in (sparc-tdep.o): Add osabi.h to dependency list.
5602 * sparc-tdep.c: Include osabi.h.
5603 (gdbarch_tdep): Add osabi member.
5604 (_initialize_sparc_tdep): Use gdbarch_register.
5605 (sparc_gdbarch_init): Use generic OS ABI framework.
5606 (sparc_dump_tdep): New function.
5607
5608 2002-05-30 Kevin Buettner <kevinb@redhat.com>
5609
5610 * corefile.c (do_captured_read_memory_integer): Return non-zero
5611 result.
5612 (safe_read_memory_integer): Copy result of memory read when
5613 status is non-zero. Also, add comments.
5614
5615 2002-05-20 Jason Thorpe <thorpej@wasabisystems.com>
5616
5617 * Makefile.in (ppc_tdep_h): Define.
5618 (ppc-linux-nat.o)
5619 (ppc-linux-tdep.o)
5620 (rs6000-tdep.o): Use $(ppc_tdep_h).
5621 (ppc-sysv-tdep.o)
5622 (ppcnbsd-nat.o)
5623 (ppcnbsd-tdep.o): New dependency lists.
5624 * ppc-tdep.h: Use generic OS ABI framework.
5625 * ppc-linux-tdep.c (_initialize_ppc_linux_tdep)
5626 (ppc_linux_init_abi): New functions.
5627 (ppc_sysv_abi_broken_use_struct_convention)
5628 (ppc_sysv_abi_use_struct_convention)
5629 (ppc_sysv_abi_push_arguments): Move to...
5630 * ppc-sysv-tdep.c: ...here.
5631 * ppcnbsd-nat.c: Don't include gdbcore.h and regcache.h.
5632 * rs6000-tdep.c (process_note_abi_tag_sections)
5633 (get_elfosabi): Remove.
5634 (rs6000_gdbarch_init): Use generic OS ABI framework.
5635 (rs6000_dump_tdep): New function.
5636 (_initialize_rs6000_tdep): Use gdbarch_register.
5637 * config/powerpc/linux.mt (TDEPFILES): Add ppc-sysv-tdep.o.
5638 * config/powerpc/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
5639 * config/powerpc/aix.mt (TDEPFILES): Use ppc-sysv-tdep.o instead
5640 of ppc-linux-tdep.o.
5641 * config/powerpc/nbsd.mt (TDEPFILES): Likewise.
5642 * config/powerpc/ppc-eabi.mt (TDEPFILES): Likewise.
5643 * config/powerpc/ppc-sim.mt (TDEPFILES): Likewise.
5644 * config/powerpc/ppcle-eabi.mt (TDEPFILES): Likewise.
5645 * config/powerpc/ppcle-sim.mt (TDEPFILES): Likewise.
5646 * config/powerpc/vxworks.mt (TDEPFILES): Likewise.
5647
5648 2002-05-29 Jim Blandy <jimb@redhat.com>
5649
5650 * macroscope.c (default_macro_scope): Put `void' in empty argument
5651 list.
5652
5653 2002-05-29 Andrew Cagney <ac131313@redhat.com>
5654
5655 * Makefile.in (arch-utils.o): Add $(sim_regno_h).
5656 * arch-utils.c: Include "sim-regno.h".
5657 * gdbarch.sh: Don't include "sim-regno.h".
5658 * gdbarch.h, gdbarch.c: Regenerate.
5659 * sim-regno.h (legacy_register_sim_regno): Move declaration from
5660 here.
5661 * arch-utils.h (legacy_register_sim_regno): To here.
5662 * remote-sim.c (legacy_register_sim_regno): Move function from
5663 here.
5664 * arch-utils.c (legacy_register_sim_regno): To here.
5665
5666 2002-05-28 Andrew Cagney <ac131313@redhat.com>
5667
5668 * sim-regno.h: New file.
5669 * Makefile.in (sim_regno_h): Define.
5670 (d10v-tdep.o, remote-sim.o): Add dependency on $(sim_regno_h).
5671 * remote-sim.c: Include "sim-regno.h" and "gdb_assert.h".
5672 (legacy_register_sim_regno): New function.
5673 (one2one_register_sim_regno): New function.
5674 (gdbsim_fetch_register): Rewrite.
5675 (gdbsim_store_register): Only store a register when
5676 REGISTER_SIM_REGNO is valid.
5677 * d10v-tdep.c: Include "sim-regno.h".
5678 (d10v_ts2_register_sim_regno): Add legacy_regiter_sim_regno check.
5679 (d10v_ts3_register_sim_regno): Ditto.
5680 * gdbarch.sh: Include "sim-regno.h".
5681 (REGISTER_SIM_REGNO): Set default to legacy_register_sim_regno.
5682 * gdbarch.h, gdbarch.c: Regenerate.
5683 * arch-utils.h (default_register_sim_regno): Delete declaration.
5684 * arch-utils.c (default_register_sim_regno): Delete function.
5685
5686 2002-05-28 Jason Thorpe <thorpej@wasabisystems.com>
5687
5688 * ppcnbsd-nat.c: Rewrite.
5689 * ppcnbsd-tdep.c: New file.
5690 * ppcnbsd-tdep.h: New file.
5691 * config/powerpc/nbsd.mh (NATDEPFILES): Remove corelow.o,
5692 solib.o, and solib-svr4.o.
5693 * config/powerpc/nbsd.mt (TDEPFILES): Add ppcnbsd-tdep.o,
5694 nbsd-tdep.o, and corelow.o.
5695
5696 2002-05-28 Andrew Cagney <ac131313@redhat.com>
5697
5698 * MAINTAINERS (--enable-gdb-build-warnings): Rewrite script to use
5699 `tr' and `sed'. Mention that `broken' targets are not expected to
5700 build.
5701
5702 2002-05-27 Michal Ludvig <mludvig@suse.cz>
5703
5704 * x86-64-tdep.c (x86_64_skip_prologue): Remove obsolete note.
5705 Let PC point right after the prologue before looking up symbols.
5706
5707 2002-05-27 Martin M. Hunt <hunt@redhat.com>
5708
5709 * i386-tdep.c (i386_register_virtual_type): Return
5710 builtin_type_vec128i for SSE registers.
5711
5712 * gdbtypes.h (builtin_type_vec128i): Declare.
5713
5714 * gdbtypes.c (build_builtin_type_vec128i): New function.
5715 (builtin_type_v2_double, builtin_type_v4_int64): New types.
5716 (builtin_type_vec128i): New type for SSE2 128-bit registers.
5717 (build_gdbtypes): Initialize new builtin vector types.
5718 (_initialize_gdbtypes): Register new vector types with gdbarch.
5719
5720 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5721
5722 * MAINTAINERS: ns32k is not longer an obsolete candidate,
5723 since it has been multi-arch'd.
5724 * NEWS: Note that ns32k-*-* is now partial multi-arch.
5725 Move Alpha and VAX multi-arch news entries to same section
5726 as other multi-arch news.
5727
5728 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5729
5730 * ns32k-tdep.c: include gdbtypes.h, inferior.h, regcache.h,
5731 target.s, arch-utils.h, ns32k-tdep.h. Make many functions
5732 static. Rename some register numbers to put them in ns32k-tdep
5733 private namespace.
5734 (ns32k_get_saved_register, ns32k_gdbarch_init_32082,
5735 ns32k_gdbarch_init_32382, ns32k_gdbarch_init, ns32k_dump_tdep): New
5736 functions.
5737 (_initialize_ns32k_tdep): Use gdbarch_register.
5738 * ns32k-tdep.h: New file.
5739 * ns32knbsd-tdep.c: New file.
5740 * config/ns32k/nbsdaout.mt (TDEPFILES): Add ns32knbsd-tdep.o.
5741 * config/ns32k/tm-nbsd.h: Include "ns32k/tm-ns32k.h".
5742 (IN_SOLIB_CALL_TRAMPOLINE, REGISTER_NAME, NUM_REGS,
5743 REGISTER_BYTES, REGISTER_BYTE): Remove.
5744 * config/ns32k/tm-ns32k.h: New file.
5745 * config/ns32k/tm-umax.h: Remove.
5746
5747 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5748
5749 * ns32k-tdep.c (ns32k_saved_pc_after_call,
5750 ns32k_store_struct_return, ns32k_extract_return_value,
5751 ns32k_store_return_value, ns32k_extract_struct_value_address): New
5752 functions.
5753 * config/ns32k/tm-umax.h (SAVED_PC_AFTER_CALL): Define as
5754 ns32k_saved_pc_after_call.
5755 (STORE_STRUCT_RETURN): Define as ns32k_store_struct_return.
5756 (EXTRACT_RETURN_VALUE): Define as ns32k_extract_return_value.
5757 (STORE_RETURN_VALUE): Define as ns32k_store_return_value.
5758 (EXTRACT_STRUCT_VALUE_ADDRESS): Define as
5759 ns32k_extract_struct_value_address.
5760
5761 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5762
5763 * ns32k-tdep.c (ns32k_call_dummy_words, sizeof_ns32k_call_dummy_words,
5764 ns32k_fix_call_dummy): New.
5765 * config/ns32k/tm-umax.h (CALL_DUMMY_WORDS): Define as
5766 ns32k_call_dummy_words.
5767 (SIZEOF_CALL_DUMMY_WORDS): Define as sizeof_ns32k_call_dummy_words.
5768 (CALL_DUMMY, CALL_DUMMY_LENGTH, CALL_DUMMY_ADDR,
5769 CALL_DUMMY_NARGS): Remove.
5770 (FIX_CALL_DUMMY): Define as ns32k_fix_call_dummy.
5771
5772 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5773
5774 * ns32k-tdep.c (ns32k_breakpoint_from_pc, ns32k_frame_chain,
5775 ns32k_frame_saved_pc, ns32k_frame_args_address,
5776 ns32k_frame_locals_address, ns32k_frame_init_saved_regs,
5777 ns32k_push_dummy_frame, ns32k_pop_frame): New functions.
5778 * config/ns32k/tm-nbsd.h (FRAME_SAVED_PC): Remove.
5779 * config/ns32k/tm-umax.h (INNER_THAN): Define as core_addr_lessthan.
5780 (BREAKPOINT_FROM_PC): Define as ns32k_breakpoint_from_pc.
5781 (BREAKPOINT): Remove..
5782 (FRAME_CHAIN): Define as ns32k_frame_chain.
5783 (FRAME_SAVED_PC): Define as ns32k_frame_saved_pc.
5784 (FRAME_ARGS_ADDRESS): Define as ns32k_frame_args_address.
5785 (FRAME_LOCALS_ADDRESS): Define as ns32k_frame_locals_address.
5786 (FRAME_FIND_SAVED_REGS): Remove.
5787 (FRAME_INIT_SAVED_REGS): Define as ns32k_frame_init_saved_regs.
5788 (PUSH_DUMMY_FRAME): Define as ns32k_push_dummy_frame.
5789 (POP_FRAME): Define as ns32k_pop_frame.
5790
5791 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5792
5793 * ns32k-tdep.c (ns32k_register_byte_32082,
5794 ns32k_register_byte_32382, ns32k_register_raw_size,
5795 ns32k_register_virtual_size, ns32k_register_virtual_type): New
5796 functions.
5797 * config/ns32k/tm-nbsd.h (REGISTER_BYTE): Define as
5798 ns32k_register_byte_32382.
5799 * config/ns32k/tm-umax.h: Update copyright years.
5800 (REGISTER_BYTE): Define as ns32k_register_byte_32082.
5801 (REGISTER_RAW_SIZE): Define as ns32k_register_raw_size.
5802 (REGISTER_VIRTUAL_SIZE): Define as ns32k_register_virtual_size.
5803 (REGISTER_VIRTUAL_TYPE): Define as ns32k_register_virtual_type.
5804 (ns32k_get_enter_addr): Fix prototype.
5805
5806 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5807
5808 * ns32k-tdep.c: Update copyright years.
5809 (ns32k_register_name_32082): New function.
5810 (ns32k_register_name_32382): Ditto.
5811 * config/ns32k/tm-nbsd.h (REGISTER_NAMES): Remove.
5812 (REGISTER_NAME): Define as ns32k_register_name_32382.
5813 * config/ns32k/tm-umax.h (REGISTER_NAMES): Remove.
5814 (REGISTER_NAME): Define as ns32k_register_name_32082.
5815
5816 2002-05-24 Jim Blandy <jimb@redhat.com>
5817
5818 * dwarf2read.c (free_line_header): Use xfree, not free.
5819
5820 2002-05-24 Jason Thorpe <thorpej@wasabisystems.com>
5821
5822 * config/djgpp/fnchange.lst: Add alphabsd-nat.c,
5823 alphabsd-tdep.c, mipsnbsd-nat.c, and mipsnbsd-tdep.c
5824
5825 2002-05-23 Andrew Cagney <ac131313@redhat.com>
5826
5827 * PROBLEMS: Mention s390 and FreeBSD 4.4 build problems.
5828
5829 2002-05-23 Andrew Cagney <ac131313@redhat.com>
5830
5831 From Ross Alexander at NEC Europe:
5832 * config/pa/hpux11w.mh (NATDEPFILES): Add solib.o.
5833
5834 2002-05-23 Michael Snyder <msnyder@redhat.com>
5835
5836 * cli/cli-dump.c (restore_command): Use parse_and_eval_long
5837 for input, rather than parse_and_eval_address.
5838
5839 2002-05-23 Andrew Cagney <ac131313@redhat.com>
5840
5841 * d10v-tdep.c: Include "gdb/sim-d10v.h" instead of "sim-d10v.h".
5842 * Makefile.in (sim_d10v_h): Update definition.
5843
5844 2002-05-24 Andrew Cagney <cagney@redhat.com>
5845
5846 * d10v-tdep.c (d10v_gdbarch_init): Revert old code included in
5847 change `2002-05-22 Michael Snyder' below.
5848 (d10v_push_arguments): Ditto.
5849 (d10v_extract_return_value): Ditto.
5850
5851 2002-05-23 Jim Blandy <jimb@redhat.com>
5852
5853 * macrotab.c (check_for_redefinition): Don't complain if the new
5854 definition is the same as the previous one. Take more arguments
5855 to allow the comparison.
5856 (macro_define_object, macro_define_function): Pass more arguments
5857 to check_for_redefinition.
5858
5859 2002-05-22 Michael Snyder <msnyder@redhat.com>
5860
5861 * d10v-tdep.c: Change a few macros to enums for ease of debugging.
5862 (d10v_frame_chain_valid): Add PC_IN_CALL_DUMMY clause.
5863 (d10v_frame_saved_pc): Add PC_IN_CALL_DUMMY clause.
5864 (d10v_frame_chain): Bail immediately if PC_IN_CALL_DUMMY.
5865 Don't bail if return_pc is PC_IN_CALL_DUMMY.
5866 Add a temp variable to save a call (and a memory read).
5867 (d10v_init_extra_frame_info): Get fi->pc from callee's return_pc
5868 if possible (so that PC_IN_CALL_DUMMY will work).
5869
5870 2002-05-22 Corinna Vinschen <vinschen@redhat.com>
5871
5872 * MAINTAINERS: Remove status `OBSOLETE' from v850.
5873
5874 2002-05-22 Michal Ludvig <mludvig@suse.cz>
5875
5876 * dwarf2cfi.c (frame_state_for): Added safety check for a valid
5877 fde->cie_ptr.
5878 (dwarf2_build_frame_info): Corrected handling of eh_frame.
5879 (dwarf2_build_frame_info): Add offset to fde->initial_location
5880 so that frames of shared libraries are mapped correctly.
5881 (execute_stack_op): Change type of 'result' from ULONGEST to
5882 CORE_ADDR.
5883
5884 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
5885
5886 * config/alpha/tm-nbsd.h: Include solib.h.
5887
5888 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
5889
5890 * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Don't make
5891 assumptions about the host's byte order.
5892
5893 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
5894
5895 * Makefile.in (alphanbsd-tdep.o, shnbsd-tdep.o): Add solib-svr4.h
5896 to dependency list.
5897 * alphanbsd-tdep.c: Include solib-svr4.h.
5898 * shnbsd-tdep.c: Ditto.
5899
5900 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
5901
5902 * Makefile.in (armnbsd-tdep.o): Add solib-svr4.h and
5903 nbsd-tdep.h to dependency list.
5904 * configure.host (arm*-*-netbsdelf*, arm*-*-netbsd*,
5905 i[3456]86-*-netbsdaout*, i[3456]86-*-netbsd*, m68*-*-netbsd*,
5906 ns32k-*-netbsd*, sparc-*-netbsdaout*, sparc-*-netbsd*): Use
5907 nbsdaout.mh and nbsdelf.mh consistently.
5908 * configure.tgt (i[3456]86-*-netbsd*, m68*-*-netbsd*,
5909 ns32k-*-netbsd*, sparc-*-netbsdelf*, sparc-*-netbsd*) Use
5910 nbsdaout.mt and nbsdelf.mh consistently.
5911 * armnbsd-tdep.c: Include nbsd-tdep.h and solib-svr4.h.
5912 (arm_netbsd_elf_init_abi): Use set_solib_svr4_fetch_link_map_offsets
5913 to set nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
5914 * config/nm-nbsd.h: Garbage-collect SVR4_SHARED_LIBS. Move
5915 a.out shared library stuff from here...
5916 * config/nm-nbsdaout.h: ...to here.
5917 * config/tm-nbsd.h: Remove.
5918 * config/alpha/nm-nbsd.h (SVR4_SHARED_LIBS): Remove.
5919 * config/arm/nbsd.mh: Remove.
5920 * config/arm/nbsd.mt (TDEPFILES): Remove solib-sunos.o, add
5921 nbsd-tdep.o.
5922 * config/arm/nbsdaout.mh: New file.
5923 * config/arm/nbsdelf.mh: New file.
5924 * config/arm/nm-nbsdaout.h: New file.
5925 * config/i386/nbsd.mh: Remove.
5926 * config/i386/nbsd.mt: Remove.
5927 * config/i386/nbsdaout.mh: New file.
5928 * config/i386/nbsdaout.mt: New file.
5929 * config/i386/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
5930 * config/i386/nbsdelf.mt (TM_FILE): Use tm-nbsd.h.
5931 * config/i386/nm-nbsd.h (REGISTER_U_ADDR,
5932 i386_register_u_addr): Remove.
5933 * config/i386/nm-nbsdaout.h: New file.
5934 * config/i386/nm-nbsdelf.h: Remove.
5935 * config/i386/tm-nbsd.h: Don't include config/tm-nbsd.h.
5936 (USE_STRUCT_CONVENTION): Remove.
5937 * config/i386/tm-nbsdaout.h: New file.
5938 * config/i386/tm-nbsdelf.h: Remove.
5939 * config/m68k/nbsd.mh: Remove.
5940 * config/m68k/nbsd.mt: Remove.
5941 * config/m68k/nbsdaout.mh: New file.
5942 * config/m68k/nbsdaout.mt: New file.
5943 * config/m68k/nm-nbsd.h: Use config/nm-nbsd.h.
5944 * config/m68k/nm-nbsdaout.h: New file.
5945 * config/m68k/tm-nbsd.h: Don't include config/tm-nbsd.h.
5946 (IN_SOLIB_CALL_TRAMPOLINE): Define.
5947 * config/ns32k/nbsd.mh: Remove.
5948 * config/ns32k/nbsd.mt: Remove.
5949 * config/ns32k/nbsdaout.mh: New file.
5950 * config/ns32k/nbsdaout.mt: New file.
5951 * config/ns32k/nm-nbsd.h: Include config/nm-nbsd.h.
5952 * config/ns32k/nm-nbsdaout.h: New file.
5953 * config/ns32k/tm-nbsd.h: Don't include config/tm-nbsd.h.
5954 (IN_SOLIB_CALL_TRAMPOLINE): Define.
5955 * config/powerpc/nm-nbsd.h: Include config/nm-nbsd.h.
5956 (SVR4_SHARED_LIBS): Remove.
5957 * config/powerpc/tm-nbsd.h: Dont' include config/tm-nbsd.h.
5958 * config/sparc/nbsd.mh: Remove.
5959 * config/sparc/nbsd.mt: Remove.
5960 * config/sparc/nbsdaout.mh: New file.
5961 * config/sparc/nbsdaout.mt: New file.
5962 * config/sparc/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
5963 * config/sparc/nbsdelf.mt: New file.
5964 * config/sparc/nm-nbsdaout.h: New file.
5965 * config/sparc/nm-nbsdelf.h: Remove.
5966 * config/sparc/tm-nbsd.h: Don't include config/tm-nbsd.h.
5967 * config/sparc/tm-nbsdaout.h: New file.
5968
5969 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
5970
5971 * Makefile.in (ALLDEPFILES): Add mipsnbsd-nat.c and
5972 mipsnbsd-tdep.c
5973 (mipsnbsd-nat.o, mipsnbsd-tdep.o): New dependency lists.
5974
5975 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
5976
5977 * Makefile.in (ALLDEPFILES): Add shnbsd-tdep.c and
5978 shnbsd-nat.c.
5979 (shnbsd-tdep.o, shnbsd-nat.o): New dependency lists.
5980
5981 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
5982
5983 * NEWS: Note new MIPS NetBSD native configuration.
5984 * configure.host (mips*-*-netbsd*): New host.
5985 * configure.tgt (mips*-*-netbsd*): New target.
5986 * mipsnbsd-nat.c: New file.
5987 * mipsnbsd-tdep.c: New file.
5988 * mipsnbsd-tdep.h: New file.
5989 * config/mips/nbsd.mh: New file.
5990 * config/mips/nbsd.mt: New file.
5991 * config/mips/nm-nbsd.h: New file.
5992 * config/mips/tm-nbsd.h: New file.
5993
5994 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
5995
5996 * Makefile.in (SFILES): Add osabi.c.
5997 (COMMON_OBS): Add osabi.o.
5998 (osabi.o): New dependency list.
5999 * osabi.c: New file.
6000 * osabi.h: New file.
6001 * doc/gdbint.texinfo: Document new generic OS ABI framework.
6002
6003 * Makefile.in (alpha_tdep_h): Define and use instead of
6004 alpha-tdep.h.
6005 * alpha-tdep.c (alpha_abi_names, process_note_abi_tag_sections,
6006 get_elfosabi, alpha_abi_handler_list, alpha_gdbarch_register_os_abi):
6007 Remove.
6008 (alpha_gdbarch_init, alpha_dump_tdep): Use generic OS ABI framework.
6009 * alpha-tdep.h: Include osabi.h.
6010 (alpha_abi): Remove.
6011 (gdbarch_tdep): Use generic OS ABI framework.
6012 * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Use
6013 gdbarch_register_osabi.
6014 * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Likewise.
6015 * alphafbsd-tdep.c (_initialize_alphafbsd_tdep): Likewise.
6016 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Likewise.
6017
6018 * Makefile.in (sh_tdep_h): Add osabi.h.
6019 * sh-tdep.h (sh_osabi): Remove.
6020 (gdbarch_tdep): Use generic OS ABI framework.
6021 * sh-tdep.c (sh_osabi_names, process_note_abi_tag_sections,
6022 sh_osabi_handler_list, sh_gdbarch_register_os_abi): Remove.
6023 (sh_gdbarch_init, sh_dump_tdep): Use generic OS ABI framework.
6024 * shnbsd-tdep.c (_initialize_shnbsd_tdep): Use gdbarch_register_osabi.
6025
6026 * Makefile.in (arm_tdep_h): Define and use instead of arm-tdep.h.
6027 * arm-linux-tdep.c (_initialize_arm_linux_tdep): Use
6028 gdbarch_register_osabi.
6029 * arm-tdep.c (arm_abi_names, process_note_abi_tag_sections,
6030 arm_abi_handler_list, arm_gdbarch_register_os_abi): Remove.
6031 (get_elfosabi): Rename to...
6032 (arm_elf_osabi_sniffer): ...this. Adjust to use generic OS
6033 ABI framework support routines.
6034 (arm_gdbarch_init): Use generic OS ABI framework.
6035 (arm_dump_tdep): Likewise.
6036 (_initialize_arm_tdep): Likewise.
6037 * arm-tdep.h: Include osabi.h.
6038 (arm_abi): Remove.
6039 (gdbarch_tdep): Remove arm_abi and abi_name members. Add
6040 osabi member.
6041 (arm_gdbarch_register_os_abi): Remove prototype.
6042 * armnbsd-tdep.c (arm_netbsd_aout_osabi_sniffer): New function.
6043 (_initialize_arm_netbsd_tdep): Use gdbarch_register_osabi.
6044
6045 * Makefile.in (mips-tdep.o): Add osabi.h to dependency list.
6046 * mips-tdep.c: Include osabi.h.
6047 (gdbarch_tdep, mips_gdbarch_init, mips_dump_tdep): Use generic
6048 OS ABI framework.
6049
6050 2002-05-20 Kazu Hirata <kazu@cs.umass.edu>
6051
6052 * h8300-tdep.c: Fix formatting.
6053
6054 2002-05-20 Elena Zannoni <ezannoni@redhat.com>
6055
6056 * rs6000-tdep.c (rs6000_do_registers_info): Simplify code for
6057 printing vector registers.
6058
6059 2002-05-19 Andrew Cagney <ac131313@redhat.com>
6060
6061 From Fernando Nasser:
6062 * remote.c (remote_async_open_1): Re-throw the exception when the
6063 connection fails.
6064 (remote_cisco_open): Ditto.
6065 (remote_open_1): Ditto.
6066
6067 2002-05-19 Andrew Cagney <ac131313@redhat.com>
6068
6069 * remote.c (remote_start_remote_dummy): Add uiout parameter.
6070 (remote_start_remote): Add uiout parameter. Pass through to
6071 remote_start_remote_dummy.
6072 (remote_open_1): Use catch_exception instead of catch_errors.
6073 (remote_async_open_1): Ditto.
6074 (remote_cisco_open): Ditto.
6075
6076 2002-05-19 Andrew Cagney <ac131313@redhat.com>
6077
6078 * remote.c (remote_start_remote): Replace PTR with void pointer.
6079 (sigint_remote_twice_token, sigint_remote_token): Ditto. Make
6080 static.
6081
6082 2002-05-18 Andrew Cagney <ac131313@redhat.com>
6083
6084 * gdb_indent.sh: Allow the script to be run in the sim directory.
6085
6086 2002-05-18 Mark Kettenis <kettenis@gnu.org>
6087
6088 * config/i386/nm-cygwin.h (NO_PTRACE_H): Remove define.
6089 * config/i386/nm-go32.h (NO_PTRACE_H): Remove define.
6090
6091 * corelow.c (core_open): Only call set_gdbarch_from_file if
6092 exec_bfd is NULL.
6093
6094 2002-05-17 Andrey Volkov <avolkov@transas.com>
6095
6096 * h8300-tdep.c: Add support of EXR register
6097 * config/h8300/tm-h8300.h: Ditto.
6098
6099 2002-05-17 Andrey Volkov <avolkov@transas.com>
6100
6101 * h8300-tdep.c: Add additional CCR flags (I,UI,H,U)
6102
6103 2002-05-17 Andrey Volkov <avolkov@transas.com>
6104
6105 * h8300-tdep.c: Change literal regnums to REGNO.
6106
6107 2002-05-17 Jim Blandy <jimb@redhat.com>
6108
6109 * NEWS: Note addition of macro support.
6110
6111 Expand preprocessor macros in C expressions.
6112 * c-lang.h: #include "macroexp.h", for macro_lookup_ftype.
6113 (scan_macro_expansion, scanning_macro_expansion,
6114 finished_macro_expansion): New function declarations.
6115 (expression_macro_lookup_func, expression_macro_lookup_baton): New
6116 variable declarations.
6117 * parser-defs.h (expression_context_pc): New declaration.
6118 * parse.c (expression_context_pc): New variable.
6119 (parse_exp_1): Set expression_context_pc, as well as
6120 expression_context_block.
6121 * c-exp.y (yylex): If we're not already reading the result of a
6122 macro expansion, try to macro-expand the next token. When we're
6123 done scanning a macro expansion, switch back to the mainline text.
6124 Commas and `if's in a macro's expansion don't terminate the input.
6125 * c-lang.c: #include "macroscope.h" and "gdb_assert.h".
6126 (macro_original_text, macro_expanded_text,
6127 expression_macro_lookup_func, expression_macro_lookup_baton): New
6128 variables.
6129 (scan_macro_expansion, scanning_macro_expansion,
6130 finished_macro_expansion, scan_macro_cleanup, null_macro_lookup,
6131 c_preprocess_and_parse): New functions.
6132 (c_language_defn, cplus_language_defn, asm_language_defn): Call
6133 c_preprocess_and_parse, instead of c_parse.
6134 * Makefile.in (c_lang_h): Note that this #includes macroexp.h.
6135 (c-lang.o): Note dependency on macroscope.h and gdb_assert.h.
6136
6137 Fri May 17 14:26:19 2002 J"orn Rennecke <joern.rennecke@superh.com>
6138
6139 * sh-tdep.c (gdb_print_insn_sh64): Delete.
6140 (gdb_print_insn_sh): Just set info->endian and use print_insn_sh.
6141 (sh_gdbarch_init): Always use gdb_print_insn_sh.
6142
6143 2002-05-17 Corinna Vinschen <vinschen@redhat.com>
6144
6145 * NEWS: Add section for multi-arched targets. Add v850 to that section.
6146
6147 2002-05-17 Jason Thorpe <thorpej@wasabisystems.com>
6148
6149 * Makefile.in (sh_tdep_h): Define and use.
6150 * config/sh/tm-sh.h (sh_osabi, sh_abi, gdbarch_tdep,
6151 register enum): Move to...
6152 * * sh-tdep.h: ...here.
6153 * sh-tdep.c: Include sh-tdep.h.
6154 * sh3-rom.c: Likewise.
6155 * shnbsd-tdep.c: Likewise.
6156
6157 2002-05-16 Michael Snyder <msnyder@redhat.com>
6158
6159 * arm-tdep.c: Spelling fix in comment.
6160
6161 2002-05-16 Jim Blandy <jimb@redhat.com>
6162
6163 Add commands for manually expanding macros and showing their
6164 definitions.
6165 * macrocmd.c, macroscope.c, macroscope.h: New files.
6166 * Makefile.in (SFILES): Add macrocmd.c, macroscope.c.
6167 (macroscope_h): New variable.
6168 (HFILES_NO_SRCDIR): Add macroscope.h.
6169 (COMMON_OBS): Add macrocmd.o, macroscope.o.
6170 (macroscope.o, macrocmd.o): New rules.
6171
6172 Teach the Dwarf 2 reader to read macro information.
6173 * dwarf2read.c: #include "macrotab.h".
6174 (dwarf_macinfo_buffer): New variable.
6175 (struct dwarf2_pinfo): New members: dwarf_macinfo_buffer, and
6176 dwarf_macinfo_size.
6177 (DWARF_MACINFO_BUFFER, DWARF_MACINFO_SIZE): New macros.
6178 (dwarf2_missing_macinfo_section, dwarf2_macros_too_long,
6179 dwarf2_macros_not_terminated, dwarf2_macro_outside_file,
6180 dwarf2_macro_unmatched_end_file, dwarf2_macro_malformed_definition,
6181 dwarf2_macro_spaces_in_definition): New complaints.
6182 (dwarf2_has_info): Initialize dwarf_macinfo_offset.
6183 (dwarf2_build_psymtabs): Read the .dwarf_macinfo section.
6184 (dwarf2_build_psymtabs_hard): Record the buffer and its size in
6185 the partial symbol table.
6186 (psymtab_to_symtab_1): Set the macinfo buffer and size globals
6187 from what's recorded in the partial symbol table.
6188 (read_file_scope): If the compilation unit has a
6189 `DW_AT_macro_info' attribute, read its macro information.
6190 * Makefile.in (dwarf2read.o): Depend on macrotab.h.
6191
6192 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
6193
6194 Fix PR gdb/546
6195 * ser-tcp.c: Don't include <netinet/udp.h>.
6196
6197 2002-05-16 Stephane Carrez <stcarrez@nerim.fr>
6198
6199 * MAINTAINERS: Update my email address.
6200
6201 2002-05-16 Richard Earnshaw <rearnsha@arm.com>
6202
6203 * config/arm/nm-nbsd.h: Use "config/nm-nbsd.h" to include generic
6204 include file of the same name.
6205
6206 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
6207
6208 * configure.tgt: Mark v850 as multi-arched.
6209 * config/v850/tm-v850.h: Remove file.
6210 * config/v850/v850.mt: Eliminate TM_FILE.
6211
6212 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
6213
6214 * v850-tdep.c: Full multi-arch.
6215 * config/v850/tm-v850.h: Eliminate or move to v850-tdep.c everything.
6216 Define GDB_MULTI_ARCH to 2.
6217
6218 2002-05-16 Pierre Muller <muller@ics.u-strasbg.fr>
6219
6220 * p-exp.y (current_type): New static variable.
6221 Carries the type of the expression at the position that is parsed.
6222 (push_current_type, pop_current_type): Two new functions. Used
6223 to store/restore current_type in expression on specific tokens.
6224 (search_field): New static variable. Set to one after parsing a point
6225 as at that point only a FIELDNAME token should be searched.
6226 (FIELDNAME): New token. After a point only a token belonging to
6227 current_type type definition is allowed.
6228 (all over token rules): reset and change current_type according
6229 to rules.
6230 (exp '[' rule): insert implicit array index field if
6231 exp is a pascal string type.
6232
6233 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
6234
6235 * v850-tdep.c: Fix comment for v850_scan_prologue. Remove extra
6236 frame info. Use frame_info's saved_regs instead of matching member
6237 in extra_frame_info throughout.
6238 (v850_frame_init_saved_regs): New function.
6239 (v850_init_extra_frame_info): Move most functionality into
6240 v850_frame_init_saved_regs().
6241 * config/v850/tm-v850.h (EXTRA_FRAME_INFO): Remove definition.
6242 (v850_frame_find_saved_regs): Remove declaration.
6243 (FRAME_FIND_SAVED_REGS): Remove definition.
6244 (v850_frame_init_saved_regs): Add declaration.
6245 (FRAME_INIT_SAVED_REGS): Add definition.
6246
6247 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
6248
6249 * v850-tdep.c: Begin multi-arch'ing v850.
6250 (v850_target_architecture_hook): Remove function.
6251 (v850_gdbarch_init): New function. Add code previously in
6252 v850_target_architecture_hook().
6253 (_initialize_v850_tdep): Don't set target_architecture_hook.
6254 Call register_gdbarch_init() instead.
6255
6256 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
6257
6258 * gdbtypes.h (struct cplus_struct_type): Remove args field.
6259 * hpread.c (hpread_read_struct_type): Remove assignments to args.
6260 (fixup_class_method_type): Likewise.
6261
6262 2002-05-15 Jim Blandy <jimb@redhat.com>
6263
6264 Add macro structures to GDB's symbol tables. Nobody puts anything
6265 in them yet.
6266 * symtab.h (struct symtab): New member: `macro_table'.
6267 * buildsym.h (pending_macros): New global variable.
6268 * buildsym.c: #include "macrotab.h".
6269 (buildsym_init): Initialize `pending_macros'.
6270 (end_symtab): If we found macro information while reading a CU's
6271 debugging info, do build a symtab structure for it. Make the
6272 symtab point to the macro information, and clear the
6273 `pending_macros' pointer which held it while we were reading the
6274 debug info.
6275 (really_free_pendings): Free any pending macro table.
6276 * objfiles.h (struct objfile): New member: `macro_cache'.
6277 * objfiles.c (allocate_objfile): Set allocate and free functions
6278 for the macro cache's objstack.
6279 (free_objfile): Empty the macro cache's obstack.
6280 * symfile.c (reread_symbols): Empty the macro cache's obstack, and
6281 set new allocate and free functions for it.
6282 * solib-sunos.c (allocate_rt_common_objfile): Set allocate and
6283 free functions for the macro cache's objstack. (Why is this
6284 function building its own objfile?)
6285 * symmisc.c (print_objfile_statistics): Print statistics on the
6286 macro bcache.
6287 * Makefile.in: Note that buildsym.o depends on macrotab.h.
6288
6289 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
6290
6291 * config/arm/nm-nbsd.h: Use <> for include of config/nm-nbsd.h.
6292 (REGISTER_U_ADDR): Delete definition.
6293 (arm_register_u_addr): Delete declaration.
6294
6295 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
6296
6297 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Renamed from JB_PC.
6298 (ARM_LINUX_JB_ELEMENT_SIZE): Likewise.
6299
6300 2002-05-14 Andrew Cagney <ac131313@redhat.com>
6301
6302 * regcache.c (register_valid): Revise comments refering to "Not
6303 available" and "unavailable".
6304 * frame.c (frame_register_read): Ditto.
6305 * findvar.c (value_of_register): Ditto.
6306
6307 2002-05-15 Andrew Cagney <cagney@redhat.com>
6308
6309 * Makefile.in (remote_sim_h): Replace remote-sim_h.
6310 (remote-sim.o): Update dependencies.
6311 (d10v-tdep.o): Specify dependencies.
6312 (sim_d10v_h): Define.
6313
6314 2002-05-14 Jim Blandy <jimb@redhat.com>
6315
6316 * macroexp.c (init_buffer, gather_arguments, expand): Use NULL, not 0.
6317 * macrotab.c (macro_lookup_inclusion, find_definition,
6318 new_macro_table): Same.
6319
6320 * macroexp.c (currently_rescanning, expand): Use `strcmp () == 0',
6321 not `! strcmp ()'. This is a dubious improvement.
6322 * macrotab.c (macro_lookup_inclusion, find_definition): Same.
6323
6324 * macrotab.c (macro_lookup_inclusion): Initialize `best_depth',
6325 although it's not necessary, to avoid a warning.
6326
6327 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
6328
6329 * gdbtypes.h: Update accessor macros to use TYPE_MAIN_TYPE.
6330 (TYPE_CONST, TYPE_VOLATILE, TYPE_CODE_SPACE, TYPE_DATA_SPACE): Use
6331 TYPE_INSTANCE_FLAGS.
6332 (struct main_type): New.
6333 (struct type): Move most members to struct main_type. Change
6334 cv_type and as_type to new type_chain member. Add instance_flags.
6335 (TYPE_MAIN_TYPE, TYPE_CHAIN, TYPE_INSTANCE_FLAGS): New macros.
6336 (TYPE_CV_TYPE, TYPE_AS_TYPE): Remove.
6337 (finish_cv_type): Remove prototype.
6338 * gdbtypes.c (alloc_type): Update comment. Allocate TYPE_MAIN_TYPE.
6339 Set TYPE_CHAIN.
6340 (alloc_type_instance): New function.
6341 (smash_type): New function.
6342 (make_pointer_type, make_reference_type, make_function_type)
6343 (smash_to_member_type, smash_to_method_type): Call smash_type.
6344 (make_qualified_type): New function.
6345 (make_type_with_address_space): Call make_qualified_type.
6346 (make_cv_type): Likewise.
6347 (finish_cv_type): Remove unnecessary function.
6348 (replace_type): Update comment. Copy TYPE_MAIN_TYPE.
6349 (recursive_dump_type): Dump TYPE_CHAIN and TYPE_INSTANCE_FLAGS;
6350 remove TYPE_CV_TYPE and TYPE_AS_TYPE.
6351 * c-typeprint.c (c_type_print_modifier): Use TYPE_INSTANCE_FLAGS.
6352 * dwarf2read.c (read_structure_scope): Don't call finish_cv_type.
6353 * hpread.c (hpread_read_struct_type): Likewise.
6354 * stabsread.c (read_struct_type): Likewise.
6355
6356 2002-05-14 Elena Zannoni <ezannoni@redhat.com>
6357
6358 * configure.tgt: Add a catch all sh* target, for cases like
6359 sh[2,3,4]-elf and sh-hms.
6360
6361 2002-05-14 Keith Seitz <keiths@redhat.com>
6362
6363 * event-loop.c (create_file_handler): Don't do anything but
6364 update data when we are given a fd which we are already
6365 monitoring.
6366
6367 2002-05-14 Michal Ludvig <mludvig@suse.cz>
6368
6369 * dwarf2cfi.c (context_cpy): Copy registers correctly.
6370 (update_context): Use __func__ in warnings.
6371
6372 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
6373
6374 * ser-tcp.c: Include <netinet/udp.h>. Rename tcp_open
6375 and tcp_close to net_open and net_close.
6376 (net_open): Accept "udp:" and "tcp:" specifications. Connect
6377 using UDP if requested. Don't try to disable Nagle on UDP
6378 sockets.
6379 * remote.c (remote_serial_open): New function. Warn about UDP.
6380 (remote_open_1, remote_async_open_1, remote_cisco_open): Call it.
6381
6382 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
6383
6384 * MAINTAINERS: List sh-elf as buildable with ,-Werror.
6385
6386 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
6387
6388 * configure.tgt: Remove sh-hms target.
6389 * MAINTAINERS: Don't list sh-hms as a separate target.
6390
6391 2002-05-13 Jim Blandy <jimb@redhat.com>
6392
6393 Add first preprocessor macro-expansion files.
6394 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
6395 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
6396 (splay_tree_h, macroexp_h, macrotab_h): New variable.
6397 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
6398 (COMMON_OBS): Add macrotab.o, macroexp.o.
6399 (macroexp.o, macrotab.o): New rules.
6400
6401 2002-05-13 Andrew Cagney <ac131313@redhat.com>
6402
6403 * config/m88k/tm-m88k.h: Update copyright.
6404 (m88k_target_write_pc): Declare
6405 (TARGET_WRITE_PC): Redefine using m88k_target_write_pc.
6406 (M88K_NNPC_REGNUM): Rename NNPC_REGNUM.
6407 (SHIFT_INST_REGS): Update definition.
6408 * m88k-tdep.c (m88k_target_write_pc): New function. Implement
6409 using old definition of TARGET_WRITE_PC.
6410 * regcache.c (generic_target_write_pc): Delete code handling
6411 NNPC_REGNUM.
6412 * gdbarch.sh (NNPC_REGNUM): Delete.
6413 * gdbarch.h, gdbarch.c: Regenerate.
6414
6415 2002-05-13 Richard Earnshaw <rearnsha@arm.com>
6416
6417 * builtin-regs.c (value_of_builtin_reg): Correctly calculate the
6418 builtin reg number.
6419
6420 2002-05-13 Daniel Jacobowitz <drow@mvista.com>
6421
6422 * ax-gdb.c (gen_sign_extend, gen_fetch, gen_usual_unary)
6423 (gen_cast, gen_scale, gen_add, gen_sub, gen_binop, gen_deref)
6424 (gen_address_of, gen_struct_ref, gen_repeat): Use type
6425 access macros.
6426 * c-typeprint.c (cp_type_print_method_args): Likewise.
6427 (c_type_print_args): Likewise.
6428 * d10v-tdep.c (d10v_push_arguments): Likewise.
6429 (d10v_extract_return_value): Likewise.
6430 * expprint.c (print_subexp): Likewise.
6431 * gdbtypes.c (lookup_primitive_typename): Likewise.
6432 (lookup_template_type, add_mangled_type, print_arg_types): Likewise.
6433 * gdbtypes.h (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB)
6434 (TYPE_TARGET_STUB, TYPE_STATIC, TYPE_CONST, TYPE_VOLATILE)
6435 (TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_CODE_SPACE, TYPE_VARARGS)
6436 (TYPE_VECTOR): Likewise.
6437 * hpread.c (hpread_read_struct_type)
6438 (fix_static_member_physnames, fixup_class_method_type)
6439 (hpread_type_lookup): Likewise.
6440 * mdebugread.c (parse_symbol, parse_type): Likewise.
6441 * p-lang.c (is_pascal_string_type): Likewise.
6442 * valops.c (hand_function_call): Likewise.
6443 * x86-64-tdep.c (classify_argument): Likewise.
6444
6445 * hpread.c (hpread_read_function_type)
6446 (hpread_read_doc_function_type): Call replace_type.
6447 * dstread.c (create_new_type): Delete.
6448 (decode_dst_structure, process_dst_function): Call alloc_type.
6449 Use type access macros.
6450
6451 2002-05-12 Mark Kettenis <kettenis@gnu.org>
6452
6453 * i387-tdep.c (i387_supply_fxsave): Skip the SSE registers if
6454 the're not supported by the current architecture.
6455 (i387_fill_fxsave): Likewise.
6456
6457 2002-05-12 Fred Fish <fnf@redhat.com>
6458
6459 * symfile.c (default_symfile_offsets): Arrange for uninitialized
6460 sect_index_xxx members to index the first slot in section_offsets
6461 if all of the section_offsets are zero.
6462
6463 2002-05-12 Mark Kettenis <kettenis@gnu.org>
6464
6465 * configure.tgt (sparc-*openbsd): Remove entry accidentially
6466 checked in with last change.
6467
6468 2002-05-12 Mark Kettenis <kettenis@gnu.org>
6469
6470 * configure.tgt (i[3456]86-*-unixware*, i[3456]86-*-unixware2*):
6471 Remove targets. These are canonicalized to i386-*-sysv4.2uw by
6472 config.sub.
6473
6474 2002-05-12 Daniel Jacobowitz <drow@mvista.com>
6475
6476 * Makefile.in: Update dependencies.
6477
6478 2002-05-11 Andrew Cagney <ac131313@redhat.com>
6479
6480 * language.c (local_hex_string_custom): Simplify. Do not depend
6481 on PRINTF_HAS_LONG_LONG or CC_HAS_LONG_LONG.
6482
6483 * memattr.c (mem_info_command): Replace calls to
6484 longest_local_hex_string and longest_local_hex_string_custom.
6485 * buildsym.c (make_blockvector): Ditto.
6486 * solib.c (info_sharedlibrary_command): Ditto.
6487 * tracepoint.c (tracepoints_info): Ditto.
6488 * symtab.c (print_msymbol_info): Ditto.
6489
6490 * language.c (local_hex_string): Delete.
6491 (local_hex_string_custom): Delete.
6492 (longest_local_hex_string): Rename to local_hex_string.
6493 (longest_local_hex_string_custom): Rename to
6494 local_hex_string_custom.
6495 * language.h (local_hex_string): Change parameter type to LONGEST.
6496 (local_hex_string_custom): Ditto.
6497 (longest_local_hex_string): Delete declaration.
6498 (longest_local_hex_string_custom): Ditto.
6499
6500 * solib.c: Update copyright.
6501 * memattr.c: Update copyright.
6502
6503 2002-05-11 Andrew Cagney <ac131313@redhat.com>
6504
6505 * arch-utils.h (legacy_register_to_value): Declare.
6506 (legacy_value_to_register): Declare.
6507 (legacy_convert_register_p): Declare.
6508 * arch-utils.c (legacy_register_to_value): New function.
6509 (legacy_value_to_register): New function.
6510 (legacy_convert_register_p): New function.
6511
6512 * gdbarch.sh (REGISTER_TO_VALUE): Define.
6513 (VALUE_TO_REGISTER): Define.
6514 (CONVERT_REGISTER_P): Define.
6515 * gdbarch.h, gdbarch.c: Regenerate.
6516
6517 * valops.c (value_assign): Use CONVERT_REGISTER_P and
6518 VALUE_TO_REGISTER.
6519 * findvar.c (value_from_register): Use REGISTER_TO_VALUE and
6520 CONVERT_REGISTER_P.
6521
6522 2005-05-11 Daniel Jacobowitz <drow@mvista.com>
6523 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
6524
6525 * Makefile.in: Update dependencies for valops.c.
6526 * valops.c: Include "gdb_assert.h".
6527 (typecmp): Skip THIS parameter to methods.
6528 (find_method_list): Remove static_memfuncp argument,
6529 update callers. Check for stub methods.
6530 (find_value_oload_method_list): Don't set *static_memfuncp.
6531 (find_overload_match): Don't check for stub methods. Assert
6532 that methods are not stubbed. Handle static methods.
6533 (value_find_oload_method_list): Remove static_memfuncp argument.
6534 * gdbtypes.c (check_stub_method): Do not add THIS pointer
6535 to the argument list for static stub methods.
6536 * value.h (value_find_oload_method_list): Update prototype.
6537
6538 2002-05-11 Andrew Cagney <ac131313@redhat.com>
6539
6540 * arch-utils.h (generic_register_size): Declare.
6541 (generic_register_raw_size, generic_register_virtual_size): Delete
6542 declarations.
6543 * arch-utils.c (generic_register_raw_size): Delete.
6544 (generic_register_size): New function.
6545 (generic_register_virtual_size): Delete.
6546
6547 * gdbarch.sh (REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE): Make
6548 default generic_register_size.
6549 * gdbarch.h, gdbarch.c: Re-generate.
6550
6551 * d10v-tdep.c (d10v_gdbarch_init): Use generic_register_size for
6552 register_virtual_size.
6553 * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
6554 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
6555
6556 2002-05-11 Andrew Cagney <ac131313@redhat.com>
6557
6558 * gdbarch.sh (gdbarch_data): Add gdbarch parameter.
6559 * gdbarch.h, gdbarch.c: Regenerate.
6560 * gnu-v3-abi.c: Update copyright.
6561 (vtable_address_point_offset): Update.
6562 (gnuv3_rtti_type): Update.
6563 (gnuv3_baseclass_offset): Update.
6564 * solib-svr4.c (svr4_fetch_link_map_offsets): Update.
6565 (init_fetch_link_map_offsets): Update.
6566 * remote.c (get_remote_state): Update.
6567
6568 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
6569
6570 * TODO: Remove value_headof/value_from_vtable_info comment.
6571 * printcmd.c (print_command_1): Don't call value_from_vtable_info.
6572 * values.c (value_headof, value_from_vtable_info): Delete.
6573 * value.h (value_from_vtable_info): Delete prototype.
6574
6575 2002-05-11 Andrew Cagney <ac131313@redhat.com>
6576
6577 * Makefile.in: Replace gdb_assert.h with $(gdb_assert_h),
6578 gdb_string.h with $(gdb_string_h) and gdb_regex.h with
6579 $(gdb_regex_h).
6580 (gdb_assert_h): Define.
6581 (gdb_wait_h): Define.
6582 (gdb_regex_h): Define.
6583
6584 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
6585
6586 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
6587 * linespec.c (find_methods): Handle GCC 3.x template constructors.
6588
6589 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6590
6591 * nbsd-tdep.c: Fix comment.
6592
6593 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6594
6595 * Makefile.in (ALLDEPFILES): Add nbsd-tdep.c.
6596 (alphanbsd-tdep.o): Add nbsd-tdep.h to dependency list.
6597 (nbsd-tdep.o): New dependency list.
6598 * alphanbsd-tdep.c: Don't include solib-svr4.h. Include
6599 nbsd-tdep.h.
6600 (alphanbsd_solib_svr4_fetch_link_map_offsets): Remove.
6601 (alphanbsd_init_abi): Use nbsd_lp64_solib_svr4_fetch_link_map_offsets.
6602 * nbsd-tdep.c: New file.
6603 * nbsd-tdep.h: New file.
6604 * shnbsd-tdep.c: Don't include solib-svr4.h. Include
6605 nbsd-tdep.h.
6606 (shnbsd_solib_svr4_fetch_link_map_offsets): Remove.
6607 (shnbsd_init_abi): Use nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
6608 * config/alpha/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
6609 * config/sh/nbsd.mt (TDEPFILES): Ditto.
6610
6611 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6612
6613 * config/alpha/nbsd.mh (NATDEPFILES): Remove corelow.o.
6614 * config/alpha/nbsd.mt (TDEPFILES): Add corelow.o.
6615 * config/i386/nbsd.mh (NATDEPFILES): Remove corelow.o.
6616 * config/i386/nbsd.mt (TDEPFILES): Add corelow.o.
6617 * config/i386/nbsdelf.mh (NATDEPFILES): Remove corelow.o.
6618 * config/i386/nbsdelf.mt (TDEPFILES): Add corelow.o.
6619
6620 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6621
6622 * config/i386/nbsd.mh (NATDEPFILES): Use line continuations.
6623 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
6624 * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
6625 * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
6626 * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
6627 * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
6628 * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
6629
6630 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6631
6632 * i386nbsd-nat.c: Delete file. Move fetch_core_registers and
6633 fetch_elfcore_registers to...
6634 * i386nbsd-tdep.c: ...here.
6635 (i386nbsd_use_struct_convention): Rename to...
6636 (i386nbsd_aout_use_struct_convention): ...this.
6637 (i386nbsd_supply_reg): New function.
6638 (i386nbsd_fill_reg): New function.
6639 (fetch_core_registers): Use i386nbsd_supply_reg.
6640 (fetch_elfcore_registers): Likewise.
6641 (_initialize_i386nbsd_tdep): New function.
6642 * config/i386/nbsd.mh (NATDEPFILES): Remove i386nbsd-nat.o.
6643 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
6644 * config/i386/nbsdelf.mt (TDEPFILES): Add i386nbsd-tdep.o.
6645 * config/i386/tm-nbsd.h (i386nbsd_use_struct_convention): Rename to...
6646 (i386nbsd_aout_use_struct_convention): ...this.
6647
6648 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6649
6650 * shnbsd-nat.c (fetch_inferior_registers): Use shnbsd_supply_reg.
6651 (store_inferior_registers): Use shnbsd_fill_reg.
6652 * shnbsd-tdep.c (sh_nbsd_supply_registers,
6653 sh_nbsd_supply_register): Collapse into...
6654 (shnbsd_supply_reg): ...this.
6655 (sh_nbsd_fill_registers, sh_nbsd_fill_register): Collapse into...
6656 (shnbsd_fill_reg): ...this.
6657 (sh_nbsd_solib_svr4_fetch_link_map_offsets): Rename to...
6658 (shnbsd_solib_svr4_fetch_link_map_offsets): ...this.
6659 (fetch_core_registers): Use shnbsd_supply_reg.
6660 (fetch_elfcore_registers): Use shnbsd_supply_reg.
6661 (sh_nbsd_core_fns): Rename to...
6662 (shnbsd_core_fns): ...this.
6663 (sh_nbsd_elfcore_fns): Rename to...
6664 (shnbsd_elfcore_fns): ...this.
6665 (sh_nbsd_init_abi): Rename to...
6666 (shnbsd_init_abi): ...this.
6667 (_initialize_sh_nbsd_tdep): Rename to...
6668 (_initialize_shnbsd_tdep): ...this.
6669 * shnbsd-tdep.h (sh_nbsd_supply_registers,
6670 sh_nbsd_supply_register, sh_nbsd_fill_registers,
6671 sh_nbsd_fill_register): Remove prototypes.
6672 (shnbsd_supply_reg, shnbsd_fill_reg): Add prototypes.
6673
6674 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6675
6676 * Makefile.in (ALLDEPFILES): Remove i387-nat.c.
6677 (i387-nat.o): Delete dependency list.
6678 (go32-nat.o): Change i387-nat.h to i387-tdep.h.
6679 (x86-64-linux-nat.o): Likewise.
6680 * i387-nat.c: Delete file, moving contents to...
6681 * i387-tdep.c: ...here.
6682 * i387-nat.h: Rename...
6683 * i387-tdep.h: ...to this.
6684 * go32-nat.c: Include i387-tdep.h instead of i387-nat.h.
6685 * i386-linux-nat.c: Likewise.
6686 * i386bsd-nat.c: Likewise.
6687 * i386gnu-nat.c: Likewise.
6688 * i386nbsd-nat.c: Likewise.
6689 * i386v4-nat.c: Likewise.
6690 * x86-64-linux-nat.c: Likewise.
6691 * config/i386/fbsd.mh (NATDEPFILES): Remove i387-nat.o.
6692 * config/i386/go32.mh (NATDEPFILES): Likewise.
6693 * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
6694 * config/i386/i386sol2.mh (NATDEPFILES): Likewise.
6695 * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
6696 * config/i386/linux.mh (NATDEPFILES): Likewise.
6697 * config/i386/nbsd.mh (NATDEPFILES): Likewise.
6698 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
6699 * config/i386/obsd.mh (NATDEPFILES): Likewise.
6700 * config/i386/x86-64linux.mh (NATDEPFILES): Likewise.
6701
6702 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6703
6704 * Makefile.in (ALLDEPFILES): Remove alphanbsd-nat.c.
6705 (alphanbsd-nat.o): Remove dependency list.
6706 (alphanbsd-tdep.o): Add $(regcache_h) to dependency list.
6707 * alphanbsd-nat.c: Delete. Contents moved to...
6708 * alphanbsd-tdep.c: ...here.
6709 (_initialize_alphanbsd_tdep): Register core functions.
6710 * config/alpha/nbsd.mh (NATDEPFILES): Remove alphanbsd-nat.o.
6711
6712 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6713
6714 * Makefile.in (ALLDEPFILES): Add alphabsd-tdep.c.
6715 (alphabsd-nat.o): Depend on alphabsd-tdep.h.
6716 (alphanbsd-nat.o): Likewise.
6717 (alphabsd-tdep.o): New dependency list.
6718 * alphabsd-nat.c (supply_gregset): Use alphabsd_supply_reg.
6719 (fill_gregset): Use alphabsd_fill_reg.
6720 (supply_fpregset): Use alphabsd_supply_fpreg.
6721 (fill_fpregset): Use alphabsd_fill_fpreg.
6722 (fetch_inferior_registers): Use struct reg and struct fpreg
6723 rather than gregset_t and fpregset_t. Use alphabsd_supply_reg
6724 and alphabsd_supply_fpreg.
6725 (store_inferior_registers): Use struct reg and struct fpreg
6726 rather than gregset_t and fpregset_t. Use alphabsd_fill_reg
6727 and alphabsd_fill_fpreg.
6728 * alphabsd-tdep.c: New file.
6729 * alphabsd-tdep.h: New file.
6730 * alphanbsd-nat.c (fetch_core_registers): Use alphabsd_supply_fpreg.
6731 (fetch_elfcore_registers): Use alphabsd_supply_reg and
6732 alphabsd_supply_fpreg.
6733 * config/alpha/fbsd.mt (TDEPFILES): Add alphabsd-tdep.o.
6734 * config/alpha/nbsd.mt (TDEPFILES): Likewise.
6735
6736 2002-05-11 Eric Christopher <echristo@redhat.com>
6737
6738 * mips-tdep.c (mips_double_register_type): Fix thinko.
6739 (mips_single_register_type): Ditto.
6740 * MAINTAINERS: Add self.
6741
6742 2002-05-11 Mark Kettenis <kettenis@gnu.org>
6743
6744 * i387-nat.c (i387_supply_register, i387_fill_fsave,
6745 i387_supply_fxsave, i387_fill_fxsave): Rewrite in order to do the
6746 right thing on architectures with different endianness and/or
6747 integer sizes.
6748
6749 2002-05-10 Jason Thorpe <thorpej@wasabisystems.com>
6750
6751 From Christian Limpach <chris@Pin.LU>
6752 * configure.in: Change sed expression which comments out
6753 NATDEPFILES to also comment out continuation lines.
6754 * configure: Regenerate.
6755
6756 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
6757
6758 * sh-tdep.c: Clean up code erroneously reintroduced by previous
6759 big patch.
6760
6761 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
6762
6763 * sh-tdep.c: Include correct file.
6764
6765 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
6766
6767 New support for sh64-elf (sh5) target.
6768
6769 * configure.tgt: For sh64-elf target, default to sh-elf.
6770
6771 * config/sh/tm-sh.h (enum sh-abi): Possible ABI's.
6772 (struct gdbarch_tdep): Add new fields for new registers and ABI
6773 info.
6774
6775 * sh-tdep.c: Include elf-bfd.h, elf/sh.h, gdb/sim-sh.h.
6776 (NUM_PSEUDO_REGS_SH_MEDIA, NUM_PSEUDO_REGS_SH_COMPACT,
6777 MSYMBOL_IS_SPECIAL, IS_ISA32_ADDR, MAKE_ISA32_ADDR,
6778 UNMAKE_ISA32_ADDR, IS_PTABSL_R18, IS_STS_R0, IS_STS_PR,
6779 IS_MOV_TO_R15, IS_MOV_R14, IS_STQ_R18_R14, IS_STQ_R18_R15,
6780 IS_STL_R18_R15, IS_STQ_R14_R15, IS_STL_R14_R15, IS_ADDIL_SP_MEDIA,
6781 IS_ADDI_SP_MEDIA, IS_ADDL_SP_FP_MEDIA, IS_ADD_SP_FP_MEDIA,
6782 IS_MOV_SP_FP_MEDIA, IS_MOV_R0, IS_MOVL_R0, IS_ADD_SP_R0,
6783 IS_MOV_R14_R0, IS_MEDIA_IND_ARG_MOV, IS_MEDIA_ARG_MOV,
6784 IS_MEDIA_MOV_TO_R14, IS_COMPACT_IND_ARG_MOV, IS_COMPACT_ARG_MOV,
6785 IS_COMPACT_MOV_TO_R14, IS_JSR_R0, IS_NOP): New macros.
6786 (sh_sh64_register_name, sh64_elf_make_msymbol_special,
6787 pc_is_isa32, sh_sh64_breakpoint_from_pc, look_for_args_moves,
6788 sh64_skip_prologue_hard_way, sh64_use_struct_convention,
6789 gdb_print_insn_sh64, translate_insn_rn, sh64_frame_chain,
6790 sh64_get_saved_pr, fpp_reg_base_num, is_media_pseudo,
6791 sh64_get_gdb_regnum, sh64_media_reg_base_num,
6792 sh64_compact_reg_base_num, translate_rn_to_arch_reg_num,
6793 sign_extend, sh64_nofp_frame_init_saved_regs,
6794 sh64_init_extra_frame_info, sh64_get_saved_register,
6795 sh64_extract_struct_value_address, sh64_pop_frame,
6796 sh64_push_arguments, sh64_extract_return_value,
6797 sh64_store_return_value, sh64_show_media_regs,
6798 sh64_show_compact_regs, sh64_show_regs, sh_sh64_register_byte,
6799 sh_sh64_register_raw_size, sh_sh64_register_virtual_size,
6800 sh_sh64_register_virtual_type,
6801 sh_sh64_register_convert_to_virtual,
6802 sh_sh64_register_convert_to_raw, sh64_pseudo_register_read,
6803 sh64_register_read, sh64_pseudo_register_write,
6804 sh64_register_write, do_fv_c_register_info, do_dr_c_register_info,
6805 do_r_c_register_info, do_fpp_register_info, do_cr_c_register_info,
6806 sh64_do_pseudo_register, sh_compact_do_registers_info,
6807 sh64_do_registers_info, sh_gdbarch_init): New functions.
6808
6809 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
6810
6811 * sh-tdep.c (sh_breakpoint_from_pc): Add 'const' to return type.
6812
6813 2002-05-10 Daniel Jacobowitz <drow@mvista.com>
6814
6815 * linespec.c (decode_line_1): Check for a double quote after
6816 a filename correctly.
6817
6818 2002-05-10 Jim Blandy <jimb@redhat.com>
6819
6820 Properly track the size of the current objfile's .debug_line section.
6821 * dwarf2read.c (struct dwarf2_pinfo): New member: dwarf_line_size.
6822 (DWARF_LINE_SIZE): New macro.
6823 (dwarf2_build_psymtabs_hard): Record the line section's size in
6824 the partial symbol table.
6825 (psymtab_to_symtab_1): Restore dwarf_line_size from the partial
6826 symbol table.
6827
6828 2002-05-10 Petr Sorfa <petrs@caldera.com>
6829
6830 * ia64-tdep.c: Handle breakpoints on L instruction type
6831 in MLX instruction bundle by moving the breakpoint to
6832 the third slot (X instruction type) as L holds only data.
6833
6834 2002-05-10 Kevin Buettner <kevinb@redhat.com>
6835
6836 * dbxread.c (discarding_local_symbols_complaint): New complaint.
6837 (process_one_symbol): Complain about discarding local symbols
6838 due to a misplaced N_LBRAC entry.
6839
6840 2002-05-09 Elena Zannoni <ezannoni@redhat.com>
6841
6842 From Daniel Berlin <dan@cgsoftware.com>
6843 * linespec.c (find_toplevel_char): '<' and '>' also increase and
6844 decrease the depth we are at, in the case of templates.
6845
6846 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
6847
6848 * mips-tdep.c (mips_float_register_type): New function.
6849 (mips_double_register_type): New function.
6850 (mips_print_register): Use them.
6851 (do_fp_register_row): Likewise.
6852
6853 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
6854
6855 * signals/signals.c (signals): Remove conditional compilation around
6856 Mach-specific signals. Move them to after TARGET_SIGNAL_DEFAULT.
6857 (target_signal_from_name): Loop until TARGET_SIGNAL_LAST.
6858
6859 2002-05-09 Michael Snyder <msnyder@redhat.com>
6860
6861 * remote-rdp.c (remote_rdp_can_run): Remove.
6862
6863 2002-05-09 Tom Tromey <tromey@redhat.com>
6864
6865 * jv-valprint.c (java_val_print): Handle `char' as a special case
6866 of TYPE_CODE_INT.
6867
6868 2002-05-09 Michael Snyder <msnyder@redhat.com>
6869
6870 * arm-tdep.c (arm_scan_prologue): Accept strb r(0123),[r11,#-nn],
6871 strh r(0123),[r11,#-nn], str r(0123),[r11,#-nn], as well as
6872 strb r(0123),[sp,#nn], strh r(0123),[sp,#nn] and
6873 str r(0123),[sp,#nn].
6874 (arm_skip_prologue): Ditto. Also make disassembly
6875 order-independent by placing it in a loop.
6876
6877 2002-05-06 Michael Snyder <msnyder@redhat.com>
6878
6879 * stabsread.c (read_type): Add recognition for new attribute:
6880 "@V;" means that an array type is actually a vector.
6881 This is analogous to the vector flag that's been added to dwarf2.
6882
6883 2002-05-09 Mark Kettenis <kettenis@gnu.org>
6884
6885 * i386-tdep.h (i386_abi): New enum.
6886 (struct gdbarch_tdep): Replace os_ident member with abi.
6887 (i386_gdbarch_register_os_abi): New prototype.
6888 * i386-tdep.c (i386_abi_names): New array.
6889 (process_note_abi_tag_sections): Removed.
6890 (process_note_sections): New function.
6891 (i386_elf_abi_from_note, i386_elf_abi): New functions.
6892 (struct i386_abi_handler): New struct.
6893 (i386_abi_handler_list): New variable.
6894 (i386_gdbarch_register_os_abi): New function.
6895 (i386_gdbarch_init): Adapt for the changes given above.
6896
6897 2002-05-08 Daniel Jacobowitz <drow@mvista.com>
6898
6899 * gregset.h: Say "GNU/Linux".
6900
6901 2002-05-08 Elena Zannoni <ezannoni@redhat.com>
6902
6903 * gdbtypes.c : Add new builtin type for 64 bit vectors.
6904 (build_gdbtypes): Build builtin_type_v2_float.
6905 (_initialize_gdbtypes): Register new builtin type.
6906
6907 2002-05-08 Andrew Cagney <ac131313@redhat.com>
6908
6909 * gdbarch.sh (init_gdbarch_swap): Do not clear the swap section.
6910 (clear_gdbarch_swap): New function.
6911 (initialize_non_multiarch): Call.
6912 (gdbarch_update_p): Before calling init(), swap out and clear the
6913 existing architecture.
6914 * gdbarch.c: Regenerate.
6915
6916 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
6917
6918 * config/djgpp/fnchange.lst: Add alphanbsd-nat.c and
6919 alphanbsd-tdep.c.
6920
6921 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
6922
6923 * sh-nbsd-nat.c: Rename to...
6924 * shnbsd-nat.c: ...this.
6925 * sh-nbsd-tdep.c: Rename to...
6926 * shnbsd-tdep.c: ...this.
6927 * sh-nbsd-tdep.h: Rename to...
6928 * shnbsd-tdep.h: ...this.
6929 * config/sh/nbsd.mh: Use shnbsd-nat.o.
6930 * config/sh/nbsd.mt: Use shnbsd-tdep.o.
6931
6932 2002-05-08 Richard Earnshaw <rearnsha@arm.com>
6933
6934 * remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
6935 concatenation for command help messages.
6936
6937 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
6938
6939 * NEWS: Note new sh*-*-netbsdelf* configuration.
6940 * configure.host: Set gdb_host_cpu to sh for all sh*.
6941 (sh*-*-netbsdelf*): New host.
6942 * configure.tgt: Set gdb_target_cpu to sh for all sh*.
6943 (sh*-*-netbsdelf*): New target.
6944 * sh-nbsd-nat.c: New file.
6945 * sh-nbsd-tdep.c: New file.
6946 * sh-nbsd-tdep.h: New file.
6947 * config/sh/nbsd.mh: New file.
6948 * config/sh/nbsd.mt: New file.
6949 * config/sh/nm-nbsd.h: New file.
6950 * config/sh/tm-nbsd.h: New file.
6951
6952 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
6953
6954 * sh-tdep.c (sh_osabi_names): Declare.
6955 (process_note_abi_tag_sections): New function.
6956 (get_elfosabi): Ditto.
6957 (sh_gdbarch_register_os_abi): Ditto.
6958 (sh_dump_tdep): Ditto.
6959 _initialize_sh_tdep): Use gdbarch_register to register
6960 sh_gdbarch_init and sh_dump_tdep.
6961 * config/sh/tm-sh.h (sh_osabi): Declare.
6962 (gdbarch_tdep): Add sh_osabi and osabi_name members.
6963
6964 2002-05-07 Andrew Cagney <ac131313@redhat.com>
6965
6966 * arm-tdep.c (arm_skip_prologue): Handle generic dummy frames.
6967 (thumb_scan_prologue): Ditto.
6968 (arm_find_callers_reg): Ditto.
6969 (arm_frame_chain): Ditto.
6970 (arm_init_extra_frame_info): Ditto.
6971 (arm_frame_saved_pc): Ditto.
6972 (arm_pop_frame): Ditto.
6973 (arm_push_return_address): New function.
6974 (arm_gdbarch_init): Initialize use_generic_dummy_frames,
6975 call_dummy_location, call_dummy_breakpoint_offset_p,
6976 call_dummy_breakpoint_offset, call_dummy_p,
6977 call_dummy_stack_adjust_p, call_dummy_words,
6978 sizeof_call_dummy_words, call_dummy_start_offset,
6979 call_dummy_length, fix_call_dummy, pc_in_call_dummy,
6980 call_dummy_address, push_return_address and push_dummy_frame for
6981 generic dummy frames.
6982
6983 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
6984
6985 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Fix error in
6986 size computation for alloca.
6987 (sh_fp_frame_init_saved_regs): Likewise.
6988
6989 2002-05-07 Richard Earnshaw <rearnsha@arm.com>
6990
6991 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE): Define.
6992 (ARM_MAX_REGISTER_VIRTUAL_SIZE): Define.
6993 * arm-tdep.c (arm_store_return_value): Use them.
6994 Use FP_REGISTER_RAW_SIZE when setting the FPA return value.
6995 * remote-rdp.c (remote_rdp_fetch_register): Use
6996 ARM_MAX_REGISTER_RAW_SIZE.
6997 (remote_rdp_store_register): Likewise.
6998
6999 2002-05-07 Michal Ludvig <mludvig@suse.cz>
7000
7001 * dwarf2cfi.c: Code cleanup, removed unused variables,
7002 added default labels to switch {} statements.
7003 * x86-64-tdep.c: Ditto.
7004 * x86-64-linux-nat.c: Ditto.
7005
7006 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
7007
7008 * solib.h: Protect against multiple inclusion.
7009
7010 2002-05-06 Jim Blandy <jimb@redhat.com>
7011
7012 Add first preprocessor macro-expansion files.
7013 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
7014 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
7015 (splay_tree_h, macroexp_h, macrotab_h): New variable.
7016 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
7017 (COMMON_OBS): Add macrotab.o, macroexp.o.
7018 (macroexp.o, macrotab.o): New rules.
7019
7020 Separate the job of reading the line number info statement program
7021 header (...expialidocious) out into its own function.
7022 * dwarf2read.c (struct line_head, struct filenames, struct
7023 directories): Replace with...
7024 (struct line_header): New structure, containing the full
7025 contents of the statement program header, including the
7026 include directory and file name tables.
7027 (read_file_scope): If we have line number info, instead of just
7028 calling dwarf_decode_lines to do all the work, call
7029 dwarf_decode_line_header first to get a `struct line_header'
7030 containing the data in the statement program header, and then
7031 pass that to dwarf_decode_lines, which will pick up where that
7032 left off. Be sure to clean up the `struct line_header' object.
7033 (dwarf_decode_line_header, free_line_header, add_include_dir,
7034 add_file_name): New functions.
7035 (dwarf_decode_lines): Move all the code to read the statement
7036 program header into dwarf_decode_line_header. Take the line
7037 header it built as the first argument, instead of the offset to
7038 the compilation unit's line number info. Use the new `struct
7039 line_header' type instead of the old structures. No need to do
7040 cleanups here now, since we don't allocate anything.
7041 (dwarf2_statement_list_fits_in_line_number_section,
7042 dwarf2_line_header_too_long): New complaints.
7043
7044 2002-05-06 Elena Zannoni <ezannoni@redhat.com>
7045
7046 * gdbtypes.c (init_vector_type): New function.
7047 (build_builtin_type_vec128): Simplify the representation of SIMD
7048 registers.
7049 (build_gdbtypes): Initialize new builtin vector types.
7050 (_initialize_gdbtypes): Register new vector types with gdbarch.
7051 (builtin_type_v4_float, builtin_type_v4_int32,
7052 builtin_type_v8_int16, builtin_type_v16_int8,
7053 builtin_type_v2_int32, builtin_type_v4_int16,
7054 builtin_type_v8_int8): New (renamed) SIMD types.
7055
7056 2002-05-06 Mark Kettenis <kettenis@gnu.org>
7057
7058 * i387-nat.c (i387_fill_fsave): Use regcache_collect.
7059 (i387_fill_fxsave): Likewise.
7060
7061 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
7062
7063 * alpha-tdep.c (alpha_extract_return_value): Don't use
7064 non-constant array size in prototype.
7065
7066 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7067
7068 From Brian Taylor <briant at model dot com>:
7069 * ui-out.c (ui_out_field_core_addr): Use the function
7070 longest_local_hex_string_custom'to format addresses > 32 bits
7071 wide.
7072
7073 * ui-out.c (ui_out_field_core_addr): Update comment.
7074
7075 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7076
7077 * stack.c (select_and_print_frame): Make static. Delete the
7078 parameter `level'.
7079 (func_command): Update call.
7080 (select_frame_command): Delete code computing the frame level.
7081 * frame.h (select_and_print_frame): Delete declaration.
7082
7083 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7084
7085 * sparc-tdep.c (sparc_get_saved_register): Comment why
7086 get_prev_frame call is safe.
7087
7088 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7089
7090 * frame.h (select_frame): Delete level parameter.
7091 * stack.c (select_frame): Update. Use frame_relative_level to
7092 obtain the frame's level.
7093 (select_and_print_frame): Update call.
7094 (select_frame_command): Ditto.
7095 (up_silently_base): Ditto.
7096 (down_silently_base): Ditto.
7097 * ocd.c (ocd_start_remote): Ditto.
7098 * remote-rdp.c (remote_rdp_open): Ditto.
7099 * remote-mips.c (mips_initialize): Ditto.
7100 (common_open): Ditto.
7101 * remote-e7000.c (e7000_start_remote): Ditto.
7102 * m3-nat.c (select_thread): Ditto.
7103 * hppa-tdep.c (child_get_current_exception_event): Ditto.
7104 (child_get_current_exception_event): Ditto.
7105 * varobj.c (varobj_create): Ditto.
7106 (varobj_update): Ditto.
7107 (c_value_of_root): Ditto.
7108 * tracepoint.c (finish_tfind_command): Ditto.
7109 * corelow.c (core_open): Ditto.
7110 * arch-utils.c (generic_prepare_to_proceed): Ditto.
7111 * thread.c (info_threads_command): Ditto.
7112 (switch_to_thread): Ditto.
7113 * infrun.c (normal_stop): Ditto.
7114 (restore_selected_frame): Ditto.
7115 (restore_inferior_status): Ditto.
7116 * breakpoint.c (insert_breakpoints): Ditto.
7117 (watchpoint_check): Ditto.
7118 (bpstat_stop_status): Ditto.
7119 (do_enable_breakpoint): Ditto.
7120 * blockframe.c (flush_cached_frames): Ditto.
7121 (reinit_frame_cache): Ditto.
7122
7123 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7124
7125 * MAINTAINERS (Host/Native): Add Jason Thorpe as NetBSD
7126 maintainer.
7127
7128 2002-05-04 Jim Blandy <jimb@redhat.com>
7129
7130 * gdbtypes.c (replace_type): Doc fix.
7131
7132 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7133
7134 * valprint.c (strcat_longest): Delete commented out function.
7135 Update copyright.
7136
7137 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7138
7139 * MAINTAINERS: Mark a29k as deleted.
7140 * NEWS: Mention that a29k was removed. Add OBSOLETE section.
7141 Move new configurations to the top.
7142 * configure.tgt: Remove a29k.
7143 * config/a29k/tm-vx29k.h: Delete.
7144 * config/a29k/vx29k.mt: Delete.
7145 * config/a29k/tm-a29k.h: Delete.
7146 * config/a29k/a29k-udi.mt: Delete.
7147 * config/a29k/a29k.mt: Delete.
7148 * a29k-tdep.c: Delete.
7149 * remote-udi.c: Delete.
7150 * remote-mm.c: Delete.
7151 * remote-eb.c: Delete.
7152 * remote-adapt.c: Delete.
7153 * Makefile.in: Remove obsolete code.
7154 * config/s390/s390x.mt: Ditto.
7155 * config/s390/s390.mt: Ditto.
7156 * config/sparc/sparclynx.mh: Ditto.
7157 * config/sparc/linux.mh: Ditto.
7158 * config/pa/hppaosf.mh: Ditto.
7159 * config/pa/hppabsd.mh: Ditto.
7160 * config/ns32k/nbsd.mt: Ditto.
7161 * config/mips/vr5000.mt: Ditto.
7162 * config/m68k/sun3os4.mh: Ditto.
7163 * config/m68k/nbsd.mt: Ditto.
7164 * config/m68k/m68klynx.mh: Ditto.
7165 * config/m32r/m32r.mt: Ditto.
7166 * config/i386/x86-64linux.mt: Ditto.
7167 * config/i386/nbsdelf.mt: Ditto.
7168 * config/i386/nbsd.mt: Ditto.
7169 * config/i386/i386lynx.mh: Ditto.
7170
7171 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7172
7173 * target.c (debug_print_register): New function. Handle oversize
7174 registers.
7175 (debug_to_fetch_registers): Call.
7176 (debug_to_store_registers): Call.
7177
7178 2002-05-03 Jim Blandy <jimb@redhat.com>
7179
7180 * stabsread.c (cleanup_undefined_types): Use replace_type, not memcpy.
7181 (read_type): Doc fix.
7182 * gdbtypes.c (replace_type): Doc fix.
7183
7184 * stabsread.c (multiply_defined_struct): New complaint.
7185 (read_struct_type): If the type we were passed isn't empty, or
7186 incomplete, don't read the new struct type into it; complain,
7187 and return the original type unchanged. Take a new `type_code'
7188 argument, which is the type code for the new type.
7189 (read_type): Rather than storing the type's type code here, pass
7190 it as an argument to read_struct_type, and let that take care of
7191 storing it. That way, we don't overwrite the original type code,
7192 so read_struct_type can use it to decide whether we're overwriting
7193 something we shouldn't.
7194 (complain_about_struct_wipeout): New function.
7195
7196 2002-05-03 Andrew Cagney <ac131313@redhat.com>
7197
7198 * gdbarch.sh: Assert that gdbarch is non-NULL.
7199 * gdbarch.c: Regenerate.
7200
7201 2002-05-03 Jason Merrill <jason@redhat.com>
7202
7203 * gnu-v3-abi.c (gnuv3_rtti_type): If we get confused, just warn
7204 and return NULL.
7205
7206 2002-05-03 Michal Ludvig <mludvig@suse.cz>
7207
7208 * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map),
7209 (x86_64_dwarf2gdb_regno_map_length),
7210 (x86_64_dwarf2_reg_to_regnum): Added.
7211 (x86_64_gdbarch_init): Added registration of x86_64_dwarf2_reg_to_regnum.
7212 (x86_64_gdbarch_init): Renamed from i386_gdbarch_init.
7213 (_initialize_x86_64_tdep): Synced with the change above.
7214 (x86_64_skip_prologue): Reformulated message.
7215
7216 2002-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
7217
7218 * f-exp.y: Also use new prev_lexptr variable
7219 to improve error reporting. Based on Michael Snyder
7220 2002-04-24 dated patch to c-exp.y.
7221 * jv-exp.y: Likewise.
7222 * m2-exp.y: Likewise.
7223
7224 2002-05-02 Elena Zannoni <ezannoni@redhat.com>
7225
7226 * valops.c (value_arg_coerce): Don't coerce arrays to pointers if
7227 we are dealing with vectors.
7228
7229 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
7230
7231 * config/m68k/tm-nbsd.h: Obvious fix,
7232 correct machine name.
7233
7234 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
7235
7236 * p-typeprint.c (pascal_type_print_base): Add support
7237 for TYPE_CODE_STRING and TYPE_CODE_BITSTRING.
7238
7239 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
7240
7241 * p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
7242 for fondamental pascal 'char' type.
7243
7244 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
7245
7246 * p-lang.h (is_pascal_string_type): Declaration changed,
7247 new sixth argument of type char ** added.
7248 * p-lang.c (is_pascal_string_type): Implementation
7249 changed. Args length_pos, length_size, string_pos, char_size
7250 can now be NULL. New argument arrayname set to the field
7251 name of the char array. Return value set to char array
7252 field index plus one.
7253 * p-valprint.c (pascal_val_print): Adapt to new declaration of
7254 is_pascal_string_type function.
7255
7256 2002-05-02 Andrew Cagney <cagney@redhat.com>
7257
7258 * gdbarch.sh (gdbarch_update_p): Revert 2002-05-02 Andrew Cagney
7259 <cagney@redhat.com> change.
7260 * gdbarch.c: Regenerate.
7261
7262 2002-05-02 Andrew Cagney <cagney@redhat.com>
7263
7264 * gdbarch.sh (gdbarch_update_p): Swap out the old architecture
7265 before probing for a new one. Detect errorenous gdbarch_init
7266 functions.
7267 * gdbarch.c: Regenerate.
7268
7269 2002-05-01 Andrew Cagney <cagney@redhat.com>
7270
7271 * config/mn10200/tm-mn10200.h: Include "symfile.h" and "symtab.h".
7272 * config/mcore/tm-mcore.h: Ditto. Update copyright.
7273 * config/v850/tm-v850.h: Ditto. Update copyright.
7274
7275 2002-04-30 Andrew Cagney <ac131313@redhat.com>
7276
7277 * cris-tdep.c (cris_gdbarch_init): Use arches instead of
7278 current_gdbarch.
7279
7280 2002-04-30 Michael Snyder <msnyder@redhat.com>
7281
7282 * arm-tdep.c: Whitespace clean-ups.
7283 (arm_skip_prologue): Fix thinko; two lines
7284 should have been removed as part of 4/24 change.
7285
7286 2002-04-30 Kevin Buettner <kevinb@redhat.com>
7287
7288 * rs6000-tdep.c: Added comment describing how fpscr register
7289 numbers were chosen.
7290
7291 2002-04-30 Michael Snyder <msnyder@redhat.com>
7292
7293 * gnu-nat.c (gnu_find_memory_regions): Fix merge botch.
7294
7295 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
7296
7297 * hpread.c (DNTT_TYPE_VECTOR): Rename from TYPE_VECTOR.
7298 (DNTT_TYPE_VECTOR_LENGTH): Rename from TYPE_VECTOR_LENGTH.
7299 (hpread_symfile_init, hpread_lookup_type): Substitute throughout.
7300
7301 2002-04-29 Kevin Buettner <kevinb@redhat.com>
7302
7303 From Louis Hamilton <hamilton@redhat.com>:
7304 * rs6000-tdep.c (coff/xcoff.h, libxcoff.h): Include.
7305 * xcoffread.c (coff/xcoff.h, libxcoff.h): Likewise.
7306 * rs6000-tdep.c (rs6000_gdbarch_init): Use bfd_xcoff_is_xcoff64(),
7307 not bfd-private xcoff data, to determine wordsize.
7308 * xcoffread.c (read_xcoff_xymtab, read_symbol_lineno): Likewise.
7309
7310 2002-04-29 Andrew Cagney <ac131313@redhat.com>
7311
7312 GDB 5.2 released from 5.2 branch.
7313
7314 2002-04-29 Michal Ludvig <mludvig@suse.cz>
7315
7316 * x86-64-linux-nat.c (fill_gregset): Explicit cast to avoid warning.
7317 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
7318 (x86_64_register_info_table): Added comments with register numbers.
7319
7320 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
7321
7322 * rs6000-tdep.c (rs6000_extract_return_value,
7323 rs6000_store_return_value): Handle returning vectors.
7324 (rs6000_gdbarch_init): Use
7325 ppc_sysv_abi_broken_use_struct_convention for native sysv cases.
7326 * ppc-linux-tdep.c (ppc_sysv_abi_broken_use_struct_convention):
7327 New function.
7328 (ppc_sysv_abi_use_struct_convention): Deal with functions returning
7329 vectors.
7330 (ppc_sysv_abi_push_arguments): Handle vector parameters.
7331 * ppc-tdep.h (ppc_sysv_abi_broken_use_struct_convention): Export.
7332
7333 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
7334
7335 * hpread.c (hpread_psymtab_to_symtab_1,
7336 hpread_psymtab_to_symtab): Replace fprintf tab_to_s...)
7337 with fprintf_unfiltered (gdb_stderr,...).
7338
7339 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
7340
7341 * remote-array.c (printf_monitor, write_monitor,
7342 array_insert_breakpoint, array_remove_breakpoint ):
7343 Replace fprintf (stderr,...
7344 with fprintf_unfiltered (gdb_stderr,....
7345 * remote-es.c: Likewise.
7346 * remote-os9k.c: Likewise.
7347 * remote-st.c: Likewise.
7348
7349 2002-04-28 Andreas Schwab <schwab@suse.de>
7350
7351 * config/s390/s390.mh (NATDEPFILES): Remove solib.o, add
7352 linux-proc.o and gcore.o.
7353
7354 2002-04-26 Michal Ludvig <mludvig@suse.cz>
7355
7356 * x86-64-tdep.c (x86_64_skip_prologue): Print note when debugging
7357 code without frame pointers.
7358
7359 2002-04-26 Andrew Cagney <ac131313@redhat.com>
7360
7361 * sparc-tdep.c (sparc_gdbarch_init): Add comment explaining why
7362 ON_STACK is needed.
7363
7364 2002-04-26 Ben Elliston <bje@redhat.com>
7365
7366 * target.c (do_xfer_memory): Correct reference to the new option
7367 "trust-readonly-sections".
7368
7369 2002-04-26 Elena Zannoni <ezannoni@redhat.com>
7370
7371 * gdbtypes.h (TYPE_FLAG_VECTOR, TYPE_VECTOR): Define.
7372 * gdbtypes.c (recursive_dump_type): Output the vector flag.
7373 * dwarf2read.c (dwarf_attr_name): Handle new attribute for
7374 vectors.
7375 (read_array_type): Record the fact that this array type is really a
7376 vector (i.e. are passed in by value).
7377
7378 2002-04-26 Jason Thorpe <thorpej@wasabisystems.com>
7379
7380 * alpha-tdep.h (gdbarch_tdep): Add sigcontext_addr member.
7381 * alpha-tdep.c (alpha_sigcontext_addr): New function.
7382 (alpha_find_saved_regs): Use alpha_sigcontext_addr.
7383 (alpha_gdbarch_init): Initialize tdep->sigcontext_addr.
7384 * alpha-linux-tdep.c: Include frame.h.
7385 (alpha_linux_sigcontext_addr): New function.
7386 (alpha_linux_init_abi): Set tdep->sigcontext_addr to
7387 alpha_linux_sigcontext_addr.
7388 * alpha-osf1-tdep.c: Include gdbcore.h.
7389 (alpha_osf1_sigcontext_addr): New function.
7390 (alpha_osf1_init_abi): Set tdep->sigcontext_addr to
7391 alpha_osf1_sigcontext_addr.
7392 * config/alpha/tm-alpha.h (SIGCONTEXT_ADDR): Remove.
7393 * config/alpha/tm-alphalinux.h (SIGCONTEXT_ADDR): Remove.
7394
7395 2002-04-26 Andrew Cagney <ac131313@redhat.com>
7396
7397 * stack.c (selected_frame_level):
7398 (select_frame): Do not set selected_frame_level.
7399 * frame.h (selected_frame_level): Delete declaration.
7400
7401 2002-04-26 Andrew Cagney <ac131313@redhat.com>
7402
7403 * rs6000-tdep.c (rs6000_gdbarch_init): Only set
7404 convert_from_func_ptr-addr when AIX / PowerOpen.
7405
7406 2002-04-25 Andrew Cagney <ac131313@redhat.com>
7407
7408 * valops.c (hand_function_call): Call
7409 generic_save_call_dummy_addr.
7410 * frame.h (generic_save_call_dummy_addr): Declare.
7411 * blockframe.c (struct dummy_frame): Add fields call_lo and
7412 call_hi.
7413 (generic_find_dummy_frame): Check for PC in range call_lo to
7414 call_hi instead of entry_point_address.
7415 (generic_pc_in_call_dummy): Search the dummy frames for a PC in
7416 the call_lo to call_hi range. Allow for DECR_PC_AFTER_BREAK.
7417 (generic_save_call_dummy_addr): New function.
7418
7419 2002-04-24 David S. Miller <davem@redhat.com>
7420
7421 * sparc-tdep.c (sparc_gdbarch_skip_prologue): Kill, duplicates
7422 sparc_skip_prologue.
7423 (sparc_skip_prologue): Kill frameless_p arg, and use line number
7424 information to find prologue when possible.
7425 (sparc_prologue_frameless_p): Call examine_prologue directly.
7426 (sparc_gdbarch_init): Update set_gdbarch_skip_prologue call.
7427 * config/sparc/tm-sparc.h (sparc_skip_prologue): Update for killed
7428 second argument.
7429 (SKIP_PROLOGUE): Likewise.
7430
7431 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
7432
7433 * alpha-tdep.c (alpha_skip_prologue_internal): Remove
7434 GDB_TARGET_HAS_SHARED_LIBS #ifdef and update comment to
7435 indicate that the condition it was testing is always true.
7436 * config/alpha/nm-linux.h (GDB_TARGET_HAS_SHARED_LIBS): Remove.
7437 * config/alpha/nm-nbsd.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
7438 * config/alpha/nm-osf.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
7439
7440 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
7441
7442 * alpha-tdep.h (gdbarch_tdep): Add jb_pc and jb_elt_size members.
7443 * alpha-linux-tdep.c (alpha_linux_init_abi): Initialize
7444 tdep->jb_pc and tdep->jb_elt_size.
7445 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Likewise.
7446 * alphafbsd-tdep.c (alphafbsd_init_abi): Likewise.
7447 * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
7448 * alpha-nat.c (get_longjmp_target): Remove.
7449 (JB_ELEMENT_SIZE): Ditto.
7450 (JB_PC): Ditto.
7451 * alpha-tdep.c (alpha_get_longjmp_target): New function.
7452 (alpha_gdbarch_init): Default tdep->jb_pc to -1. If the
7453 OS ABI sets jb_pc to a valid value, set gdbarch_get_longjmp_target
7454 to alpha_get_longjmp_target.
7455 (alpha_dump_tdep): Report tdep->jb_pc and tdep->jb_elt_size.
7456 * config/alpha/nm-linux.h (GET_LONGJMP_TARGET): Remove.
7457 * config/alpha/nm-osf.h (GET_LONGJMP_TARGET): Remove.
7458
7459 2002-04-25 Andrew Cagney <ac131313@redhat.com>
7460
7461 * README: Update to GDB 5.2.
7462
7463 2002-04-25 Andrew Cagney <ac131313@redhat.com>
7464
7465 * gdbarch.sh (LC_ALL): Set to `c'.
7466
7467 2002-04-25 Theodore A. Roth <troth@verinet.com>
7468
7469 * avr-tdep.c: Ran through gdb_indent.sh.
7470
7471 2002-04-25 Theodore A. Roth <troth@verinet.com>
7472
7473 * MAINTAINERS: Add myself as AVR maintainer.
7474 * NEWS: Note new target avr.
7475
7476 2002-04-25 Theodore A. Roth <troth@verinet.com>
7477
7478 * Makefile.in: Add support for AVR target.
7479 * configure.tgt: Add support for AVR target.
7480 * avr-tdep.c: New file
7481 * config/avr/avr.mt: New file.
7482
7483 2002-04-25 Theodore A. Roth <troth@verinet.com>
7484
7485 * MAINTAINERS: Add myself to write-after-approval.
7486
7487 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
7488
7489 * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,...
7490 with fprintf_unfiltered (gdb_stderr,....
7491
7492 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
7493
7494 Fix PR gdb/508.
7495 * symfile.c (add_filename_language): Fix wrong xrealloc size argument.
7496
7497 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
7498
7499 * p-exp.y: Also use new prev_lexptr variable
7500 to improve error reporting. Based on Michael Snyder
7501 2002-04-24 dated patch to c-exp.y.
7502
7503 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
7504
7505 * alpha-tdep.c (alpha_breakpoint_from_pc): New function.
7506 (alpha_gdbarch_init): Set gdbarch_breakpoint_from_pc to
7507 alpha_breakpoint_from_pc. Set gdbarch_function_start_offset
7508 to 0.
7509 * config/alpha/tm-alpha.h: Remove forward decls of struct type
7510 and struct value.
7511 (FUNCTION_START_OFFSET): Remove.
7512 (BREAKPOINT): Ditto.
7513
7514 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
7515
7516 * MAINTAINERS: Reflect that multi-arch is enabled for VAX.
7517 * NEWS: Ditto.
7518
7519 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
7520
7521 * alpha-linux-tdep.c (alpha_linux_pc_in_sigtramp): New function.
7522 (alpha_linux_init_abi): Set gdbarch_pc_in_sigtramp to
7523 alpha_linux_pc_in_sigtramp.
7524 * alpha-osf1-tdep.c (alpha_osf1_pc_in_sigtramp): New function.
7525 (alpha_osf1_init_abi): Set gdbarch_pc_in_sigtramp to
7526 alpha_osf1_pc_in_sigtramp.
7527 * alpha-tdep.c (alpha_osf_in_sigtramp): Remove.
7528 * alphafbsd-tdep.c (alphafbsd_pc_in_sigtramp): New function.
7529 (alphafbsd_init_abi): Set gdbarch_pc_in_sigtramp to
7530 alphafbsd_pc_in_sigtramp.
7531 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): New function.
7532 (alphanbsd_init_abi): Set gdbarch_pc_in_sigtramp to
7533 alphanbsd_pc_in_sigtramp.
7534 * config/alpha/tm-alpha.h (IN_SIGTRAMP): Remove.
7535 * config/alpha/tm-alphalinux.h (IN_SIGTRAMP): Remove.
7536
7537 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
7538
7539 * config/alpha/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
7540
7541 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
7542
7543 * Makefile.in (ALLDEPFILES): Add alphanbsd-nat.c and
7544 alphanbsd-tdep.c.
7545 (alphanbsd-nat.o): New dependency list.
7546 (alphanbsd-tdep.o): Ditto.
7547 * NEWS: Note new native NetBSD/alpha configuration.
7548 * alphanbsd-nat.c: New file.
7549 * alphanbsd-tdep.c: Ditto.
7550 * configure.host (alpha*-*-netbsd*): New host.
7551 * configure.tgt (alpha*-*-netbsd*): New target.
7552 * config/alpha/nbsd.mh: New file.
7553 * config/alpha/nbsd.mt: Ditto.
7554 * config/alpha/nm-nbsd.h: Ditto.
7555 * config/alpha/tm-nbsd.h: Ditto.
7556
7557 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
7558
7559 * Makefile.in (ALLDEPFILES): Add alpha-osf1-tdep.c.
7560 (alpha-osf1-tdep.o): New dependency list.
7561 * alpha-tdep.h (gdbarch_tdep): Add dynamic_sigtramp_offset
7562 and skip_sigtramp_frame members.
7563 * alpha-linux-tdep.c: Include gdbcore.h.
7564 (alpha_linux_sigtramp_offset): Change return type to LONGEST.
7565 (alpha_linux_init_abi): Initialize tdep->dynamic_sigtramp_offset.
7566 * alpha-osf1-tdep.c: New file.
7567 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Moved to
7568 alpha-osf1-dep.c.
7569 (alpha_frame_past_sigtramp_frame): New function.
7570 (alpha_dynamic_sigtramp_offset): Ditto.
7571 (alpha_proc_desc_is_dyn_sigtramp): Ditto.
7572 (alpha_set_proc_desc_is_dyn_sigtramp): Ditto.
7573 (ALPHA_PROC_SIGTRAMP_MAGIC): Define.
7574 (push_sigtramp_desc): Use alpha_set_proc_desc_is_dyn_sigtramp.
7575 (after_prologue): Use alpha_proc_desc_is_dyn_sigtramp.
7576 (find_proc_desc): Use alpha_dynamic_sigtramp_offset.
7577 (alpha_frame_chain): Use alpha_frame_past_sigtramp_frame.
7578 (alpha_init_extra_frame_info): Use alpha_proc_desc_is_dyn_sigtramp.
7579 (alpha_pop_frame): Use alpha_proc_desc_is_dyn_sigtramp.
7580 (alpha_gdbarch_init): Initialize tdep->dynamic_sigtramp_offset
7581 and tdep->skip_sigtramp_frame. Set gdbarch_skip_trampoline_code
7582 to find_solib_trampoline_target.
7583 * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-osf1-tdep.o.
7584 * config/alpha/tm-alpha.h: Remove inclusion of regcache.h.
7585 (SKIP_TRAMPOLINE_CODE): Remove.
7586 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7587 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7588 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
7589 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
7590 * config/alpha/tm-alphalinux.h (PROC_DESC_IS_DYN_SIGTRAMP): Remove.
7591 (PROC_SIGTRAMP_MAGIC): Ditto.
7592 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7593 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7594 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7595 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
7596 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
7597
7598 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
7599
7600 * NEWS: Note that Alpha targets are now multi-arch.
7601
7602 2002-04-24 Michael Snyder <msnyder@redhat.com>
7603
7604 * parser-defs.h (prev_lexptr): New external variable.
7605 * parse.c (parse_exp_1): Set prev_lexptr to null before
7606 calling the language-specific parser.
7607 * c-exp.y (yylex): Set prev_lexptr to start of current token.
7608 (yyerror): Use prev_lexptr in error reporting.
7609
7610 2002-04-24 Daniel Jacobowitz <drow@mvista.com>
7611
7612 * config/i386/tm-linux.h: Define FILL_FPXREGSET.
7613 * gregset.h: If FILL_FPXREGSET is defined, provide
7614 gdb_fpxregset_t, supply_fpxregset, and fill_fpxregset.
7615 * linux-proc.c (linux_do_thread_registers): If FILL_FPXREGSET
7616 is defined, call fill_fpxregset.
7617
7618 2002-04-24 Roland McGrath <roland@frob.com>
7619
7620 * config/i386/i386gnu.mh (NATDEPFILES): Add core-regset.o here.
7621 * i386gnu-nat.c [HAVE_SYS_PROCFS_H]
7622 (supply_gregset, supply_fpregset): New functions.
7623
7624 * gnu-nat.c (gnu_find_memory_regions): New function.
7625 (init_gnu_ops): Set `to_find_memory_regions' hook to that.
7626 (gnu_xfer_memory): Add a cast.
7627
7628 2002-04-24 Michael Snyder <msnyder@redhat.com>
7629
7630 * arm-tdep.c (arm_scan_prologue): Move "mov ip, sp" into the
7631 loop. Add handling for "str lr, [sp, #-4]!" and for saves
7632 of argument regs ("str r(0123), [r11, #-nn"]).
7633 (arm_skip_prologue): Better handling for frameless functions.
7634 Treat "mov ip, sp" as optional. Recognize "str lr, [sp, #-4]".
7635 (arm_skip_prologue): Recognize str r(0123), [r11, #-nn].
7636
7637 Wed Apr 24 14:22:21 2002 Andrew Cagney <cagney@redhat.com>
7638
7639 * arm-tdep.c (arm_gdbarch_init): Add comment that NUM_REGS nor
7640 NUM_PSEUDO_REGS can be used.
7641
7642 2002-04-24 Andrew Cagney <ac131313@redhat.com>
7643
7644 * arch-utils.h: Update copyright.
7645
7646 * gdbarch.sh (PC_IN_SIGTRAMP): Add.
7647 * gdbarch.h, gdbarch.c: Re-generate.
7648
7649 * inferior.h (IN_SIGTRAMP): Delete definition.
7650 * arch-utils.c (legacy_pc_in_sigtramp): New function.
7651 * arch-utils.h (legacy_pc_in_sigtramp): Declare.
7652
7653 * mips-tdep.c (mips_init_extra_frame_info): Use PC_IN_SIGTRAMP.
7654 (mips_dump_tdep): Do not print value of IN_SIGTRAMP.
7655 * hppa-tdep.c (pc_in_interrupt_handler): Use PC_IN_SIGTRAMP.
7656 (find_proc_framesize): Ditto.
7657 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Ditto.
7658 (alpha_init_extra_frame_info): Ditto.
7659 * infrun.c (handle_inferior_event): Ditto.
7660 (handle_inferior_event): Ditto.
7661 (check_sigtramp2): Ditto.
7662 * blockframe.c (create_new_frame): Ditto.
7663 (get_prev_frame): Ditto.
7664 * ppc-linux-tdep.c: Update comments.
7665 * i386-linux-tdep.c: Update comments.
7666 * breakpoint.c (bpstat_what): Update comment.
7667
7668 2002-04-24 David S. Miller <davem@redhat.com>
7669
7670 * i960-tdep.c (register_in_window_p): New function.
7671 (i960_find_saved_register): Use it instead of
7672 REGISTER_IN_WINDOW_P.
7673 * config/i960/tm-i960.h (REGISTER_IN_WINDOW): Delete.
7674
7675 * symtab.h (find_stab_function_addr): Kill extern.
7676 * minsyms.c (find_stab_function_addr): Remove from here...
7677 * dbxread.c: ... to here, and mark it static.
7678
7679 2002-04-20 David S. Miller <davem@redhat.com>
7680
7681 * sparc-tdep.c (sparc_pop_frame): Only need to allocate
7682 SPARC_INTREG_SIZE * 16 bytes for reg_temp.
7683
7684 2002-04-21 David S. Miller <davem@redhat.com>
7685
7686 * remote-vxsparc.c (vx_read_register): Fix typo, we want
7687 REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
7688 (vx_write_register): Likewise.
7689
7690 2002-04-23 J. Brobecker <brobecker@gnat.com>
7691
7692 * source.c (is_regular_file): New function.
7693 (openp): Check wether file to open is a regular file
7694 to avoid opening directories.
7695
7696 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7697
7698 * findvar.c (extract_signed_integer): Cast printf argument
7699 to suppress format warning.
7700 (extract_unsigned_integer): Likewise.
7701 * infcmd.c (registers_info): Likewise.
7702 * top.c (get_prompt_1): Likewise.
7703 * valops.c (value_assign): Likewise.
7704 * valprint.c (print_decimal): Likewise.
7705
7706 2002-04-22 H.J. Lu (hjl@gnu.org)
7707
7708 * c-exp.y (typebase): Support
7709
7710 [long|long long|short] [signed|unsigned] [int|]
7711
7712 and
7713
7714 signed [long|long long|short] int
7715
7716 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7717
7718 * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
7719 and vax-tdep.h.
7720 * vax-tdep.h: New file.
7721 * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
7722 Make several routines static.
7723 (vax_get_saved_register): New function.
7724 (vax_gdbarch_init): New function.
7725 (_initialize_vax_tdep): Register vax_gdbarch_init.
7726 * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
7727 Remove macros now under the control of gdbarch.
7728
7729 2002-04-22 Michael Snyder <msnyder@redhat.com>
7730
7731 * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
7732 Some whitespace and coding standards tweaks.
7733
7734 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7735
7736 * vax-tdep.c: Include regcache.h.
7737 (vax_call_dummy_words): New.
7738 (sizeof_vax_call_dummy_words): New.
7739 (vax_fix_call_dummy): New function.
7740 (vax_saved_pc_after_call): Ditto.
7741 * config/vax/tm-vax.h: Don't include regcache.h.
7742 (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
7743 (CALL_DUMMY): Remove.
7744 (CALL_DUMMY_WORDS): Define.
7745 (SIZEOF_CALL_DUMMY_WORDS): Define.
7746 (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
7747
7748 2002-04-18 Michael Snyder <msnyder@redhat.com>
7749
7750 * arm-tdep.h: Change regnum defines to enums for ease of debugging.
7751
7752 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7753
7754 * vax-tdep.c (vax_frame_chain): New function.
7755 (vax_push_dummy_frame): Ditto.
7756 (vax_pop_frame): Ditto.
7757 * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
7758 (FRAMELESS_FUNCTION_INVOCATION): Use
7759 generic_frameless_function_invocation_not.
7760 (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
7761 (POP_FRAME): Use vax_pop_frame.
7762
7763 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7764
7765 * vax-tdep.c (vax_store_struct_return): New function.
7766 (vax_extract_return_value): Ditto.
7767 (vax_store_return_value): Ditto.
7768 (vax_extract_struct_value_address): Ditto.
7769 * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
7770 vax_store_struct_return.
7771 (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
7772 (STORE_RETURN_VALUE): Use vax_store_return_value.
7773 (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
7774
7775 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7776
7777 * vax-tdep.c (vax_frame_saved_pc): New function.
7778 (vax_frame_args_address_correct): Ditto.
7779 (vax_frame_args_address): Ditto.
7780 (vax_frame_locals_address): Ditto.
7781 (vax_frame_num_args): Move code to be in proximity to
7782 other frame-related functions.
7783 * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
7784 (FRAME_SAVED_PC): Use vax_frame_saved_pc.
7785 (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
7786 (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
7787 (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
7788
7789 2002-04-22 H.J. Lu (hjl@gnu.org)
7790
7791 * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
7792 includedir.
7793
7794 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7795
7796 * vax-tdep.c (vax_frame_init_saved_regs): New function.
7797 * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
7798 (FRAME_INIT_SAVED_REGS): New macro.
7799
7800 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7801
7802 * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
7803
7804 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7805
7806 * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
7807 where needed.
7808 (fetch_osf_core_registers): Likewise.
7809 (supply_gregset): Likewise.
7810
7811 2002-04-22 J. Brobecker <brobecker@gnat.com>
7812
7813 * symfile.h (get_section_index): Define.
7814 * symfile.c (get_section_index): New function.
7815 * mdebugread.c (SC_IS_SBSS): New macro.
7816 (SC_IS_BSS): Return true for the scBss storage class only, as
7817 the scSBss storage class refers to the .sbss section.
7818 (parse_partial_symbols): Discard the symbols which associated
7819 section does not exist.
7820 Make sure to use the .sbss section index for symbols which
7821 storage class is scBss, rather than using the .bss section index.
7822
7823 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7824
7825 * vax-tdep.c: Update copyright years.
7826 (vax_register_name): New function.
7827 (vax_register_byte): Ditto.
7828 (vax_register_raw_size): Ditto.
7829 (vax_register_virtual_size): Ditto.
7830 (vax_register_virtual_type): Ditto.
7831 * config/vax/tm-vax.h: Update copyright years.
7832 (REGISTER_NAMES): Remove.
7833 (REGISTER_NAME): Define.
7834 (REGISTER_BYTE): Use vax_register_byte.
7835 (REGISTER_RAW_SIZE): Use vax_register_raw_size.
7836 (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
7837 (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
7838
7839 2002-04-21 Andrew Cagney <ac131313@redhat.com>
7840
7841 * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
7842 declaration
7843 * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
7844
7845 2002-04-21 David S. Miller <davem@redhat.com>
7846
7847 * arch-utils.c (generic_prologue_frameless_p): Kill
7848 SKIP_PROLOGUE_FRAMELESS_P code.
7849 * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
7850 references.
7851 (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
7852 * arc-tdep.c (arc_prologue_frameless_p): Implement.
7853 * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
7854 references.
7855 (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
7856 * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
7857 (sparc_gdbarch_init): Pass it to
7858 set_gdbarch_prologue_frameless_p.
7859
7860 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7861
7862 * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
7863 (alphabsd-nat.o): New dependency list.
7864
7865 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7866
7867 * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
7868 alphafbsd-tdep.c.
7869 (alpha-linux-tdep.o): New dependency list.
7870 (alphafbsd-tdep.o): Likewise.
7871
7872 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7873
7874 * alpha-linux-tdep.c: New file. Move alpha_linux_sigtramp_offset
7875 to here...
7876 * alpha-tdep.c: ...from here.
7877 * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
7878
7879 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7880
7881 * config/alpha/tm-alpha.h: Move alpha_software_single_step
7882 prototype from here...
7883 * alpha-tdep.h: ...to here.
7884
7885 2002-04-21 Andrew Cagney <ac131313@redhat.com>
7886
7887 * frame.h (selected_frame_level): Document as deprecated.
7888 (frame_relative_level): Declare.
7889 * stack.c (frame_relative_level): New function.
7890 (selected_frame_level): Document as deprecated.
7891 (select_frame): Do not set the selected_frame_level.
7892
7893 * stack.c (frame_info, record_selected_frame): Update.
7894 (frame_command, current_frame_command): Update.
7895 (up_silently_base, up_command, down_silently_base): Update.
7896 (down_command): Update.
7897 * inflow.c (kill_command): Update.
7898 * tracepoint.c (finish_tfind_command): Update.
7899 * corelow.c (core_open): Update.
7900 * thread.c (info_threads_command): Update.
7901 (do_captured_thread_select): Update.
7902 * infcmd.c (finish_command): Update.
7903 * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
7904
7905 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7906
7907 * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
7908
7909 2002-04-21 Andrew Cagney <ac131313@redhat.com>
7910
7911 * arm-tdep.c (arm_breakpoint_from_pc): Make static. Make return
7912 type const.
7913
7914 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7915
7916 * alphafbsd-tdep.c: Update copyright years. Include
7917 alpha-tdep.h.
7918 (alphafbsd_use_struct_convention): Make static.
7919 (alphafbsd_init_abi): New function.
7920 (_initialize_alphafbsd_tdep): New function.
7921 * config/alpha/tm-fbsd.h: Update copyright years.
7922 (USE_STRUCT_CONVENTION): Remove.
7923
7924 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7925
7926 * alpha-tdep.c (alpha_abi_handler): New structure to describe
7927 an Alpha ABI variant.
7928 (alpha_abi_handler_list): Declare.
7929 (alpha_gdbarch_register_os_abi): New function.
7930 (alpha_gdbarch_init): Give registered ABI variant handlers a
7931 chance to tweak the gdbarch once we have set up defaults.
7932 * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
7933
7934 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7935
7936 * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
7937 to standard_coerce_float_to_double.
7938 * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
7939
7940 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7941
7942 * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
7943 * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
7944 from gdbarch_tdep rather than a constant.
7945 (alpha_gdbarch_init): Initialize tdep->vm_min_address to
7946 the default text address for all Alpha Unix ABIs.
7947 (alpha_dump_tdep): Report the value of tdep->vm_min_address.
7948 * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
7949
7950 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7951
7952 * alpha-tdep.h: New file. Includes several Alpha target constants
7953 taken from...
7954 * config/alpha/tm-alpha.h: ...here. Remove macros that we now
7955 let gdbarch deal with.
7956 (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
7957 * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
7958 to dependency list.
7959 * alpha-nat.c: Include alpha-tdep.h. Update for adjusted
7960 Alpha target register names.
7961 * alphabsd-nat.c: Likewise.
7962 * alpha-tdep.c: Include alpha-tdep.h. Update for adjusted
7963 Alpha target register names. Make serveral routines static.
7964 (alpha_get_saved_register): New function.
7965 (alpha_abi_names): New.
7966 (process_note_abi_tag_sections): New function.
7967 (get_elfosabi): New function.
7968 (alpha_gdbarch_init): New function.
7969 (alpha_dump_tdep): New function.
7970 (_initialize_alpha_tdep): Register alpha_gdbarch_init.
7971
7972 2002-04-21 Andrew Cagney <ac131313@redhat.com>
7973
7974 * frame.c (find_saved_register): Delete #ifdef
7975 HAVE_REGISTER_WINDOWS code.
7976 * config/sparc/tm-sparc.h: Update comments.
7977 * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
7978
7979 2002-04-21 Andrew Cagney <ac131313@redhat.com>
7980
7981 * i960-tdep.c (i960_find_saved_register): New function.
7982 (i960_get_saved_register): New function.
7983 * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
7984 (i960_get_saved_register): Declare.
7985 * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
7986
7987 2002-04-20 David S. Miller <davem@redhat.com>
7988
7989 * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
7990
7991 2002-04-20 Andrew Cagney <ac131313@redhat.com>
7992
7993 * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
7994 instead of NUM_PSEUDO_REGS.
7995
7996 2002-04-20 David S. Miller <davem@redhat.com>
7997
7998 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
7999 GDB_MULTI_ARCH_PARTIAL
8000 * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
8001 define, let tm-sp64.h do it.
8002
8003 2002-04-20 Jason Thorpe <thorpej@wasabisystems.com>
8004
8005 * frame.c (find_saved_register): Avoid a NULL pointer
8006 dereference and actually walk the frame list.
8007
8008 2002-04-20 Andrew Cagney <ac131313@redhat.com>
8009
8010 * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
8011 sorted in most most-recent-used order. Document.
8012 * gdbarch.h, gdbarch.c: Regenerate.
8013
8014 2002-04-19 Andrew Cagney <ac131313@redhat.com>
8015
8016 * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
8017 instead of ->prev.
8018 * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
8019 * s390-tdep.c (s390_frame_chain): Do not use ->prev.
8020 * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
8021 instead of ->prev.
8022
8023 2002-04-19 Elena Zannoni <ezannoni@redhat.com>
8024
8025 Fix PR gdb/471.
8026 * gdbtypes.c (init_simd_type): Rewrite using new functions.
8027 (build_builtin_type_vec128): Ditto.
8028 (append_composite_type_field): Fix calculation of type length in
8029 union case.
8030
8031 2002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
8032
8033 * config/djgpp/README: Update.
8034
8035 * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
8036 compiler warnings.
8037
8038 2002-04-19 Jason Thorpe <thorpej@wasabisystems.com>
8039
8040 * alpha-tdep.c (setup_arbitrary_frame): Rename...
8041 (alpha_setup_arbitrary_frame): ...to this.
8042 * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
8043 for alpha_setup_arbitrary_frame.
8044
8045 2002-04-18 Andrew Cagney <cagney@redhat.com>
8046
8047 * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
8048 * gdbarch.h, gdbarch.c: Regenerate.
8049
8050 * defs.h (breakpoint_from_pc_fn): Delete type definition.
8051 * target.h (memory_breakpoint_from_pc): Update declaration.
8052 * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
8053
8054 * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
8055 * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
8056 * mem-break.c (memory_breakpoint_from_pc): Ditto.
8057 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
8058 * s390-tdep.c (s390_breakpoint_from_pc): Ditto
8059 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
8060 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
8061 * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
8062 * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
8063 * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
8064 * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
8065 * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
8066
8067 * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
8068 const pointer.
8069 * monitor.c (monitor_insert_breakpoint): Ditto.
8070 * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
8071
8072 * config/mcore/tm-mcore.h: Update copyright.
8073 * mem-break.c: Ditto.
8074 * xstormy16-tdep.c: Ditto.
8075
8076 2002-04-18 Pierre Muller <muller@ics.u-strasbg.fr>
8077
8078 * p-exp.y: Add precedence rule for '^' token.
8079 This removes the shift/reduce conflicts.
8080 Remove the comment concerning these shift/reduce conflicts.
8081
8082 2002-04-18 Elena Zannoni <ezannoni@redhat.com>
8083
8084 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
8085 (registers_powerpc_nofp): New register set for processors
8086 without floating point unit.
8087
8088 2002-04-18 David S. Miller <davem@redhat.com>
8089
8090 * MAINTAINERS: Add myself to write-after-approval.
8091
8092 2002-04-17 Michael Snyder <msnyder@redhat.com>
8093
8094 * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
8095
8096 2002-04-17 Andrew Cagney <ac131313@redhat.com>
8097
8098 * rs6000-tdep.c (frame_initial_stack_address): Use
8099 frame_register_read to read the alloca_reg.
8100
8101 2002-04-17 Andrew Cagney <ac131313@redhat.com>
8102
8103 * frame.c (find_saved_register): Find saved registers in the next
8104 not prev frame.
8105 Fix PR gdb/365.
8106
8107 2002-04-17 Andrew Cagney <ac131313@redhat.com>
8108
8109 * gdbarch.sh (LANG): Set to ``c''.
8110
8111 2002-04-15 Andrew Cagney <ac131313@redhat.com>
8112
8113 * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
8114
8115 2002-04-15 Andrew Cagney <ac131313@redhat.com>
8116
8117 * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
8118 Update copyright.
8119
8120 * hpread.c (hpread_get_lntt): Add declaration.
8121 Also fix PR gdb/391.
8122
8123 2002-04-14 Andrew Cagney <ac131313@redhat.com>
8124
8125 * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
8126 * aclocal.m4, configure: Re-generate.
8127 Fix PR gdb/391.
8128
8129 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
8130
8131 * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
8132 instead of tm_print_insn.
8133
8134 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
8135
8136 * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
8137
8138 2002-04-14 Andrew Cagney <ac131313@redhat.com>
8139
8140 * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
8141 * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
8142 (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
8143
8144 2002-04-12 Don Howard <dhoward@redhat.com>
8145
8146 * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
8147 max_user_call_depth.
8148 (init_cmd_lists): Initialize the new value;
8149 * cli/cli-script.c (execute_user_command): Limit the call depth of
8150 user defined commands. This avoids a core-dump when user commands
8151 are infinitly recursive.
8152
8153 2002-04-12 Kevin Buettner <kevinb@redhat.com>
8154
8155 * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
8156 * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
8157 from tdep struct instead of DEFAULT_LR_SAVE.
8158 (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
8159 * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
8160 * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
8161
8162 2002-04-12 Michael Snyder <msnyder@redhat.com>
8163
8164 * Remote.c: Spelling fix.
8165 * gcore.c (default_derive_heap_segment): Use bfd_section_name.
8166 If no symbol found for "sbrk", try "_sbrk".
8167 (make_output_phdrs): Use bfd_section_name.
8168 (gcore_copy_callback): Use bfd_section_name.
8169 * eval.c: Indentation fix-ups.
8170 * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
8171 in case it gets applied to an address that is already
8172 in the instruction space.
8173 * cli/cli-decode.c (help_list): Allow long lines to wrap.
8174 * symfile.c: Fix indentation, long lines.
8175 * source.c: White space fix-up.
8176
8177 2002-04-12 Andrew Cagney <cagney@redhat.com>
8178
8179 * defs.h (read_relative_register_raw_bytes): Delete declaration.
8180 * frame.c (frame_register_read): New function. Return non-zero on
8181 success.
8182 (read_relative_register_raw_bytes_for_frame): Delete.
8183 (read_relative_register_raw_bytes): Delete.
8184 * frame.h (frame_register_read): Declare.
8185 * d30v-tdep.c: Update Copyright. Use frame_register_read.
8186 * sh-tdep.c: Ditto.
8187 * infcmd.c (do_registers_info): Ditto.
8188 * hppa-tdep.c: Ditto.
8189 * rs6000-tdep.c: Ditto.
8190 * h8500-tdep.c: Ditto.
8191 * mips-tdep.c: Ditto.
8192 * h8300-tdep.c: Ditto.
8193 * z8k-tdep.c: Ditto.
8194
8195 2002-04-12 Kevin Buettner <kevinb@redhat.com>
8196
8197 From Jimi X <jimix@watson.ibm.com>:
8198 * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
8199 64-bit SysV ABI.
8200
8201 2002-04-12 Kevin Buettner <kevinb@redhat.com>
8202
8203 From Jimi X <jimix@watson.ibm.com>:
8204 * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
8205 bfd info.
8206
8207 2002-04-12 Kevin Buettner <kevinb@redhat.com>
8208
8209 From Jimi X <jimix@watson.ibm.com>:
8210 * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
8211 register sets for these processor variants.
8212
8213 2002-04-11 Daniel Jacobowitz <drow@mvista.com>
8214
8215 * regformats/reg-ppc.dat: Support FPSCR.
8216
8217 2002-04-11 Kevin Buettner <kevinb@redhat.com>
8218
8219 * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
8220 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
8221 Add fpscr as an invalid/unfetchable register.
8222 * ppc-linux-nat.c (ppc_register_u_addr, store_register)
8223 (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
8224 (fill_fpregset): Add support for register fpscr.
8225 (fetch_ppc_registers, store_ppc_registers, supply_gregset)
8226 (fill_gregset): Account for the fact that register ``mq'' might
8227 not exist.
8228 * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
8229 (registers_power): Add fpscr to register set at slot 71.
8230 (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
8231 exist on most PPC architectures. Initialize ppc_fpscr_regnum.
8232
8233 2002-04-11 Michael Snyder <msnyder@redhat.com>
8234
8235 * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
8236 * configure: Regenerate.
8237 * config.in: Regenerate.
8238 * acconfig.h: Add define for _SYSCALL32.
8239 * core-sol2.c: Remove #define _SYSCALL32.
8240 * solib-legacy.c: Remove #define _SYSCALL32.
8241
8242 2002-04-10 Andrew Cagney <ac131313@redhat.com>
8243
8244 * stack.c (select_frame): Cleanup internal error message, do not
8245 use %p.
8246
8247 2002-04-10 Andrew Cagney <ac131313@redhat.com>
8248
8249 * stack.c (select_frame): Check that selected_frame and the
8250 specified level are as expected.
8251 * blockframe.c (get_prev_frame): Set the `level' from next_frame.
8252 Update copyright.
8253 * frame.h (struct frame_info): Add field `level'. Update
8254 copyright.
8255 Work-in-progress PR gdb/464.
8256
8257 2002-04-10 Andrew Cagney <ac131313@redhat.com>
8258
8259 * maint.c (maint_print_section_info): Rename print_section_info.
8260 (print_bfd_section_info, print_objfile_section_info): Update.
8261 * inferior.h (struct gdbarch): Add opaque declaration.
8262 * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
8263 * gdbarch.h: Regenerate.
8264
8265 2002-04-10 Michal Ludvig <mludvig@suse.cz>
8266
8267 * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
8268 (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
8269 (kernel_u_size): Added.
8270 * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
8271 (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
8272
8273 2002-04-04 Jim Ingham <jingham@apple.com>
8274
8275 * valarith.c (find_size_for_pointer_math): New function, either returns
8276 the size for a pointer's target, returns 1 for void *, or errors for
8277 incomplete types.
8278 (value_add, value_sub): use find_size_for_pointer_math.
8279
8280 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
8281
8282 * linux-low.c (linux_look_up_symbols): New hook.
8283 (linux_target_ops): Add linux_look_up_symbols.
8284 * remote-utils.c (decode_address): New function.
8285 (look_up_one_symbol): New function.
8286 * server.c (handle_query): Call target look_up_symbols hook.
8287 * server.h (look_up_one_symbol): Add prototype.
8288 * target.h (struct target_ops): Add look_up_symbols hook.
8289
8290 2002-04-09 Andrew Cagney <ac131313@redhat.com>
8291
8292 * frame.c (read_relative_register_raw_bytes_for_frame): Do not
8293 override FP_REGNUM with frame->fp. Update copyright.
8294 * parse.c (num_std_regs, std_regs): Delete.
8295 (target_map_name_to_register): Do not search std_regs. Update
8296 function description.
8297 * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
8298 declarations. Update copyright.
8299 Fix PR gdb/251.
8300
8301 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
8302
8303 * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
8304 after the last symbol in a block.
8305
8306 2002-04-09 Pierre Muller <muller@ics.u-strasbg.fr>
8307
8308 * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
8309 is non zero as a found symbol.
8310
8311 2002-04-08 Andrew Cagney <ac131313@redhat.com>
8312
8313 * findvar.c: Include "builtin-regs.h".
8314 (value_of_register): Call value_of_builtin_reg when applicable.
8315 * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
8316 (target_map_name_to_register): Call
8317 builtin_reg_map_name_to_regnum.
8318 * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
8319 (COMMON_OBS): Add builtin-regs.o and std-regs.o.
8320 (builtin_regs_h): Define.
8321 (builtin-regs.o): New target.
8322 (findvar.o): Add $(builtin_regs_h).
8323 * builtin-regs.c, builtin-regs.h: New files.
8324 * std-regs.c: New file.
8325 Partial fix for PR gdb/251.
8326
8327 2002-04-08 Kevin Buettner <kevinb@redhat.com>
8328
8329 * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
8330 it's no longer required.
8331
8332 2002-04-08 Andrew Cagney <ac131313@redhat.com>
8333
8334 * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
8335
8336 2002-04-08 Kevin Buettner <kevinb@redhat.com>
8337
8338 From Jimi X <jimix@watson.ibm.com>:
8339 * rs6000-tdep.c (rs6000_software_single_step): Use
8340 rs6000_breakpoint_from_pc() to fetch breakpoint instruction
8341 and size. Use target_insert_breakpoint() and
8342 target_remove_breakpoint() to insert and remove breakpoints
8343 instead of explicit memory reads and writes.
8344
8345 2002-04-08 Kevin Buettner <kevinb@redhat.com>
8346
8347 * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
8348 * rs6000-tdep.c (rs6000_push_arguments): Eliminate
8349 ELF_OBJECT_FORMAT ifdef.
8350
8351 2002-04-08 Kevin Buettner <kevinb@redhat.com>
8352
8353 From Jimi X <jimix@watson.ibm.com>:
8354 * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
8355
8356 2002-04-08 Kevin Buettner <kevinb@redhat.com>
8357
8358 From Jimi X <jimix@watson.ibm.com>:
8359 * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
8360 definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
8361
8362 2002-04-07 Mark Kettenis <kettenis@gnu.org>
8363
8364 * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
8365 s/asprintf/xasprintf/.
8366 (fbsd_make_corefile_notes): s/strdup/xstrdup/.
8367
8368 2002-04-07 Andrew Cagney <ac131313@redhat.com>
8369
8370 I believe Jeff Law denies responsability for this one:
8371 * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
8372 * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
8373 * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
8374 Work-around for PR gdb/366.
8375
8376 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
8377
8378 * remote-e7000.c (write_small, e7000_read_inferior_memory,
8379 e7000_read_inferior_memory_large, e7000_insert_breakpoint,
8380 e7000_remove_breakpoint): Use paddr_nz() to print addresses.
8381
8382 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
8383
8384 * sh-tdep.c (sh_fp_frame_init_saved_regs,
8385 sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
8386 information.
8387
8388 2002-04-07 Andrew Cagney <ac131313@redhat.com>
8389
8390 * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
8391 maintainer.
8392
8393 2002-04-07 Andrew Cagney <ac131313@redhat.com>
8394
8395 * README (Reporting Bugs in GDB): Document the bug web page as the
8396 prefered way of submitting bugs.
8397 Fix PR gdb/402.
8398
8399 2002-04-06 Andrew Cagney <ac131313@redhat.com>
8400
8401 * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
8402 -1. Update comment.
8403 * gdbarch.h, gdbarch.c: Re-generate.
8404
8405 2002-04-07 Andreas Schwab <schwab@suse.de>
8406
8407 * m68klinux-nat.c (fill_fpregset): Properly pass address of
8408 buffer to regcache_collect.
8409
8410 2002-04-06 Andrew Cagney <ac131313@redhat.com>
8411
8412 * gdbarch.sh (PS_REGNUM): Add. Document. Default to -1.
8413 * gdbarch.c, gdbarch.h: Re-generate.
8414
8415 2002-04-06 Andrew Cagney <ac131313@redhat.com>
8416
8417 * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
8418 declaration. Fix -Werror.
8419
8420 2002-04-05 Daniel Jacobowitz <drow@mvista.com>
8421
8422 * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
8423 * gdbarch.c: Regenerate.
8424
8425 2002-04-05 Michael Snyder <msnyder@redhat.com>
8426
8427 * breakpoint.c (clear_command): Rewrite middle section to
8428 combine two loops with identical control conditions.
8429 Add a cleanup to eliminate a memory leak.
8430 * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
8431
8432 2002-04-05 H.J. Lu (hjl@gnu.org)
8433
8434 * solib-svr4.c (bkpt_names): Add "__start".
8435
8436 2002-04-04 Andrew Cagney <ac131313@redhat.com>
8437
8438 * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
8439 as test for 64 bit target.
8440
8441 2002-04-05 Andrew Cagney <ac131313@redhat.com>
8442
8443 * h8500-tdep.c (h8500_write_fp): Delete function.
8444 * dwarf2cfi.c (cfi_write_fp): Document as not used.
8445 * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
8446 * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
8447 * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
8448 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
8449 * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
8450 (s390_write_fp):
8451 * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
8452 * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
8453 * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
8454 (d10v_write_fp): Delete function.
8455 * inferior.h (write_fp, generic_target_write_fp): Delete
8456 declarations.
8457 * regcache.c (generic_target_write_fp): Delete function.
8458 (write_fp): Delete function.
8459 * gdbarch.sh (TARGET_WRITE_FP): Delete.
8460 * gdbarch.h, gdbarch.c: Regenerate.
8461 * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
8462 * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
8463 (sparc64_write_fp): Delete declaration.
8464 * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
8465 (h8500_write_fp): Delete declaration.
8466
8467 2002-04-04 Andrew Cagney <ac131313@redhat.com>
8468
8469 * sparc-tdep.c (sparc64_write_fp): Delete.
8470 (sparc_push_dummy_frame): Replace write_fp call with code to store
8471 the FP directly.
8472 (sparc_gdbarch_init): Do not initialize write_fp.
8473
8474 2002-04-05 Kevin Buettner <kevinb@redhat.com>
8475
8476 * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
8477 clause.
8478
8479 2002-03-29 Jim Blandy <jimb@redhat.com>
8480
8481 * stack.c (get_selected_block): Add new argument `addr_in_block',
8482 used to return the exact code address we used to select the block,
8483 not just the block.
8484 * blockframe.c (get_frame_block, get_current_block): Same.
8485 * frame.h (get_frame_block, get_current_block,
8486 get_selected_block): Update declarations.
8487 * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
8488 linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
8489
8490 2002-04-05 Michael Snyder <msnyder@redhat.com>
8491
8492 * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
8493 warning message.
8494
8495 2002-04-05 J. Brobecker <brobecker@gnat.com>
8496
8497 * utils.c (xfullpath): New function.
8498 * defs.h (xfullpath): Add declaration.
8499 * source.c (openp): Use xfullpath in place of gdb_realpath to
8500 avoid resolving the basename part of filenames when the
8501 associated file is a symbolic link. This fixes a potential
8502 inconsistency between the filenames known to GDB and the
8503 filenames it prints in the annotations.
8504 * symtab.c (lookup_symtab): Use the new xfullpath function, in order
8505 to be able to match a filename with either the real filename, or
8506 the name of any symbolic link to this file.
8507 (lookup_partial_symtab): Ditto.
8508
8509 2002-04-04 Michael Snyder <msnyder@redhat.com>
8510
8511 * breakpoint.c: Add support for hardware breakpoints in overlays.
8512 (overlay_events_enabled): New state variable.
8513 (insert_breakpoints): Use overlay_events_enabled to decide
8514 whether to attempt to set a breakpoint at the overlay load addr.
8515 Handle bp_hardware_breakpoint as well as bp_breakpoint.
8516 (remove_breakpoint): Use overlay_events_enabled to decide
8517 whether breakpoints need to be removed from overlay load addr.
8518 Handle bp_hardware_breakpoint as well as bp_breakpoint.
8519 (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
8520 (create_overlay_event_breakpoint, enable_overlay_breakpoints,
8521 disable_overlay_breakpoints): Update overlay_events_enabled.
8522
8523 2002-04-04 Daniel Jacobowitz <drow@mvista.com>
8524
8525 * dwarf2read.c (struct function_range): New.
8526 (cu_first_fn, cu_last_fn, cu_cached_fn): New.
8527 (check_cu_functions): New.
8528 (read_file_scope): Initialize global function lists.
8529 Call dwarf_decode_line after processing children.
8530 (read_func_scope): Add to global function list.
8531 (dwarf_decode_lines): Call check_cu_functions everywhere
8532 record_line is called. Call record_line with a linenumber
8533 of 0 to mark sequence ends.
8534
8535 2002-04-04 Michal Ludvig <mludvig@suse.cz>
8536
8537 * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
8538 change sync with glibc.
8539
8540 2002-04-03 Jim Blandy <jimb@redhat.com>
8541
8542 * configure.in: Call AC_C_INLINE.
8543 * configure: Regenerated.
8544
8545 2002-04-01 Daniel Jacobowitz <drow@mvista.com>
8546
8547 * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
8548 and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
8549
8550 2002-03-31 Mark Kettenis <kettenis@gnu.org>
8551
8552 * NEWS: Mention gcore support on FreeBSD/i386.
8553
8554 * fbsd-proc.c: New file.
8555 * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
8556 * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
8557
8558 * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
8559 while statement.
8560
8561 2002-03-29 Jim Blandy <jimb@redhat.com>
8562
8563 * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
8564 unescaped newlines in string literals, but newer ones don't. So
8565 escape them.
8566
8567 2002-03-26 Michael Snyder <msnyder@redhat.com>
8568 Andrew Cagney <cagney@redhat.com>
8569
8570 * cli/cli-dump.c: New file. Dump memory to file,
8571 restore file to memory.
8572 * cli/cli-dump.h: New file.
8573 * Makefile.in: Add rules, dependencies for cli-dump.o.
8574 * NEWS: Mention new commands.
8575
8576 2002-03-28 Michael Snyder <msnyder@redhat.com>
8577
8578 * symfile.c (symbol_file_add): Move test for null symbols to later.
8579
8580 2002-03-27 Andrew Cagney <ac131313@redhat.com>
8581
8582 From veksler at il.ibm.com:
8583 * utils.c (gdb_realpath): If canonicalize_file_name fails, return
8584 the xstrduped original path.
8585 Fix PR gdb/417.
8586
8587 2002-03-27 Michael Snyder <msnyder@redhat.com>
8588
8589 * breakpoint.c (_initialize_breakpoint): Clean up help string.
8590 * infcmd.c (_initialize_infcmd): Ditto.
8591 * language.c (_initialize_language): Ditto.
8592 * symfile.c (_initialize_symfile): Ditto.
8593 * top.c (_init_main): Ditto.
8594 * cli/cli-cmds.c (init_cli_cmds): Ditto.
8595
8596 2002-03-27 Elena Zannoni <ezannoni@redhat.com>
8597
8598 * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
8599 vector registers handling.
8600 (skip_prologue): Handle new AltiVec instructions. Fill in new
8601 fields of frame data.
8602 (frame_get_saved_regs): Fill in information for AltiVec registers.
8603
8604 2002-03-27 Jim Blandy <jimb@redhat.com>
8605
8606 * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
8607 a function; leave this macro here to invoke that function.
8608 (symbol_init_mangled_name): Declaration for that function.
8609 * symtab.c (symbol_init_mangled_name): New function.
8610
8611 2002-03-27 Andrew Cagney <ac131313@redhat.com>
8612
8613 * valarith.c: Replace strerror with safe_strerror.
8614 * tracepoint.c: Ditto.
8615 * lin-lwp.c: Ditto.
8616 * go32-nat.c: Ditto.
8617 * inflow.c: Ditto.
8618 * gnu-nat.c: Ditto.
8619
8620 2002-03-27 Andreas Schwab <schwab@suse.de>
8621
8622 * event-top.c (command_line_handler): Remove useless if.
8623
8624 2002-03-27 Andreas Jaeger <aj@suse.de>
8625
8626 * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
8627 comment.
8628
8629 2002-03-27 Michal Ludvig <mludvig@suse.cz>
8630
8631 * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
8632 (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
8633 * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
8634 (x86_64_linux_dr_get_status, supply_gregset),
8635 (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
8636 * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
8637 (x86_64_register_info_table): Add.
8638 (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
8639 (x86_64_register_raw_size, x86_64_register_virtual_type),
8640 (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
8641 general x86_64_register_info_table.
8642 (i386_gdbarch_init): gdbarch_register_bytes is now set
8643 dynamicaly during initialization.
8644 * regformats/reg-x86-64.dat: Synced with changes to registers above.
8645 * gdbserver/linux-x86-64-low.c: Ditto.
8646
8647 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
8648
8649 * gdbserver/server.c (main): Call target_signal_to_host_p
8650 and target_signal_to_host on signals received from the remote.
8651 * gdbserver/remote-utils.c (prepare_resume_reply): Call
8652 target_signal_from_host on signals sent to the remote.
8653 * gdbserver/server.h: Add prototypes. Include "gdb/signals.h".
8654 * gdbserver/Makefile.in: Add signals.o. Add -I${INCLUDE_DIR}.
8655
8656 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
8657
8658 * signals/signals.c: Include "server.h" in gdbserver build.
8659 (target_signal_from_name): Don't use STREQ.
8660 (_initialize_signals): Likewise. Don't include function in
8661 gdbserver build.
8662
8663 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
8664
8665 * signals.c: Moved to...
8666 * signals/signals.c: Here.
8667 * Makefile (signals.o): Update.
8668
8669 2002-03-26 Jeff Law (law@redhat.com)
8670
8671 * somread.c (som_symtab_read): Remove some commented out code and
8672 updated related comments. Do not set the minimal symbol table to
8673 mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
8674 in a dynamic executable.
8675 * hppa-tdep.c (find_proc_framesize): Sanely handle the case
8676 where we are unable to find the minimal symbol for the given
8677 PC value.
8678
8679 2002-03-25 Jeff Law (law@redhat.com)
8680
8681 * linux-proc.c (read_mapping): Scan up to end of line for filename.
8682
8683 2002-03-25 Michal Ludvig <mludvig@suse.cz>
8684
8685 * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
8686
8687 2002-03-23 Andrew Cagney <ac131313@redhat.com>
8688
8689 * command.h: Update copyright.
8690 (struct cmd_list_element): Replace definition with opaque
8691 declaration.
8692 (enum cmd_types): Document that it will eventually be moved to
8693 cli/cli-decode.h
8694 (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
8695 (MALLOCED_REPLACEMENT): Delete macro.
8696 * Makefile.in (cli_decode_h): Add $(command_h).
8697 (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
8698 * top.c: Include "cli/cli-decode.h".
8699 * completer.c: Include "cli/cli-decode.h".
8700 * maint.c: Include "cli/cli-decode.h".
8701 * cli/cli-decode.h: Include "command.h".
8702 (enum command_class): Delete.
8703 (enum cmd_types): Comment out.
8704 (enum cmd_auto_boolean): Delete.
8705 (enum var_types): Delete.
8706
8707 2002-03-23 Andrew Cagney <ac131313@redhat.com>
8708
8709 * cli/cli-decode.c: Include "gdb_assert.h".
8710 (add_set_or_show_cmd): New static function.
8711 (add_set_cmd): Rewrite. Use add_set_or_show_cmd.
8712 (add_show_from_set): Rewrite. Use add_set_or_show_cmd. Don't copy
8713 all fields, such as func, from the set command.
8714
8715 2002-03-23 Andrew Cagney <ac131313@redhat.com>
8716
8717 * MAINTAINERS (sh-elf): Change warning flag to -w.
8718
8719 2002-03-23 Andrew Cagney <cagney@redhat.com>
8720
8721 * defs.h (error): Add printf format attribute.
8722 * thread-db.c (thread_from_lwp): Fix error format string.
8723 * stack.c (parse_frame_specification): Ditto.
8724 * cli/cli-decode.c (undef_cmd_error): Ditto.
8725 * scm-lang.c (scm_lookup_name): Ditto.
8726 * tracepoint.c (trace_error): Ditto.
8727 * remote-utils.c (usage): Ditto.
8728 * remote.c (compare_sections_command): Ditto.
8729 Fix PR gdb/328.
8730
8731 2002-03-22 Andrew Cagney <ac131313@redhat.com>
8732
8733 * gdbtypes.c (append_composite_type_field): New function.
8734 (init_composite_type): New function.
8735 * gdbtypes.h (append_composite_type_field): Declare.
8736 (init_composite_type): Ditto.
8737
8738 2002-03-22 Elena Zannoni <ezannoni@redhat.com>
8739
8740 * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
8741 function.
8742 * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
8743 * rs6000-tdep.c (rs6000_gdbarch_init): Use different
8744 structure returning convention for SYSV ABI case, but not
8745 for GNU/Linux, FreeBSD, or NetBSD.
8746
8747 2002-03-22 Daniel Jacobowitz <drow@mvista.com>
8748
8749 * symtab.h (lookup_block_symbol): Add mangled_name argument
8750 to prototype.
8751
8752 * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
8753 with new mangled_name argument.
8754 * linespec.c (decode_line_1): Likewise.
8755 * valops (value_of_this): Likewise.
8756 * symtab.c (lookup_transparent_type): Likewise.
8757 (lookup_symbol_aux): Likewise. Accept new mangled_name argument.
8758 (lookup_symbol): If we are given a mangled name, pass it down
8759 to lookup_symbol_aux.
8760 (lookup_block_symbol): If we are given a mangled name to check
8761 against, only return symbols which match it.
8762
8763 2002-03-22 Christopher Faylor <cgf@redhat.com>
8764
8765 * win32-nat.c (child_create_inferior): Check for proper shell to use
8766 here, in case the user changes it on the fly.
8767 (_initialize_inftarg): Remove shell path considerations.
8768
8769 2002-03-21 Elena Zannoni <ezannoni@redhat.com>
8770
8771 * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
8772 for gdbarch_max_register_raw_size and max_register_virtual_size.
8773 Adjust copyright year.
8774
8775 2002-03-21 Daniel Jacobowitz <drow@mvista.com>
8776
8777 * dbxread.c (process_one_symbol): Extend the first N_SLINE
8778 in a function to cover the entire beginning of the function
8779 as well if it does not already.
8780
8781 2002-03-21 Tom Rix <trix@redhat.com>
8782
8783 * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
8784 (rs6000_ptrace64): Renamed from ptrace64.
8785
8786 2002-03-20 Martin M. Hunt <hunt@redhat.com>
8787
8788 * gdbserver/remote-utils.c (remote_open): Don't call
8789 getprotobyname, we're all using TCP here so just use
8790 IPPROTO_TCP.
8791 * gdbserver/gdbreplay.c (remote_open): Ditto.
8792
8793 2002-03-20 Martin M. Hunt <hunt@redhat.com>
8794
8795 * regcache.c (_initialize_regcache): No need to call
8796 build_regcache() at this time; it gets called whenever
8797 the gdbarch changes.
8798
8799 2002-03-20 David O'Brien <obrien@FreeBSD.org>
8800
8801 * sparc-nat.c: Include sys/param.h where possible.
8802
8803 2002-03-20 Daniel Jacobowitz <drow@mvista.com>
8804
8805 Fix PR gdb/422.
8806 * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
8807 FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
8808 * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
8809 complex types.
8810 * stabsread.c (rs6000_builtin_type): Likewise.
8811 (read_sun_floating_type): Likewise.
8812
8813 2002-03-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8814
8815 * stabsread.c (read_member_functions): Remove skip code for duplicate
8816 constructor/destructor methods. Use standard parsing for these
8817 methods and just do not chain them to the list of methods after
8818 parsing.
8819
8820 2002-03-19 Alexandre Oliva <aoliva@redhat.com>
8821
8822 * coffread.c: Remove redundant static declarations. Replace
8823 occurrences of `PTR' with `void *'.
8824 * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
8825 * top.h (quit_cover): Likewise.
8826 * defs.h (catch_errors): Likewise.
8827
8828 2002-03-18 Andrew Cagney <ac131313@redhat.com>
8829
8830 * defs.h (XMALLOC): Define.
8831 * gdb-events.sh (XMALLOC): Delete macro.
8832 * gdb-events.c, gdb-events.h: Regenerate.
8833 * gdbarch.sh (XMALLOC): Delete macro.
8834 * gdbarch.c: Regenerate.
8835 * serial.c (XMALLOC): Delete macro.
8836 * ui-file.c (XMALLOC): Ditto.
8837 * ser-unix.h (XMALLOC): Ditto.
8838 * sh-tdep.c (XMALLOC): Ditto.
8839 * ui-out.c (XMALLOC): Ditto.
8840 * utils.c (XMALLOC): Ditto.
8841 * i386-tdep.c (XMALLOC): Ditto.
8842 * gdb-events.c (XMALLOC): Ditto.
8843 * d10v-tdep.c (XMALLOC): Ditto.
8844 * cli-out.c (XMALLOC): Ditto.
8845
8846 * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
8847 * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
8848 * ui-file.c, ui-out.c: Ditto.
8849
8850 2002-03-18 Andrew Cagney <ac131313@redhat.com>
8851
8852 * command.h (struct cmd_list_element): Add field context.
8853 (set_cmd_context, get_cmd_context): Declare.
8854 * cli/cli-decode.h: Ditto.
8855 * cli/cli-decode.c (get_cmd_context): New function.
8856 (set_cmd_context): New function.
8857 (add_cmd): Initialize context.
8858 Part of fixing PR gdb/145 and PR gdb/146.
8859
8860 2002-03-17 Andrew Cagney <ac131313@redhat.com>
8861
8862 * cli/cli-decode.c (cmd_type): New function.
8863 * command.h (cmd_type): Declare.
8864 * infrun.c (set_schedlock_func): Call function cmd_type.
8865 * kod.c (kod_set_os): Call cmd_type.
8866 * cris-tdep.c (cris_version_update): Use function cmd_type.
8867 (cris_mode_update, cris_abi_update): Ditto.
8868
8869 * command.h: (execute_cmd_post_hook): Declare.
8870 (execute_cmd_pre_hook): Declare.
8871 * cli/cli-script.c (clear_hook_in_cleanup): New function.
8872 (execute_cmd_post_hook, execute_cmd_pre_hook): New
8873 functions. Execute pre/post hook while ensuring that afterwords
8874 hook_in is cleared.
8875 * top.c (execute_command): Use execute_cmd_post_hook, and
8876 execute_cmd_pre_hook to execute pre/post commands.
8877 * infrun.c (normal_stop): Pass stop_command and not pre_hook to
8878 hook_stop_stub.
8879 (hook_stop_stub): Call execute_cmd_pre_hook.
8880
8881 2002-03-17 Andrew Cagney <ac131313@redhat.com>
8882
8883 * kod.c (kod_set_os): Revert previous change. Is called by ``info
8884 set'' and this leads to a core dump. Move xstrdup of
8885 operating_system to after check that it is not NULL.
8886
8887 2002-03-17 Andrew Cagney <ac131313@redhat.com>
8888
8889 * kod.c (kod_set_os): Remove unnecessary check that
8890 ``command->type'' is set_cmd.
8891
8892 * valprint.c (set_input_radix): Use input_radix.
8893 (set_output_radix): Use output_radix.
8894 (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
8895 isn't reverted.
8896
8897 2002-03-16 Andrew Cagney <ac131313@redhat.com>
8898
8899 * value.h (struct value): Delete field ``substring_addr''. Change
8900 aligner fields to force_doublest_align, force_longest_align,
8901 force_core_addr_align and force_pointer_aligh.
8902
8903 * value.h (struct value): Fix typo in above change.
8904
8905 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8906
8907 * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
8908 to fix internal_error from ``maintenance print architecture''.
8909
8910 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8911
8912 * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
8913 for gcc versions after gcc-2.8.1.
8914
8915 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8916
8917 * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
8918 for method resolution. Restore adjustment of ``this'' pointer after
8919 calling value_struct_elt, which was accidentally removed during the
8920 HP merge.
8921
8922 2002-03-15 Andrew Cagney <ac131313@redhat.com>
8923
8924 * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
8925 value_of_register.
8926 * findvar.c (value_of_register): Add ``frame'' parameter. Pass to
8927 get_saved_register.
8928 * value.h (value_of_register): Update.
8929
8930 2002-03-14 Richard Henderson <rth@redhat.com>
8931
8932 * configure.in: Detect declaration for canonicalize_file_name.
8933 * utils.c (canonicalize_file_name): Declare, if needed.
8934 (gdb_realpath): Prefer realpath if available and usable.
8935 * config.in, configure: Rebuild.
8936
8937 2002-03-14 Richard Henderson <rth@redhat.com>
8938
8939 * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
8940 a constant array bound.
8941
8942 * MAINTAINERS: Add myself to write-after-approval.
8943
8944 2002-03-14 Michael Snyder <msnyder@redhat.com>
8945
8946 * symfile.c (syms_from_objfile): Return immediately if no syms.
8947 (symbol_file_add): Return immediately if no syms.
8948 (find_sym_fns): Return immediately if no syms.
8949
8950 2002-03-13 Michal Ludvig <mludvig@suse.cz>
8951
8952 * gdbserver/remote-util.c (remote_open): Print remote-side's
8953 IP address when remote debugging over the network.
8954
8955 2002-03-12 David O'Brien <obrien@FreeBSD.org>
8956
8957 * config/sparc/fbsd.mh: Fix copyright.
8958 * config/sparc/fbsd.mt: Likewise.
8959
8960 2002-03-11 Richard Earnshaw <rearnsha@arm.com>
8961
8962 * MAINTAINERS: Fix typo in name of gdb warnings option.
8963 (x86-64): Fix formating so that this can be parsed by awk.
8964
8965 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
8966
8967 * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
8968 * defs.h: Include "gdb/signals.h".
8969 (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
8970
8971 2002-03-10 Michal Ludvig <mludvig@suse.cz>
8972
8973 * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
8974 * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
8975 from x86-64-tdep.h
8976
8977 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
8978 Don Howard <dhoward@redhat.com>
8979
8980 * mips-tdep.c (ST0_FR): Define.
8981 (mips2_fp_compat): New function, temporarily disabled.
8982 (mips_read_fp_register_single): New function.
8983 (mips_read_fp_register_double): New function.
8984 (mips_print_register): Use them.
8985 (do_fp_register_row): Likewise.
8986
8987 2002-03-09 Andrew Cagney <ac131313@redhat.com>
8988
8989 * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
8990 approval''.
8991
8992 2002-03-08 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8993
8994 * stabsread.c (read_member_functions): Fix is_stub test for
8995 static member functions, improve comment.
8996
8997 2002-03-07 Richard Earnshaw <rearnsha@arm.com>
8998
8999 * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
9000 (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
9001 (_initialize_remote_rdi): Use add_set_boolean_cmd to register
9002 commands that set boolean values.
9003 (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
9004 (arm_rdi_resume): Always initialize PC.
9005 (arm_rdi_open): Don't use rslt as a boolean.
9006 (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
9007 (arm_rdi_fetch_registers, arm_rdi_store_registers)
9008 (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
9009 (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
9010
9011 2002-03-06 Alexandre Oliva <aoliva@redhat.com>
9012
9013 * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
9014 * configure: Rebuilt.
9015
9016 2002-03-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
9017
9018 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
9019 (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
9020
9021 2002-03-06 Andrew Cagney <ac131313@redhat.com>
9022
9023 * cli/cli-decode.c (set_cmd_completer): New function.
9024 * command.h (set_cmd_completer): Declare.
9025 * cli/cli-decode.h (set_cmd_completer): Ditto.
9026
9027 * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
9028 * cli/cli-cmds.c (init_cli_cmds): Ditto.
9029 * win32-nat.c (_initialize_inftarg): Ditto.
9030 * remote-rdi.c (_initialize_remote_rdi): Ditto.
9031 * proc-api.c (_initialize_proc_api): Ditto.
9032 * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
9033 * source.c (_initialize_source): Ditto.
9034 * exec.c (_initialize_exec): Ditto.
9035 * solib.c (_initialize_solib): Ditto.
9036 * top.c (init_main): Ditto.
9037 * tracepoint.c (_initialize_tracepoint): Ditto.
9038 * symfile.c (_initialize_symfile): Ditto.
9039 * printcmd.c (_initialize_printcmd): Ditto.
9040 * infcmd.c (_initialize_infcmd): Ditto.
9041 * corefile.c (_initialize_core): Ditto.
9042
9043 2002-03-05 Andrew Cagney <ac131313@redhat.com>
9044
9045 * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
9046
9047 2002-03-05 Andrew Cagney <ac131313@redhat.com>
9048
9049 * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
9050
9051 2002-03-05 Andrew Cagney <ac131313@redhat.com>
9052
9053 * NEWS: Update headings, 5.2 has branched.
9054
9055 2002-03-04 Daniel Jacobowitz <drow@mvista.com>
9056
9057 * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
9058 (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
9059 (register_addr, REGISTER_RAW_SIZE): Likewise.
9060 (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
9061 * gdbserver/linux-x86-64-low.c: Remove extra #endif.
9062
9063 2002-03-03 Michal Ludvig <mludvig@suse.cz>
9064
9065 * MAINTAINERS (x86-64): Add myself.
9066 * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
9067 changed value_ptr -> struct value *
9068
9069 2002-03-01 David O'Brien <obrien@FreeBSD.org>
9070
9071 * configure.host (sparc64-*-freebsd): Add.
9072 * configure.tgt: Likewise.
9073 * config/sparc/fbsd.mh: New file.
9074 * config/sparc/fbsd.mt: Likewise.
9075 * config/sparc/nm-fbsd.h: Likewise.
9076 * config/sparc/tm-fbsd.h: Likewise.
9077
9078 2002-03-01 Daniel Jacobowitz <drow@mvista.com>
9079
9080 * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
9081 regformats/reg-s390x.dat.
9082
9083 2002-03-01 Andrew Cagney <ac131313@redhat.com>
9084
9085 * utils.c: Add FIXME explaining true/false problem.
9086
9087 2002-02-28 Andrew Cagney <ac131313@redhat.com>
9088
9089 * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
9090
9091 2002-02-28 Michael Chastain <mec@shout.net>
9092
9093 * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
9094
9095 2002-02-28 Daniel Jacobowitz <drow@mvista.com>
9096
9097 * gdbserver/linux-s390-low.c: New file.
9098 * regformats/reg-s390.dat: New file.
9099 * regformats/reg-s390x.dat: New file.
9100 * gdbserver/configure.srv: Add S/390.
9101 * gdbserver/Makefile.in: Add S/390.
9102 * configure.tgt: Enable gdbserver for S/390.
9103
9104 2002-02-28 Eli Zaretskii <eliz@is.elta.co.il>
9105
9106 * go32-nat.c (_initialize_go32_nat): Don't use periods in the
9107 first line of the doc string for "info dos", except at the end of
9108 the sentence, since the short help stops at the first period.
9109
9110 2002-02-28 Jason Merrill <jason@redhat.com>
9111
9112 * dwarf2read.c (dwarf_cfi_name): Add new codes.
9113
9114 2002-02-27 Fred Fish <fnf@redhat.com>
9115
9116 * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
9117 comment (dumy -> dummy).
9118
9119 2002-02-27 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9120
9121 * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
9122
9123 2002-02-27 Rodney Brown <rbrown64@csc.com.au>
9124
9125 * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
9126
9127 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
9128
9129 * gdbserver/acconfig.h: New file.
9130 * gdbserver/i387-fp.c: New file.
9131 * gdbserver/i387-fp.h: New file.
9132 * gdbserver/linux-x86-64.c: New file.
9133 * regformats/reg-x86-64.dat: New file.
9134 * configure.tgt: Add x86_64-*-linux* gdbserver support.
9135 * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
9136 * gdbserver/configure.in: Add support for regsets.
9137 * gdbserver/config.in: Regenerate.
9138 * gdbserver/configure: Regenerate.
9139 * gdbserver/Makefile.in: Likewise. Add $(linux_low_h).
9140 * gdbserver/linux-low.h: New file.
9141 * gdbserver/linux-low.c: Include "linux-low.h". Add support
9142 for regsets.
9143 * gdbserver/linux-arm-low.c: Include "linux-low.h".
9144 * gdbserver/linux-ia64-low.c: Include "linux-low.h".
9145 * gdbserver/linux-m68k-low.c: Include "linux-low.h".
9146 * gdbserver/linux-mips-low.c: Include "linux-low.h".
9147 * gdbserver/linux-ppc-low.c: Include "linux-low.h".
9148 * gdbserver/linux-sh-low.c: Include "linux-low.h".
9149 * gdbserver/linux-i386-low.c: Include "linux-low.h". Include
9150 "i387-fp.h". Add PTRACE_GETREGS and friends.
9151 * gdbserver/regcache.c (supply_register): New function.
9152 (supply_register_by_name): New function.
9153 (collect_register): New function.
9154 (collect_register_by_name): New function.
9155
9156 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
9157
9158 * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
9159 (config.status): Add configure.srv dependency.
9160 (server_h): Add config.h dependency.
9161
9162 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
9163
9164 * regformats/reg-i386-linux.dat: New file, with $orig_eax.
9165 * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
9166 * gdbserver/configure.srv: Change i386-*-linux* to use
9167 reg-i386-linux.o.
9168
9169 2002-02-26 Andrew Cagney <ac131313@redhat.com>
9170
9171 * x86-64-tdep.c: Re-indent. Update copyright date.
9172
9173 2002-02-26 Andrew Cagney <ac131313@redhat.com>
9174
9175 From Michal Ludvig <mludvig@suse.cz>:
9176 * x86-64-tdep.c (value.h): Delete.
9177 (gdb_assert.h): Include.
9178 (x86_64_register_convert_to_virtual,
9179 x86_64_register_convert_to_raw ): Add check which lets only
9180 floating-point values to be converted.
9181 (value_push): Delete.
9182 (x86_64_push_arguments): Order of arguments pushed on stack fixed.
9183 (i386_gdbarch_init): Number of register_bytes fixed.
9184
9185 2002-02-26 Andrew Cagney <ac131313@redhat.com>
9186
9187 * MAINTAINERS: Add x86-64 target.
9188
9189 2002-02-26 Andrew Cagney <ac131313@redhat.com>
9190
9191 * memattr.c (mem_command): Eliminate ``true'' and ``false''.
9192 * osfsolib.c (solib_map_sections): Ditto.
9193 * irix5-nat.c (solib_map_sections): Ditto.
9194 * corelow.c (gdb_check_format): Ditto.
9195 * symfile.c (symfile_bfd_open): Ditto.
9196 * solib.c (solib_map_sections): Ditto.
9197 Fix PR gdb/354.
9198
9199 2002-02-26 Andrew Cagney <ac131313@redhat.com>
9200
9201 * remote.c (_initialize_remote): By default, disable ``e'' and
9202 ``E'' step out-of-range packets.
9203
9204 2002-02-26 Andreas Schwab <schwab@suse.de>
9205
9206 * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
9207 m68k_linux_frame_saved_pc.
9208 (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
9209 in_sigtramp.
9210 (SIGCONTEXT_PC_OFFSET): Remove.
9211 * m68klinux-nat.c (m68k_linux_frame_saved_pc,
9212 m68k_linux_sigtramp_saved_pc): New functions.
9213 (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
9214 (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
9215 (UCONTEXT_PC_OFFSET): Define.
9216 (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
9217 non-RT and RT signal trampolines.
9218
9219 2002-02-26 Richard Earnshaw <rearnsha@arm.com>
9220
9221 * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
9222 (TARGET_NBPG, STACK_END_ADDR): Delete
9223 (VARIABLES_INSIDE_BLOCK): Delete.
9224
9225 2002-02-25 Andrew Cagney <ac131313@redhat.com>
9226
9227 * utils.c (perror_with_name): Make string parameter constant.
9228 (print_sys_errmsg): Ditto.
9229 (query): Ditto.
9230 * defs.h (perror_with_name): Update.
9231 (print_sys_errmsg): Update.
9232 (query): Update.
9233
9234 2002-02-25 Daniel Jacobowitz <drow@mvista.com>
9235
9236 From Eliot Dresselhaus <eliot@ayrnetworks.com>:
9237 * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
9238
9239 2002-02-25 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9240
9241 * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
9242 if it already matches the current architecture from the exec file.
9243 Include arch-utils.h for gdbarch_info_init prototype.
9244 * Makefile.in (rs6000-nat.o): Update dependencies.
9245
9246 2002-02-25 Eli Zaretskii <eliz@is.elta.co.il>
9247
9248 * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
9249 list of exported variables.
9250
9251 2002-02-24 Daniel Jacobowitz <drow@mvista.com>
9252
9253 * gdbserver/configure.srv: New file.
9254 * gdbserver/configure.in: Use configure.srv instead
9255 of the host/target makefile fragments. Set GDBSERVER_DEPFILES
9256 from it.
9257 * gdbserver/configure: Regenerated.
9258 * gdbserver/terminal.h: New file.
9259 * gdbserver/Makefile.in: Update for configure changes. Remove
9260 more unneeded include paths.
9261
9262 2002-02-24 Andrew Cagney <ac131313@redhat.com>
9263
9264 From wiz at danbala:
9265 * config/sparc/tm-sp64.h: Fix grammar and typos.
9266 Fix PR gdb/287.
9267
9268 2002-02-24 Andrew Cagney <ac131313@redhat.com>
9269
9270 * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
9271 with either ``GNU/Linux'' or ``Linux kernel''. Update copyright.
9272 * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
9273 * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
9274 * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
9275 * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
9276 * s390-tdep.c: Ditto.
9277 * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
9278 * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
9279 * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
9280 * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
9281 * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
9282 * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
9283 * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
9284 * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
9285 * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
9286 * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
9287 Fix PR gdb/378.
9288
9289 2002-02-23 Andrew Cagney <ac131313@redhat.com>
9290
9291 * lin-thread.c: Delete file.
9292 * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
9293 to gdb_proc_service.h.
9294 * configure: Re-generate.
9295
9296 * ocd.c (ocd_open): Do not try to open the "ocd" device.
9297 * serial.c (serial_open): Delete check for "ocd".
9298 Fix PR gdb/349.
9299
9300 * Makefile.in (linux-thread.o): Delete target.
9301 * linux-thread.c: Delete file.
9302
9303 * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c. Tweak other
9304 renamed SH files to be consistent.
9305
9306 * symtab.c (sort_search_symbols): Use xfree.
9307
9308 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
9309
9310 * arm-linux-tdep.c (arm_linux_init_abi): Register
9311 IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
9312 * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
9313 definition with undef, since we don't want the sysvr4 definition.
9314 (SKIP_TRAMPOLINE_CODE): Likewise.
9315
9316 2002-02-23 Andrew Cagney <ac131313@redhat.com>
9317
9318 From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
9319
9320 * configure.in: (AC_CHECK_FUNCS) Added test for
9321 canonicalize_file_name Regenerated.
9322 * config.in, configure: Regenerated.
9323 * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
9324 defined use canonicalize_file_name.
9325
9326 2002-02-23 Michael Chastain <mec@shout.net>
9327
9328 * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
9329
9330 2002-02-23 Andrew Cagney <ac131313@redhat.com>
9331
9332 * README: Remove references to cygnus.com.
9333 * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
9334 dot com'' form. Remove references to cygnus.com and sourceware.
9335
9336 2002-02-23 Andrew Cagney <ac131313@redhat.com>
9337
9338 From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
9339 * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
9340 1003.1-2001 no longer allows "head -1".
9341 * gdb/Makefile.in (version.c): Likewise.
9342 * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
9343 * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
9344 equivalent. POSIX 1003.1-2001 no longer allows "diff -c3".
9345
9346 2002-02-23 Andrew Cagney <ac131313@redhat.com>
9347
9348 * cli/cli-decode.c (cmd_cfunc_eq): New function.
9349 * command.h (cmd_cfunc_eq): Declare.
9350 * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
9351
9352 * cli/cli-cmds.h (is_complete_command): Change parameter to a
9353 ``struct cmd_list_element *''.
9354 * cli/cli-cmds.c (is_complete_command): Update. Use
9355 cmd_cfunc_eq.
9356 * top.c (execute_command): Pass the command to
9357 is_complete_command.
9358 * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
9359
9360 2002-02-23 Andrew Cagney <ac131313@redhat.com>
9361
9362 From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
9363 * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
9364 architecture defines.
9365 * s390-tdep.c (s390_gdbarch_init): Likewise.
9366
9367 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
9368
9369 * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
9370 (arm_linux_push_arguments): Likewise.
9371 (arm_linux_init_abi): Register them. Also register linux-specific
9372 call_dummy_words.
9373 (find_minsym_and_objfile): Use strcmp, not STREQ.
9374 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
9375 (arm_linux_call_dummy_words): Delete declaration.
9376 (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
9377 (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
9378 declarations.
9379 (LOWEST_PC): Delete.
9380
9381 2002-02-23 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9382
9383 * maint.c (print_section_info): Do not prepend `0x' to filepos
9384 output, it will be handled by local_hex_string_custom.
9385
9386 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
9387
9388 * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
9389 (store_newfpe_double, store_newfpe_extended, store_fpregister)
9390 (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
9391
9392 2002-02-22 Jim Blandy <jimb@redhat.com>
9393
9394 Indicate that the bcache functions don't change the strings
9395 they're passed.
9396 * bcache.h (bcache, hash): Add `const' keywords to declarations.
9397 * bcache.c (bcache, hash): Add `const' keywords to definitions.
9398
9399 2002-02-22 Pierre Muller <muller@ics.u-strasbg.fr>
9400
9401 * win32-nat.c (child_create_inferior): Fix create flags setting bug.
9402
9403 2002-02-21 Christopher Faylor <cgf@redhat.com>
9404
9405 * win32-nat.c (register_loaded_dll): Just use raw name when we can't
9406 find the complete path to a loaded DLL.
9407
9408 2002-02-21 Fred Fish <fnf@redhat.com>
9409
9410 * dbxread.c (process_one_symbol): When finding an N_FUN symbol
9411 that marks the end of the range of a function, enter a line number
9412 entry that has a line number of zero and a PC offset that matches
9413 the end of the function. This starts a range of PC's for which no
9414 line number information is known.
9415 * symtab.c (find_pc_sect_line): If our best fit is in a range of
9416 PC's for which no line number info is found (line number is zero)
9417 then we didn't find any valid line information.
9418 * symtab.h: Document use of zero line number entry.
9419
9420 2002-02-21 Elena Zannoni <ezannoni@redhat.com>
9421
9422 * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
9423 (have_ptrace_getvrregs): Define for run time checks.
9424 (gdb_vrregset_t): New type for Altivec register handling.
9425 (fetch_register, store_register): Fetch/store altivec register
9426 when needed.
9427 (fetch_altivec_register, store_altivec_register): New functions.
9428 (supply_vrregset, fill_vrregset): New functions.
9429 (fetch_altivec_registers, store_altivec_registers): New functions.
9430 (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
9431 registers as well.
9432
9433 2002-02-21 Jiri Smid <smid@suse.cz>
9434
9435 * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
9436
9437 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
9438
9439 * Makefile.in (armnbsd-nat.o): Update dependencies.
9440 * armnbsd-nat.c (supply_gregset): New function. Common code to
9441 supply the integer register set.
9442 (supply_fparegset): New function. Similar for FPA registers.
9443 (fetch_regs, fetch_fp_regs): Use them.
9444 (fetch_core_registers): Likewise.
9445 (fetch_elfcore_registers): New function.
9446 (arm_netbsd_elfcore_fns): New core-file type specification.
9447 (_initialize_arm_netbsd_nat): Register it.
9448
9449 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
9450
9451 * armnbsd-nat.c: Include gdbcore.h.
9452 (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
9453 (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
9454 'void' to declaration, to shut up ARI.
9455 (fetch_core_registers): Make static. Rewrite using supply_register.
9456 (arm_netbsd_core_fns): New core-file type specification.
9457 (_initialize_arm_netbsd_nat): New function.
9458
9459 2002-02-21 Christopher Faylor <cgf@redhat.com>
9460
9461 * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
9462 value.
9463
9464 2002-02-20 Christopher Faylor <cgf@redhat.com>
9465
9466 * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
9467 fails.
9468
9469 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
9470
9471 * jv-exp.y (parse_number): Change type of implicit longs
9472 to builtin_type_uint64.
9473
9474 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
9475
9476 * gdbserver/linux-low.c (mywait): Change argument to waitpid
9477 to be an integer instead of a `union wait'.
9478
9479 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
9480
9481 * mips-linux-nat.c: Call the operating system GNU/Linux.
9482 * mips-linux-tdep.c: Likewise.
9483 * mips-tdep.c: Likewise.
9484
9485 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
9486
9487 Fix PR gdb/265.
9488 * jv-exp.y (parse_number): Handle 64-bit integers.
9489
9490 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
9491
9492 * gdbserver/configure.in: Remove AM_PROC_CC_STDC. Change
9493 AC_STDC_HEADERS to AC_HEADER_STDC.
9494 * gdbserver/configure: Regenerated.
9495
9496 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
9497
9498 * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
9499 is defined.
9500 * sparc-tdep.c (get_longjmp_target): Likewise.
9501
9502 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
9503
9504 * News: Add news about ARM and Multi-arch. Mention the new target
9505 arm*-*-netbsd*.
9506
9507 2002-02-19 Jim Blandy <jimb@redhat.com>
9508
9509 * stabsread.c (error_type_complaint): Improve error message.
9510
9511 2002-02-19 Daniel Jacobowitz <drow@mvista.com>
9512
9513 * gdbserver/README: Update documentation.
9514 * gdbserver/configure.in: Update configury to match documentation.
9515 * gdbserver/Makefile.in: Likewise.
9516 * gdbserver/configure: Regenerated.
9517 * gdbserver/aclocal.m4: New file, generated by aclocal.
9518 * gdbserver/config.in: New file, generated by autoheader.
9519
9520 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
9521
9522 * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
9523 armnbsd-nat.c.
9524
9525 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
9526
9527 * arm-tdep.h (enum arm_float_model): New enum.
9528 (struct gdbarch_tdep): Add fp_model.
9529 * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep. Defer setting
9530 up floating-point conversions until we know the floating-point model
9531 in use by the inferior. Don't complain about being unable to
9532 determine the ABI of the inferior when we don't have one.
9533 (arm_extract_return_value): Support different floating-point models.
9534 (arm_store_return_value): Likewise.
9535 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
9536 ARM_FLOAT_SOFT.
9537 (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
9538
9539 2002-02-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9540
9541 * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
9542 of ``current_gdbarch''.
9543
9544 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
9545
9546 * armnbsd-nat.c : ANSIfy all function declarations.
9547 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
9548 (fetch_inferior_registers): Re-implement in terms of above.
9549 (store_register, store_regs, store_fp_register, store_fp_regs): New.
9550 (store_inferior_registers): Re-implement in terms of above.
9551
9552 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
9553
9554 * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
9555 kernel.
9556 * arm-linux-tdep.c: Likewise.
9557 * config/arm/tm-linux.h: Likewise.
9558
9559 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
9560
9561 * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
9562 * config/arm/nbsd.mt (TM_FILE): Delete.
9563 * config/arm/tm-nbsd.h: Delete.
9564
9565 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
9566
9567 * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
9568 Initialize CALL_DUMMY_LENGTH.
9569
9570 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
9571
9572 * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
9573 function.
9574 (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
9575 * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
9576 defines one thing and that is incorrect for this port.
9577 (IN_SOLIB_CALL_TRAMPOLINE): Delete.
9578
9579 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
9580
9581 * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
9582
9583 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
9584
9585 * win32-nat.c (display_selector): New function. Displays information
9586 about the information returned by GetThreadSelectorEntry API function.
9587 (display_selectors): New function. Displays the infomation of
9588 the selector given as argument, or of CS, DS ans FS selectors
9589 if no argument is given.
9590 ( _initialize_inftarg): Add "w32" as info prefix command.
9591 Add "info w32 selector" as command calling display_selectors.
9592
9593 2002-02-19 Pierre Muller <muller@ics.u-strasbg.fr>
9594
9595 * i386-tdep.c (get_longjmp_target): Fix compilation failure
9596 by setting dummy values to JB_PC and JB_ELEMENT_SIZE
9597 if not defined.
9598
9599 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
9600
9601 * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
9602
9603 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
9604
9605 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
9606 (arm_fix_call_dummy): Call it.
9607 (arm_call_dummy_breakpoint_offset): Delete.
9608 (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
9609 * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
9610
9611 2002-02-18 Andrew Cagney <ac131313@redhat.com>
9612
9613 * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
9614 Default to func_frame_chain_valid.
9615 * gdbarch.h, gdbarch.c: Re-generate.
9616 * frame.h (FRAME_CHAIN_VALID): Delete definition.
9617
9618 2002-02-18 Elena Zannoni <ezannoni@redhat.com>
9619
9620 * ppc-linux-nat.c: Update copyright.
9621 (fetch_register, store_register): Add tid parameter, don't compute
9622 tid here.
9623 (fetch_ppc_registers, store_ppc_registers): Add tid
9624 parameter. Pass it along to callees.
9625 (fetch_inferior_registers, store_inferior_registers): Compute tid
9626 here, and pass it to calleed functions.
9627 (fill_gregset, supply_fpregset): Clean up formatting.
9628
9629 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
9630
9631 * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
9632 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
9633
9634 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
9635
9636 * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
9637 * gdbarch.c gdbarch.h: Regenerate.
9638 * breakpoint.c (create_longjmp_breakpoint): Always compile this
9639 function.
9640 (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
9641 * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
9642 (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
9643
9644 * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
9645 * arm-tdep.c (arm_get_longjmp_target): New function.
9646 (arm_gdbarch_init): Initialize jb_pc to -1. If ABI handler changes
9647 this to a positive value register arm_get_longjmp_target as the
9648 longjmp handler.
9649 * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
9650 (arm_linux_init_abi): Set up longjmp description in tdep.
9651 * armnbsd-nat.c (get_longjmp_target): Delete.
9652 * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
9653 description in tdep.
9654 * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
9655 (get_longjmp_target): Delete declaration.
9656 (GET_LONGJMP_TARGET): Delete.
9657 * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
9658 (GET_LONGJMP_TARGET): Delete.
9659
9660 2002-02-17 Kevin Buettner <kevinb@redhat.com>
9661
9662 From Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
9663 * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
9664 of ``current_gdbarch''.
9665
9666 2002-02-17 Tom Tromey <tromey@redhat.com>
9667
9668 * cli/cli-cmds.c (compare_strings): New function.
9669 (complete_command): Only print each unique item once.
9670 * completer.h (complete_line): Declare.
9671 * completer.c (complete_line): New function.
9672 (line_completion_function): Use it.
9673
9674 2002-02-16 Andrew Cagney <ac131313@redhat.com>
9675
9676 * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
9677 * gdbarch.h, gdbarch.c: Re-generate.
9678
9679 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
9680
9681 * valarith.c (value_x_unop): Fix decrement; support post-decrement.
9682
9683 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
9684
9685 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
9686 * valops.c (value_arg_coerce): Don't take the address of a reference
9687 to convert an argument to a reference.
9688
9689 2002-02-15 Christopher Faylor <cgf@redhat.com>
9690
9691 * win32-nat.c (get_image_name): New function.
9692 (handle_load_dll): Use get_image_name function.
9693 (get_child_debug_event): Avoid registering debug events until possibly
9694 execed process is started.
9695 (child_create_inferior): Allow invocation via shell so that command
9696 line redirection, etc. works ok.
9697 (_initialize_inftarg): Add new command: "set shell" to control whether
9698 a shell is used to start a process.
9699
9700 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
9701
9702 * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
9703 instead of find_register_by_number.
9704 (cannot_store_register): Likewise.
9705
9706 2002-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
9707
9708 * dwarf2read.c: Replace fprintf (stderr, ...) by
9709 fprintf_unfiltered (gdb_stderr, ...).
9710
9711 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
9712
9713 * gdbserver/gdbserver.1: Document --attach.
9714
9715 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
9716
9717 * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
9718 descriptions.
9719 * arm-tdep.c (arm_default_arm_le_breakpoint)
9720 (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
9721 (arm_default_thumb_be_breakpoint): New. Initialize them from
9722 traditional breakpoint defines.
9723 (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
9724 (arm_gdbarch_init): Initialize new breakpoint variables.
9725 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
9726 (arm_linux_init_abi): Initialize linux-specific breakpoint.
9727 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
9728 (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
9729 code out to ...
9730 (arm_netbsd_init_abi_common): ... here; new function.
9731 * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
9732 (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
9733 * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
9734 * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
9735
9736 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
9737
9738 * arm-tdep.h (enum arm_abi): New enum.
9739 (struct gdbarch_tdep): New structure.
9740 (LOWEST_PC): Provide a default.
9741 (arm_gdbarch_register_os_abi): Declare new function.
9742 * arm-tdep.c (arm_abi_names): New array.
9743 (process_note_abi_tag_sections): New function.
9744 (get_elfosabi): New function.
9745 (arm_gdbarch_register_os_abi): New function.
9746 (arm_gdbarch_init): Try to determine the ABI of the inferior. If
9747 support for that ABI has been built in, then call the appropriate
9748 configuration routine. Use gdbarch_num_regs() to get the number
9749 of registers.
9750 (arm_dump_tdep): New function.
9751 (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
9752 place-holder functions.
9753 (_initialize_arm_tdep): Register them.
9754 * config/arm/tm-arm.h (LOWEST_PC): Delete.
9755
9756 * armnbsd-tdep.c: New file.
9757 * Makefile.in (armnbsd-tdep.o): Add dependencies.
9758 * config/arm/nbsd.mt (TDEPFILES): Add it.
9759 * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
9760
9761 * armnbsd-nat.c: Include regcache.h.
9762 * Makefile.in (armnbsd-nat.o): Update dependency list.
9763
9764 * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
9765
9766 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
9767
9768 * gdbserver/Makefile.in: Fix typos in target rules.
9769
9770 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
9771
9772 Fix part of PR gdb/267.
9773 * linespec.c (find_methods): Handle constructors specially for now.
9774
9775 2002-02-14 Corinna Vinschen <vinschen@redhat.com>
9776
9777 * arm-tdep.c (arm_push_arguments): Eliminate special float type
9778 handling.
9779 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
9780 standard_coerce_float_to_double().
9781
9782 2002-02-14 Christopher Faylor <cgf@redhat.com>
9783
9784 * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
9785 GDBINIT_FILENAME.
9786
9787 2002-02-14 Elena Zannoni <ezannoni@redhat.com>
9788
9789 * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
9790 find_variant_by_name, because it confuses the multiarch
9791 framework. Return NULL if there isn't an architecture with the
9792 user supplied name, instead of forcing a different one without
9793 recording the change with the multiarch machinery.
9794 (find_variant_by_name): Delete.
9795
9796 2002-02-14 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9797
9798 * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
9799 i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
9800
9801 2002-02-13 Martin M. Hunt <hunt@redhat.com>
9802
9803 * stack.c (print_frame_info_base): When calling
9804 print_frame_info_listing_hook, set current_source_symtab.
9805
9806 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
9807
9808 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
9809 and remove unused $(INCLUDE_DIR).
9810 Add regcache.c to OBS.
9811 Add generated register protocol files to clean target.
9812 Update dependencies for new objects, obsolete old target code.
9813
9814 * gdbserver/linux-low.c: Remove all platform-specific code to
9815 new files. Remove various dead code. Update to use regcache
9816 functionality.
9817 * gdbserver/remote-utils.c (fromhex): Add return statement
9818 to quiet warning.
9819 (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
9820 constant.
9821 (input_interrupt): Add integer parameter to match prototype
9822 of a signal handler.
9823 (outreg): Use register_data ().
9824 (prepare_resume_reply): Use gdbserver_expedite_regs.
9825 * gdbserver/server.c (main): Dynamically allocate own_buf because
9826 PBUFSIZ is no longer constant. Use registers_to_string () and
9827 registers_from_string ().
9828 * gdbserver/server.h: No longer include "defs.h". Add prototypes
9829 for error (), fatal (), and warning (). Update definition of
9830 PBUFSIZ to use regcache functionality. Add include guard.
9831 * gdbserver/utils.c (fatal): Add missing ``const''.
9832 (warning): New function.
9833
9834 * regformats/regdat.sh: Include "regcache.h" in generated files.
9835 Provide init_registers () function.
9836 * regformats/regdef.h: Add prototype for set_register_cache ().
9837 Add include guard.
9838
9839 * gdbserver/linux-arm-low.c: New file.
9840 * gdbserver/linux-i386-low.c: New file.
9841 * gdbserver/linux-ia64-low.c: New file.
9842 * gdbserver/linux-m68k-low.c: New file.
9843 * gdbserver/linux-mips-low.c: New file.
9844 * gdbserver/linux-ppc-low.c: New file.
9845 * gdbserver/linux-sh-low.c: New file.
9846
9847 * gdbserver/regcache.c: New file.
9848 * gdbserver/regcache.h: New file.
9849
9850 * gdbserver/low-linux.c: Removed obsolete file.
9851
9852 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
9853
9854 * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
9855 * config/i386/linux.mt: Likewise.
9856 * config/ia64/linux.mt: Likewise.
9857 * config/m68k/linux.mh: Likewise.
9858 * config/powerpc/linux.mh: Likewise.
9859 * config/mips/linux.mt: Likewise.
9860
9861 * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
9862
9863 * config/i386/i386lynx.mh: Mark gdbserver variables
9864 as (currently) obsolete for this target.
9865 * config/i386/nbsd.mt: Likewise.
9866 * config/i386/nbsdelf.mt: Likewise.
9867 * config/m32r/m32r.mt: Likewise.
9868 * config/m68k/m68klynx.mh: Likewise.
9869 * config/m68k/nbsd.mt: Likewise.
9870 * config/m68k/sun3os4.mh: Likewise.
9871 * config/mips/vr5000.mt: Likewise.
9872 * config/ns32k/nbsd.mt: Likewise.
9873 * config/pa/hppabsd.mh: Likewise.
9874 * config/pa/hppaosf.mh: Likewise.
9875 * config/powerpc/nbsd.mt: Likewise.
9876 * config/rs6000/rs6000lynx.mh: Likewise.
9877 * config/s390/s390.mt: Likewise.
9878 * config/s390/s390x.mt: Likewise.
9879 * config/sparc/sparclynx.mh: Likewise.
9880 * config/sparc/sun4os4.mh: Likewise.
9881 * config/i386/x86-64linux.mt: Likewise.
9882 * config/sparc/linux.mh: Likewise.
9883
9884 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
9885
9886 * configure.tgt: Configure gdbserver only for known working
9887 targets. Set ${build_gdbserver} instead of modifying ${configdirs}.
9888 * configure.in: Check ${build_gdbserver}. Put gdbserver/ into
9889 SUBDIRS if it is configured. Update comment for ${nativefile}.
9890 * configure: Regenerated.
9891
9892 2002-02-13 Michael Snyder <msnyder@redhat.com>
9893
9894 * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
9895
9896 * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
9897 (default_gcore_mach): Just return 0, work around a problem in bfd.
9898 (default_gcore_target): OK to return NULL if exec_bfd is null.
9899 (make_mem_sec): Use a cast, avoid a warning.
9900
9901 * procfs.c (find_memory_regions_callback): Use a cast instead of
9902 calling host_pointer_to_address (which complains if
9903 sizeof (host pointer) != sizeof (target pointer)).
9904 (procfs_make_note_section): Avoid overflow in psargs string.
9905
9906 * procfs.c (procfs_make_note_section): Make the default
9907 implementation return an error.
9908
9909 2002-02-13 Rodney Brown <rbrown64@csc.com.au>
9910
9911 * procfs.c (procfs_make_note_section): Provide a default definition
9912 (for alpha-dec-osf4.0f). Fix typos.
9913
9914 2002-02-13 Elena Zannoni <ezannoni@redhat.com>
9915
9916 * linux-proc.c: Add include of regcache.h.
9917 * Makefile.in (linux-proc.o): Add dependency on regcache.h.
9918
9919 2002-02-13 Andrew Cagney <ac131313@redhat.com>
9920
9921 From 2002-01-18 Greg McGary <greg@mcgary.org>:
9922 * memattr.c (create_mem_region): Disallow useless empty region.
9923 Regions are half-open intervals, so allow [A..B) [B..C) as
9924 non-overlapping.
9925
9926 2002-02-13 Michael Chastain <mec@shout.net>
9927
9928 * defs.h: Kill CONST_PTR.
9929 * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
9930 * c-lang.c (c_builtin_types): Likewise.
9931 * ch-lang.c (ch_builtin_types): Likewise.
9932 * f-lang.c (f_builtin_types): Likewise.
9933 * language.c (unknown_builtin_types): Likewise.
9934 * m2-lang.c (m2_builtin_types): Likewise.
9935 * p-lang.c (pascal_builtin_types): Likewise.
9936 * scm-lang.c (c_builtin_types): Likewise.
9937
9938 2002-02-13 Keith Seitz <keiths@redhat.com>
9939
9940 * arm-tdep.h (arm_get_next_pc): Add declaration.
9941
9942 2002-02-13 Richard Earnshaw <rearnsha@arm.com>
9943
9944 * arm-tdep.c (arm_use_struct_convention): Make static. Move to be
9945 with other related struct-returning functions.
9946 (arm_extract_struct_value_address): New function.
9947 (arm_gdbarch_init): Initialize the above in multi-arch vector. Also
9948 initialize float_format, double_format and long_double_format as
9949 appropriate to the endianness of the target.
9950 * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
9951 (arm_use_struct_convention): Delete declaration.
9952 (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
9953
9954 2002-02-13 Keith Seitz <keiths@redhat.com>
9955
9956 * defs.h (core_addr_to_string_nz): New function.
9957
9958 2002-02-13 Mark Kettenis <kettenis@gnu.org>
9959
9960 Apply missing bits of 2002-01-15 patch.
9961 * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
9962 (fill_fpregset): Use i387_fill_fsave.
9963
9964 2002-02-12 Keith Seitz <keiths@redhat.com>
9965
9966 * utils.c (core_addr_to_string): Use phex instead of phex_nz.
9967 (core_addr_to_string_nz): New function.
9968
9969 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
9970
9971 * arm-linux-nat.c: Really include arm-tdep.h.
9972 * config/arm/tm-linux.h (struct type, struct value): Declare.
9973
9974 2002-02-11 Michael Snyder <msnyder@redhat.com>
9975
9976 * procfs.c: Include elf-bfd.h (for elfcore_write functions).
9977 (gcore section): Ifdef for Solaris and Unixware only.
9978 (procfs_do_thread_registers): Unixware needs one lwpstatus
9979 per thread (not one prstatus or pstatus).
9980 (procfs_make_note_section): Iterate only over kernel threads (lwps),
9981 not over all gdb threads. For unixware, call elfcore_write_pstatus
9982 once before iterating over threads.
9983
9984 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
9985
9986 * arm-tdep.h: New file.
9987 * arm-tdep.c: Include arm-tdep.h.
9988 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
9989 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
9990 (arm_print_float_info, arm_register_type, convert_to_extended)
9991 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
9992 (arm_extract_return_value, arm_register_name): Make static.
9993 (arm_software_single_step): Similarly. Fix types in declaration.
9994 (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
9995 (arm_store_return_value, arm_store_struct_return): New functions.
9996 (arm_gdbarch_init): Register the above functions. Also register
9997 call_dummy_start_offset, sizeof_call_dummy_words,
9998 function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
9999 sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
10000 max_register_virtual_size, register_size. Set up
10001 prologue_cache.saved_regs here, rather than ...
10002 (_initialize_arm_tdep): ... here.
10003 * config/arm/tm-arm.h (struct type, struct value): Delete forward
10004 declarations.
10005 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
10006 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
10007 (arm_print_float_info, arm_register_type, convert_to_extended)
10008 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
10009 (arm_extract_return_value, arm_register_name): Delete declarations.
10010 (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
10011 (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
10012 (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
10013 (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
10014 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
10015 (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
10016 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
10017 (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
10018 (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
10019 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
10020 (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
10021 (arm_get_next_pc): No-longer static -- these are needed by the RDI
10022 interface.
10023 * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
10024 * remote-rdi.c remote-rdp.c: Likewise.
10025 * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
10026 (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
10027 * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
10028 definition.
10029
10030 * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
10031 (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
10032 (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
10033 from non-ARM_ prefixed definitions.
10034 * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
10035 all uses of above.
10036 * remote-rdi.c remote-rdp.c: Likewise.
10037 * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
10038
10039 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
10040
10041 * arm-tdep.c (arm_frameless_function_invocation)
10042 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
10043 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
10044 (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
10045 (arm_pop_frame, arm_get_next_pc): Make static.
10046 (arm_gdbarch_init): Register above in gdbarch structure.
10047 (arm_read_fp): Renamed from arm_target_read_fp.
10048 (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
10049 * config/arm/tm-arm.h (arm_frameless_function_invocation)
10050 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
10051 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
10052 (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
10053 (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
10054 (arm_pc_is_thumb_dummy): Delete declarations.
10055 (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
10056 (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
10057 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
10058 (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
10059
10060 2002-02-10 Daniel Jacobowitz <drow@mvista.com>
10061
10062 * symtab.c (compare_search_syms): New function.
10063 (sort_search_symbols): New function.
10064 (search_symbols): Sort symbols after searching rather than
10065 before.
10066
10067 2002-02-10 Andrew Cagney <ac131313@redhat.com>
10068
10069 * NEWS: Linux -> GNU/Linux.
10070
10071 2002-02-10 Andrew Cagney <ac131313@redhat.com>
10072
10073 * gdbarch.sh: For for level one methods, disallow a definition
10074 when partially multi-arched. Add comments explaining rationale.
10075 * gdbarch.h: Re-generate.
10076
10077 2002-02-10 Andrew Cagney <ac131313@redhat.com>
10078
10079 * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
10080 multi-arch partial.
10081
10082 2002-02-10 Andrew Cagney <ac131313@redhat.com>
10083
10084 * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL. Exit on bad
10085 field. Use diff -u.
10086 * gdbarch.c: Re-generate.
10087
10088 2002-02-10 Andrew Cagney <ac131313@redhat.com>
10089
10090 * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
10091 * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
10092 partial.
10093
10094 2002-02-10 Andrew Cagney <ac131313@redhat.com>
10095
10096 * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
10097 multi-arch partial.
10098 (PUSH_ARGUMENTS): Switch to using predefault.
10099 * gdbarch.c: Regenerate.
10100
10101 2002-02-10 Andrew Cagney <ac131313@redhat.com>
10102
10103 * valops.c (PUSH_ARGUMENTS): Delete definition.
10104 * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
10105 partial. Default to default_push_arguments.
10106 * gdbarch.h, gdbarch.c: Regenerate.
10107
10108 2002-02-09 Andrew Cagney <ac131313@redhat.com>
10109
10110 * defs.h (throw_exception): Rename return_to_top_level. Update
10111 comments.
10112 * utils.c (error_stream, internal_verror, quit): Ditto.
10113 * top.c (throw_exception, catcher): Ditto.
10114 * sparclet-rom.c (sparclet_load): Ditto.
10115 * remote.c (interrupt_query, minitelnet): Ditto.
10116 * remote-sds.c (interrupt_query): Ditto.
10117 * remote-mips.c (mips_error, mips_kill): Ditto.
10118 * ocd.c (interrupt_query): Ditto.
10119 * monitor.c (monitor_interrupt_query): Ditto.
10120 * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
10121 * target.h: Update comment.
10122
10123 * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
10124
10125 2002-02-09 Andrew Cagney <ac131313@redhat.com>
10126
10127 * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
10128 default_double_format.
10129 * gdbarch.h, gdbarch.c: Re-generate.
10130 * findvar.c (floatformat_unknown): Delete variable definition.
10131 * doublest.h (floatformat_unknown): Delete variable declaration.
10132
10133 2002-02-09 Jim Blandy <jimb@redhat.com>
10134
10135 * stabsread.c (read_type): Add code to parse Sun's syntax for
10136 prototyped function types.
10137
10138 2002-02-09 Andrew Cagney <ac131313@redhat.com>
10139
10140 * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
10141 (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
10142
10143 2002-02-09 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10144
10145 * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
10146 _initialize_solib. Fixes name clash with solib.c:_initialize_solib,
10147 now _initialize_xcoffsolib gets called again and overrides the
10148 commands from solib.c in a native configuration.
10149
10150 2002-02-09 Mark Kettenis <kettenis@gnu.org>
10151
10152 * doublest.c (store_typed_floating): Don't try to return a value.
10153 Fixes PR gdb/290.
10154
10155 2002-02-08 Jim Blandy <jimb@redhat.com>
10156
10157 * c-typeprint.c (c_type_print_varspec_suffix): If a function type
10158 is prototyped and has no arguments, print its argument list as
10159 `(void)'.
10160
10161 2002-02-08 Chris Demetriou <cgd@broadcom.com>
10162
10163 * MAINTAINERS (write-after-approval): Add myself.
10164 (paper-trail): I've escaped!
10165
10166 2002-02-08 Christopher Faylor <cgf@redhat.com>
10167
10168 * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
10169 changes.
10170 (_initialize_check_for_gdb_ini): Ditto.
10171
10172 2002-02-08 Martin M. Hunt <hunt@redhat.com>
10173
10174 * win32-nat.c (cygwin_pid_to_str): Fix typo.
10175 xaprintf -> xasprintf.
10176
10177 2002-02-08 Pierre Muller <muller@ics.u-strasbg.fr>
10178
10179 * win32-nat.c: Remove use of printf and sprintf functions.
10180
10181 2002-02-08 Richard Earnshaw <rearnsha@arm.com>
10182
10183 * arm-tdep.c (arm_frame_chain_valid): Make static.
10184 (arm_push_arguments): Likewise.
10185 (arm_gdbarch_init): New function.
10186 (_initialize_arm_tdep): Call it.
10187 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
10188 (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
10189 (FRAME_CHAIN_VALID): Delete.
10190 (arm_frame_chain_valid): Delete declaration.
10191 (PUSH_ARGUMENTS): Delete.
10192 (arm_push_arguments): Delete declaration.
10193 (CALL_DUMMY_P): Delete.
10194
10195 2002-02-08 Andrew Cagney <ac131313@redhat.com>
10196 Corinna Vinschen <vinschen@redhat.com>
10197
10198 * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
10199 on builtin float types.
10200
10201 2002-02-08 Daniel Jacobowitz <drow@mvista.com>
10202
10203 * utils.c: Include <curses.h> before "bfd.h".
10204 * tui/tui-hooks.c: Likewise.
10205 * tui/tui.c: Likewise.
10206 * tui/tuiCommand.c: Likewise.
10207 * tui/tuiData.c: Likewise.
10208 * tui/tuiDataWin.c: Likewise.
10209 * tui/tuiDisassem.c: Likewise.
10210 * tui/tuiGeneralWin.c: Likewise.
10211 * tui/tuiIO.c: Likewise.
10212 * tui/tuiLayout.c: Likewise.
10213 * tui/tuiRegs.c: Likewise.
10214 * tui/tuiSource.c: Likewise.
10215 * tui/tuiSourceWin.c: Likewise.
10216 * tui/tuiStack.c: Likewise.
10217 * tui/tuiWin.c: Likewise.
10218
10219 2002-02-07 Elena Zannoni <ezannoni@redhat.com>
10220
10221 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
10222 to include space for pseudoregs as well. Update loops accordingly.
10223 (sh_fp_frame_init_saved_regs): Ditto.
10224 (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
10225
10226 2002-02-07 Andrew Cagney <ac131313@redhat.com>
10227
10228 * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
10229 Add Richard Earnshaw to Arm maintainers.
10230
10231 2002-02-07 Andrew Cagney <ac131313@redhat.com>
10232
10233 * defs.h (warning_begin): Delete declaration.
10234
10235 * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
10236 Delete macro.
10237
10238 2002-02-07 Michael Snyder <msnyder@redhat.com>
10239
10240 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
10241 Logic bug, remove misplaced else.
10242
10243 2002-02-07 Klee Dienes <klee@apple.com>
10244
10245 * fork-inferior.c (fork_inferior): Add '!' to the list of
10246 characters that need to be quoted when building a string for the
10247 shell. Quote '!' specifically with a backslash, since CSH chokes
10248 when trying to evaluate "str!str".
10249
10250 2002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
10251
10252 * rdi-share/host.h: Only provide a typedef for bool if it is not
10253 defined.
10254
10255 2002-02-04 Michael Snyder <msnyder@redhat.com>
10256
10257 * breakpoint.h (enum bptype): Add new overlay event bp type.
10258 (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
10259
10260 * breakpoint.c (create_internal_breakpoint): New function.
10261 (internal_breakpoint_number): Moved into create_internal_breakpoint.
10262 (create_longjmp_breakpoint): Use create_internal_breakpoint.
10263 (create_thread_event_breakpoint): Ditto.
10264 (create_solib_event_breakpoint): Ditto.
10265 (create_overlay_event_breakpoint): New function.
10266 (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
10267 (update_breakpoints_after_exec): Delete and re-initialize
10268 overlay event breakpoints after an exec. Add FIXME comment
10269 about longjmp breakpoint.
10270 (print_it_typical): Ignore overlay event breakpoints.
10271 (print_one_breakpoint): Ditto.
10272 (mention): Ditto.
10273 (bpstat_what): Do not stop for overlay event breakpoints.
10274 (delete_breakpoint): Don't delete overlay event breakpoints.
10275 (breakpoint_re_set_one): Delete the overlay event breakpoint.
10276 (breakpoint_re_set): Re-create overlay event breakpoint.
10277
10278 * symfile.c (overlay_auto_command): Enable overlay breakpoints.
10279 (overlay_manual_command): Disable overlay breakpoints.
10280 (overlay_off_command): Disable overlay breakpoints.
10281
10282 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
10283
10284 * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
10285 (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
10286 to here from config/tm-arm.h.
10287 (coff_sym_is_thumb): Make static.
10288 (arm_elf_make_msymbol_special): New function.
10289 (arm_coff_make_msymbol_special): New function.
10290 * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
10291 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
10292 (coff_sym_is_thumb): Delete declaration.
10293 (arm_elf_make_msymbol_special): Declare.
10294 (arm_coff_make_msymbol_special): Declare.
10295 (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
10296 (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
10297
10298 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
10299
10300 * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
10301
10302 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
10303
10304 * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
10305 * gdbarch.c gdbarch.h: Regenerate.
10306 * arch-utils.c (default_print_float_info): New function.
10307 * arch-utils.h (default_print_float_info): Prototype it.
10308 * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
10309 * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
10310 (PRINT_FLOAT_INFO): Document it.
10311
10312 * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
10313 * config/arm/tm-arm.h (FLOAT_INFO): Delete.
10314 (PRINT_FLOAT_INFO): Define.
10315
10316 2002-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
10317
10318 * win32-nat.c (_initialize_check_for_gdb_ini):
10319 Add typecast to sprintf argument to suppress a warning.
10320
10321 2002-02-05 Pierre Muller <muller@ics.u-strasbg.fr>
10322
10323 * win32-nat.c (last_sig): Changed type of variable to target_signal,
10324 to allow easier handling of pass state.
10325 (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
10326 that gives exception name and address.
10327 (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
10328 and set last_sig value to ourstatus->value.sig. Some missing
10329 exceptions added.
10330 (child_continue): Correctly report continue_status.
10331 (get_child_debug_event,do_initial_child_stuff): Set last_sig to
10332 TARGET_SIGNAL_0 (new default value).
10333 (child_resume): consider sig argument passed to decide if
10334 the exception should be passed to debuggee or not.
10335
10336 2002-02-05 Michael Snyder <msnyder@redhat.com>
10337
10338 * regcache.c (fetch_register): Call target_fetch_register
10339 only if we don't call FETCH_PSEUDO_REGISTER.
10340 (store_register): Call target_store_register only if we
10341 don't call STORE_PSEUDO_REGISTER.
10342
10343 2002-02-05 Elena Zannoni <ezannoni@redhat.com>
10344
10345 * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
10346 ELF_MAKE_MSYMBOL_SPECIAL.
10347 * gdbarch.c, gdbarch.h: Regenerate.
10348 * arch-utils.c (default_make_msymbol_special): New function.
10349 * arch-utils.h (default_make_msymbol_special): Export.
10350 * elfread.c (elf_symtab_read): Compile use of
10351 ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
10352 multiarched.
10353 * coffread.c (coff_symtab_read): Ditto, for
10354 COFF_MAKE_MSYMBOL_SPECIAL.
10355
10356 2002-02-05 Jim Blandy <jimb@redhat.com>
10357
10358 * solib-svr4.c (svr4_truncate_ptr): New function.
10359 (svr4_relocate_section_addresses): Do the address arithmetic with
10360 the appropriate truncation for target addresses, even when
10361 CORE_ADDR is larger than a target address.
10362
10363 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
10364
10365 * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
10366 to (int *).
10367
10368 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
10369
10370 * gdbserver/linux-low.c (kill_inferior): Remove commented out
10371 code.
10372
10373 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
10374
10375 * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
10376
10377 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
10378
10379 * gdbserver/linux-low.c: Remove unused include files.
10380
10381 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
10382
10383 * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
10384 (read_inferior_memory): Use it.
10385 (write_inferior_memory): Likewise.
10386
10387 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
10388
10389 * gdbserver/linux-low.c (create_inferior): Call strerror instead of
10390 grubbing through sys_errlist.
10391
10392 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
10393
10394 * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
10395
10396 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
10397 * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
10398
10399 2002-02-04 Andrew Cagney <ac131313@redhat.com>
10400
10401 * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
10402 (do_sfunc, set_cmd_sfunc): New functions.
10403
10404 * command.h (struct cmd_list_element): Add field func.
10405 * cli/cli-decode.h (struct cmd_list_element): Ditto.
10406 * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
10407 * cli/cli-decode.h: Ditto.
10408
10409 * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
10410 (help_all, help_cmd_list): Ditto.
10411 (find_cmd, complete_on_cmdlist): Ditto.
10412 * top.c (execute_command): Ditto.
10413
10414 * cli/cli-setshow.c (do_setshow_command): Call func instead of
10415 function.sfunc.
10416
10417 * infcmd.c (notice_args_read): Fix function signature.
10418
10419 * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
10420 * cli/cli-decode.c (add_set_cmd): Ditto.
10421 * utils.c (initialize_utils): Ditto.
10422 * maint.c (_initialize_maint_cmds): Ditto.
10423 * infrun.c (_initialize_infrun): Ditto.
10424 * demangle.c (_initialize_demangler): Ditto.
10425 * remote.c (add_packet_config_cmd): Ditto.
10426 * mips-tdep.c (_initialize_mips_tdep): Ditto.
10427 * cris-tdep.c (_initialize_cris_tdep): Ditto.
10428 * proc-api.c (_initialize_proc_api): Ditto.
10429 * kod.c (_initialize_kod): Ditto.
10430 * valprint.c (_initialize_valprint): Ditto.
10431 * top.c (init_main): Ditto.
10432 * infcmd.c (_initialize_infcmd): Ditto.
10433 * corefile.c (_initialize_core): Ditto.
10434 * arm-tdep.c (_initialize_arm_tdep): Ditto.
10435 * arch-utils.c (initialize_current_architecture): Ditto.
10436 (_initialize_gdbarch_utils): Ditto.
10437 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
10438
10439 * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
10440 * wince.c (_initialize_inftarg): Ditto.
10441 * symfile.c (_initialize_symfile): Ditto.
10442 * mips-tdep.c (_initialize_mips_tdep): Ditto.
10443 * language.c (_initialize_language): Ditto.
10444 * arc-tdep.c (_initialize_arc_tdep): Ditto.
10445
10446 2002-02-04 Michael Snyder <msnyder@redhat.com>
10447
10448 * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
10449
10450 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
10451
10452 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
10453 Add rules for building the register data files.
10454
10455 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
10456
10457 * regformats/regdat.sh: Add braces to the definition of
10458 expedite_regs_${arch}.
10459
10460 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
10461
10462 * regformats/regdef.h (struct reg): Add comment describing the
10463 requirements for offset and size fields.
10464
10465 2002-02-04 Andreas Schwab <schwab@suse.de>
10466
10467 * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
10468 * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
10469
10470 2002-02-04 Richard Earnshaw <rearnsha@arm.com>
10471
10472 * gdbarch.sh (copyright): Update years in generated header.
10473 (SMASH_TEXT_ADDRESS): Add rule.
10474 * gdbarch.h, gdbarch.c: Re-generate.
10475 * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
10476 * dbxread.c: Likewise.
10477 * dwarfread.c: Likewise.
10478 * elfread.c: Likewise.
10479 * somread.c: Likewise.
10480
10481 * arm-tdep.c (arm_smash_text_address): New function.
10482 * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
10483
10484 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
10485
10486 Add support for hardware watchpoints on win32 native.
10487 * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
10488 CONTEXT_DEBUG_REGISTERS.
10489 (dr variable): New variable. Static array containing a local copy
10490 of debug registers.
10491 (debug_registers_changed): New variable. Reflects when debug registers
10492 are changed and need to be written to inferior.
10493 (debug_registers_used): New variable. Reflects when any debug register
10494 was set, used when new threads are created.
10495 (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
10496 i386-nat code.
10497 (thread_rec): Set dr array if id is the thread of current_event .
10498 (child_continue, child_resume): Change the debug registers for all
10499 threads if debug_registers_changed.
10500 (child_add_thread): Change the debug registers if debug_registers_used.
10501 * config/i386/cygwin.mh: Add use of i386-nat.o file.
10502 Link nm.h to new nm-cygwin.h file.
10503 + config/i386/nm-cygwin.h: New file. Contains the macros used for use
10504 of hardware registers.
10505
10506 2002-02-03 Andrew Cagney <ac131313@redhat.com>
10507
10508 * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
10509 Restore behavour broken by 2002-01-20 Andrew Cagney
10510 <ac131313@redhat.com> IEEE_FLOAT removal.
10511
10512 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
10513
10514 * c-valprint.c (c_val_print): Pass a proper valaddr to
10515 cp_print_class_method.
10516 * valops.c (search_struct_method): If there is only one method
10517 and args is NULL, return that method.
10518
10519 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
10520
10521 * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
10522 accessing tag_name directly.
10523
10524 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
10525
10526 * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
10527 of accessing tag_name directly.
10528
10529 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
10530
10531 PR gdb/280
10532 * gdbtypes.c (replace_type): New function.
10533 * gdbtypes.h (replace_type): Add prototype.
10534 * stabsread.c (read_type): Use replace_type.
10535
10536 2002-02-03 Richard Earnshaw <rearnsha@arm.com>
10537
10538 * Makefile.in (memattr.o): Add missing dependencies rule.
10539
10540 2002-02-03 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10541
10542 * breakpoint.c (break_at_finish_command): Really export.
10543 (break_at_finish_at_depth_command): Ditto.
10544 (tbreak_at_finish_command): Ditto.
10545 * hppa-tdep.c: Include completer.h.
10546 * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
10547 (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
10548
10549 2002-02-01 Andrew Cagney <ac131313@redhat.com>
10550
10551 * utils.c (do_write): New function.
10552 (error_stream): Rewrite combining the code from error_begin and
10553 verror.
10554 (verror): Rewrite using error_stream.
10555 (error_begin): Delete function.
10556
10557 2002-02-01 Andrew Cagney <ac131313@redhat.com>
10558
10559 * utils.c (error_begin): Make static.
10560 * defs.h (error_begin): Delete declaration.
10561
10562 * linespec.c (cplusplus_error): Replace cplusplus_hint.
10563 (decode_line_1): Use cplusplus_error instead of error_begin,
10564 cplusplus_hint and return_to_top_level.
10565 * coffread.c (coff_symfile_read): Use error instead of error_begin
10566 and return_to_top_level.
10567 * infrun.c (default_skip_permanent_breakpoint): Ditto.
10568
10569 2002-02-01 Andrew Cagney <ac131313@redhat.com>
10570
10571 * language.h (type_error, range_error): Make string parameter
10572 constant.
10573 * language.c (warning_pre_print): Delete extern declaration.
10574 * dwarfread.c (warning_pre_print): Ditto.
10575 * language.c (type_error, range_error): Rewrite to use verror and
10576 vwarning instead of warning_begin.
10577
10578 2002-02-01 Michael Snyder <msnyder@redhat.com>
10579
10580 * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
10581 (set_ignore_count): Move misplaced comment back where it belongs.
10582
10583 2002-02-01 Andrew Cagney <ac131313@redhat.com>
10584
10585 * command.h (NO_FUNCTION): Delete macro.
10586 * cli/cli-decode.h (NO_FUNCTION): Ditto.
10587 * top.c (execute_command): Replace NO_FUNCTION with NULL.
10588 * tracepoint.c (_initialize_tracepoint): Ditto.
10589 * cli/cli-decode.c (add_set_cmd): Ditto.
10590 * cli/cli-cmds.c (init_cli_cmds): Ditto.
10591
10592 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
10593
10594 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
10595 Update ``this'' pointer when calling virtual functions.
10596
10597 2002-02-01 Michael Snyder <msnyder@redhat.com>
10598
10599 * breakpoint.c (create_temp_exception_breakpoint): Delete.
10600 * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
10601
10602 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
10603
10604 * regformats/reg-arm.dat: New file.
10605 * regformats/reg-i386.dat: New file.
10606 * regformats/reg-ia64.dat: New file.
10607 * regformats/reg-m68k.dat: New file.
10608 * regformats/reg-mips.dat: New file.
10609 * regformats/reg-ppc.dat: New file.
10610 * regformats/reg-sh.dat: New file.
10611 * regformats/regdef.h: New file.
10612 * regformats/regdat.sh: New file.
10613
10614 2002-02-01 Richard Earnshaw <reanrsha@arm.com>
10615
10616 * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
10617 (arm_frame_args_address, arm_frame_locals_address): New functions.
10618 (arm_frame_num_args): New function.
10619 * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
10620 (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
10621 (FRMA_NUM_ARGS): Call arm_frame_num_args.
10622
10623 2002-01-31 Michael Snyder <msnyder@redhat.com>
10624
10625 * breakpoint.c (break_at_finish_command): Export.
10626 (break_at_finish_at_depth_command): Export.
10627 (tbreak_at_finish_command): Export.
10628 (_initialize_breakpoint): Delete "xbreak" and "txbreak" commands.
10629 * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
10630 "txbreak" commands, which are HPPA specific.
10631
10632 * printcmd.c (disassemble_command): Remove an ancient
10633 artifact of an old merge.
10634
10635 * symfile.h (enum overlay_debugging_state):
10636 Define enum constant values for overlay mode.
10637 * symfile.c (overlay_debugging): Use enums instead of literals.
10638 (overlay_is_mapped, overlay_auto_command,
10639 overlay_manual_command): Ditto.
10640
10641 * breakpoint.c (insert_breakpoints, remove_breakpoint,
10642 breakpoint_here_p, breakpoint_inserted_here_p,
10643 breakpoint_thread_match, bpstat_stop_status,
10644 describe_other_breakpoints, check_duplicates, clear_command):
10645 Coding standard fixes.
10646
10647 * target.c (target_xfer_memory): Add spaces, coding standard.
10648 (do_xfer_memory): Add missing line to trust-readonly
10649 code: check bfd SEC_READONLY flag for section.
10650
10651 2002-01-31 Andrew Cagney <ac131313@redhat.com>
10652
10653 * PROBLEMS: Fix typo, 5.1->5.1.1.
10654
10655 2002-01-30 Daniel Jacobowitz <drow@mvista.com>
10656
10657 * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
10658 data symbols, since we search based on textlow and texthigh.
10659 (find_pc_sect_symtab): Likewise.
10660
10661 2002-01-30 Andrew Cagney <ac131313@redhat.com>
10662
10663 * defs.h (vwarning): Declare.
10664 * utils.c (vwarning): New function.
10665 (warning): Call vwarning.
10666 (warning_begin): Delete function.
10667
10668 * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
10669 the warning message.
10670 * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
10671 warning_begin.
10672
10673 2002-01-30 Michael Snyder <msnyder@redhat.com>
10674
10675 * NEWS: Mention "set trust-readonly-sections" command.
10676 Mention generate-core-file command.
10677
10678 2002-01-15 Michael Snyder <msnyder@redhat.com>
10679
10680 * target.c: New command, "set trust-readonly-sections on".
10681 (do_xfer_memory): Honor the suggestion to trust readonly sections
10682 by reading them from the object file instead of from the target.
10683 (initialize_targets): Register command "set trust-readonly-sections".
10684
10685 2002-01-29 Andrew Cagney <ac131313@redhat.com>
10686
10687 * parse.c (target_map_name_to_register): Simplify, search regs and
10688 pseudo-regs using a single loop.
10689
10690 2002-01-30 Andrew Cagney <ac131313@redhat.com>
10691
10692 * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
10693
10694 2002-01-15 Rodney Brown <rbrown64@csc.com.au>
10695
10696 * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
10697 * config/i386/i386v42mp.mh: Add i387-nat.o .
10698 * i386v4-nat.c: Include i387-nat.h.
10699 (supply_fpregset): Use i387_supply_fsave.
10700 (fill_fpregset): Use i387_fill_fsave.
10701
10702 2002-01-30 Richard Earnshaw <rearnsha@arm.com>
10703
10704 * arm-tdep.c (arm_call_dummy_words): Define.
10705 * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
10706 * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
10707 (CALL_DUMMY_WORDS): Define.
10708 (arm_call_dummy_words): Declare.
10709 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
10710 (arm_linux_call_dummy_words): Declare.
10711
10712 2002-01-30 Andreas Schwab <schwab@suse.de>
10713
10714 * m68klinux-nat.c: Fix last change to use regcache_collect
10715 instead of referencing registers[] directly.
10716
10717 2002-01-29 Andrew Cagney <ac131313@redhat.com>
10718
10719 * parse.c (target_map_name_to_register): Delete code wrapped in
10720 #ifdef REGISTER_NAME_ALIAS_HOOK.
10721
10722 2002-01-28 Michael Snyder <msnyder@redhat.com>
10723
10724 * regcache.c (legacy_read_register_gen): Need to be able to
10725 read pseudo-register as well as real register.
10726 (legacy_write_register_gen): Ditto.
10727
10728 2002-01-28 Andrew Cagney <ac131313@redhat.com>
10729
10730 * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
10731 * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
10732 * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
10733 * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
10734 * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
10735 * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
10736 * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
10737 * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
10738 * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
10739 * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
10740 * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
10741 * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
10742 * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
10743 * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
10744 * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
10745 * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
10746 * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
10747 * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
10748 * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
10749 * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
10750
10751 2002-01-28 Andrew Cagney <ac131313@redhat.com>
10752
10753 * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
10754 (target_byte_order): Initialize to BFD_ENDIAN_BIG.
10755 (initialize_current_architecture): Update target_byte_order using
10756 information from BFD.
10757 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
10758 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
10759
10760 2002-01-28 Andrew Cagney <ac131313@redhat.com>
10761
10762 * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
10763 * vax-tdep.c (INVALID_FLOAT): To here. Document why it is broken.
10764
10765 * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
10766 #ifdef INVALID_FLOAT.
10767 * infcmd.c (do_registers_info): Ditto.
10768 * values.c (unpack_double): Ditto. Add comment.
10769
10770 * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
10771 already commented out.
10772
10773 2002-01-26 Andreas Schwab <schwab@suse.de>
10774
10775 * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
10776 * m68klinux-nat.c: Update ptrace interface for fetching/storing
10777 registers and add support for PTRACE_GETREGS.
10778
10779 2002-01-24 Andrew Cagney <ac131313@redhat.com>
10780
10781 GDB 5.1.1 released from 5.1 branch.
10782 * NEWS: Add 5.1.1 news.
10783 * README: Sync with 5.1 branch.
10784
10785 2002-01-23 Fred Fish <fnf@redhat.com>
10786
10787 * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
10788 stabstring on initial malloc. Reallocing will copy it for us,
10789 if necessary.
10790
10791 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
10792
10793 * Makefile.in (hpread_h): Delete.
10794 (HFILES_NO_SRCDIR): Remove hpread.h.
10795 (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
10796 (hpread.o): Update dependencies.
10797 (hp-psymtab-read.o, hp-symtab-read.o): Remove.
10798
10799 * hp-psymtab-read.c: Remove file.
10800 * hp-symtab-read.c: Remove file.
10801 * hpread.h: Remove file.
10802
10803 * hpread.c: Merge all contents of hp-psymtab-read.c,
10804 hp-symtab-read.c and hpread.h into this file, as it was prior to
10805 January 1999.
10806
10807 * config/pa/hpux11w.mh, config/pa/hpux11.mh,
10808 config/pa/hpux1020.mh, config/pa/hppaosf.mh,
10809 config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
10810 Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
10811
10812 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
10813
10814 * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
10815 fill_gregset): Call gdbarch_tdep() just once, assign result to
10816 variable and use that, instead of calling the function several
10817 times.
10818
10819 2002-01-24 Alexandre Oliva <aoliva@redhat.com>
10820
10821 * configure.host: Accept sparcv9 as alias for sparc64.
10822 * configure.tgt: Likewise.
10823
10824 2002-01-22 Kevin Buettner <kevinb@redhat.com>
10825
10826 * solib-aix5.c (build_so_list_from_mapfile)
10827 (aix5_relocate_main_executable): Fix xcalloc() calls so order of
10828 arguments is not reversed.
10829 * solib-sunos.c (sunos_relocate_main_executable): Likewise.
10830 * solib-svr4.c (svr4_relocate_main_executable): Likewise.
10831
10832 2002-01-22 Elena Zannoni <ezannoni@redhat.com>
10833
10834 * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
10835 modified version of obsolete sh_fetch_pseudo_register.
10836 (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
10837 (sh4_register_read): New function.
10838 (sh_pseudo_register_write): New function. Renamed and modified
10839 version of obsolete sh_store_pseudo_register.
10840 (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
10841 (sh4_register_write): New function.
10842 (sh_gdbarch_init): Remove setting of gdbarch function
10843 fetch_pseudo_register and store_pseudo_register. Remove setting of
10844 register_convert_to_raw, register_convert_to_virtual,
10845 register_convertible.
10846 (sh_sh4_register_convertible): Delete. No longer needed. All is
10847 taken care by architecture specific functions
10848 register_read/register_write.
10849 (sh_sh4_register_convert_to_virtual): Make static.
10850 (sh_sh4_register_convert_to_raw): Ditto.
10851
10852 2002-01-22 Andrew Cagney <ac131313@redhat.com>
10853
10854 * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
10855 (floatformat_is_nan, floatformat_mantissa): Ditto.
10856
10857 * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
10858 for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
10859 builtin_type_ieee_double_little,
10860 builtin_type_ieee_double_littlebyte_bigword,
10861 builtin_type_m68881_ext, builtin_type_i960_ext,
10862 builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
10863 builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
10864 builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
10865 builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
10866
10867 2002-01-22 Corinna Vinschen <vinschen@redhat.com>
10868
10869 * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
10870 parameter. Set frameless flag if it exists and depended of
10871 whether the scanned function is frameless or not.
10872 (xstormy16_skip_prologue): If function is frameless, return
10873 result of xstormy16_scan_prologue().
10874 (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
10875 call.
10876
10877 2002-01-21 Elena Zannoni <ezannoni@redhat.com>
10878
10879 * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
10880 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
10881 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
10882 sh_sh4_register_byte, sh_sh4_register_raw_size,
10883 sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
10884 sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
10885 sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
10886 sh_store_pseudo_register, sh_do_pseudo_register): Call
10887 gdbarch_tdep() just once, assign result to variable and use that,
10888 instead of calling the function several times.
10889
10890 2002-01-20 Mark Kettenis <kettenis@gnu.org>
10891
10892 * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
10893 macros instead of LAST_FPU_CTRL_REGNUM.
10894 (store_register): Likewise.
10895
10896 2002-01-21 Jim Blandy <jimb@redhat.com>
10897
10898 * infcmd.c (run_command): Check that the `exec' target layer's BFD
10899 is up-to-date before running the program, not just when a program
10900 exits.
10901
10902 2002-01-21 Fred Fish <fnf@redhat.com>
10903
10904 * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
10905 when we have found all instructions we are looking for.
10906
10907 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
10908
10909 * arm-tdep.c (arm_register_name): New function.
10910 (arm_registers_names): Make static.
10911 * config/arm/tm-arm.h (arm_register_names): Delete declaration.
10912 (arm_register_name): Declare.
10913 (REGISTER_NAME): Use it.
10914
10915 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
10916 Kevin Buettner <kevinb@redhat.com>
10917
10918 Convert arm targets to new FRAME interface.
10919 * arm-tdep.c (struct frame_extra_info): Remove fsr.
10920 (arm_frame_find_save_regs): Delete.
10921 (arm_frame_init_saved_regs): New.
10922 (arm_init_extra_frame_info): Alloacte saved_regs as required.
10923 Allocate extra_info as required. Convert all uses of fsr.regs
10924 to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
10925 to use extra_info.
10926 (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
10927 (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
10928 (check_prologue_cache, save_prologue_cache): Likewise.
10929 (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
10930 * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
10931 (FRAME_FIND_SAVED_REGS): Delete.
10932 (arm_frame_find_saved_regs): Delete prototype.
10933 (arm_frame_init_saved_regs): New prototype.
10934 (FRAME_INIT_SAVED_REGS): Define.
10935
10936 2002-01-20 Andrew Cagney <ac131313@redhat.com>
10937
10938 * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
10939
10940 2002-01-20 Andrew Cagney <ac131313@redhat.com>
10941
10942 From Jeff Law <law@redhat.com>:
10943 * infttrace.c: Include <sys/pstat.h>.
10944 (child_pid_to_exec_file): Revamp. Use pstat call to get the
10945 exec file if the ttrace equivalent fails.
10946
10947 2002-01-20 Andrew Cagney <ac131313@redhat.com>
10948
10949 * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
10950 (closeLogFile): Ditto.
10951
10952 2002-01-20 Michael Chastain <mec@shout.net>
10953
10954 * top.c (print_gdb_version): Bump copyright year to 2002.
10955
10956 2002-01-20 Andrew Cagney <ac131313@redhat.com>
10957
10958 * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
10959 Zannoni and Eli Zaretskii.
10960
10961 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
10962
10963 * buildsym.c: Update copyright years.
10964 * c-typeprint.c: Likewise.
10965 * dwarf2read.c: Likewise.
10966 * f-typeprint.c: Likewise.
10967 * gdbtypes.c: Likewise.
10968 * gdbtypes.h: Likewise.
10969 * hp-symtab-read.c: Likewise.
10970 * hpread.c: Likewise.
10971 * mdebugread.c: Likewise.
10972 * p-typeprint.c: Likewise.
10973
10974 2002-01-20 Andrew Cagney <ac131313@redhat.com>
10975
10976 * remote-sim.c (gdbsim_open): Simplify code testing the macro
10977 TARGET_BYTE_ORDER_SELECTABLE_P. Assume the target is always
10978 byte-order selectable.
10979 * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
10980 * arch-utils.c: Ditto.
10981 (set_endian): Ditto.
10982 (set_endian_from_file): Ditto.
10983 * gdbserver/low-sim.c (create_inferior): Ditto.
10984 * gdbarch.sh: Ditto.
10985 * gdbarch.h: Re-generate.
10986 * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
10987 * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
10988 * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
10989 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
10990 * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
10991 * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
10992 * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
10993 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
10994 macro definition.
10995 * config/mips/tm-wince.h: Remove #undef of macro
10996 TARGET_BYTE_ORDER_SELECTABLE.
10997 * config/sh/tm-wince.h: Ditto.
10998
10999 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
11000
11001 * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
11002 member function fields. Add accessor macro
11003 TYPE_FN_FIELD_ARTIFICIAL.
11004 * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
11005 * c-typeprint.c (c_type_print_base): Skip artificial member
11006 functions.
11007
11008 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
11009
11010 * f-typeprint.c: Delete unused function f_type_print_args.
11011 * p-typeprint.c: Delete unused function pascal_type_print_args.
11012
11013 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
11014
11015 * gdbtypes.h (struct type): Fix whitespace. Remove obsolete
11016 comment. Add ``artificial'' to ``union field_location''.
11017
11018 * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
11019
11020 * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
11021 * mdebugread.c (parse_symbol): Likewise.
11022 * stabsread.c (define_symbol): Likewise.
11023 * hp-symtab-read.c (hpread_function_type): Likewise, instead of
11024 initializing TYPE_FIELD_BITPOS to n (obsolete).
11025 (hpread_doc_function_type): Likewise.
11026 * hpread.c (hpread_function_type): Likewise.
11027
11028 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11029
11030 * configure.in (host_makefile_frag): Only require a host makefile
11031 fragment when a native build.
11032 * configure: Re-generate.
11033
11034 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11035
11036 * doublest.h (floatformat_from_type): Declare.
11037 * doublest.c (floatformat_from_type): New function.
11038 (convert_typed_floating): Use.
11039
11040 * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
11041 call to function floatformat_from_type.
11042
11043 * gdbarch.sh (IEEE_FLOAT): Delete.
11044 * gdbarch.h, gdbarch.c: Re-generate.
11045 * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
11046 * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
11047 * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
11048 * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
11049 * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
11050 * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
11051 * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
11052 * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
11053 * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
11054 * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
11055 * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
11056 * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
11057
11058 * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
11059 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
11060 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
11061 * sh-tdep.c (sh_gdbarch_init): Ditto.
11062 * mips-tdep.c (mips_gdbarch_init): Ditto.
11063 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
11064 * cris-tdep.c (cris_gdbarch_init): Ditto.
11065
11066 2002-01-20 Jiri Smid <smid@suse.cz>
11067
11068 * configure.host, configure.tgt: Support x86-64.
11069 * NEWS: Note new target x86-64.
11070
11071 * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
11072 * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
11073 * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
11074 * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
11075 x86-64-linux-nat.o): Fix dependencies.
11076
11077 2002-01-19 Andrew Cagney <ac131313@redhat.com>
11078
11079 * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
11080 * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
11081 * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
11082 * config/sparc/xm-sun4os4.h: Delete file.
11083 * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
11084
11085 2002-01-19 Andrew Cagney <ac131313@redhat.com>
11086
11087 * config/sparc/sparclynx.mh (XM_FILE): Delete.
11088 * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
11089 * config/m68k/m68klynx.mh (XM_FILE): Delete.
11090 * config/i386/i386lynx.mh (XM_FILE): Delete.
11091 * config/rs6000/xm-rs6000ly.h: Delete file.
11092 * config/sparc/xm-sparclynx.h: Delete file.
11093 * config/m68k/xm-m68klynx.h: Delete file.
11094 * config/i386/xm-i386lynx.h: Delete file.
11095 * config/xm-lynx.h: Delete file.
11096 * config/djgpp/fnchange.lst: Update.
11097
11098 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
11099
11100 * alpha-tdep.c (alpha_register_byte): New function.
11101 (alpha_register_raw_size): Ditto.
11102 (alpha_register_virtual_size): Ditto.
11103 (alpha_skip_prologue_internal): Renamed from
11104 alpha_skip_prologue.
11105 (alpha_skip_prologue): New version that calls
11106 alpha_skip_prologue_internal.
11107 (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
11108 * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
11109 second argument from alpha_skip_prologue.
11110 (REGISTER_BYTE): Use alpha_register_byte.
11111 (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
11112 (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
11113 (FRAMELESS_FUNCTION_INVOCATION): Use
11114 generic_frameless_function_invocation_not.
11115 (FRAME_NUM_ARGS): Use frame_num_args_unknown.
11116 (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
11117
11118 2002-01-19 Andrew Cagney <ac131313@redhat.com>
11119
11120 * config/mips/xm-news-mips.h: Delete file.
11121 * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
11122
11123 * config/m88k/xm-m88k.h: Delete file.
11124 * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
11125 * config/m88k/xm-delta88v4.h: Ditto.
11126 * config/m88k/xm-delta88.h: Ditto.
11127
11128 * config/alpha/xm-fbsd.h: Delete file.
11129 * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
11130
11131 * config/sparc/xm-sparc.h: Delete file.
11132 * Makefile.in (xm-sun4os4.h): Delete dependency.
11133 * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
11134 * config/sparc/xm-sun4os4.h: Ditto.
11135 * config/sparc/xm-linux.h: Ditto.
11136
11137 * config/i386/xm-windows.h: Delete file.
11138
11139 2002-01-19 Andrew Cagney <ac131313@redhat.com>
11140
11141 * utils.c: Include <sys/param.h> for MAXPATHLEN.
11142 (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
11143
11144 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
11145
11146 * alpha-tdep.c (alpha_call_dummy_words): New.
11147 * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
11148 (CALL_DUMMY_P): Define.
11149 (CALL_DUMMY_WORDS): Define.
11150 (SIZEOF_CALL_DUMMY_WORDS): Define.
11151
11152 2002-01-19 Per Bothner <per@bothner.com>
11153
11154 * gnu-v3-abi.c (gnuv3_rtti_type): Guard that vtable_symbol_name
11155 isn't NULL, which can happen with some gcj-3.x-produced code.
11156
11157 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
11158
11159 * alpha-tdep.c (alpha_register_virtual_type): New function.
11160 (alpha_init_frame_pc_first): Ditto.
11161 (alpha_fix_call_dummy): Ditto.
11162 (alpha_store_struct_return): Ditto.
11163 (alpha_extract_struct_value_address): Ditto.
11164 * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
11165 alpha_register_virtual_type.
11166 (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
11167 (EXTRACT_STRUCT_VALUE_ADDRESS): Use
11168 alpha_extract_struct_value_address.
11169 (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
11170 (INIT_FRAME_PC): Use init_frame_pc_noop.
11171 (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
11172
11173 2002-01-19 Mark Kettenis <kettenis@gnu.org>
11174
11175 * i386gnu-nat.c: Include "i386-tdep.h".
11176 (fetch_fpregs): Simplify code dealing with uninitialized floating
11177 point states such that it doesn't require FP7_REGNUM.
11178
11179 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11180
11181 * alpha-tdep.c (frame_extra_info): New.
11182 (alpha_find_saved_regs): Make static. Use
11183 frame->extra_info.
11184 (alpha_frame_init_saved_regs): New function.
11185 (alpha_frame_saved_pc): Use frame->extra_info.
11186 (temp_saved_regs): Don't declare as struct frame_saved_regs.
11187 (heuristic_proc_desc): Adjust for temp_saved_regs changes.
11188 (init_extra_frame_info): Rename to...
11189 (alpha_init_extra_frame_info): ...this. Use frame->extra_info.
11190 (alpha_print_extra_frame_info): New function.
11191 (alpha_frame_locals_address): Ditto.
11192 (alpha_frame_args_address): Ditto.
11193 (alpha_pop_frame): Use frame->extra_info.
11194 * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
11195 alpha_frame_args_address.
11196 (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
11197 (alpha_find_saved_regs): Remove prototype.
11198 (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
11199 (EXTRA_FRAME_INFO): Remove.
11200 (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
11201 (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
11202
11203 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11204
11205 * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
11206 (alpha_cannot_fetch_register): Ditto.
11207 (alpha_cannot_store_register): Ditto.
11208 (alpha_register_convertible): Ditto.
11209 (alpha_use_struct_convention): Ditto.
11210 * config/alpha/tm-alpha.h: Update copyright years.
11211 (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
11212 (INNER_THAN): Use core_addr_lessthan.
11213 (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
11214 (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
11215 (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
11216 (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
11217 (FRAME_CHAIN): Remove unnecessary cast.
11218
11219 2002-01-18 Andrew Cagney <ac131313@redhat.com>
11220
11221 * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
11222 obsolete.
11223
11224 2002-01-18 Andrew Cagney <ac131313@redhat.com>
11225
11226 * infptrace.c: Remove ATTRIBUTE_UNUSED. Update copyright.
11227 * monitor.c, remote-array.c, remote-bug.c: Ditto.
11228 * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
11229 * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
11230 * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
11231 * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
11232 * x86-64-linux-nat.c: Ditto.
11233
11234 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11235
11236 * alpha-tdep.c (alpha_register_name): New function.
11237 * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
11238 (REGISTER_NAME): Define.
11239
11240 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11241
11242 * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
11243
11244 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11245
11246 * alpha-tdep.c: Update copyright years.
11247 (alpha_next_pc): New function.
11248 (alpha_software_single_step): Ditto.
11249 * config/alpha/tm-alpha.h: Add prototype for
11250 alpha_software_single_step.
11251
11252 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11253
11254 * alphabsd-nat.c: Update copyright years.
11255 (fill_gregset): Use regcache_collect.
11256 (fill_fpregset): Likewise.
11257 (fetch_inferior_registers): Only fetch integer registers
11258 if requested to do so.
11259 (store_inferior_registers): Only store integer registers
11260 if requested to do so.
11261
11262 2002-01-17 Andrew Cagney <ac131313@redhat.com>
11263
11264 * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
11265 * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
11266 * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
11267 * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
11268 * config/alpha/fbsd.mh (XDEPFILES): Delete.
11269 * config/arm/linux.mh (XDEPFILES): Delete.
11270 * config/arm/nbsd.mh (XDEPFILES): Delete.
11271 * config/i386/i386dgux.mh (XDEPFILES): Delete.
11272 * config/i386/i386sol2.mh (XDEPFILES): Delete.
11273 * config/i386/i386m3.mh (XDEPFILES): Delete.
11274 (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
11275 * config/i386/i386gnu.mh (XDEPFILES): Delete.
11276 * config/i386/fbsd.mh (XDEPFILES): Delete.
11277 * config/i386/i386bsd.mh (XDEPFILES): Delete.
11278 * config/i386/i386sco5.mh (XDEPFILES): Delete.
11279 * config/i386/i386v4.mh (XDEPFILES): Delete.
11280 * config/i386/i386v42mp.mh (XDEPFILES): Delete.
11281 * config/i386/i386sco4.mh (XDEPFILES): Delete.
11282 * config/i386/i386aix.mh (XDEPFILES): Delete.
11283 * config/i386/go32.mh (XDEPFILES): Delete.
11284 * config/i386/cygwin.mh (XDEPFILES): Delete.
11285 * config/i386/i386lynx.mh (XDEPFILES): Delete.
11286 * config/i386/i386mach.mh (XDEPFILES): Delete.
11287 * config/i386/i386v32.mh (XDEPFILES): Delete.
11288 * config/i386/linux.mh (XDEPFILES): Delete.
11289 * config/i386/nbsdelf.mh (XDEPFILES): Delete.
11290 * config/i386/ncr3000.mh (XDEPFILES): Delete.
11291 * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
11292 * config/i386/i386sco.mh (XDEPFILES): Delete.
11293 * config/i386/i386v.mh (XDEPFILES): Delete.
11294 * config/i386/nbsd.mh (XDEPFILES): Delete.
11295 * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
11296 * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
11297 * config/i386/symmetry.mh (XDEPFILES): Delete.
11298 * config/i386/obsd.mh (XDEPFILES): Delete.
11299 * config/i386/x86-64linux.mh (XDEPFILES): Delete.
11300 * config/ia64/linux.mh (XDEPFILES): Delete.
11301 * config/ia64/aix.mh (XDEPFILES): Delete.
11302 * config/m68k/apollo68b.mh (XDEPFILES): Delete.
11303 * config/m68k/dpx2.mh (XDEPFILES): Delete.
11304 * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
11305 * config/m68k/apollo68v.mh (XDEPFILES): Delete.
11306 * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
11307 * config/m68k/linux.mh (XDEPFILES): Delete.
11308 * config/m68k/m68klynx.mh (XDEPFILES): Delete.
11309 * config/m68k/m68kv4.mh (XDEPFILES): Delete.
11310 * config/m68k/nbsd.mh (XDEPFILES): Delete.
11311 * config/m68k/sun2os3.mh (XDEPFILES): Delete.
11312 * config/m68k/sun2os4.mh (XDEPFILES): Delete.
11313 * config/m68k/sun3os3.mh (XDEPFILES): Delete.
11314 * config/m68k/sun3os4.mh (XDEPFILES): Delete.
11315 * config/m88k/delta88.mh (XDEPFILES): Delete.
11316 * config/m88k/delta88v4.mh (XDEPFILES): Delete.
11317 * config/m88k/m88k.mh (XDEPFILES): Delete.
11318 * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
11319 * config/mips/linux.mh (XDEPFILES): Delete.
11320 * config/mips/irix6.mh (XDEPFILES): Delete.
11321 * config/mips/irix5.mh (XDEPFILES): Delete.
11322 * config/mips/irix4.mh (XDEPFILES): Delete.
11323 * config/mips/irix3.mh (XDEPFILES): Delete.
11324 * config/mips/decstation.mh (XDEPFILES): Delete.
11325 * config/mips/mipsm3.mh (XDEPFILES): Delete.
11326 (NATDEPFILES): Move core-aout.o to here.
11327 * config/ns32k/nbsd.mh (XDEPFILES): Delete.
11328 * config/pa/hpux1020.mh (XDEPFILES): Delete.
11329 * config/pa/hppabsd.mh (XDEPFILES): Delete.
11330 * config/pa/hppahpux.mh (XDEPFILES): Delete.
11331 * config/pa/hpux11w.mh (XDEPFILES): Delete.
11332 * config/pa/hppaosf.mh (XDEPFILES): Delete.
11333 * config/pa/hpux11.mh (XDEPFILES): Delete.
11334 * config/powerpc/aix.mh (XDEPFILES): Delete.
11335 * config/powerpc/nbsd.mh (XDEPFILES): Delete.
11336 * config/powerpc/linux.mh (XDEPFILES): Delete.
11337 * config/romp/rtbsd.mh: Rename XDEPFILES.
11338 * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
11339 * config/rs6000/aix4.mh (XDEPFILES): Delete.
11340 * config/rs6000/rs6000.mh (XDEPFILES): Delete.
11341 * config/s390/s390.mh (XDEPFILES): Delete.
11342 * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
11343 * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
11344 * config/sparc/sun4os4.mh (XDEPFILES): Delete.
11345 * config/sparc/sparclynx.mh (XDEPFILES): Delete.
11346 * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
11347 * config/sparc/nbsd.mh (XDEPFILES): Delete.
11348 * config/sparc/linux.mh (XDEPFILES): Delete.
11349 * config/vax/vaxult.mh (XDEPFILES): Delete.
11350 * config/vax/vaxult2.mh (XDEPFILES): Delete.
11351 * Makefile.in (DEPFILES): Remove XDEPFILES.
11352
11353 2002-01-17 Andrew Cagney <ac131313@redhat.com>
11354
11355 * utils.c (internal_verror): Fix comments, default is yes not no.
11356 Update queries to match. Default to quit and dump core.
11357
11358 2002-01-17 Andrew Cagney <ac131313@redhat.com>
11359
11360 * breakpoint.c: Update assuming #if UI_OUT is always true. Update
11361 copyright.
11362 * defs.h, event-top.c, gdbcmd.h: Ditto.
11363 * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
11364 * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
11365 * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
11366 * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
11367 * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
11368 * mi/mi-main.c:Ditto.
11369
11370 * stack.c, symfile.c: Update copyright.
11371
11372 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
11373
11374 * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
11375 gdbserver/low-nbsd.c, gdbserver/low-sim.c,
11376 gdbserver/low-sparc.c, gdbserver/low-sun3.c,
11377 gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
11378
11379 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
11380
11381 * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
11382 * gdbserver/low-lynx.c (myattach): Likewise.
11383 * gdbserver/low-nbsd.c (myattach): Likewise.
11384 * gdbserver/low-sim.c (myattach): Likewise.
11385 * gdbserver/low-sparc.c (myattach): Likewise.
11386 * gdbserver/low-sun3.c (myattach): Likewise.
11387
11388 * gdbserver/low-linux.c (myattach): New function.
11389
11390 * gdbserver/server.c (attach_inferior): New function.
11391 (main): Handle "--attach".
11392
11393 2002-01-16 Andrew Cagney <ac131313@redhat.com>
11394
11395 * MAINTAINERS (language support): Daniel Jacobwitz is C++
11396 maintainer.
11397
11398 2002-01-15 Daniel Jacobowitz <drow@mvista.com>
11399
11400 * c-typeprint.c (is_type_conversion_operator): Add additional
11401 check for non-conversion operators.
11402
11403 2002-01-15 Michael Snyder <msnyder@redhat.com>
11404
11405 * linux-proc.c: Add "info proc" command, a la procfs.c.
11406 (read_mapping): New function, abstract and re-use code.
11407 (linux_find_memory_regions): Use new func read_mapping.
11408 (linux_info_proc_cmd): New function, implement "info proc".
11409 (_initialize_linux_proc): Add new command "info proc".
11410
11411 2002-01-15 Michael Snyder <msnyder@redhat.com>
11412
11413 * symfile.c (generic_load): Use bfd_map_over_sections method
11414 instead of manipulating bfd structure members directly.
11415 (add_section_size_callback): New function, bfd sections callback
11416 used by generic_load.
11417 (load_sections_callback): New function, bfd sections callback
11418 used by generic_load.
11419
11420 2002-01-15 Elena Zannoni <ezannoni@redhat.com>
11421
11422 [Based on work by Jim Blandy]
11423 * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
11424 (builtin_type_vec128): Export.
11425 * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
11426 types.
11427 (builtin_type_vec128): New builtin type for 128 bit vector
11428 registers.
11429 (build_gdbtypes): Initialize builtin_type_v16qi and
11430 builtin_type_v8hi. Create the vec128 register builtin type
11431 structure.
11432 (build_builtin_type_vec128): New function.
11433 (_initialize_gdbtypes): Register builtin_type_v16qi and
11434 builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
11435 * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
11436 AltiVec register to new builtin type.
11437
11438 2001-01-15 Daniel Jacobowitz <drow@mvista.com>
11439
11440 * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
11441 to make_cv_type.
11442
11443 2002-01-14 Andrew Cagney <ac131313@redhat.com>
11444
11445 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
11446 CLEAN_UP_REGISTER_VALUE.
11447 * regcache.c (supply_register): Update only call.
11448
11449 2002-01-14 Andrew Cagney <ac131313@redhat.com>
11450
11451 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
11452 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
11453 a29k-*-vxworks* targets as obsolete.
11454
11455 2002-01-14 Michael Snyder <msnyder@redhat.com>
11456
11457 * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
11458 until we can resolve portability issues.
11459 * gregset.h: Remove references to fpxregs.
11460 * gcore.c (gcore_command): Initialize note_sec to NULL.
11461
11462 2002-01-13 Andrew Cagney <ac131313@redhat.com>
11463
11464 * signals.c (target_signal_to_name): Rewrite. Only use
11465 signals[].name when in bounds and non-NULL.
11466
11467 2002-01-13 Andrew Cagney <ac131313@redhat.com>
11468
11469 From Petr Ledvina <ledvinap@kae.zcu.cz>:
11470 * signals.c (target_signal_to_name): Verify that SIG is within the
11471 bounds of the signals array.
11472
11473 2002-01-13 Andrew Cagney <ac131313@redhat.com>
11474
11475 * MAINTAINERS: Remove arm-coff and arm-pe from target list.
11476
11477 2002-01-13 Keith Seitz <keiths@redhat.com>
11478
11479 * stack.c (print_frame_info_base): Print the frame's pc
11480 only if when print_frame_info_listing_hook is not defined.
11481
11482 2002-01-13 Keith Seitz <keiths@redhat.com>
11483
11484 * varobj.c (varobj_set_value): Make sure that there were no
11485 errors evaluating the object before attempting to set its
11486 value.
11487 value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
11488 so this offset adjustment is no longer necessary.
11489 (create_child): Don't set the error flag if the child is
11490 a CPLUS_FAKE_CHILD.
11491 (value_of_child): If value_fetch_lazy fails, return NULL
11492 so that callers will be notified that an error occurred.
11493 (c_value_of_variable): Delay check of variable's validity
11494 until later. We actually want all structs and unions to have
11495 the value "{...}".
11496 Do not return "???" for variables which could not be evaluated.
11497 This error condition must be returned to the caller so that it
11498 can get the error condition from gdb.
11499 (cplus_name_of_child): Adjust index for vptr before figuring
11500 out the name of the child.
11501 (cplus_value_of_child): If a child's (real) parent is not valid,
11502 don't even bother trying to give a value for it. Just return
11503 an error. Change all instances in this function.
11504 (cplus_type_of_child): If our parent is one of the "fake"
11505 parents, we need to get at the type of the real parent, and
11506 derive the child's true type using this information.
11507
11508 2002-01-13 Andrew Cagney <ac131313@redhat.com>
11509
11510 From 2002-01-09 John Marshall <johnm@falch.net>:
11511 * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
11512 sources.redhat.com, and tweak some related URLs which had
11513 suffered from linkrot.
11514
11515 2002-01-13 Andrew Cagney <ac131313@redhat.com>
11516
11517 From Jeff law:
11518 * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
11519 structures passed in registers.
11520
11521 2002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
11522
11523 * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
11524 white space which prevented compilation. Reported by DSK
11525 <dsk@student.unsw.edu.au>.
11526
11527 2002-01-11 Michael Snyder <msnyder@redhat.com>
11528
11529 * symfile.c (build_section_addr_info_from_section_tab):
11530 Use bfd access method instead of manipulating bfd directly.
11531 (syms_from_objfile): Ditto.
11532 (simple_overlay_update_1): Ditto.
11533 (simple_overlay_update): Ditto.
11534 (generic_load): Ditto.
11535 (overlay_unmapped_address): FIXME comment, bfd access methods.
11536 (sections_overlap): FIXME comment, bfd access methods.
11537 (pc_in_mapped_range): FIXME comment, bfd access methods.
11538 (pc_in_unmapped_range): FIXME comment, bfd access methods.
11539 (section_is_mapped): FIXME comment, bfd access methods.
11540 (section_is_overlay): FIXME comment, bfd access methods.
11541
11542 * symfile.c (generic_load): Whitespace and long line cleanups.
11543 Remove duplicate variable, change several local variables to
11544 more appropriate data types.
11545 (print_transfer_performance): Use %lu instead of %ld for ulongs.
11546
11547 2002-01-12 Andrew Cagney <ac131313@redhat.com>
11548
11549 From Peter Schauer:
11550 * language.c (longest_local_hex_string_custom): Use phex_nz to
11551 convert NUM to a hex string.
11552
11553 2002-01-12 Elena Zannoni <ezannoni@redhat.com>
11554
11555 * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
11556 the function.
11557 Update Copyright year.
11558
11559 2002-01-12 Andrew Cagney <ac131313@redhat.com>
11560
11561 * language.c (longest_raw_hex_string): Delete unused function.
11562
11563 2002-01-11 Petr Sorfa <petrs@caldera.com>
11564
11565 * MAINTAINERS (write-after-approval): Add myself.
11566 * dwarf2read.c (read_tag_string_type): Handling of
11567 DW_AT_byte_size.
11568 (read_tag_string_type): FORTRAN fix to prevent propagation of
11569 first string size.
11570 (set_cu_language): Handling of DW_LANG_Fortran95
11571
11572 2002-01-11 Richard Earnshaw <rearnsha@arm.com>
11573
11574 * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
11575 GETPID(inferior_ptid).
11576 (store_inferior_registers): Likewise.
11577
11578 2002-01-10 Jason Merrill <jason@redhat.com>
11579
11580 * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
11581 Fix DW_OP_minus.
11582
11583 2002-01-10 Andrew Cagney <ac131313@redhat.com>
11584
11585 * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
11586 and bfd/elf32-sh-nbsd.c.
11587
11588 2002-01-10 Michael Snyder <msnyder@redhat.com>
11589
11590 * NEWS: Mention --pid and corefile/proc-id behavior change.
11591
11592 * Makefile.in: Add rules for gcore.o and linux-proc.o.
11593 * gcore.c: Include cli/cli-decode.h instead of command.h.
11594
11595 * main.c (captured_main): Add new command line option "--pid".
11596 If the second command line argument (following the symbol-file)
11597 begins with a digit, try to attach to it before trying to open
11598 it as a corefile.
11599 (print_gdb_help): Document the "--pid" argument.
11600
11601 2002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
11602
11603 * completer.c (command_completer): New function.
11604
11605 * completer.h <command_completer>: Add prototype.
11606
11607 * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
11608 completer for the "help" command.
11609
11610 2002-01-09 Jason Merrill <jason@redhat.com>
11611
11612 * c-typeprint.c (is_type_conversion_operator): Fix thinko.
11613
11614 2002-01-09 Michael Snyder <msnyder@redhat.com>
11615
11616 * i386-linux-nat.c (fill_fpxregset): Make global.
11617 (store_fpxregset): Ditto.
11618
11619 * gregset.h (gdb_fpxregset_t): Define.
11620 (supply_fpxregset): Prototype.
11621 (fill_fpxregset): Prototype.
11622
11623 * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
11624
11625 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
11626
11627 * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
11628 * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
11629 * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
11630
11631 2002-01-09 Andrew Cagney <ac131313@redhat.com>
11632
11633 * MAINTAINERS: Update target maintainer rules so that any
11634 Maintainer can approve a tested patch for a maintenance-only
11635 target.
11636
11637 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
11638
11639 * MAINTAINERS (write-after-approval): Add myself.
11640
11641 * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
11642 IN_SIGTRAMP.
11643
11644 2002-01-08 Michael Snyder <msnyder@redhat.com>
11645
11646 * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
11647 real name of the executable, rather than the /proc name.
11648
11649 2002-01-03 Michael Snyder <msnyder@redhat.com>
11650
11651 Implement a "generate-core-file" command in gdb, save target state.
11652 * gcore.c: New file. Implement new command 'generate-core-file'.
11653 Save a corefile image of the current state of the inferior.
11654 * linux-proc.c: Add linux-specific code for saving corefiles.
11655 * target.h (struct target_ops): Add new target vectors for saving
11656 corefiles; to_find_memory_regions and to_make_corefile_notes.
11657 (target_find_memory_regions): New macro.
11658 (target_make_corefile_notes): New macro.
11659 * target.c (update_current_target): Inherit new target methods.
11660 (dummy_find_memory_regions): New place-holder method.
11661 (dummy_make_corefile_notes): New place-holder method.
11662 (init_dummy_target): Initialize new dummy target vectors.
11663 * exec.c (exec_set_find_memory_regions): New function.
11664 Allow the exec_ops vector for memory regions to be taken over.
11665 (exec_make_note_section): New function, target vector method.
11666 * defs.h (exec_set_find_memory_regions): Export prototype.
11667 * procfs.c (proc_find_memory_regions): New function, corefile method.
11668 (procfs_make_note_section): New function, corefile method.
11669 (init_procfs_ops): Set new target vector pointers.
11670 (find_memory_regions_callback): New function.
11671 (procfs_do_thread_registers): New function.
11672 (procfs_corefile_thread_callback): New function.
11673 * sol-thread.c (sol_find_memory_regions): New function.
11674 (sol_make_note_section): New function.
11675 (init_sol_thread_ops): Initialize new target vectors.
11676 * inftarg.c (inftarg_set_find_memory_regions): New function.
11677 Allow to_find_memory_regions vector to be taken over.
11678 (inftarg_set_make_corefile_notes): New function.
11679 Allow to_make_corefile_notes vector to be taken over.
11680 * thread-db.c (thread_db_new_objfile): Don't activate thread-db
11681 interface layer if not target_has_execution (may be a corefile).
11682 * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
11683 * config/sparc/sun4sol2.mh: Ditto.
11684 * config/alpha/alpha-linux.mh: Ditto.
11685 * config/arm/linux.mh: Ditto.
11686 * config/i386/x86-64linux.mh: Ditto.
11687 * config/ia64/linux.mh: Ditto.
11688 * config/m68k/linux.mh: Ditto.
11689 * config/mips/linux.mh: Ditto.
11690 * config/powerpc/linux.mh: Ditto.
11691 * config/sparc/linux.mh: Ditto.
11692
11693 2002-01-07 Michael Snyder <msnyder@redhat.com>
11694
11695 * arm-linux-nat.c: Remove references to regcache.c internal data
11696 (registers[] and register_valid[]).
11697
11698 2002-01-07 Michael Snyder <msnyder@redhat.com>
11699
11700 * linux-proc.c: New file. Implement child_pid_to_exec_file,
11701 so that attaching to a pid will automatically read the process's
11702 symbol file and shlibs.
11703 * Makefile.in: Add rule for linux-proc.o.
11704 * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
11705 * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
11706 * config/arm/linux.mh: Ditto.
11707 * config/i386/linux.mh: Ditto.
11708 * config/i386/x86-64linux.mh: Ditto.
11709 * config/ia64/linux.mh: Ditto.
11710 * config/m68k/linux.mh: Ditto.
11711 * config/mips/linux.mh: Ditto.
11712 * config/powerpc/linux.mh: Ditto.
11713 * config/sparc/linux.mh: Ditto.
11714
11715 2002-01-06 Pierre Muller <muller@ics.u-strasbg.fr>
11716
11717 * win32-nat.c: Add i386-tdep.h dependency.
11718
11719 2002-01-07 Michael Snyder <msnyder@redhat.com>
11720
11721 * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
11722 instead of bfd_get_arch_size. Don't bail out just because
11723 there's no exec_bfd.
11724
11725 * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
11726 * p-valprint.c (pascal_object_print_value): Ditto.
11727 * somread.c (som_symtab_read): Ditto.
11728 * symfile.c (simple_free_overlay_region_table): Ditto.
11729 * valops.c (value_assign): Ditto.
11730
11731 * tracepoint.c (tracepoint_save_command): From Klee Dienes --
11732 use tilde_expand and strerror for opening save-tracepoints file.
11733
11734 * thread-db.c (thread_db_new_objfile): Indendation fix.
11735
11736 * infptrace.c (GDB_MAX_ALLOCA): New define.
11737 (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
11738 size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
11739 can be overridden with whatever value is appropriate to the host).
11740 * infttrace.c (child_xfer_memory): Add FIXME warning about use of
11741 alloca to allocate potentially large buffer.
11742 * rs6000-nat.c (child_xfer_memory): Ditto.
11743 * symm-nat.c (child_xfer_memory): Ditto.
11744 * x86-64-linux-nat.c (child_xfer_memory): Ditto.
11745
11746 2002-01-07 Jackie Smith Cashion <jsmith@redhat.com>
11747
11748 From Nick Clifton <nickc@redhat.com>
11749 * d10v-tdep.c: Set STACK_START to 0x200bffe.
11750
11751 2002-01-07 Michael Snyder <msnyder@redhat.com>
11752
11753 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
11754 Don't use exec_bfd if it's NULL.
11755
11756 2002-01-06 Mark Kettenis <kettenis@gnu.org>
11757
11758 * valops.c (value_arg_coerce): Fix formatting.
11759
11760 2002-01-06 Andrew Cagney <ac131313@redhat.com>
11761
11762 * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
11763 * gnu-nat.c: Ditto.
11764
11765 2002-01-06 Andrew Cagney <ac131313@redhat.com>
11766
11767 * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
11768 arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
11769 i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
11770 ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
11771 z8k-coff have not been multi-arched. Update z8k-coff build
11772 status.
11773
11774 2002-01-06 Andrew Cagney <ac131313@redhat.com>
11775
11776 * MAINTAINERS: Mark a29k target as obsolete.
11777 * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
11778 (remote-mm.o, remote-udi.o): Obsolete. Remove references in
11779 comments.
11780 * NEWS: Note that a29k targets are obsolete.
11781 * a29k-tdep.c: Mark as obsolete.
11782 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
11783 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
11784 a29k-*-vxworks* targets as obsolete.
11785 * remote-adapt.c: Obsolete.
11786 * remote-eb.c: Obsolete.
11787 * remote-mm.c: Obsolete.
11788 * remote-udi.c: Obsolete.
11789 * config/a29k/a29k-udi.mt: Obsolete.
11790 * config/a29k/a29k.mt: Obsolete.
11791 * config/a29k/tm-a29k.h: Obsolete.
11792 * config/a29k/tm-vx29k.h: Obsolete.
11793 * config/a29k/vx29k.mt: Obsolete.
11794
11795 2002-01-05 Andrew Cagney <ac131313@redhat.com>
11796
11797 * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
11798 with BFD_ENDIAN_BIG.
11799
11800 2002-01-05 Andrew Cagney <ac131313@redhat.com>
11801
11802 * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
11803 * configure, config.in: Re-generate.
11804 * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
11805 * defs.h: Do not include <endian.h>.
11806
11807 2002-01-05 Jason Thorpe <thorpej@wasabisystems.com>
11808
11809 * acconfig.h (HAVE_PT_GETXMMREGS): New.
11810 * config.in: Regenerate.
11811 * configure.in: Update copyright years.
11812 Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
11813 * configure: Regenerate.
11814 * i386bsd-nat.c: Update copyright years.
11815 (fill_gregset): Use regcache_collect.
11816 (fetch_inferior_registers): Only fetch integer registers
11817 if requested to do so. Add support for XMM registers
11818 using PT_GETXMMREGS.
11819 (store_inferior_registers): Only store integer registers
11820 if requested to do so. Add support for XMM registers
11821 using PT_SETXMMREGS.
11822 * i386nbsd-nat.c (fetch_inferior_registers): Remove.
11823 (store_inferior_registers): Remove.
11824 (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
11825 (fetch_elfcore_registers): New function.
11826 (i386nbsd_elfcore_fns): New.
11827 (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
11828 * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
11829 i386bsd-nat.o.
11830 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
11831 * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
11832 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
11833 * config/i386/tm-nbsd.h: Update copyright years.
11834 (HAVE_SSE_REGS): Define.
11835 (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
11836 (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
11837 (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
11838 (SIGCONTEXT_PC_OFFSET): Remove.
11839 (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
11840
11841 2002-01-05 Andrew Cagney <ac131313@redhat.com>
11842
11843 * configure.tgt: Remove powerpc-*-macos* target.
11844 * config/m68k/xm-mpw.h: Delete file.
11845 * config/xm-mpw.h: Delete file.
11846 * ser-mac.c: Delete file.
11847 * mpw-make.sed: Delete file.
11848 * mpw-config.in: Delete file.
11849 * mac-xdep.c: Delete file.
11850 * mac-gdb.r: Delete file.
11851 * mac-defs.h: Delete file.
11852 * mac-nat.c: Delete file.
11853 * config/powerpc/macos.mh: Delete file.
11854 * config/powerpc/macos.mt: Delete file.
11855 * config/powerpc/nm-macos.h: Delete file.
11856 * config/powerpc/tm-macos.h: Delete file.
11857 * source.c (openp, open_source_file): Remove obsolete code.
11858 * top.c (gdb_readline): Ditto.
11859 * utils.c (query): Ditto.
11860 * event-top.c (display_gdb_prompt): Ditto.
11861 * Makefile.in (ser-mac.o): Delete obsolete target.
11862 * NEWS: Update.
11863
11864 2002-01-04 Andrew Cagney <ac131313@redhat.com>
11865
11866 * defs.h (BIG_ENDIAN): Delete macro definition.
11867 * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
11868 coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
11869 findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
11870 printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
11871 remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
11872 stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
11873 config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
11874 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
11875 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
11876 config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
11877 config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
11878 config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
11879 mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
11880 * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
11881 * gdbarch.c: Re-generate.
11882
11883 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
11884
11885 * thread-db.c (thread_db_new_objfile): Do not enable thread_db
11886 for core files.
11887
11888 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
11889
11890 * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
11891
11892 2002-01-04 Andrew Cagney <ac131313@redhat.com>
11893
11894 * value.h (value_ptr): Delete typedef.
11895
11896 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
11897
11898 * i386nbsd-nat.c: Update copyright years.
11899 Include i386-tdep.h.
11900
11901 2002-01-04 Elena Zannoni <ezannoni@redhat.com>
11902
11903 * stabsread.c: Update copyright years.
11904
11905 From Debashis Mahata <debashis.mahata@wipro.com>:
11906 (read_struct_fields): Deal with Sun C compiler erroneous stab
11907 output for structs and unions.
11908 Fix PR gdb/269.
11909
11910 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
11911
11912 * p-valprint.c: Include "cp-abi.h" for baseclass_offset
11913 prototype.
11914
11915 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
11916
11917 * cp-abi.c: Fix whitespace.
11918 (baseclass_offset): New wrapper function.
11919 * cp-abi.h (baseclass_offset): Add prototype.
11920 (struct cp_abi_ops): Add baseclass_offset pointer.
11921
11922 * valops.c (vb_match): Move to...
11923 * gnu-v2-abi.c (vb_match): here.
11924 * valops.c (baseclass_offset): Move to...
11925 * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
11926
11927 * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
11928
11929 * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
11930 * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
11931 * hpacc-abi.c (init_hpacc_ops): Likewise.
11932
11933 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
11934
11935 * valops.c (find_overload_match): Accept obj as a
11936 reference parameter. Update it before returning.
11937 * value.h (find_overload_match): Update prototype.
11938 * eval.c (evaluate_subexp_standard): Pass object to
11939 find_overload_match by reference.
11940
11941 2002-01-03 Andrew Cagney <ac131313@redhat.com>
11942
11943 * valarith.c: Replace value_ptr with struct value pointer. Remove
11944 register attribute from value declarations.
11945 * valops.c: Ditto.
11946 * value.h: Ditto.
11947 * scm-lang.c (scm_lookup_name): Ditto.
11948
11949 2002-01-03 Michael Snyder <msnyder@redhat.com>
11950
11951 Abstract the functionality of iterating over mapped memory
11952 regions into a general purpose iterator function.
11953 * procfs.c (iterate_over_mappings): New function, general purpose
11954 iterator for memory sections.
11955 (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
11956 (solib_mappings_callback): New function, callback for above.
11957 (info_proc_mappings): Reimpliment using iterate_over_mappings.
11958 (info_mappings_callback): New function, callback for above.
11959
11960 * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
11961
11962 2002-01-01 Mark Kettenis <kettenis@gnu.org>
11963
11964 * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
11965 * i386-tdep.c: Include "elf-bfd.h".
11966 (process_note_abi_tag_sections): New function.
11967 (i386_gdbarch_init): Add code to recognize various OS/ABI
11968 combinations.
11969
11970 * maint.c (_initialize_maint_cmds): Add missing \ in
11971 string-literal.
11972
11973 For older changes see ChangeLog-2001
11974 \f
11975 Local Variables:
11976 mode: change-log
11977 left-margin: 8
11978 fill-column: 74
11979 version-control: never
11980 End: