2002-10-25 Andrew Cagney <cagney@redhat.com>
[binutils-gdb.git] / gdb / ChangeLog
1 2002-10-25 Andrew Cagney <cagney@redhat.com>
2
3 * complaints.h (struct deprecated_complaint): Rename `struct
4 complaint'.
5 * complaints.c (complain): Update.
6 * remote-vx68.c, remote-vxmips.c, remote-vxsparc.c: Delete
7 incorrect comment indicating that "symfile.h" was being included
8 for the `struct complaint' definition.
9 * remote-vx.c: Update.
10 * objc-lang.c: Update.
11 * xcoffread.c: Update.
12 * hpread.c: Update.
13 * mdebugread.c: Update.
14 * stabsread.c: Update.
15 * dwarf2read.c: Update.
16 * dwarfread.c: Update.
17 * elfread.c: Update.
18 * coffread.c: Update.
19 * stabsread.h: Update.
20 * dbxread.c: Update.
21 * buildsym.c: Update.
22 * gdbtypes.c: Update.
23 * macrotab.c: Update.
24
25 2002-10-25 Mark Kettenis <kettenis@gnu.org>
26
27 * x86-64-tdep.c (x86_64_gdbarch_init): Make a bit more similar to
28 the version in i386-tdep.c. Move set_gdbarch_* calls out into...
29 (x86_64_init_abi): ...new function.
30
31 * Makefile.in (i386v-nat.o): Add $(i386_tdep_h).
32 * i386v-nat.c: Include "i386-tdep.h".
33
34 2002-10-25 Andrew Cagney <cagney@redhat.com>
35
36 * gdbtypes.c (address_space_name_to_int): Update.
37 (address_space_int_to_name): Update.
38 * gdbarch.sh (address_class_type_flags_to_name): Change to a pure
39 multi-arch predicate.
40 (address_class_name_to_type_flags): Ditto.
41 * gdbarch.h, gdbarch.c: Re-generate.
42
43 * MAINTAINERS: Check all warnings when h8300hms and alpha-elf.
44
45 2002-10-24 Martin M. Hunt <hunt@redhat.com>
46
47 * utils.c (string_to_core_addr): Revert patch from 11 Oct.
48
49 2002-10-24 Elena Zannoni <ezannoni@redhat.com>
50
51 * symtab.h (INIT_SAL): Delete macro.
52 (init_sal): Export.
53 * symtab.c (init_sal): New function.
54
55 * ada-lang.c (ada_finish_decode_line_1): Change INIT_SAL macro
56 to init_sal function call.
57 (find_sal_from_funcs_and_line): Ditto.
58 (all_sals_for_line): Ditto.
59 * breakpoint.c (create_internal_breakpoint): Ditto.
60 (create_fork_vfork_event_catchpoint): Ditto.
61 (create_exec_event_catchpoint): Ditto.
62 (parse_breakpoint_sals): Ditto.
63 (watch_command_1): Ditto.
64 (handle_gnu_4_16_catch_command): Ditto.
65 (clear_command): Ditto.
66 * hppa-tdep.c (child_enable_exception_callback): Ditto.
67 * infcmd.c (run_stack_dummy): Ditto.
68 * infrun.c (process_event_stop_test): Ditto.
69 (check_sigtramp2): Ditto.
70 (step_over_function): Ditto.
71 * linespec.c (decode_line_2): Ditto.
72 (decode_line_1): Ditto.
73 * source.c (line_info): Ditto.
74 * symtab.c (find_pc_sect_line): Ditto.
75
76 2002-10-24 Michal Ludvig <mludvig@suse.cz>
77
78 * dwarf2cfi.c (struct context)
79 (struct context_reg): Moved to dwarf2cfi.h
80 (context_alloc, frame_state_alloc, context_cpy):
81 Made extern instead of static, removed prototypes.
82 * dwarf2cfi.h (struct context)
83 (struct context_reg): New, moved from dwarf2cfi.c
84 (context_alloc, frame_state_alloc, context_cpy):
85 New prototypes.
86 * x86-64-linux-tdep.c (x86_64_linux_sigtramp_saved_pc):
87 Changed from static to extern.
88 (LINUX_SIGINFO_SIZE, LINUX_SIGCONTEXT_PC_OFFSET)
89 (LINUX_SIGCONTEXT_FP_OFFSET)
90 (LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Adjusted.
91 (x86_64_linux_in_sigtramp, x86_64_linux_frame_chain)
92 (x86_64_init_frame_pc, x86_64_init_extra_frame_info): New.
93 * x86-64-tdep.c (x86_64_gdbarch_init): Several
94 set_gdbarch_*() calls now use x86-64 specific functions
95 instead of DWARF2 CFI ones.
96 * x86-64-tdep.h (x86_64_linux_in_sigtramp)
97 (x86_64_linux_frame_chain, x86_64_init_frame_pc)
98 (x86_64_init_extra_frame_info): New prototypes.
99
100 2002-10-23 David Carlton <carlton@math.stanford.edu>
101
102 * linespec.c: #include "parser-defs.h".
103 Delete prototype for find_template_name_end.
104 * Makefile.in (linespec.o): Depend on $(parser_defs_h).
105
106 2002-10-23 Jeff Johnston <jjohnstn@redhat.com>
107
108 * NEWS: add recent mi fixes.
109 * varobj.c (struct varobj): Add new "updated" flag.
110 (new_variable): Default "updated" flag to 0.
111 (varobj_set_value): Set "updated" flag to 1 if value
112 changes.
113 (varobj_update): Check varobj "updated" flag before
114 comparing old and refreshed values. Fix for
115 PR gdb/702.
116
117 2002-10-23 David Carlton <carlton@math.stanford.edu>
118
119 * parse.c (parse_exp_1): Use BLOCK_START.
120 * x86-64-tdep.c (x86_64_skip_prologue): Use BLOCK_END,
121 SYMBOL_BLOCK_VALUE.
122 * objc-lang.c (find_methods): Use BLOCK_START, BLOCK_END.
123
124 2002-10-23 David Carlton <carlton@math.stanford.edu>
125
126 * symtab.c: Delete cplusplus_hint.
127 Delete prototype for find_template_name_end.
128
129 2002-10-23 Elena Zannoni <ezannoni@redhat.com>
130
131 * symtab.h: Update comment.
132
133 2002-10-23 Michael Snyder <msnyder@redhat.com>
134
135 * printcmd.c (address_info): Restore quotes in output.
136 * valops.c (value_of_local): Restore quotes in error message.
137
138 2002-10-23 Elena Zannoni <ezannoni@redhat.com>
139
140 * symtab.c (symbol_demangled_name): New function.
141 * symtab.h (SYMBOL_DEMANGLED_NAME): Simplify macro, by
142 turning most of it into a function.
143 (symbol_demangled_name): Export.
144
145 2002-10-23 Michael Snyder <msnyder@redhat.com>
146
147 * valops.c (value_of_local): Restore quotes in error message.
148
149 2002-10-23 Elena Zannoni <ezannoni@redhat.com>
150
151 * symtab.c (symbol_init_language_specific): New function.
152 * symtab.h (SYMBOL_INIT_LANGUAGE_SPECIFIC): Simplify macro, by
153 turning most of it into a function.
154 (symbol_init_language_specific): Export.
155
156 2002-10-23 David Carlton <carlton@math.stanford.edu>
157
158 * dwarf2read.c (dwarf_tag_name): Add DWARF 3 names.
159 (dwarf_attr_name): Ditto.
160 (dwarf_type_encoding_name): Ditto.
161 (scan_partial_symbols): Descend into DW_TAG_namespace entries.
162 (process_die): Handle DW_TAG_namespace,
163 DW_TAG_imported_declaration, DW_TAG_imported_module.
164 (read_namespace): New function.
165
166 2002-10-22 Joel Brobecker <brobecker@gnat.com>
167
168 * configure.in: Define NEW_PROC_API on Interix too.
169 * configure: Regenerate.
170
171 2002-10-21 Joel Brobecker <brobecker@gnat.com>
172
173 * configure: Regenerate using the proper version of autoconf.
174
175 2002-10-21 Elena Zannoni <ezannoni@redhat.com>
176
177 * findvar.c (read_var_value): Temporarily disable TLS code, until
178 complete TLS support is added.
179
180 2002-10-21 Jim Blandy <jimb@redhat.com>
181 Elena Zannoni <ezannoni@redhat.com>
182
183 * symtab.h (address_class): Re-add LOC_THREAD_LOCAL_STATIC
184 for thread local storage locations.
185 (struct symbol): Add objfile field.
186 (SYMBOL_OBJFILE): Define.
187 * dwarf2read.c (is_thread_local): New static variable.
188 (new_symbol): If variable is in thread local fill in address class
189 and objfile appropriately.
190 (decode_locdesc): Recognize and handle DW_OP_GNU_push_tls_address
191 stack operation.
192 * printcmd.c (address_info): Print the information for thread
193 local storage variable.
194 * findvar.c (read_var_value): In case of thread local variable,
195 defer to the target vector code to compute address.
196
197 2002-10-21 Elena Zannoni <ezannoni@redhat.com>
198
199 * solib-svr4.c (svr4_fetch_objfile_link_map): New function.
200 * solib-svr4.h (svr4_fetch_objfile_link_map): Export.
201
202 2002-10-21 Elena Zannoni <ezannoni@redhat.com>
203
204 * symtab.h (address_class): Rename
205 LOC_THREAD_LOCAL_STATIC to LOC_HP_THREAD_LOCAL_STATIC.
206 * hpread.c (hpread_process_one_debug_symbol): Ditto.
207 * printcmd.c (address_info): Ditto.
208 * findvar.c (symbol_read_needs_frame, read_var_value): Ditto.
209
210 2002-10-20 Mark Kettenis <kettenis@gnu.org>
211
212 * i386bsd-nat.c (i386bsd_dr_set, i386bsd_dr_get_status): Use
213 DBREG_DRX macro to acces debug registers.
214
215 * Makefile.in (i386obsd-tdep.o): New target.
216
217 * solib-sunos.c: Include "bcache.h" and "regcache.h".
218 * Makefile.in (solib-sunos.o): Add $(bcache_h) and $(regcache_h).
219
220 * configure.tgt (i[3456]86-*-openbsd*): Set gdb_target to obds.
221 * config/i386/obsd.mt: New file.
222 * i386bsd-nat.c (_initialize_i386bsd_nat): Introduce
223 i386obsd_sc_pc_offset and i386obsd_sc_sp_offset;
224 * i386obsd-nat.c (_initialize_i386obsd_nat): Set
225 i386obsd_sigtramp_start and i386obsd_sigtramp_end instead of
226 i386nbsd_sigtramp_start and i386nbsd_sigtramp_end.
227 * i386obsd-tdep.c: New file.
228
229 2002-10-19 Adam Fedor <fedor@gnu.org>
230
231 * objc-exp.y (name_not_typename): Fix invalid comment.
232
233 2002-10-20 Mark Kettenis <kettenis@gnu.org>
234
235 * solib-sunos.c (allocate_rt_common_objfile): Use bcache_xmalloc
236 to allocate partial syms and macro byte caches.
237
238 2002-10-18 David Carlton <carlton@math.stanford.edu>
239
240 * symtab.h: Delete 'struct source' and 'struct sourcevector'.
241
242 2002-10-18 Adam Fedor <fedor@gnu.org>
243
244 * stabsread.c (find_name_end): New function.
245 (define_symbol): Use it.
246
247 2002-10-18 Daniel Jacobowitz <drow@mvista.com>
248
249 * config/alpha/nm-fbsd.h (CANNOT_STEP_BREAKPOINT): Define to 1.
250 * config/alpha/nm-linux.h (CANNOT_STEP_BREAKPOINT): Define to 1.
251 * config/alpha/nm-nbsd.h (CANNOT_STEP_BREAKPOINT): Define to 1.
252 * config/alpha/nm-osf.h (CANNOT_STEP_BREAKPOINT): Define to 1.
253
254 2002-10-17 David Carlton <carlton@math.stanford.edu>
255
256 * symfile.h: Add opaque declaration for struct obstack.
257 Declare obsavestring to take a const char *.
258 * symfile.c (obsavestring): Make first argument a const char *.
259
260 2002-10-16 Adam Fedor <fedor@gnu.org>
261
262 * breakpoint.c (parse_breakpoint_sals): Ignore ObjC method
263 names when matching breakpoints in current file.
264
265 2002-10-16 Kevin Buettner <kevinb@redhat.com>
266
267 * dwarf2read.c (dwarf2_invalid_pointer_size): New complaint.
268 (read_tag_pointer_type): Add address class support.
269 * gdbarch.sh (ADDRESS_CLASS_TYPE_FLAGS)
270 (ADDRESS_CLASS_TYPE_FLAGS_TO_NAME, ADDRESS_CLASS_NAME_TO_TYPE_FLAGS):
271 New methods.
272 * gdbarch.h, gdbarch.c: Regenerate.
273 * gdbtypes.c (address_space_name_to_int, address_space_int_to_name)
274 (make_type_with_address_space, recursive_type_dump): Add address
275 class support.
276 * gdbtypes.h (TYPE_FLAG_ADDRESS_CLASS_1, TYPE_FLAG_ADDRESS_CLASS_2)
277 (TYPE_FLAG_ADDRESS_CLASS_ALL, TYPE_ADDRESS_CLASS_1)
278 (TYPE_ADDRESS_CLASS_2, TYPE_ADDRESS_CLASS_ALL): New defines
279
280 2002-10-16 Klee Dienes <kdienes@apple.com>
281
282 * stabsread.c (read_tilde_fields): Use name[sizeof(vptr_name)-2]
283 to get the last character of a char[] buffer, not
284 name[sizeof(vptr_name)-1].
285
286 2002-10-14 Adam Fedor <fedor@gnu.org>
287
288 * symtab.h: New objc_specific struct.
289 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Handle ObjC.
290 (SYMBOL_DEMANGLED_NAME): Likewise.
291
292 2002-10-14 Adam Fedor <fedor@gnu.org>
293
294 * symfile.c (init_filename_language_table): Add ObjC file extension.
295
296 2002-10-14 Adam Fedor <fedor@gnu.org>
297
298 * utils.c (puts_filtered_tabular): New function.
299 (fprintf_symbol_filtered): Get ObjC demangled name.
300 * defs.h (puts_filtered_tabular): Declared.
301
302 2002-10-14 Kevin Buettner <kevinb@redhat.com>
303
304 * c-lang.h (c_type_print_varspec_prefix): Delete.
305 * c-typeprint.c (c_type_print_varspec_prefix): Make static. Add
306 ``need_post_space'' parameter. Adjust all callers.
307
308 2002-10-14 Daniel Jacobowitz <drow@mvista.com>
309
310 * config/mips/nm-irix4.h (HAVE_NONSTEPPABLE_WATCHPOINT): Define to 1.
311 * config/mips/nm-irix5.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
312 * config/mips/tm-embed.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
313 * config/pa/nm-hppah.h (HAVE_NONSTEPPABLE_WATCHPOINT): Likewise.
314
315 2002-10-13 Adam Fedor <fedor@gnu.org>
316
317 * source.c (print_source_lines): Update comments.
318
319 2002-10-13 Adam Fedor <fedor@gnu.org>
320
321 * valops.c (value_of_local): New function.
322 (value_of_this): Use it.
323 * value.h (value_of_local): Declared.
324
325 2002-10-13 Adam Fedor <fedor@gnu.org>
326
327 * parse.c: (length_of_subexp, prefixify_subexp): Handle
328 OP_MSGCALL, OP_SELECTOR, OP_NSSTRING, and OP_SELF.
329
330 2002-10-12 Adam Fedor <fedor@gnu.org>
331
332 * language.c (binop_result_type): Add language_objc to case.
333 (integral_type): Likewise.
334 (character_type): Likewise.
335 (string_type): Likewise.
336 (boolean_type): Likewise.
337 (structured_type): Likewise.
338 (binop_type_check): Likewise.
339
340 2002-10-11 Adam Fedor <fedor@gnu.org>
341
342 * printcmd.c (address_info): Print 'self' for ObjC.
343
344 2002-10-11 Adam Fedor <fedor@gnu.org>
345
346 * expression.h: New ops OP_NSSTRING, OP_SELECTOR, OP_MSGCALL, and
347 OP_SELF.
348
349 2002-10-11 Adam Fedor <fedor@gnu.org>
350
351 * language.h (CAST_IS_CONVERSION): Add language_objc.
352
353 2002-10-11 Adam Fedor <fedor@gnu.org>
354
355 * defs.h (enum language): Add language_objc.
356
357 2002-10-11 Klee Dienes <kdienes@apple.com>
358
359 * findvar.c (read_memory_typed_address): New function.
360 * gdbcore.h (read_memory_typed_address): Add prototype.
361 * blockframe.c (sigtramp_saved_pc): Use read_memory_typed_address
362 to read a value destined for a CORE_ADDR, not read_memory_integer.
363 * f-valprint.c (f77_get_dynamic_upperbound): Ditto.
364 (f77_get_dynamic_lowerbound): Ditto.
365
366 2002-10-11 Martin M. Hunt <hunt@redhat.com>
367
368 * utils.c (string_to_core_addr): After turning string into
369 a number, convert to a CORE_ADDR using INTEGER_TO_ADDRESS
370 which will do necessary sign-extension, etc.
371
372 2002-10-11 Daniel Jacobowitz <drow@mvista.com>
373
374 * c-exp.y (THIS): Delete token and grammar rule.
375 (yylex): Don't return THIS.
376 * cp-valprint.c (vtbl_ptr_name_old): Delete.
377 (cp_is_vtbl_ptr_type): Don't check vtbl_ptr_name_old.
378 * demangle.c (cplus_markers): Update comment. Put '$'
379 first. Remove CPLUS_MARKER.
380 (_initialize_demangler): Don't call set_cplus_marker_for_demangling.
381 * jv-exp.y (THIS): Delete token and grammar rule.
382 (yylex): Don't return THIS.
383 * mips-tdep.c (mips_dump_tdep): Don't dump CPLUS_MARKER.
384 * objc-exp.y (THIS): Delete token and grammar rule.
385 (yylex): Don't return THIS.
386 * p-exp.y (yylex): Remove reference to CPLUS_MARKER.
387 * stabsread.c (vptr_name, vb_name): Replace CPLUS_MARKER with '$'.
388 (read_member_functions): Likewise for opname.
389 (read_tilde_fields): Use is_cplus_marker.
390
391 * defs.h (CPLUS_MARKER): Don't define.
392 * config/tm-sysv4.h (CPLUS_MARKER): Likewise.
393 * config/i386/xm-i386sco.h (CPLUS_MARKER): Likewise.
394 * config/mips/tm-irix3.h (CPLUS_MARKER): Likewise.
395 * config/mips/tm-irix6.h (CPLUS_MARKER): Likewise.
396 * config/rs6000/tm-rs6000.h (CPLUS_MARKER): Likewise.
397
398 * config/i386/tm-i386v4.h: Delete file.
399 * config/djgpp/fnchange.lst: Delete tm-i386v4.h.
400 * config/i386/tm-i386sol2.h: Include "i386/tm-i386.h" instead.
401 * config/i386/tm-i386v42mp.h: Include "i386/tm-i386.h" instead.
402 * config/i386/tm-ptx.h: Include "i386/tm-i386.h" instead.
403 * config/i386/i386gnu.mt (TM_FILE): Use tm-i386.h.
404 * config/i386/i386sco5.mt (TM_FILE): Likewise.
405 * config/i386/i386v4.mt (TM_FILE): Likewise.
406 * config/i386/ncr3000.mt (TM_FILE): Likewise.
407
408 2002-10-10 Marko Mlinar <markom@opencores.org>
409
410 * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C,
411 accidentially not commited 2002-10-09
412 * gdbarch.h, gdbarch.c: Re-generate.
413
414 2002-10-09 Marko Mlinar <markom@opencores.org>
415
416 * infrun.c (resume): Convert #ifdef HAVE_NONSTEPPABLE_WATCHPOINT into C.
417 * gdbarch.sh (HAVE_NONSTEPPABLE_WATCHPOINT): Add.
418 * gdbarch.h, gdbarch.c: Re-generate.
419
420 2002-10-08 Petr Sorfa <petrs@caldera.com>
421
422 Revised and re-submitted by John Wolfe <jlw@caldera.com>
423
424 Move the Dwarf 2 abbrev table to a per-compilation-unit structure,
425 so we can work on more than one compilation unit at a time. This
426 helps prepare GDB to handle inter-CU die references.
427 * dwarf2read.c (ABBREV_HASH_SIZE): moved definition forward in
428 the code to be defined before struct comp_unit_head.
429 (comp_unit_head): Added new members - offset, cu_head,
430 begin_die, next and dwarf2_abbrevs.
431 (dwarf2_abbrevs): Removed single static var; now member of
432 struct comp_unit_head.
433 dwarf2_build_psymtabs_hard): Complete new struct comp_unit_head
434 members.
435 (psymtab_to_symtab_1): Changed to work with the new
436 struct comp_unit_head.
437 (dwarf2_read_abbrevs): Now accepts a cu_header parameter and
438 constructs the dwarf2_abbrevs[] inside the cu_header.
439 (dwarf2_empty_abbrev_table): Now expects a ptr to a
440 dwarf2_abbrev table to clean up.
441 (dwarf2_lookup_abbrev): Now accepts a cu_header parameter and
442 handling of dwarf2_abbrevs inside the cu_header.
443 (read_partial_die): Now supports the call to the new
444 dwarf2_lookup_abbrev.
445 (read_full_die): Now supports the call to the new
446 dwarf2_lookup_abbrev.
447
448 2002-10-06 Christopher Faylor <cgf@redhat.com>
449
450 * Makefile.in (install-gdbtk): Add missing continuation backslash to
451 insure that shell variables, such as "transformed_name" are propagated
452 to later shell statements in rule.
453
454 2002-10-06 Mark Kettenis <kettenis@gnu.org>
455
456 * config/i386/nm-i386sco.h: Add protection against
457 multiple-inclusion. Include "i386/nm-i386v.h".
458 (REGISTER_U_ADDR): Remove define.
459 (i386_register_u_addr): Remove prototype.
460
461 2002-10-04 Michael Snyder <msnyder@redhat.com>
462
463 * m32r-stub.c (handle_exception): Make sure exception is "trap"
464 before treating it as a single-step event.
465
466 2002-10-03 Adam Fedor <fedor@gnu.org>
467
468 * objc-lang.c: ARI fixes. Change string.h to gdb_string.h.
469 (objc_demangle): Remove assignment in if statements, Replace
470 free with xfree.
471 (add_msglist): Likewise.
472 (end_msglist): Likewise.
473 (complare_selectors): Likewise.
474 (selectors_info): Likewise.
475 (compare_classes): Likewise.
476 (classes_info): Likewise.
477 (print_object_command): Likewise.
478 (find_objc_msgcall_submethod): Replace PTR with void *.
479 * objc-lang.h: Remove check for __STDC__.
480
481 2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
482
483 * ui-out.h (ui_out_field_fmt_int): New prototype.
484 * ui-out.c (ui_out_field_fmt_int): New function allowing specification
485 of field width and alignment.
486 * stack.c (print_frame_info_base): When printing frame level, use
487 ui_out_field_fmt_int with a width of 2 and left alignment. Fix for
488 PR gdb/192
489
490 2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
491
492 * MAINTAINERS: Add self to Write After Approval list.
493
494 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
495
496 * infcmd.c (interrupt_target_command_wrapper): Delete.
497 (interrupt_target_command): Make non static.
498 (nofp_registers_info): Make static.
499 * stack.c (return_command_wrapper): Delete.
500 (return_command): Make non static.
501
502 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
503
504 * event-top.c (gdb_setup_readline): New function. Code moved from
505 _initialize_event_loop().
506 (_initialize_event_loop): Call gdb_setup_readline().
507
508 2002-10-02 Andrew Cagney <ac131313@redhat.com>
509
510 * infrun.c (resume): Convert #ifdef CANNOT_STEP_BREAKPOINT into C.
511 * gdbarch.sh (CANNOT_STEP_BREAKPOINT): Add.
512 * gdbarch.h, gdbarch.c: Re-generate.
513
514 2002-10-02 Daniel Jacobowitz <drow@mvista.com>
515
516 Fix PR gdb/778
517 * gdbtypes.c (fill_in_vptr_fieldno): Call check_typedef
518 before recursing.
519 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Check return value
520 of fill_in_vptr_fieldno.
521
522 2002-10-02 Elena Zannoni <ezannoni@redhat.com>
523
524 * inferior.h (registers_info, stepi_command, nexti_command,
525 continue_command, interrupt_target_command): Export from infcmd.c.
526 * frame.h (args_info, selected_frame_level_changed_hook,
527 return_command): Export from stack.c.
528 * v850ice.c (stepi_command, nexti_command, continue_command): use
529 prototypes from inferior.h.
530 * tracepoint.c (registers_info, args_info, locals_info): Use
531 prototypes from frame.h and inferior.h.
532 * Makefile.in (mi-main.o): Add dependency on frame.h.
533
534 2002-10-02 Andrew Cagney <ac131313@redhat.com>
535
536 * rs6000-tdep.c (rs6000_store_struct_return): Store struct_return
537 value in register 3 adjusted by ppc_gp0_regnum.
538
539 * rs6000-tdep.c (skip_prologue): Bias alloca_reg by ppc_gp0_regnum.
540
541 2002-10-02 Marko Mlinar <markom@opencores.org>
542
543 * MAINTAINERS: Add myself to the Write After Approval list.
544
545 2002-10-01 Alexandre Oliva <aoliva@redhat.com>
546
547 * mips-tdep.c (mips_find_abi_section): .mdebug.abi64 is the name
548 of the section for the N64 ABI, fixed.
549
550 * config/mips/tm-irix6.h: Include solib.h.
551
552 2002-10-01 Elena Zannoni <ezannoni@redhat.com>
553
554 * dwarf2read.c (dwarf_stack_op_name): Recognize more dwarf3 and
555 GNU operators.
556
557 2002-10-01 Andrew Cagney <ac131313@redhat.com>
558
559 * NEWS: Mention that MI syntax, selected by "mi" changed to "mi2"
560 and that "mi0" syntax has been removed.
561
562 2002-09-30 David Carlton <carlton@math.stanford.edu>
563
564 * Makefile.in (ppc-sysv-tdep.o): Depend on gdb_string_h.
565 * ppc-sysv-tdep.c: #include "gdb_string.h".
566 * remote-sds.c (getmessage): Add semicolon after 'retry' label to
567 pacify GCC.
568
569 2002-10-01 Andrew Cagney <ac131313@redhat.com>
570
571 * rs6000-tdep.c (rs6000_gdbarch_init): For powerpc:7400, fix
572 "vrsave"'s register number.
573
574 2002-09-30 Andrew Cagney <ac131313@redhat.com>
575
576 * mips-tdep.c (mips_frame_saved_pc): When a generic dummy frame,
577 use frame_unwind_signed_register to obtain the PC.
578 (mips_frame_chain): Handle a generic dummy frame.
579 (mips_init_extra_frame_info): When a generic dummy frame, don't
580 re-compute the frame base.
581 (mips_pop_frame): Handle generic dummy frames.
582 (mips_gdbarch_init): When generic dummy frames, set
583 use_generic_dummy_frames, push_dummy_frame to
584 generic_push_dummy_frame, pc_in_call_dummy to
585 generic_pc_in_call_dummy, and save_dummy_frame_top_of_stack to
586 generic_save_dummy_frame_tos.
587
588 2002-09-30 Andrew Cagney <ac131313@redhat.com>
589
590 * blockframe.c (generic_find_dummy_frame): Rewrite. Only test
591 against TOP when TOP was explictly set.
592 (generic_push_dummy_frame): Set TOP to zero.
593
594 2002-09-30 Elena Zannoni <ezannoni@redhat.com>
595
596 * event-loop.c (start_event_loop): Rename variable 'result' to
597 'gdb_result', to avoid conflicts with upcoming intepreters changes.
598
599 2002-09-30 Keith Seitz <keiths@redhat.com>
600
601 * gdb-events.sh (selected_thread_changed): New event.
602 * gdb-events.c: Regenerated.
603 * gdb-events.h: Regenerated.
604
605 2002-09-30 Hans-Peter Nilsson <hp@bitrange.com>
606
607 * MAINTAINERS: Add self to Write After Approval list.
608
609 2002-09-30 Fernando Nasser <fnasser@redhat.com>
610
611 * disasm.c: New file.
612 * disasm.h: New file.
613 * mi/mi-cmd-disas.c (gdb_dis_asm_read_memory): Moved to disasm.c.
614 (compare_lines): Ditto.
615 (dump_insns): Ditto.
616 (do_mixed_source_and_assembly): Moved to disasm.c. Added uiout
617 argument.
618 (do_assembly_only): Ditto.
619 (do_disassembly): Renamed to gdb_disassembly and moved to
620 disasm.c. Sdded uiout argument.
621 * Makefile.in: Add new files. Reorder SFILES list. Update
622 dependencies. Include libgdb.a later in the insight executable.
623
624 2002-09-29 Andrew Cagney <ac131313@redhat.com>
625
626 * config/djgpp/fnchange.lst: Rename bfd/elf64-alpha.c and
627 bfd/elf64-alpha-fbsd.c.
628
629 2002-09-29 Andrew Cagney <ac131313@redhat.com>
630
631 * config/djgpp/fnchange.lst: Rename i386gnu-nat.c and
632 i386gnu-tdep.c.
633
634 2002-09-29 Andrew Cagney <ac131313@redhat.com>
635
636 * gnu-nat.h (debug): Use __FILE__ and __LINE__ instead of
637 __FUNCTION__.
638 * gnu-nat.c (do_mach_notify_no_senders): Replace __FUNCTION__ with
639 function name.
640 (do_mach_notify_port_deleted, do_mach_notify_msg_accepted): Ditto.
641 (do_mach_notify_port_destroyed, do_mach_notify_send_once): Ditto.
642 (S_proc_setmsgport_reply, S_proc_getmsgport_reply): Ditto.
643 (S_msg_sig_post_reply): Ditto.
644
645 2002-09-28 Corinna Vinschen <vinschen@redhat.com>
646
647 * sh-tdep.c (sh_use_struct_convention): Use definition according
648 to ABI.
649 (sh_push_arguments): Store in register with correct endianess.
650 (sh_default_store_return_value): Ditto.
651 (sh_gdbarch_init): Set sizeof long double to 8.
652
653 2002-09-27 Mark Kettenis <kettenis@gnu.org>
654
655 * defs.h: Move inclusion of "ansidecl.h" before "gdb_locale.h".
656 Fix some whitespace problems.
657
658 2002-09-27 David Carlton <carlton@math.stanford.edu>
659
660 * Makefile.in (cris-tdep.o): Depend on gdb_string_h.
661 (mcore-tdep.o): Ditto.
662 (ns32k-tdep.o): Ditto.
663 (ns32knbsd-tdep.o): Ditto.
664 (sh3-rom.o): Ditto.
665 (vax-tdep.o): Ditto.
666 * cris-tdep.c: #include "gdb_string.h"
667 * mcore-tdep.c: Ditto.
668 * ns32k-tdep.c: Ditto.
669 * ns32knbsd-tdep.c: Ditto.
670 * sh3-rom.c: Ditto.
671 * vax-tdep.c: Ditto.
672
673 2002-09-27 David Carlton <carlton@math.stanford.edu>
674
675 * config/djgpp/fnchange.lst: Add entries for
676 gdb/testsuite/gdb.c++/m-static files.
677
678 2002-09-27 Jim Wilson <wilson@redhat.com>
679
680 * MAINTAINERS: Add myself to the Write After Approval list.
681
682 2002-09-26 Martin M. Hunt <hunt@redhat.com>
683
684 * mips-tdep.c (find_proc_desc): Initialize startaddr.
685
686
687 2002-09-26 Andrew Cagney <ac131313@redhat.com>
688
689 * rs6000-tdep.c (rs6000_frame_chain): Don't chain past the dummy
690 frame.
691
692 2002-09-26 Andrew Cagney <ac131313@redhat.com>
693
694 * rs6000-tdep.c (rs6000_extract_struct_value_address): Return 0.
695 (rs6000_struct_return_address): Delete variable.
696 (rs6000_store_struct_return): Update.
697 (rs6000_gdbarch_init): Set extract_struct_value_address instead of
698 deprecated_extract_struct_value_address.
699 (rs6000_frame_align): New function.
700 (rs6000_gdbarch_init): Set frame_align.
701
702 2002-09-26 Andrew Cagney <ac131313@redhat.com>
703
704 From Grace Sainsbury <graces@redhat.com>:
705 * Makefile.in (gdbtk-main.o): New target.
706 (gdb.o): New target.
707 (main_h): Define.
708 (main.o): Update dependencies.
709 (gdb$(EXEEXT)): Add gdb.o.
710 (SUBDIR_GDBTK_SRCS): Add gdbtk-main.c.
711 (SUBDIR_GDBTK_ALL, SUBDIR_GDBTK_UNINSTALL): Set.
712 (SUBDIR_GDBTK_CLEAN): Set.
713 (install-gdbtk): Install the insight binary.
714 (uninstall-gdbtk): New target.
715 (all-gdbtk, clean-gdbtk): New rule.
716 * top.c (use_windows): Default to zero.
717 * main.c: Include "main.h".
718 (main): Delete.
719 (struct captured_main_args): Delete.
720 (gdb_main): New function.
721 * main.h: New file.
722 * gdb.c: New File.
723
724 2002-09-25 Andrew Cagney <cagney@redhat.com>
725
726 * frame.c: Include "gdb_string.h" and "builtin-regs.h".
727 (frame_map_regnum_to_name): New function.
728 (frame_map_name_to_regnum): New function.
729 * frame.h (frame_map_name_to_regnum): Declare.
730 (frame_map_regnum_to_name): Declare.
731 * builtin-regs.c (builtin_reg_map_regnum_to_name): New function.
732 * builtin-regs.h (builtin_reg_map_regnum_to_name): Declare.
733 * parse.c: Do not include "builtin-regs.h".
734 (target_map_name_to_register): Delete function.
735 (write_dollar_variable): Use frame_map_name_to_regnum.
736 * parser-defs.h (target_map_name_to_register): Delete declaration.
737 * expprint.c: Include "frame.h".
738 (print_subexp): Use frame_map_regnum_to_name.
739 * eval.c (evaluate_subexp_standard): Use frame_map_regnum_to_name.
740 * infcmd.c (registers_info): Use frame_map_name_to_regnum.
741
742 2002-09-25 Andrew Cagney <ac131313@redhat.com>
743
744 * rs6000-tdep.c (rs6000_frame_saved_pc): If the link register
745 wasn't saved, and the next innermost frame is a dummy, return the
746 dummy frame's link register.
747
748 2002-09-24 Jim Blandy <jimb@redhat.com>
749
750 Fix from Paul Breed:
751 * main.c (captured_main): Add a `break' after the case for 'b'.
752
753 2002-09-24 Keith Seitz <keiths@redhat.com>
754
755 * varobj.c (c_type_of_child): Use get_target_type instead
756 of TYPE_TARGET_TYPE.
757
758 2002-09-22 Fernando Nasser <fnasser@redhat.com>
759
760 * source.c (get_current_or_default_source_symtab_and_line): Remove
761 function.
762 (set_default_source_symtab_and_line): New function. Attempts to
763 determine a source file to list lines from if one is not currently
764 defined.
765 (get_current_source_symtab_and_line): Initialize sal.pc and
766 sal.end fields.
767 (set_current_source_symtab_and_line): Mark argument as const.
768 * source.h: Update declarations and comments.
769 * linespec.c (decode_line_1): Replace call to removed routine above.
770 * stack.c (print_frame_info_base): Ditto.
771 * cli/cli-cmds.c (edit_command): Ditto.
772 (list_command): Ditto.
773
774 2002-09-22 Fernando Nasser <fnasser@redhat.com>
775
776 * source.c (get_current_or_default_source_symtab_and_line): Initialize
777 sal.pc and sal.end fields.
778 (get_current_or_default_source_symtab_and_line): Ditto.
779 * breakpoint.c (parse_breakpoint_sals): Use correct accessor function
780 so we do not cause a new source symtab to be searched for (reverting an
781 unintentional change from the 2002-09-20 patch).
782 * scm-lang.c (scm_unpac): Ditto.
783
784 2002-09-21 Andrew Cagney <cagney@redhat.com>
785
786 * complaints.c (symfile_explanations): Remove new-line from
787 ``isolated_message''.
788 (vcomplaint): When ISOLATED_MESSAGE, force a line break.
789 (clear_complaints): When a SUBSEQUENT_MESSAGE, force a line break.
790
791 2002-09-20 Nick Clifton <nickc@redhat.com>
792
793 * NEWS: Announce that V850EA ISA is no longer supported.
794 * v850-tdep.c: Remove reference to bfd_mach_v850ea.
795
796 2002-09-20 David Carlton <carlton@math.stanford.edu>
797
798 * Makefile.in (c-lang.o): Correct dependencies.
799 (utils.o): Gather dependencies.
800 (charset.o): Move.
801 * c-lang.c: #include "gdb_string.h"
802
803 2002-09-20 Fernando Nasser <fnasser@redhat.com>
804
805 From 2002-07-02 George Helffrich <george@gly.bris.ac.uk>
806 * cli/cli-cmds.c (list_command): New function. Implements the new
807 cli edit command.
808 (_init_cli_cmds): Add new command definition.
809 * gdb.1: Document edit command.
810 * doc/gdb.texinfo: Document edit command.
811
812 2002-09-20 Fernando Nasser <fnasser@redhat.com>
813
814 * source.c: Make global variables current_source_symtab and
815 current_source_line static.
816 (list_command): Moved to cli/cli-cmds.c.
817 (ambiguous_line_spec): Moved to cli/cli-cmds.c.
818 (get_first_line_listed): New accessor function.
819 (get_lines_to_list): New accessor function.
820 (get_current_source_symtab_and_line): New function. Retrieves the
821 position in the source code that we consider current.
822 (get_current_or_default_source_symtab_and_line): New function.
823 Like the above but attempts to determine a default position if one
824 is not currently defined.
825 (set_current_source_symtab_and_line): New function. Sets the source
826 code position considered current and returns the previously set one.
827 (clear_current_source_symtab_and_line): Reset stored information about
828 a current source line.
829 (_initialize_source): Remove registration for the "list" command and
830 its alias.
831 * source.h: Add declarations for the new functions above.
832 * symtab.h: Remove declarations for the global variables mentioned
833 above.
834 * breakpoint.c (parse_breakpoint_sals): Use accessor functions to
835 obtain current source line.
836 * linespec.c (decode_line_1): Ditto.
837 * macroscope.c (default_macro_scope): Ditto.
838 * scm-lang.c (scm_unpac): Ditto.
839 * stack.c (print_frame_info_base): Ditto.
840 * symfile.c (clear_symtab_users): Ditto.
841 * symtab.c (decode_line_spec): Ditto.
842 * cli/cli-cmds.c (list_command): Moved here from source.c.
843 (ambiguous_line_spec): Moved here from source.c.
844 (_init_cli_cmds): Add definition for "list" and its alias.
845 * Makefile.in: Update dependencies.
846
847 2002-09-20 Corinna Vinschen <vinschen@redhat.com>
848
849 * h8300-tdep.c (h8300_examine_prologue): Match saved regs location
850 with what gcc thinks is correct.
851
852 2002-09-20 Corinna Vinschen <vinschen@redhat.com>
853
854 * h8300-tdep.c (h8300_examine_prologue): Fix loop for saved regs in
855 multiple register push instruction.
856
857 2002-09-19 Jim Blandy <jimb@redhat.com>
858
859 Add support for distinct host and target character sets.
860 * charset.c, charset.h: New files.
861 * c-exp.y: #include "charset.h".
862 (yylex): Convert character and string literals to the target
863 character set, before returning them as the semantic value of the
864 token.
865 * c-lang.c: #include "charset.h".
866 (c_emit_char): Use charset-specific methods to recognize
867 characters with backslash escape forms, to decide which characters
868 to print literally and which to print using numeric escape
869 sequences, and to convert target characters to host characters
870 before printing.
871 * utils.c: #include "charset.h".
872 (no_control_char_error): New function.
873 (parse_escape): Use charset-specific methods to recognize
874 backslash escapes, parse `control character' notation, and convert
875 characters from the host character set to the target character set.
876 * configure.in: Set the default host character set.
877 Check where to find iconv, and what its argument types might be.
878 * acinclude.m4 (AM_ICONV): New macro, borrowed from GCC.
879 * Makefile.in (SFILES): List charset.c.
880 (COMMON_OBS): List charset.o.
881 (charset.o): New rule.
882 (charset_h): New header dependency variable.
883 (c-lang.o, utils.o, c-exp.tab.o): Note dependency on $(charset_h).
884 (LIBICONV): New variable, set by configure.
885 (CLIBS): Include $(LIBICONV) here.
886 * aclocal.m4, config.in, configure: Regenerated.
887
888 2002-09-19 Joel Brobecker <brobecker@gnat.com>
889
890 * ada-exp.y: Add missing semicolons to end rules. Fixes a
891 bison 1.35 warning.
892
893 2002-09-19 Richard Earnshaw <rearnsha@arm.com>
894
895 * gdb_mbuild.sh: New file.
896
897 2002-09-19 Andrew Cagney <ac131313@redhat.com>
898
899 * objc-exp.y, objc-lang.h, objc-lang.c: Fix copyright notice.
900
901 2002-09-18 Andrew Cagney <ac131313@redhat.com>
902
903 * breakpoint.c, c-exp.y, defs.h, elfread.c, expression.h,
904 jv-exp.y, language.c, language.h, p-exp.y, parse.c, parser-defs.h,
905 printcmd.c, source.c, stabsread.c, symfile.c, symtab.h, utils.c,
906 valops.c, value.h: Revert previous change.
907
908 2002-09-18 Michael Snyder <msnyder@redhat.com>
909
910 Preliminary support for Objective-C:
911 * defs.h (language_objc): New enum value.
912 (puts_filtered_tabular): Declaration only, exported from utils.c.
913 (skip_quoted): Delete, declared in completer.h.
914 * c-exp.y: Include completer.h.
915 * p-exp.y: Ditto.
916 * jv-exp.y: Ditto.
917 * expression.h (OP_MSGCALL, OP_SELECTOR, OP_SELF, OP_NSSTRING):
918 New operator enum values.
919 * language.h (CAST_IS_CONVERSION): Test for language_objc.
920 * language.c (binop_result_type): Handle language_objc case.
921 (integral_type, character_type, string_type, boolean_type,
922 structured_type, binop_type_check): Ditto.
923 * symtab.h (SYMBOL_OBJC_DEMANGLED_NAME): Define.
924 (struct objc_specific): Add to general_symbol_info.
925 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Add objc initialization.
926 (SYMBOL_DEMANGLED_NAME): Handle objc case.
927 * parser-defs.h (struct objc_class_str): New struct type.
928 (start_msglist, end_msglist, add_msglist): Declaration only,
929 exported from objc-lang.c.
930 * value.h (value_of_local, value_nsstring,
931 call_function_by_hand_expecting_type): Exported from valops.c.
932 * valops.c (find_function_addr): Export.
933 (call_function_by_hand_expecting_type): New function.
934 (value_of_local): New function.
935 * symfile.c (init_filename_language_table): Add ".m" extension
936 for Objective-C.
937 * utils.c (puts_filtered_tabular): New function.
938 (fprintf_symbol_filtered): Add objc demangling support (disabled).
939 (set/show demangle): Extend help-string to refer to ObjC.
940 * elfread.c (elf_symtab_read): Skip Objective-C special symbols.
941 * stabsread.c (symbol_reference_defined): Objective-C symbols
942 may contain colons: make allowances when scanning stabs strings
943 for colons.
944 (objc_find_colon): New function.
945 * printcmd.c (address_info): If language == objc then print
946 "self" instead of "this".
947 * parse.c (length_of_subexp): Handle new operators OP_MSGCALL,
948 OP_NSSTRING, and OP_SELF.
949 (prefixify_subexp): Ditto.
950 * source.c (print_source_lines): Mention objc in comment.
951 * breakpoint.c (parse_breakpoint_sals): Recognize Objective-C
952 method names.
953
954 2002-09-18 Andrew Cagney <ac131313@redhat.com>
955
956 * complaints.h: Update copyright.
957 (struct complaints): Declare.
958 (struct complaint): Make `message' constant.
959 (internal_complaint): Declare.
960 (complaint): Declare.
961 (complaint_root): Delete declaration.
962 (symfile_complaints): Delete declaration.
963 (struct complaints): Add opaque declaration.
964 (clear_complaints): Add a complaints parameter.
965 * complaints.c: Update copyright.
966 (enum complaint_series): Define.
967 (complaint_root): Delete.
968 (struct complaints): Define.
969 (complaint_sentinel, symfile_complaint_book): New variables.
970 (symfile_explanations, symfile_complaints): New variables.
971 New variables.
972 (get_complaints): New function.
973 (vcomplaint): New function.
974 (complaint): New function.
975 (internal_complaint): New function.
976 (complain): Call vcomplain with symfile_complaint.
977 (clear_complaints): Rewrite.
978 (_initialize_complaints): Use add_setshow_command.
979 * Makefile.in (complaints.o): Update dependencies.
980 * symfile.c (syms_from_objfile): Add symfile_complaints parameter
981 to call to clear_complaints.
982 (new_symfile_objfile, reread_symbols): Ditto.
983 (oldsyms_complaint): Delete.
984 (empty_symtab_complaint, unknown_option_complaint): Delete.
985 (free_named_symtabs): Use complaint instead of complain.
986
987 2002-09-18 Michael Snyder <msnyder@redhat.com>
988
989 Contributed by Apple Computer, Inc. Merged with current sources
990 by Adam Fedor <fedor@doc.com> [cagney].
991
992 * objc-lang.c: First clean-up round: comments, indentation.
993 * objc-lang.h: Ditto.
994 * objc-lang.y: Ditto.
995
996 2002-09-18 Andrew Cagney <ac131313@redhat.com>
997
998 * maint.c (maintenance_internal_error): Print the parameter as the
999 error message.
1000 (maintenance_internal_warning): New function.
1001 (_initialize_maint_cmds): Add command `maint internal-warning'.
1002
1003 * defs.h (internal_warning, internal_vwarning): Declare.
1004 * utils.c (struct internal_problem): Define.
1005 (internal_vproblem): New function.
1006 (internal_warning): New function.
1007 (internal_vwarning): New function.
1008 (internal_warning_problem, internal_error_problem): New variables.
1009 (internal_verror): Just call internal_vproblem.
1010
1011 2002-09-18 Michael Snyder <msnyder@redhat.com>
1012
1013 * objc-lang.c: New file, support for Objective-C.
1014 Preliminary check-in, not yet integrated into gdb.
1015 * objc-lang.h: New file.
1016 * objc-exp.y: New file.
1017
1018 2002-09-18 Andrew Cagney <ac131313@redhat.com>
1019
1020 * infrun.c (signal_stop_update): Convert definition to ISO C.
1021 (signal_print_update): Ditto.
1022 (signal_pass_update): Ditto.
1023 * inflow.c (terminal_save_ours): Ditto.
1024
1025 * h8300-tdep.c (h8300_gdbarch_init): Use C instead of C++
1026 comments.
1027
1028 * config/djgpp/fnchange.lst: Handle name clashes between
1029 bfd/coff-tic30.c, bfd/coff-tic4x.c, bfd/coff-tic54x.c and
1030 bfd/coff-tic80.c.
1031
1032 * i386-linux-tdep.h: Fix tipo.
1033
1034 2002-09-18 Adam Fedor <fedor@gnu.org>
1035
1036 * MAINTAINERS: Add myself to the Write After Approval list.
1037
1038 2002-09-18 Jim Blandy <jimb@redhat.com>
1039
1040 * dbxread.c, mdebugread.c: Revert my change of 2001-10-23. Moving
1041 texthigh and textlow to reader-specific structs caused
1042 objfile_relocate to miss them. This is fixable, but the work that
1043 the change was supposed to prepare GDB for never got done anyway.
1044
1045 2002-09-18 David Carlton <carlton@math.stanford.edu>
1046
1047 * MAINTAINERS: Alphabetize Write After Approval list.
1048
1049 2002-09-18 Daniel Jacobowitz <drow@mvista.com>
1050
1051 Fix PR gdb/709
1052 * values.c (value_static_field): Call read_var_value.
1053
1054 2002-09-18 Andrew Cagney <ac131313@redhat.com>
1055
1056 * valops.c (hand_function_call): Align the initial stack pointer
1057 and STRUCT_ADDR using frame_align. When STRUCT_RETURN and
1058 FRAME_ALIGN_P, use STRUCT_ADDR to obtain the called function's
1059 return value.
1060 * mips-tdep.c (mips_frame_align): New function.
1061 (mips_gdbarch_init): Set frame_align.
1062 * gdbarch.sh (FRAME_ALIGN): New method.
1063 * gdbarch.h, gdbarch.c: Re-generate.
1064
1065 2002-09-18 Michal Ludvig <mludvig@suse.cz>
1066
1067 * x86-64-linux-nat.c (x86_64_regmap): Added CS and SS
1068 registers.
1069
1070 2002-09-17 Andrew Cagney <ac131313@redhat.com>
1071
1072 * NEWS: Mention that MIPS $fp behavior changed.
1073 * mipsnbsd-tdep.c (mipsnbsd_cannot_fetch_register): Delete
1074 reference to FP_REGNUM.
1075 (mipsnbsd_cannot_store_register): Ditto.
1076 * mips-linux-nat.c: Update copyright.
1077 (mips_linux_cannot_fetch_register): Delete reference to FP_REGNUM.
1078 (mips_linux_cannot_store_register): Ditto.
1079 * mips-linux-tdep.c (supply_gregset): Ditto. Update copyright.
1080 * config/mips/tm-mips.h: Update copyright.
1081 (FP_REGNUM): Delete macro.
1082 (MIPS_REGISTER_NAMES): Replace "fp" with "".
1083 * config/mips/tm-irix6.h (FP_REGNUM): Delete macro.
1084 * mips-tdep.c (mips_gdbarch_init): Set read_fp to mips_read_sp.
1085 (mips_r3041_reg_names, mips_r3051_reg_names)
1086 (mips_r3081_reg_names): Replace "fp" with "".
1087 Fix PR gdb/480.
1088
1089 2002-09-17 Theodore A. Roth <troth@verinet.com>
1090
1091 * gdb/avr-tdep.c(avr_scan_prologue): Fix bad call to
1092 generic_read_register_dummy() (PR gdb/703).
1093 (avr_push_return_address): #if 0 out unused vars.
1094 (avr_gdbarch_init): Enable use of avr_push_return_address().
1095
1096 2002-09-17 Michael Snyder <msnyder@redhat.com>
1097
1098 * m32r-stub.c (restore_and_return): Postpone restoring of PSW.
1099 RTE will take care of it.
1100
1101 2002-09-17 Andrew Cagney <ac131313@redhat.com>
1102
1103 * arch-utils.c (legacy_virtual_frame_pointer): If FP_REGNUM is
1104 invalid, return SP_REGNUM.
1105
1106 2002-09-17 Michael Snyder <msnyder@redhat.com>
1107
1108 * mips-tdep.c (mips_pop_frame): Read saved values of floating
1109 point registers without sign extension.
1110
1111 2002-09-17 Andrew Cagney <cagney@redhat.com>
1112
1113 * blockframe.c (deprecated_read_register_dummy): Rename
1114 generic_read_register_dummy.
1115 * frame.c (frame_unwind_signed_register): New function.
1116 (frame_unwind_unsigned_register): New function.
1117 * frame.h (frame_unwind_signed_register): Declare.
1118 (frame_unwind_unsigned_register): Declare.
1119 (deprecated_read_register_dummy): Rename
1120 generic_read_register_dummy.
1121
1122 * h8300-tdep.c (h8300_frame_chain): Update.
1123 (h8300_frame_saved_pc): Update.
1124 * xstormy16-tdep.c (xstormy16_frame_saved_pc): Update.
1125 * rs6000-tdep.c (rs6000_frame_saved_pc): Update.
1126 * s390-tdep.c (s390_frame_saved_pc_nofix): Update.
1127 (s390_frame_chain): Update.
1128 * v850-tdep.c (v850_find_callers_reg): Update.
1129 (v850_frame_saved_pc): Update.
1130 * m32r-tdep.c (m32r_init_extra_frame_info): Update.
1131 (m32r_find_callers_reg): Update.
1132 (m32r_frame_saved_pc): Update.
1133 * sh-tdep.c (sh_find_callers_reg): Update.
1134 (sh64_get_saved_pr): Update.
1135 (sh_init_extra_frame_info): Update.
1136 (sh_init_extra_frame_info): Update.
1137 (sh64_init_extra_frame_info): Update.
1138 (sh64_init_extra_frame_info): Update.
1139 * mcore-tdep.c (mcore_find_callers_reg): Update.
1140 (mcore_frame_saved_pc): Update.
1141 (mcore_init_extra_frame_info): Update.
1142 * i386-tdep.c (i386_frame_saved_pc): Update.
1143 * ia64-tdep.c (ia64_frame_saved_pc): Update.
1144 (ia64_init_extra_frame_info): Update.
1145 (ia64_init_extra_frame_info): Update.
1146 * d10v-tdep.c (d10v_frame_saved_pc): Update.
1147 * cris-tdep.c (cris_init_extra_frame_info): Update.
1148 * avr-tdep.c (avr_frame_chain): Update.
1149 (avr_init_extra_frame_info): Update.
1150 (avr_frame_saved_pc): Update.
1151 * arm-tdep.c (arm_find_callers_reg): Update.
1152 (arm_init_extra_frame_info): Update.
1153 (arm_frame_saved_pc): Update.
1154
1155 2002-09-17 Tom Tromey <tromey@redhat.com>
1156
1157 * c-lang.c (c_emit_char): Don't treat \0 specially unless quoter
1158 is "'".
1159
1160 2002-09-17 Corinna Vinschen <vinschen@redhat.com>
1161
1162 * MAINTAINERS: Remove "non multi-arched" text from h8300.
1163 * h8300-tdep.c (h8300_next_prologue_insn) Renamed from
1164 NEXT_PROLOGUE_INSN.
1165 (h8300_examine_prologue): Call h8300_next_prologue_insn instead of
1166 NEXT_PROLOGUE_INSN.
1167
1168 2002-09-16 Joel Brobecker <brobecker@gnat.com>
1169
1170 * osfsolib.c: Remove file, replaced by solib-osf.c.
1171 * Makefile.in: Remove compilation rules for osfsolib.c.
1172
1173 2002-09-16 David Carlton <carlton@math.stanford.edu>
1174
1175 * cp-valprint.c (cp_print_class_method): Correct args to
1176 check_stub_method_group.
1177
1178 2002-09-16 Corinna Vinschen <vinschen@redhat.com>
1179
1180 * h8300-tdep.c: Multiarch. Drop `set machine' command in favor of
1181 `set architecture'. Unify naming convention of functions.
1182 (h8300_skip_prologue): Improve prologue analysis.
1183 (h8300_push_arguments): Rewritten to more closely match GCC's
1184 bizarre argument-passing behavior, along with the comment describing
1185 said behavior.
1186 * remote-hms.c (hms_regnames): Don't use NUM_REGS in definition.
1187 * config/h8300/tm-h8300.h: Multiarch. Just keep stuff needed by
1188 sim, remote-e7000.c, remote-hms.c and remote.c
1189
1190 2002-09-15 Mark Kettenis <kettenis@gnu.org>
1191
1192 * i386-tdep.c (gdb_print_insn_i386): Removed.
1193 (i386_print_insn): New function.
1194 (i386_gdbarch_init): Set print_insn to i386_print_insns.
1195 (_initialize_i386_tdep): Don't initialize tm_print_insn and
1196 tm_print_insn_info.
1197
1198 2002-09-14 Mark Kettenis <kettenis@gnu.org>
1199
1200 * gdbtypes.c (check_stub_method_group): Initialize found_stub to
1201 zero.
1202
1203 2002-09-14 Corinna Vinschen <vinschen@redhat.com>
1204
1205 * arch-utils.c (legacy_pc_in_sigtramp): Move preprocessor expression
1206 for IN_SIGTRAMP to here. Use IN_SIGTRAMP only if it's defined.
1207 Guard usage of SIGTRAMP_START() by using SIGTRAMP_START_P.
1208
1209 2002-09-13 Christopher Faylor <cgf@redhat.com>
1210
1211 * win32-nat.c (child_create_inferior): Honor 'tty' command.
1212
1213 2002-09-13 Daniel Jacobowitz <drow@mvista.com>
1214
1215 * gdbtypes.c (check_stub_method): Make static.
1216 (check_stub_method_group): New function.
1217 * gdbtypes.h: Update prototypes.
1218 * cp-support.c: New file.
1219 * cp-support.h: New file.
1220
1221 * stabsread.c: Include "cp-abi.h" and "cp-support.h".
1222 (update_method_name_from_physname): New function.
1223 (read_member_functions): Correct method names for operators
1224 and v3 constructors/destructors. Separate v2 constructors and
1225 destructors.
1226 * Makefile.in (stabsread.o): Update dependencies.
1227 (SFILES): Add cp-support.c.
1228 (COMMON_OBS): Add cp-support.o.
1229 (cp_support_h, cp-support.o): Add.
1230
1231 * cp-valprint.c (cp_print_class_method): Call
1232 check_stub_method_group instead of check_stub_method. Remove
1233 extraneous QUITs.
1234 * p-valprint.c (pascal_object_print_class_method): Likewise.
1235 * valops.c (search_struct_method): Likewise.
1236 (find_method_list, value_struct_elt_for_reference): Likewise.
1237
1238 2002-09-13 Andrew Cagney <cagney@redhat.com>
1239
1240 * gdbarch.sh (SIGTRAMP_END): Change to a predicate function.
1241 * gdbarch.h, gdbarch.c: Regenerate.
1242
1243 2002-09-13 Andrew Cagney <ac131313@redhat.com>
1244
1245 * frame.c (find_saved_register): Delete function.
1246 * frame.h (find_saved_register): Delete declaration.
1247 Fix PR gdb/631.
1248
1249 Fri Sep 13 14:59:55 2002 Andrew Cagney <cagney@redhat.com>
1250
1251 * mips-tdep.c (read_next_frame_reg): Re-hack using
1252 frame_register_unwind.
1253
1254 Fri Sep 13 07:42:09 2002 Andrew Cagney <cagney@redhat.com>
1255
1256 * mips-tdep.c (mips_get_saved_register): Re-hack using
1257 frame_register_unwind.
1258
1259 2002-09-12 Joel Brobecker <brobecker@gnat.com>
1260
1261 * gdbarch.sh (NAME_OF_MALLOC): New variable in the architecture
1262 vector. Will be useful for Interix.
1263 * gdbarch.h, gdbarch.c: Regenerate.
1264
1265 * valops.c (value_allocate_space_in_inferior): Replace hard-coded
1266 name of the malloc function by NAME_OF_MALLOC.
1267
1268 2002-09-12 Joel Brobecker <brobecker@gnat.com>
1269
1270 * value.h (find_function_in_inferior): Add const keyword to
1271 one of the parameters. Allows us to invoke this function with
1272 a const char *.
1273 * valops.c (find_function_in_inferior): Likewise.
1274
1275 2002-09-12 Joel Brobecker <brobecker@gnat.com>
1276
1277 * exec.c (xfer_memory): Fix compilation warning with old versions
1278 of GCC.
1279 * tracepoint.c (trace_find_tracepoint_command): Likewise.
1280
1281 2002-09-12 David Carlton <carlton@math.stanford.edu>
1282
1283 * symtab.h: Run through gdb_indent.h.
1284 Add 2002 to Copyright year list.
1285
1286 2002-09-12 Alan Modra <amodra@bigpond.net.au>
1287
1288 * x86-64-tdep.c (_initialize_x86_64_tdep): Don't use hard-coded
1289 mach constants.
1290 * MAINTAINERS: Add myself to write after approval list.
1291
1292 2002-09-11 J. Brobecker <brobecker@gnat.com>
1293
1294 * osabi.c (gdb_osabi_name): Add entry for GDB_OSABI_INTERIX.
1295
1296 2002-09-11 J. Brobecker <brobecker@gnat.com>
1297
1298 * osabi.h (gdb_osabi): Add new GDB_OSABI_INTERIX enum value for
1299 Interix.
1300
1301 2002-06-05 Paul N. Hilfinger <hilfingr@otisco.mckusick.com>
1302
1303 * procfs.c (do_detach): Clear current signal, not just fault.
1304 Corrects problem with breakpoint trap signal leaking to detached
1305 process on Tru64.
1306
1307 2002-09-10 Michael Snyder <msnyder@redhat.com>
1308
1309 * buildsym.c (finish_block): Protect against null pointer.
1310
1311 2002-09-10 Andrew Cagney <cagney@redhat.com>
1312
1313 * infcmd.c (default_print_registers_info): Send all output to
1314 ``file'' instead of ``gdb_stdout''.
1315
1316 2002-09-10 Michael Snyder <msnyder@redhat.com>
1317
1318 * mips-tdep.c (mips_extract_struct_value_address): Make val a
1319 LONGEST, and use signed register read (addresses are sign-
1320 extended for mips).
1321
1322 2002-09-10 Stephane Carrez <stcarrez@nerim.fr>
1323
1324 * event-loop.c (gdb_do_one_event): Make public.
1325 * event-loop.h (gdb_do_one_event): Declare.
1326
1327 2002-09-10 Jeff Law <law@redhat.com>
1328
1329 * infttrace.c (child_resume): Simplify and rework to avoid
1330 TT_PROC_CONTINUE.
1331
1332 2002-09-09 Fred Fish <fnf@intrinsity.com>
1333
1334 * printcmd.c (print_scalar_formatted): "len" is the number of
1335 target bytes, NOT the number of target bits.
1336
1337 2002-09-09 Elena Zannoni <ezannoni@redhat.com>
1338
1339 From: Emmanuel Thome' <thome@lix.polytechnique.fr>
1340 * top.c (init_main): Set rl_terminal_name.
1341
1342 2002-09-08 Aidan Skinner <aidan@velvet.net>
1343
1344 * ada-lang.c (ada_array_bound, ada_type_match,
1345 _initialize_ada_language): Fix K&R definitions.
1346 * ada-tasks.c (get_current_task): Fix K&R definitions.
1347 * ada-valprint.c (adjust_type_signedness): Fix K&R definitions.
1348
1349 2002-09-07 Christopher Faylor <cgf@redhat.com>
1350
1351 * MAINTAINERS: Remove CE from list of maintainership responsibilities.
1352 Add XP.
1353
1354 2002-09-06 Mark Kettenis <kettenis@gnu.org>
1355
1356 * i386-tdep.c (i386_register_virtual_type,
1357 i386_register_convertible, i386_register_convert_to_virtual,
1358 i386_register_comvert_to_raw): Use FP_REGNUM_P and SSE_REGNUM_P
1359 instead of IS_FP_REGNUM and IS_SSE_REGNUM.
1360 (i386_gdbarch_init): Fix comment. Add comments on calls that set
1361 sp_regnum, fp_regnum, pc_regnum, ps_regnum and fp0_regnum.
1362 Don't set push_arguments twice.
1363
1364 * i386bsd-tdep.c (i386bsd_init_abi): Set sigtramp_start and
1365 sigtramp_end to i386bsd_sigtramp_start and i386bsd_sigtramp_end.
1366 * i386nbsd-tdep.c (i386nbsd_init_abi): Set sigtramp_start and
1367 sigtramp_end to NULL.
1368 * config/i386/tm-fbsd.h (SIGTRAMP_START, SIGTRAMP_END): Remove
1369 defines.
1370 (i386bsd_sigtramp_start, i386_sigtramp_end): Remove prototypes.
1371
1372 * i386nbsd-tdep.c (i386nbsd_pc_in_sigtramp): Remove spurious
1373 whitespace.
1374
1375 * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): New methods.
1376 * gdbarch.h, gdbarch.c: Re-generate.
1377 * blockframe.c (find_pc_sect_partial_function): Convert to use
1378 SIGTRAMP_START_P predicate.
1379
1380 2002-09-05 Michael Snyder <msnyder@redhat.com>
1381
1382 * arm-tdep.c (arm_init_extra_frame_info): Distinguish between
1383 generic_dummy_frame method and old method. Also distinguish
1384 between ARM_FP_REGNUM and THUMB_FP_REGNUM.
1385 (arm_extract_return_value): Use new regcache method.
1386
1387 * mips-tdep.c (mips_n32n64_push_arguments): Remove alignment
1388 adjustment that doesn't conform to the ABI.
1389 (mips_extract_struct_value_address): Retrieve V0_REGNUM from
1390 saved regcache, not from current regcache.
1391
1392 2002-09-05 Andrew Cagney <ac131313@redhat.com>
1393
1394 * NEWS: Update for 5.3. Add new section ``Changes since 5.3''.
1395 * README: Update.
1396
1397 2002-09-04 Jason Thorpe <thorpej@wasabisystems.com>
1398
1399 * arm-tdep.c (arm_addr_bits_remove): Don't check for Thumb mode
1400 if arm_apcs_32 is false.
1401
1402 2002-09-04 Andrew Cagney <ac131313@redhat.com>
1403
1404 GDB 5.3 branch created.
1405
1406 2002-09-03 Theodore A. Roth <troth@verinet.com>
1407
1408 * gdb/avr-tdep.c (avr_gdbarch_init): Use
1409 generic_unwind_get_saved_register.
1410
1411 2002-09-03 David Carlton <carlton@math.stanford.edu>
1412
1413 * dwarf2read.c (dwarf2_add_member_fn): Add the 'type'
1414 argument (PR gdb/653). Update call to smash_to_method_type.
1415 (read_structure_scope): Update call to dwarf2_add_member_fn.
1416
1417 2002-09-03 Michal Ludvig <mludvig@suse.cz>
1418
1419 * x86-64-linux-tdep.c: Include gdb_string.h
1420 * x86-64-linux-nat.c: Ditto.
1421
1422 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
1423
1424 * ada-exp.y (yyname, yyrule): Remap global variables that appear
1425 when YYDEBUG is set to 1.
1426 * c-exp.y: Likewise.
1427 * f-exp.y: Likewise.
1428 * jv-exp.y: Likewise.
1429 * m2-exp.y: Likewise.
1430 * p-exp.y: Likewise.
1431
1432 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
1433
1434 * Makefile.in (i386nbsd-tdep.o): Add $(solib_svr4_h) to
1435 dependency list.
1436 * i386nbsd-tdep.c (i386nbsdelf_init_abi): Set
1437 solib_svr4_fetch_link_map_offsets to
1438 nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
1439 * config/i386/nbsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
1440 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
1441 * config/i386/nbsdelf.mh (NATDEPFILES): Remove solib.o,
1442 solib-svr4.o, and solib-legacy.o.
1443 * config/i386/tm-nbsd.h: Include solib.h.
1444
1445 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
1446
1447 * configure.tgt (i[3456]86-*-netbsdelf*): Merge with...
1448 (i[3456]86-*-netbsd*): ...this. Set gdb_target to nbsd.
1449 (i[3456]86-*-openbsd*): Make this a separate entry. Add a
1450 comment noting that this needs its own target configuration.
1451 * config/i386/nbsd.mt: New file.
1452 * config/i386/nbsdaout.mt: Remove.
1453 * config/i386/nbsdelf.mt: Ditto.
1454 * config/i386/tm-nbsdaout.h: Ditto.
1455
1456 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
1457
1458 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): New function.
1459 (i386nbsd_pc_in_sigtramp): Rewrite to use i386nbsd_sigtramp_offset.
1460 (i386nbsd_init_abi): Don't initialize tdep->sigtramp_start or
1461 tdep->sigtramp_end.
1462 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end): Remove.
1463 * config/i386/tm-nbsd.h (SIGTRAMP_START, SIGTRAMP_END)
1464 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove.
1465
1466 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
1467
1468 * Makefile.in (i386nbsd-tdep.o): Add $(arch_utils_h),
1469 $(i386_tdep_h), and $(nbsd_tdep_h) to dependency list.
1470 * i386-tdep.h (i386bsd_init_abi): New prototype.
1471 * i386bsd-tdep.c (i386bsd_init_abi): Remove "static" from
1472 function declaration.
1473 (_initialize_i386bsd_tdep): Don't register OS ABI handlers
1474 for NetBSD-a.out or NetBSD-ELF.
1475 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end)
1476 (i386nbsd_sc_pc_offset, i386nbsd_sc_sp_offset)
1477 (i386nbsd_init_abi, i386nbsdelf_init_abi): Move to...
1478 * i386nbsd-tdep.c: ...here. Include arch-utils.h, i386-tdep.h,
1479 and nbsd-tdep.h.
1480 (i386nbsd_pc_in_sigtramp): New function.
1481 (i386nbsd_init_abi): Set gdbarch_pc_in_sigtramp to
1482 i386nbsd_pc_in_sigtramp.
1483 (_initialize_i386nbsd_tdep): Register i386nbsd_init_abi
1484 and i386nbsdelf_init_abi OS ABI handlers.
1485 * config/i386/nbsdaout.mt (TDEPFILES): Add nbsd-tdep.o.
1486 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
1487
1488 2002-09-02 Mark Kettenis <kettenis@gnu.org>
1489
1490 * i386-linux-nat.c (dummy_sse_values): Only try to fill in the SSE
1491 registers if the target really has them.
1492
1493 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
1494
1495 * Makefile.in (mipsnbsd-tdep.o): Use $(nbsd_tdep_h) rather
1496 than nbsd-tdep.h.
1497
1498 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
1499
1500 * Makefile.in (alphanbsd-tdep.o): Add $(frame_h) to dependency
1501 list.
1502 * alphanbsd-tdep.c (alphanbsd_sigcontext_addr)
1503 (alphanbsd_skip_sigtramp_frame): New functions.
1504 (alphanbsd_init_abi): Set tdep->skip_sigtramp_frame to
1505 alphanbsd_skip_sigtramp_frame. Set tdep->sigcontext_addr
1506 to alphanbsd_sigcontext_addr.
1507
1508 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
1509
1510 * Makefile.in (mipsnbsd-tdep.o): Add nbsd-tdep.h to dependency
1511 list.
1512 (nbsd-tdep.o): Add $(gdb_string_h) to dependency list.
1513 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): Use
1514 nbsd_pc_in_sigtramp.
1515 * mipsnbsd-tdep.c: Include nbsd-tdep.h.
1516 (mipsnbsd_pc_in_sigtramp): Use nbsd_pc_in_sigtramp.
1517 * nbsd-tdep.c: Include gdb_string.h.
1518 (nbsd_pc_in_sigtramp): New function.
1519 * nbsd-tdep.h (nbsd_pc_in_sigtramp): New prototype.
1520 * ppcnbsd-tdep.c (ppcnbsd_pc_in_sigtramp): New function.
1521 (ppcnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
1522 ppcnbsd_pc_in_sigtramp.
1523 * shnbsd-tdep.c (shnbsd_pc_in_sigtramp): New function.
1524 (shnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
1525 shnbsd_pc_in_sigtramp.
1526 * sparcnbsd-tdep.c (sparcnbsd_init_abi_elf): Set
1527 gdbarch_pc_in_sigtramp to nbsd_pc_in_sigtramp.
1528 * config/mips/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
1529
1530 2002-08-30 Pierre Muller <muller@ics.u-strasbg.fr>
1531
1532 * breakpoint.c (breakpoint_init_inferior): Reset the val field of
1533 watchpoints to NULL.
1534 (insert_breakpoints): set val field of watchpoints if NULL.
1535
1536
1537 2002-08-29 Jim Blandy <jimb@redhat.com>
1538
1539 * symtab.c (lookup_symbol_aux): In the cases where we find a
1540 minimal symbol of an appropriate name and use its address to
1541 select a symtab to read and search, use `name' (as passed to us)
1542 as the demangled name when searching the symtab's global and
1543 static blocks, not the minsym's name.
1544
1545 2002-08-29 Keith Seitz <keiths@redhat.com>
1546
1547 * stack.c (print_frame_info_base): Always set current_source_symtab
1548 and current_source_line.
1549
1550 2002-08-29 Donn Terry <donnte@microsoft.com>
1551
1552 * proc-api.c (rw_table): Fix typo in #ifdef PCSHOLD (missing S).
1553
1554 2002-08-28 Keith Seitz <keiths@redhat.com>
1555
1556 * stack.c (select_frame): Add FIXME concerning selected-frame
1557 events.
1558 (select_frame_command): Send selected-frame-level-changed
1559 event notification, but only if the level actually changed.
1560 (up_silently_base): Add selected-frame-level-changed event
1561 notification.
1562 (down_silently_base): Likewise.
1563
1564 2002-08-28 Andrew Cagney <ac131313@redhat.com>
1565
1566 * Makefile.in: Update dependencies for all gdb/*.c files.
1567
1568 2002-08-27 Tom Tromey <tromey@redhat.com>
1569
1570 * Makefile.in (osabi.o, i387-tdep.o, i386-linux-nat.o, lin-lwp.o,
1571 ax-gdb.o, signals.o, jv-valprint.o, c-valprint.o, cp-abi.o):
1572 Update dependencies.
1573 * i387-tdep.c: Include gdb_string.h.
1574 * osabi.c: Likewise.
1575 * i386-linux-nat.c: Likewise.
1576 * lin-lwp.c: Likewise.
1577 * ax-gdb.c: Likewise.
1578 * signals/signals.c: Likewise.
1579 * jv-valprint.c: Likewise.
1580 * p-lang.c: Likewise.
1581 * c-valprint.c: Likewise.
1582 * cp-abi.c: Likewise.
1583
1584 2002-08-27 Elena Zannoni <ezannoni@redhat.com>
1585
1586 * cli/cli-script.h (copy_command_lines): Export.
1587 * breakpoint.c: Include cli/cli-script.h.
1588 * Makefile.in (breakpoint.o): Update dependencies.
1589
1590 2002-08-26 Michael Snyder <msnyder@redhat.com>
1591
1592 * breakpoint.c (insert_breakpoints): Protect all references
1593 to 'process_warning'. Shorten long lines.
1594
1595 2002-08-26 Joel Brobecker <brobecker@gnat.com>
1596
1597 * cli/cli-script.c (copy_command_lines): New function.
1598 * defs.h (copy_command_lines): Export.
1599 * testsuite/gdb.base/commands.exp: New tests for commands
1600 attached to a temporary breakpoint, and for commands that
1601 delete the breakpoint they are attached to.
1602
1603 2002-08-26 Michael Snyder <msnyder@redhat.com>
1604
1605 * breakpoint.c (bpstat_stop_status): Instead of copying the
1606 pointer to the breakpoint commands struct, make a new copy
1607 of the struct and point to that.
1608 (bpstat_clear): Free the commands struct.
1609 (bpstat_clear_actions): Free the commands struct.
1610 (bpstat_do_actions): Free the command actions. Also execute
1611 the local cleanups, instead of deleting them.
1612 (delete_breakpoint): Leave the commands field of the bpstat
1613 chain alone -- it will be freed later.
1614
1615 2002-08-26 Kevin Buettner <kevinb@redhat.com>
1616
1617 * rs6000-tdep.c (altivec_register_p): Restore function inadvertently
1618 deleted in 2002-08-20 commit. This function is still used by
1619 ppc-linux-nat.c.
1620
1621 2002-08-26 Keith Seitz <keiths@redhat.com>
1622
1623 * gdb-events.sh: Add selected-frame-level-changed event.
1624 * gdb-events.c: Regenerated.
1625 * gdb-events.h: Regenerated.
1626
1627 2002-08-26 Stephane Carrez <stcarrez@nerim.fr>
1628
1629 Fix PR gdb/393:
1630 * inflow.c (terminal_save_ours): New function to save terminal
1631 settings.
1632 * inferior.h (terminal_save_ours): Declare.
1633 * target.c (debug_to_terminal_save_ours): New function.
1634 (cleanup_target): Defaults to_terminal_save_ours.
1635 (update_current_target): Inherit to_terminal_save_ours.
1636 (setup_target_debug): Set to_terminal_save_ours.
1637 * target.h (target_terminal_save_ours): New to save terminal settings.
1638 (target_ops): New member to_terminal_save_ours.
1639 * gnu-nat.c (init_gnu_ops): Set to_terminal_save_ours.
1640 * hpux-thread.c (init_hpux_thread_ops): Likewise.
1641 * inftarg.c (init_child_ops): Likewise.
1642 * m3-nat.c (init_m3_ops): Likewise.
1643 * procfs.c (init_procfs_ops): Likewise.
1644 * wince.c (init_child_ops): Likewise.
1645 * win32-nat.c (init_child_ops): Likewise.
1646 * sol-thread.c (init_sol_thread_ops): Likewise.
1647
1648 2002-08-26 Mark Kettenis <kettenis@gnu.org>
1649
1650 * i386-tdep.c (i386_store_return_value): Undeprecate. Convert to
1651 use regcache_* functions.
1652 (i386_gdbarch_init): Set store_return_value instead of
1653 deprecated_store_return_value.
1654
1655 * regcache.c (regcache_raw_write_signed,
1656 regcache_raw_write_unsigned): New functions.
1657 * regcache.h (regcache_raw_write_signed,
1658 regcache_raw_write_unsigned): New prototypes.
1659
1660 2002-08-25 Andrew Cagney <ac131313@redhat.com>
1661
1662 * Makefile.in (c-exp.tab.o, jv-exp.tab.o, f-exp.tab.o)
1663 (m2-exp.tab.o, p-exp.tab.o, ada-exp.tab.o): Move to before the
1664 source file dependencies. Cleanup corresponding generator rules.
1665
1666 2002-08-25 Andrew Cagney <ac131313@redhat.com>
1667
1668 * regcache.h (register_offset_hack): Declare.
1669 (regcache_cooked_read_using_offset_hack): Declare.
1670 (regcache_cooked_write_using_offset_hack): Declare.
1671
1672 * regcache.c (register_offset_hack): New function.
1673 (regcache_cooked_read_using_offset_hack): New function.
1674 (regcache_cooked_write_using_offset_hack): New function.
1675 (regcache_dump): Check that the registers, according to their
1676 offset, are packed hard against each other.
1677 (cooked_xfer_using_offset_hack): New function.
1678
1679 2002-08-25 Andrew Cagney <ac131313@redhat.com>
1680
1681 * regcache.c (struct regcache_descr): Add field register_type.
1682 (init_legacy_regcache_descr): Pass a pre-allocated regcache_descr
1683 in as a parameter
1684 (init_regcache_descr): Initialize register_type. Pass the descr
1685 to init_legacy_regcache_descr. Use register_type instead of
1686 REGISTER_VIRTUAL_TYPE.
1687 (register_type): New function.
1688 (regcache_dump): Replace REGISTER_VIRTUAL_TYPE with register_type.
1689 * regcache.h (register_type): Declare.
1690
1691 2002-08-25 Andrew Cagney <ac131313@redhat.com>
1692
1693 * rs6000-tdep.c (rs6000_gdbarch_init): Set store_struct_return
1694 instead of deprecated_store_return_value. Fix fallout from
1695 2002-08-23 Andrew Cagney <cagney@redhat.com>.
1696
1697 2002-08-25 Andrew Cagney <ac131313@redhat.com>
1698
1699 * regcache.c (max_register_size): New function.
1700 (init_legacy_regcache_descr): Ensure that max_register_size is
1701 large enough for REGISTER_VIRTUAL_SIZE.
1702 * regcache.h (max_register_size): Declare.
1703
1704 2002-08-24 Andrew Cagney <ac131313@redhat.com>
1705
1706 * rs6000-tdep.c (rs6000_gdbarch_init): Use deprecated version of
1707 store_return_value.
1708 (e500_extract_return_value): Change type of valbuf pointer to
1709 void.
1710
1711 2002-08-24 Mark Kettenis <kettenis@gnu.org>
1712
1713 * PROBLEMS: Clarify problems with FreeBSD's compiler and suggest
1714 workaround.
1715
1716 * valprint.c (print_longest) [CC_HAS_LONG_LONG &&
1717 PRINTF_HAS_LONG_LONG]: Cast val_long to (long long) or (unsigned
1718 long long) to prevent compiler warning on 64-bit systems.
1719
1720 2002-08-23 Andrew Cagney <cagney@redhat.com>
1721
1722 * gdbarch.sh (STORE_RETURN_VALUE): Add regcache parameter.
1723 (DEPRECATED_STORE_RETURN_VALUE): New method.
1724 (EXTRACT_RETURN_VALUE): Make buffer parameter a void pointer.
1725 * gdbarch.h, gdbarch.c: Re-generate.
1726
1727 * values.c (set_return_value): Pass current_regcache to
1728 STORE_RETURN_VALUE.
1729 * arch-utils.h (legacy_store_return_value): Declare.
1730 * arch-utils.c (legacy_store_return_value): New function.
1731 (legacy_extract_return_value): Update parameters.
1732
1733 * config/pa/tm-hppa.h (DEPRECATED_STORE_RETURN_VALUE): Rename
1734 STORE_RETURN_VALUE.
1735 * config/pa/tm-hppa64.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1736 * config/sparc/tm-sparc.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1737 * config/z8k/tm-z8k.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1738 * config/sparc/tm-sparclet.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1739 * config/mn10200/tm-mn10200.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1740 * config/m68k/tm-linux.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1741 * config/m68k/tm-delta68.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1742 * config/m32r/tm-m32r.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1743 * config/h8500/tm-h8500.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1744 * config/h8300/tm-h8300.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1745
1746 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
1747 * i386-tdep.c (i386_extract_return_value): Update.
1748 * arch-utils.c (legacy_extract_return_value): Update.
1749 * frv-tdep.c (frv_gdbarch_init): Update.
1750 * cris-tdep.c (cris_gdbarch_init): Update.
1751 * d10v-tdep.c (d10v_gdbarch_init): Update.
1752 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
1753 * m68k-tdep.c (m68k_gdbarch_init): Update.
1754 * mcore-tdep.c (mcore_gdbarch_init): Update.
1755 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
1756 * s390-tdep.c (s390_gdbarch_init): Update.
1757 * sparc-tdep.c (sparc_gdbarch_init): Update.
1758 * sh-tdep.c (sh_gdbarch_init): Update.
1759 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
1760 * v850-tdep.c (v850_gdbarch_init): Update.
1761 * avr-tdep.c (avr_gdbarch_init): Update.
1762 * ia64-tdep.c (ia64_gdbarch_init): Update.
1763 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
1764 * vax-tdep.c (vax_gdbarch_init): Update.
1765 * alpha-tdep.c (alpha_gdbarch_init): Update.
1766 * arm-tdep.c (arm_gdbarch_init): Update.
1767 * mips-tdep.c (mips_gdbarch_init): Update.
1768 * i386-tdep.c (i386_gdbarch_init): Update.
1769
1770 2002-08-23 Andrew Cagney <ac131313@redhat.com>
1771
1772 * config/djgpp/fnchange.lst: Add entries for bfd/elf32-ppcqnx.c,
1773 bfd/elf32-ppc.c, bfd/elf32-sh.c and bfd/elf32-shqnx.c.
1774
1775 2002-08-24 Mark Kettenis <kettenis@gnu.org>
1776
1777 * PROBLEMS: Refer to GDB 5.3 instead of 5.2. Mention FreeBSD
1778 problems.
1779
1780 2002-08-23 Joel Brobecker <brobecker@gnat.com>
1781
1782 * infrun.c (handle_inferior_event): Move a comment outside of a
1783 function call, in order to avoid indent reformatting this part
1784 of the code in an unreadable way.
1785
1786 2002-08-23 Grace Sainsbury <graces@redhat.com>
1787
1788 * infrun.c (normal_stop, proceed): Remove call to print_sys_errmsg
1789 when breakpoints fail. Move general breakpoint error messages to
1790 insert_breakpoints.
1791 * breakpoint.c (insert_breakpoints): Change warnings when
1792 breakpoints are nto inserted to specify the type. Remove call to
1793 memory_error when hardware breakpoints can't be inserted. Remove
1794 multiple calls to warning so all messages are sent to the user at
1795 once.
1796 (delete_breakpoints): Make insert error messsages more explicit.
1797
1798 2002-08-23 Daniel Jacobowitz <drow@mvista.com>
1799
1800 * ChangeLog: Move gdbserver entries after GDB 5.2 to
1801 gdbserver/ChangeLog.
1802
1803 2002-08-23 Mark Kettenis <kettenis@gnu.org>
1804
1805 * i386-tdep.c: Include "objfiles.h".
1806 (i386_svr4_init_abi): Set in_solib_call_trampoline and
1807 skip_trampoline_code.
1808 * config/i386/tm-i386v4.h: Don't include "config/tm-sysv4.h".
1809 (CPLUS_MARKER): Define to '.'.
1810
1811 * linux-proc.c (struct linux_corefile_thread_data): Add num_notes
1812 member.
1813 (linux_corefile_thread_callback): Increase args->num_notes.
1814 (linux_make_note_section): Initialize thread_args.num_notes, and
1815 use it to determine whether notes for any threads were created.
1816
1817 2002-08-23 Donn Terry <donnte@microsoft.com>
1818
1819 * proc-api.c (rw_table): Do not include a row for PCDSTOP if the
1820 corresponding macro is not defined. Likewise for PCNICE, PCSHOLD
1821 and PCUNKILL.
1822 (write_with_trace): Conditionalize out the switch branch handling
1823 PCSHOLD if the corresponding macro is not defined. Likewise for
1824 PRSABORT and PRSTOP.
1825 This change will be needed by the Interix port.
1826
1827 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
1828
1829 * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): use
1830 write_register wherever possible instead of manipulating the
1831 register bytes directly.
1832 Assign VALUE_CONTENTS to a variable and use that.
1833 The GPR numbers are now dependent on the architecture.
1834
1835 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
1836
1837 * rs6000-tdep.c (struct rs6000_framedata): Add saved_ev and
1838 ev_offset fields.
1839 (skip_prologue): Add support for BookE/e500 instructions.
1840 (e500_extract_return_value): New function.
1841 (frame_get_saved_regs): Add support for saving ev registers and
1842 pseudo gpr's.
1843 (e500_store_return_value): New function.
1844 (rs6000_gdbarch_init): Move up default intializations of
1845 deprecated_extract_return_value and store_return_value. Overwrite
1846 init of store_return_value with e500 specific version.
1847 Set extract_return_value for e500.
1848
1849 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
1850
1851 * blockframe.c (generic_call_dummy_register_unwind): Use
1852 regcache_cooked_read to catch cases in which the variable is
1853 stored in a pseudo register.
1854
1855 2002-08-22 Andrew Cagney <cagney@redhat.com>
1856
1857 * NEWS: Mention that the i960 has been made obsolete.
1858 * Makefile.in (SFILES): Delete remote-nrom.c, remote-nindy.c and
1859 i960-tdep.c
1860 (remote-nrom.o): Obsolete target.
1861 (remote-nindy.o, i960-tdep.o): Ditto.
1862 * remote-nrom.c: Make file obsolete.
1863 * remote-nindy.c, remote-vx960.c: Ditto.
1864 * config/i960/vxworks960.mt, config/i960/nindy960.mt: Ditto.
1865 * config/i960/mon960.mt, config/i960/tm-i960.h: Ditto.
1866 * config/i960/tm-vx960.h, config/i960/tm-nindy960.h: Ditto.
1867 * config/i960/tm-mon960.h, i960-tdep.c: Ditto.
1868 * configure.tgt: Make i960-*-bout*, i960-nindy-coff*,
1869 i960-*-coff*, i960-nindy-elf*, i960-*-elf*, i960-*-nindy* and
1870 i960-*-vxworks* obsolete.
1871 * MAINTAINERS: Note that the i960 is obsolete.
1872
1873 2002-08-21 Corinna Vinschen <vinschen@redhat.com
1874
1875 * aix-thread.c (aix_thread_detach): Disable thread debugging on
1876 detach to allow reinitialization.
1877
1878 2002-08-22 Andrew Cagney <ac131313@redhat.com>
1879
1880 * MAINTAINERS: Change the s390 target to s390-linux-gnu (second
1881 attempt).
1882
1883 2002-08-22 Jim Blandy <jimb@redhat.com>
1884
1885 * coffread.c (coff_symfile_read): Don't try to read the line
1886 number table from disk if the image file doesn't have a symbol
1887 table; we'll never actually look at the info anyway, and Windows
1888 ships DLL's with bogus file offsets for the line number data.
1889
1890 2002-08-21 Elena Zannoni <ezannoni@redhat.com>
1891
1892 * rs6000-tdep.c (rs6000_gdbarch_init): Figure out whether we have
1893 an e500 executable.
1894
1895 2002-08-21 Michael Snyder <msnyder@redhat.com>
1896
1897 * mips-tdep.c (MSYMBOL_IS_SPECIAL): Replace macro with function.
1898 (MSYMBOL_SIZE): Replace macro with function.
1899 (DEFAULT_MIPS_TYPE): Delete unused macro.
1900 * config/mips/tm-mips.h (DEFAULT_MIPS_TYPE): Delete unused macro.
1901 * config/mips/tm-embed.h (DEFAULT_MIPS_TYPE): Delete unused macro.
1902
1903 2002-08-21 Jim Blandy <jimb@redhat.com>
1904
1905 * valops.c (value_cast): Simplify and correct logic for doing a
1906 static cast from a pointer to a base class to a pointer to a
1907 derived class.
1908
1909 2002-08-21 Andrew Cagney <ac131313@redhat.com>
1910
1911 * infcmd.c (default_print_registers_info): Replace
1912 do_registers_info.
1913 (registers_info): Use gdbarch_print_registers_info instead of
1914 DO_REGISTERS_INFO.
1915 * inferior.h (default_print_registers_info): Replace
1916 do_registers_info.
1917 * gdbarch.sh (PRINT_REGISTERS_INFO): New method.
1918 (DO_REGISTERS_INFO): Change to a predicate function.
1919 * gdbarch.h, gdbarch.c: Regenerate.
1920
1921 2002-08-21 Keith Seitz <keiths@redhat.com>
1922
1923 * gdb-events.sh: Add target-changed event.
1924 * gdb-events.c: Regenerated.
1925 * gdb-events.c: Regenerated.
1926 * valops.c (value_assign): Add target-changed event notification
1927 to inlval_register, lval_memory, and lval_reg_frame_relative.
1928
1929 2002-08-21 Joel Brobecker <brobecker@gnat.com>
1930
1931 * NEWS: Add an entry regarding the improvement of the next/step
1932 operation on Alpha Tru64 multi-processor machines.
1933
1934 2002-08-21 Andrew Cagney <ac131313@redhat.com>
1935
1936 * Makefile.in: Update dependencies for mi/ cli/ and tui/
1937 directores.
1938 * Makefile.in: Update all _h macro definitions.
1939 * Makefile.in (install-gdbtk): Move to install section.
1940 (rdi-share/libangsd.a): Move to end of file.
1941
1942 2002-08-19 Andrew Cagney <ac131313@redhat.com>
1943
1944 * frame.c (frame_register_unwind): When a register, set addrp to
1945 the register's byte.
1946
1947 2002-08-20 Michael Snyder <msnyder@redhat.com>
1948
1949 * mips-tdep.c (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): These are only
1950 used locally, so move them from the target machine header to here.
1951 (mips_set_processor_type, mips_register_name, mips32_next_pc,
1952 mips16_next_pc, cached_proc_desc, mips_set_processor_type):
1953 Make static.
1954 * config/mips/tm-mips.h (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Delete.
1955
1956 2002-08-20 Andrew Cagney <cagney@redhat.com>
1957
1958 * NEWS: Mention that the Apollo line was made obsolete.
1959 * configure.tgt: Make m68*-apollo*-bsd*, m68*-hp-bsd*, and
1960 m68*-hp-hpux* obsolete.
1961 * configure.host: Make m68*-apollo*-sysv*, m68*-apollo*-bsd*,
1962 m68*-hp-bsd* and m68*-hp-hpux* obsolete.
1963 * buildsym.c (make_blockvector): Make static.
1964 * buildsym.h (make_blockvector): Make extern declaration obsolete.
1965 * Makefile.in (HFILES_NO_SRCDIR): Remove dst.h
1966 (ALLDEPFILES): Remove dstread.c.
1967 (dstread.o): Obsolete make rule.
1968 * dstread.c: Makefile obsolete.
1969 * dst.h: Ditto.
1970 * config/m68k/hp300hpux.mt: Ditto.
1971 * config/m68k/hp300hpux.mh: Ditto.
1972 * config/m68k/hp300bsd.mt: Ditto.
1973 * config/m68k/hp300bsd.mh: Ditto.
1974 * config/m68k/apollo68b.mt: Ditto.
1975 * config/m68k/apollo68v.mh: Ditto.
1976 * config/m68k/apollo68b.mh: Ditto.
1977
1978 2002-08-20 Michael Snyder <msnyder@redhat.com>
1979
1980 * mips-tdep.c (mips_in_return_stub): Make static.
1981 (mips_gdbarch_init): Set in_solib_return_trampoline.
1982 * config/mips/tm-mips.h (IN_SOLIB_RETURN_TRAMPOLINE): Delete.
1983
1984 2002-08-20 Michael Snyder <msnyder@redhat.com>
1985
1986 * gdbarch.sh (IN_SOLIB_RETURN_TRAMPOLINE): Add.
1987 * gdbarch.c, gdbarch.h: Regenerate.
1988 * arch-utils.c, arch-utils.h (generic_in_solib_return_trampoline):
1989 Add.
1990 * infrun.c (IN_SOLIB_RETURN_TRAMPOLINE): Delete default definition.
1991
1992 2002-08-20 Michael Snyder <msnyder@redhat.com>
1993
1994 * mips-tdep.c (mips_skip_stub, mips_in_call_stub): Make static.
1995 (mips_gdbarch_init): Set skip_trampoline_code,
1996 in_solib_call_trampoline.
1997 * config/mips/tm-mips.h (REGISTER_NAME): Delete.
1998 (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE): Delete.
1999
2000 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
2001
2002 * ppc-tdep.h (struct gdbarch_tdep): Add ev registers.
2003
2004 * rs6000-tdep.c (rs6000_register_virtual_type): Return 64 bit
2005 vector type for ev registers.
2006 (e500_pseudo_register_read): New function.
2007 (e500_pseudo_register_write): New function.
2008 (e500_dwarf2_reg_to_regnum): New function.
2009 (PPC_UISA_NOFP_SPRS): New macro.
2010 (PPC_EV_REGS): New macro.
2011 (PPC_GPRS_PSEUDO_REGS): New macro.
2012 (registers_e500): New register set for e500.
2013 (variants): Add e500 variant.
2014 (rs6000_gdbarch_init): Move setting of pc, sp, fp regnums to
2015 before setting architectural dependent variations. Initialize ev
2016 registers numbers. Add case for e500 architecture. Set the
2017 number of pseudo registers.
2018
2019 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
2020
2021 * rs6000-tdep.c: Clean up comments.
2022
2023 2002-08-20 Andrew Cagney <cagney@redhat.com>
2024
2025 * h8300-tdep.c: Re-indent file.
2026
2027 2002-08-20 Jim Blandy <jimb@redhat.com>
2028
2029 * Makefile.in (LDFLAGS): Allow the configure script to establish a
2030 default for this.
2031
2032 2002-08-20 Keith Seitz <keiths@redhat.com>
2033
2034 * breakpoints.c (watch_command_1): Use internal breakpoint
2035 when setting a watchpoint_scope breakpoint.
2036
2037 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
2038
2039 * gdbtypes.c (build_builtin_type_vec64): Add name to type.
2040 (build_builtin_type_vec64i): Ditto.
2041 (build_builtin_type_vec128): Ditto.
2042 (build_builtin_type_vec128i): Ditto.
2043
2044 2002-08-19 Michael Snyder <msnyder@redhat.com>
2045
2046 * config/mips/tm-mips.h (ELF_MAKE_MSYMBOL_SPECIAL): Delete.
2047 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Change into functions.
2048 (FIX_CALL_DUMMY, PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME,
2049 POP_FRAME, INIT_EXTRA_FRAME_INFO): Delete.
2050 (CALL_DUMMY_START_OFFSET, CALL_DUMMY_BREAKPOINT_OFFSET,
2051 CALL_DUMMY_ADDRESS): Delete.
2052 * mips-tdep.c (mips_elf_make_msymbol_special, mips_msymbol_size,
2053 mips_msymbol_is_special, mips_fix_call_dummy): New functions.
2054 (mips_gdbarch_init): Set elf_make_msymbol_special, pop_frame,
2055 push_dummy_frame, fix_call_dummy, init_extra_frame_info,
2056 push_return_address.
2057 (mips_register_raw_size, mips_eabi_use_struct_convention,
2058 mips_n32n64_use_struct_convention, mips_o32_use_struct_convention,
2059 mips_o32_reg_struct_has_addr, mips_frame_saved_pc, mips_frame_chain,
2060 mips_init_extra_frame_info, mips_eabi_push_arguments,
2061 mips_n32n64_push_arguments, mips_push_return_address,
2062 mips_push_dummy_frame, mips_pop_frame, mips_skip_prologue,
2063 mips_breakpoint_from_pc, mips_call_dummy_address): Make static.
2064
2065 2002-08-19 Michael Snyder <msnyder@redhat.com>
2066
2067 * mips-tdep.c (mips_frame_num_args): New function.
2068 (mips_gdbarch_init): Set frame_chain, frameless_function_invocation,
2069 frame_saved_pc, frame_args_address, frame_locals_address,
2070 frame_num_args, and frame_args_skip.
2071 * config/mips/tm-mips.h (FRAME_CHAIN, FRAMELESS_FUNCTION_INVOCATION,
2072 FRAME_SAVED_PC, FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS,
2073 FRAME_NUM_ARGS, FRAME_ARGS_SKIP): Delete.
2074 * config/mips/tm-mipsv4.h (FRAME_CHAIN_VALID): Delete.
2075
2076 2002-08-20 Michael Snyder <msnyder@redhat.com>
2077
2078 * config/mips/tm-mips.h (STORE_STRUCT_RETURN): Delete.
2079 (EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
2080 * mips-tdep.c (mips_store_struct_return): New function.
2081 (mips_extract_struct_value_address): New function.
2082 (mips_gdbarch_init): Set store_struct_return and
2083 extract_struct_value_address.
2084
2085 2002-08-20 David Carlton <carlton@math.stanford.edu>
2086
2087 * dwarf2read.c (dwarf2_build_psymtabs): Check that
2088 dwarf_line_offset is nonzero before creating dwarf_line_buffer.
2089 (read_file_scope): Check that line_header is nonzero before
2090 decoding macro information.
2091
2092 2002-08-20 Mark Kettenis <kettenis@gnu.org>
2093
2094 * i386-tdep.h (FP_REGNUM_P): Change such that we don't incorrectly
2095 flag the general-purpose registers as floating-point on targets
2096 that don't support the floating-point registers.
2097
2098 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
2099
2100 * rs6000-tdep.c (altivec_register_p): Delete.
2101 (rs6000_do_altivec_registers): Delete.
2102 (rs6000_altivec_registers_info): Delete.
2103 (rs6000_do_registers_info): Delete.
2104 (_initialize_rs6000_tdep): Remove command 'info powerpc altivec'.
2105 (rs6000_gdbarch_init): Remove setting of do_registers_info.
2106
2107 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
2108
2109 * infcmd.c (do_registers_info): Print vector registers in hex
2110 format only.
2111 (print_vector_info): Check that printing registers
2112 makes sense.
2113 (print_float_info): Ditto.
2114
2115 2002-08-20 Andrew Cagney <ac131313@redhat.com>
2116
2117 * mips-tdep.c (mips_gdbarch_init): Update.
2118 (mips_o32_extract_return_value): Rewrite.
2119 (mips_o32_store_return_value): Rewrite.
2120 (mips_o32_xfer_return_value): New function.
2121 (mips_xfer_register): Tweak debug print message. Allow for
2122 buf_offset when dumping the value transfered.
2123
2124 2002-08-20 Andrew Cagney <ac131313@redhat.com>
2125
2126 * config/mips/tm-nbsd.h (MIPS_DEFAULT_ABI): Delete.
2127 * config/mips/tm-linux.h (MIPS_DEFAULT_ABI): Delete.
2128 * config/mips/tm-irix5.h (MIPS_DEFAULT_ABI): Delete.
2129 * config/mips/tm-irix6.h (MIPS_DEFAULT_ABI): Delete.
2130 * mips-tdep.c (mips_gdbarch_init) [MIPS_DEFAULT_ABI]: Delete code.
2131
2132 2002-08-14 Michael Snyder <msnyder@redhat.com>
2133
2134 * mips-tdep.c (mips_frame_chain): Check for call-dummy frames.
2135
2136 2002-08-19 Elena Zannoni <ezannoni@redhat.com>
2137
2138 * rs6000-tdep.c (struct reg): Add field to indicate a pseudo
2139 register.
2140 (P): New macro to define a register as a pseudo register.
2141 (R, R4, R8, R16, FR32, R64, R0): Updated.
2142 (struct variant): Add new fields for number of pseudo registers
2143 and number of total registers.
2144 (tot_num_registers): New macro replacing....
2145 (num_registers): ...deleted macro.
2146 (num_registers): New function.
2147 (num_pseudo_registers): New function.
2148 (variants): Update all variants to intialize new fields correctly.
2149 Postpone initialization of number of pseudo regs and real regs.
2150 (init_variants): New function.
2151 (rs6000_gdbarch_init): Initialize variants. Update calculation of
2152 registers offsets.
2153
2154 2002-08-19 David Carlton <carlton@math.stanford.edu>
2155
2156 * valops.c (search_struct_field): Change error message to treat
2157 return value of 0 from value_static_field as meaning that field is
2158 optimized out.
2159 (value_struct_elt_for_reference): Ditto.
2160 * values.c (value_static_field): Treat an unresolved location the
2161 same as a nonexistent symbol. Fix PR gdb/635.
2162 * gnu-v2-abi.c (gnuv2_value_rtti_type): Eliminate test for being
2163 enclosed. Fix PR gdb/574.
2164 * MAINTAINERS: Add self to Write After Approval list.
2165
2166 2002-08-19 Andrew Cagney <ac131313@redhat.com>
2167
2168 * mips-tdep.c (mips_xfer_register): New function.
2169 (mips_n32n64_extract_return_value): Rewrite.
2170 (mips_gdbarch_init): For N32 and N64, set extract_return_value
2171 instead of deprecated_extract_return_value.
2172
2173 2002-08-19 Elena Zannoni <ezannoni@redhat.com>
2174
2175 * rs6000-tdep.c (TDEP): Delete macro.
2176 (branch_dest): Replace use of TDEP macro with its body.
2177 (rs6000_pop_frame): Ditto.
2178 (rs6000_push_arguments): Ditto.
2179 (rs6000_skip_trampoline_code): Ditto.
2180 (rs6000_frame_saved_pc): Ditto.
2181 (rs6000_frame_chain): Ditto.
2182 (rs6000_register_name): Ditto.
2183 (rs6000_register_byte): Ditto.
2184 (rs6000_register_raw_size): Ditto.
2185 (rs6000_register_virtual_type): Ditto.
2186 (rs6000_register_convertible): Ditto.
2187 (rs6000_convert_from_func_ptr_addr): Ditto.
2188
2189 2002-08-19 Daniel Jacobowitz <drow@mvista.com>
2190
2191 * config/mips/tm-linux.h (REALTIME_LO, REALTIME_HI): Define
2192 conditionally.
2193 (JB_PC, JB_ELEMENT_SIZE): Rename to MIPS_LINUX_JB_PC and
2194 MIPS_LINUX_JB_ELEMENT_SIZE.
2195 * mips-linux-tdep.c (supply_gregset, fill_gregset): Use alloca
2196 for MAX_REGISTER_RAW_SIZE arrays.
2197 (mips_linux_get_longjmp_target): Use MIPS_LINUX_JB_PC and
2198 MIPS_LINUX_JB_ELEMENT_SIZE.
2199
2200 2002-08-19 Pierre Muller <muller@ics.u-strasbg.fr>
2201
2202 * i387-tdep.c (i387_print_float_info): Fix typo in comment.
2203
2204 2002-08-19 Aidan Skinner <aidan@velvet.net>
2205
2206 * Makefile.in (SFILES): Add ada-exp.y ada-lang.c ada-typeprint.c
2207 ada-valprint.c ada-tasks.c.
2208 (YYFILES): Add ada-exp.y.
2209 (ada-exp.tab.c ada-lex.c ada-lang.o): New target.
2210 (ada-tasks.o ada-typeprint.o ada-valprint.o): New target.
2211 (ada-exp.tab.o): New target.
2212
2213 2002-08-18 Andrew Cagney <ac131313@redhat.com>
2214
2215 * regcache.c (regcache_xfer_part): New function.
2216 (regcache_raw_read_part): New function.
2217 (regcache_raw_write_part): New function.
2218 (regcache_cooked_read_part): New function.
2219 (regcache_cooked_write_part): New function.
2220 * regcache.h (regcache_raw_read_part): Declare.
2221 (regcache_raw_write_part): Declare.
2222 (regcache_cooked_read_part): Declare.
2223 (regcache_cooked_write_part): Declare.
2224
2225 2002-08-18 Daniel Jacobowitz <drow@mvista.com>
2226
2227 * remote.c (remote_open_1): Add async_p.
2228 (remote_async_open_1): Delete.
2229 (open_remote_target): Delete.
2230 (remote_open, extended_remote_open): Update calls to remote_open_1.
2231 (remote_async_open, extended_remote_async_open): Call
2232 remote_open_1 instead of remote_async_open_1.
2233
2234 2002-08-19 Mark Kettenis <kettenis@gnu.org>
2235
2236 * blockframe.c: Fix a few coding standard violations.
2237
2238 2002-08-19 Mark Kettenis <kettenis@gnu.org>
2239
2240 * config/i386/nm-i386sco5.h (START_INFERIOR_TRAPS_EXPECTED): Moved
2241 here from ...
2242 * config/i386/tm-i386sco5.h: ... here. File removed.
2243 * config/i386/i386sco5.mt (TM_FILE): Set to tm-i386v4.h.
2244
2245 * config/i386/nm-i386v.h (START_INFERIOR_TRAPS_EXPECTED): New define.
2246 * config/i386/i386aout.mt (TDEPFILES): Add i387-tdep.o
2247 (TM_FILE): Set to tm-i386.h.
2248 * config/i386/i386v.mt (TM_FILE): Set to tm-i386.h.
2249 * config/i386/tm-i386v.h: Remove file.
2250 * config/i386/tm-ptx.h [!SEQUENT_PTX4]: Include "i386/tm-i386.h"
2251 instead of "i386/tm-i386v.h".
2252 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
2253 * config/i386/tm-symmetry: Include "i386/tm-i386.h" instead of
2254 "i386/tm-i386v.h".
2255 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
2256 * config/i386/tm-vxworks.h: Include "i386/tm-i386.h" instead of
2257 "i386/tm-i386.h".
2258
2259 2002-08-18 Mark Kettenis <kettenis@gnu.org>
2260
2261 * config/i386/nm-i386v.h: Add protection against
2262 multiple-inclusion.
2263 (i386_register_u_addr): Remove prototype.
2264 (register_u_addr): New prototype.
2265 (REGISTER_U_ADDR): Redefine accordingly.
2266 * i386v-nat.c: Improve several comments.
2267 (i386_register_u_addr): Change signature and rename to
2268 register_u_addr. Use FP_REGNUM_P. Rewrite slightly to get rid of
2269 ubase variable.
2270
2271 2002-08-18 Andrew Cagney <ac131313@redhat.com>
2272
2273 * config/mips/tm-mips.h (STORE_RETURN_VALUE): Delete macro.
2274 (DEPRECATED_EXTRACT_RETURN_VALUE): Delete macro.
2275 * mips-tdep.c (mips_gdbarch_init): Set store_return_value and
2276 deprecated_extract_return_value.
2277 (mips_o32_push_arguments, mips_o64_push_arguments): Clone and
2278 rename mips_o32o64_push_arguments.
2279 (mips_gdbarch_init): Update.
2280 (mips_extract_return_value): Delete.
2281 (mips_o32_extract_return_value): Clone mips_extract_return_value.
2282 (mips_o64_extract_return_value): Clone mips_extract_return_value.
2283 (mips_eabi_extract_return_value): Clone mips_extract_return_value.
2284 (mips_n32n64_extract_return_value): Clone
2285 mips_extract_return_value.
2286 (mips_store_return_value): Delete.
2287 (mips_o32_store_return_value): Clone mips_store_return_value.
2288 (mips_o64_store_return_value): Clone mips_store_return_value.
2289 (mips_eabi_store_return_value): Clone mips_store_return_value.
2290 (mips_n32n64_store_return_value): Clone mips_store_return_value.
2291
2292 2002-08-18 Aidan Skinner <aidan@velvet.net>
2293
2294 * ada-lang.c: Use gdb_string.h instead of <string.h>.
2295 * ada-typeprint.c: Use gdb_string.h instead of <string.h>.
2296
2297 2002-08-18 Aidan Skinner <aidan@velvet.net>
2298
2299 * ada-lang.c: Run through gdb_indent.sh.
2300 * ada-lang.h: Run through gdb_indent.sh.
2301 * ada-tasks.c: Run through gdb_indent.sh.
2302 * ada-typeprint.c: Run through gdb_indent.sh.
2303 * ada-valprint.c: Run through gdb_indent.sh.
2304
2305 2002-08-18 Andrew Cagney <ac131313@redhat.com>
2306
2307 * osabi.c (gdbarch_init_osabi): Don't complain about an unknown
2308 ABI.
2309
2310 2002-08-18 Mark Kettenis <kettenis@gnu.org>
2311
2312 * i386b-nat.c [FETCH_INFERIOR_REGISTERS]: Remove dead code.
2313
2314 * config/i386/nm-i386bsd.h (FLOAT_INFO): Remove redundant #undef.
2315 * i386b-nat.c [FLOAT_INFO]: Remove dead code.
2316
2317 * i386-tdep.c (i386_do_pop_frame, i386_store_return_value): Call
2318 write_register_gen instead of write_register_bytes.
2319
2320 * NEWS: Mention that the i[3456]-*mach3*, i[3456]-*-mach* and
2321 i[3456]-*-osf1mk* configurations have been made obsolete.
2322 * configure.host: Make i[3456]86-*-mach3*, i[3456]86-*mach* and
2323 i[3456]86-*-osf1mk* hosts obsolete.
2324 * confighure.tgt: Make i[3456]86-*-mach3*, i[3456]86-*-osf1mk*
2325 targets obsolete.
2326 * config/i386/i386mach.mh, config/i386/nm-i386mach.h,
2327 config/i386/xm-i386mach.h, config/i386/i386m3.mh,
2328 config/i386/i386m3.mt, config/i386/nm-m3.h,
2329 config/i386/tm-i386m3.h, config/i386/xm-i386m3.h,
2330 config/i386/i386mk.mh, config/i386/i386mk.mt,
2331 config/i386/tm-i386mk.h, config/i386/xm-i386mk.h: Make files
2332 obsolete.
2333 * i386mach-nat.c, i386m3-nat.c: Make files obsolete.
2334 * Makefile.in (ALLDEPFILES): Remove i386mach.c i386m3-nat.c
2335 (i386mach-nat.o, i386m3-nat.o):Make targets obsolete.
2336
2337 2002-08-18 Andrew Cagney <ac131313@redhat.com>
2338
2339 * config/pa/tm-hppa.h (hppa_store_return_value): Declare.
2340 (hppa_value_returned_from_stack): Declare.
2341 (hppa_extract_return_value): Declare.
2342 * config/pa/hppa.mt: New file.
2343 * configure.tgt: Recognize hppa*-*-*.
2344 * MAINTAINERS: Change HPPA target to hppa-elf. Still broken.
2345
2346 2002-08-18 Mark Kettenis <kettenis@gnu.org>
2347
2348 * i386-sol2-tdep.c (_initialize_i386_sol2_tdep): Fix typo in
2349 comment.
2350
2351 2002-08-17 Mark Kettenis <kettenis@gnu.org>
2352
2353 * top.c (gdb_rl_operate_and_get_next): Make sure
2354 operate-and-get-next functions correctly even when the history
2355 list is completely filled.
2356
2357 2002-08-18 Andrew Cagney <ac131313@redhat.com>
2358
2359 * MAINTAINERS (Target Instruction Set Architectures): Rename
2360 Target/Architectures. Replace vax-dec-vms5.5 with vax-netbsd.
2361 Replace s390-linux with s390-linux-gnu. Remove i386-aout,
2362 mcore-pe, mips64-elf, sparc64-elf. Remove i586-pc-msdosdjgpp,
2363 already listed under Host/Native.
2364
2365 * configure.tgt: Combine i[3456]86-*-coff*, i[3456]86-*-elf*,
2366 i[3456]86-*-pe*, and i[3456]86-*-aout* into i[3456]86-*-*. Add
2367 mips*-*-*.
2368
2369 2002-08-17 Andrew Cagney <ac131313@redhat.com>
2370
2371 * config/ia64/ia64.mt: New file.
2372 * config/alpha/alpha.mt: New file.
2373 * MAINTAINERS: Change the alpha target to alpha-elf and IA-64 to
2374 ia64-linux-gnu. Mention that ia64-elf is broken.
2375 * configure.tgt: Add alpha*-*-* and ia64*-*-* patterns.
2376
2377 2002-08-17 Mark Kettenis <kettenis@elgar.kettenis.dyndns.org>
2378
2379 * i386-tdep.c (i386_svr4_init_abi, i386_nw_init_abi): Use
2380 generic_func_frame_valid instead of func_frame_valid.
2381
2382 2002-08-16 Joel Brobecker <brobecker@gnat.com>
2383
2384 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Unfortunately,
2385 procfs appears to be broken when debugging on multi-processor
2386 machines. So enable software single stepping in order to avoid
2387 using the procfs interface to do next/step operations, using
2388 internal breakpoints instead.
2389
2390 * infrun.c (handle_inferior_event): Readjust the stop_pc by
2391 DECR_PC_AFTER_BREAK when hitting a single step breakpoint, to
2392 make this pc address equal to the value it would have if the
2393 system stepping capability was used. Also set a new flag used
2394 to ensure that we don't readjust the PC one more time later.
2395
2396 * breakpoint.c (bpstat_stop_status): Do not adjust the PC
2397 address by DECR_PC_AFTER_BREAK when software single step is
2398 in use for this architecture, as this has already been taken
2399 care of in handle_inferior_event().
2400
2401 2002-08-16 Joel Brobecker <brobecker@gnat.com>
2402
2403 * infrun.c (handle_inferior_event): Minor reformatting, to make
2404 a rather long condition expression easier to read.
2405
2406 2002-08-16 Andrew Cagney <ac131313@redhat.com>
2407
2408 * Makefile.in (gdbtk.o): Move to end of file.
2409 (gdbtk-bp.o, gdbtk-cmds.o): Ditto.
2410 (gdbtk-hooks.o, gdbtk-register.o): Ditto.
2411 (gdbtk-stack.o, gdbtk-varobj.o): Ditto.
2412 (gdbtk-wrapper.o, gdbres.o): Ditto.
2413
2414 2002-08-16 Andrew Cagney <ac131313@redhat.com>
2415
2416 * Makefile.in (copying.o): Separate out compile rule.
2417 (hpux-thread.o, procfs.o, signals.o): Ditto.
2418 (v850ice.o, z8k-tdep.o): Ditto.
2419 (tui-file.o): Move to TUI section.
2420 (xdr_ptrace.o, xdr_rdb.o, xdr_ld.o): Move to separate section.
2421 (nindy.o, Onindy.o, ttyflush.o): Move to separate section.
2422
2423 2002-08-16 Joel Brobecker <brobecker@gnat.com>
2424
2425 * i386-tdep.c (i386_pe_skip_trampoline_code): renamed from
2426 skip_trampoline_code, for better namespace-proofing.
2427
2428 * i386-tdep.h (i386_pe_skip_trampoline_code): Add declaration.
2429
2430 2002-08-16 Joel Brobecker <brobecker@gnat.com>
2431
2432 * config/i386/tm-cygwin.h: Remove some "#if 0"'ed macros.
2433
2434 2002-08-16 Joel Brobecker <brobecker@gnat.com>
2435
2436 * infrun.c (handle_inferior_event): When receiving a SIGTRAP
2437 signal, check whether we hit a breakpoint before checking for a
2438 single step breakpoint. Otherwise, GDB fails to notice that a
2439 breakpoint has been hit when stepping onto a breakpoint.
2440
2441 2002-08-16 Keith Seitz <keiths@redhat.com>
2442
2443 * gdb-events.sh (clear_gdb_event_hooks): New function.
2444 * gdb-events.c: Regenerate.
2445 * gdb-events.h: Regenerate.
2446
2447 2002-08-16 Andrew Cagney <ac131313@redhat.com>
2448
2449 * breakpoint.c (bpstat_stop_status): Rename not_a_breakpoint to
2450 not_a_sw_breakpoint.
2451 * breakpoint.h (bpstat_stop_status): Add parameter names.
2452
2453 2002-08-16 Grace Sainsbury <graces@redhat.com>
2454
2455 * remote.c (remote_insert_hw_breakpoint)
2456 (remote_remove_hw_breakpoint): Fix calculation of length field
2457 for Z-packet.
2458
2459 2002-08-15 Michael Snyder <msnyder@redhat.com>
2460
2461 * irix5-nat.c (supply_gregset): Allocate plenty-big buffer
2462 (32 bytes) instead of using MAX_REGISTER_RAW_SIZE.
2463 (supply_fpregset): Ditto.
2464
2465 * config/mips/tm-mips.h (REGISTER_CONVERT_TO_VIRTUAL,
2466 REGISTER_CONVERT_TO_RAW, REGISTER_CONVERTIBLE,
2467 MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE): Delete.
2468 (TARGET_READ_SP): Delete.
2469 (DO_REGISTERS_INFO): Delete.
2470 (FUNCTION_START_OFFSET, IN_SIGTRAMP, REGISTER_VIRTUAL_SIZE):
2471 Delete.
2472 (REGISTER_CONVERT_FROM_TYPE, REGISTER_CONVERT_TO_TYPE): Convert
2473 from macros to functions.
2474
2475 * mips-tdep.c (mips_gdbarch_init): Set the above in the gdbarch.
2476 (mips_register_convertible, mips_register_convert_to_virtual,
2477 mips_register_convert_to_raw): Make static.
2478 (mips_read_sp): New function.
2479 (mips_gdbarch_init): Set gdbarch read_sp to mips_read_sp.
2480 (mips_do_registers_info): Make static.
2481 (mips_gdbarch_init): Insert mips_do_registers_info into gdbarch.
2482 (in_sigtramp): Make static, rename to mips_pc_in_sigtramp.
2483 (mips_register_convert_from_type, mips_register_convert_to_type):
2484 New functions.
2485 (mips_gdbarch_init): Set up function_start_offset,
2486 register_virtual_size, pc_in_sigtramp.
2487
2488 2002-08-15 Andrew Cagney <ac131313@redhat.com>
2489
2490 * infcmd.c (vector_info): New function.
2491 (_initialize_infcmd): Add command "info vector".
2492 (print_vector_info): New function.
2493
2494 * gdbarch.sh (PRINT_VECTOR_INFO): New method
2495 * gdbarch.h, gdbarch.c: Regenerate.
2496
2497 2002-08-15 Andrew Cagney <ac131313@redhat.com>
2498
2499 * infcmd.c (do_registers_info): Rename parameter ``fpregs'' to
2500 ``print_all''. Only print vector registers when ``print_all''.
2501
2502 2002-08-15 Andrew Cagney <ac131313@redhat.com>
2503
2504 * i387-tdep.h (i387_print_float_info): Add `args' parameter.
2505 * i387-tdep.c (i387_print_float_info): Add `args' parameter.
2506
2507 * gdbarch.sh (PRINT_FLOAT_INFO): Change to a predicate method.
2508 Add `args' parameter.
2509 * gdbarch.h, gdbarch.c: Regenerate.
2510
2511 * arm-tdep.c (arm_print_float_info): Add the parameter `args'.
2512
2513 * infcmd.c (float_info): Call print_float_info.
2514 (print_float_info): New function. By default, print the
2515 floating-point registers.
2516
2517 * arch-utils.h (default_print_float_info): Delete declaration.
2518 * arch-utils.c (default_print_float_info): Delete function.
2519
2520 2002-08-16 Mark Kettenis <kettenis@gnu.org>
2521
2522 * config/i386/nm-i386v.h (FLOAT_INFO): Remove already commented
2523 out define.
2524
2525 * i387-tdep.c (i387_print_float_info): Add comment about ignoring
2526 FRAME.
2527
2528 * NEWS: Mention that the i[3456]-*-aix target has been made obsolete.
2529 * configure.host: Make i[3456]86-*-aix host obsolete.
2530 * configure.tgt: Make i[3456]86-*-aix target obsolete.
2531 * config/i386/i386aix.mh, config/i386/i386aix.mt,
2532 config/i386/nm-i386aix.h, condig/i386/tm-i386aix.h,
2533 config/i386/xm-i386aix.h: Make files obsolete.
2534 * i386aix-nat.c: Make file obsolete.
2535 * Makefile.in (ALLDEPFILES): Remove i386aix-nat.c.
2536 (i386aix-nat.o): Make target obsolete.
2537
2538 * config/i386/nm-gnu.h: Removed.
2539 * config/i386/nm-i386gnu.h: New file.
2540 (THREAD_STATE_FLAVOR, THREAD_STATE_SIZE,
2541 THREAD_STATE_SET_TRACED, THREAD_STATE_CLEAR_STATE, ATTACH_DETACH):
2542 Moved here from ...
2543 * config/i386/tm-i386gnu.h: ... here. Removed.
2544 * config/i386/xm-i386gnu.h: Removed.
2545 * config/i386/i386gnu.mh (XM_FILE): Set to xm-i386.h.
2546 (NAT_FILE): Set to nm-i386gnu.h.
2547 * config/i386/i386gnu.mt (TDEPFILES): Add i386gnu-tdep.o.
2548 * i386-tdep.c: New file.
2549 * Makefile.in (ALLDEPFILES): Add i386gnu-nat.c and i386gnu-tdep.c.
2550 (i386gnu-tdep.o): Specify dependencies.
2551
2552 2002-08-15 Mark Kettenis <kettenis@gnu.org>
2553
2554 * config/i386/tm-i386sco5.h: Include "i386/tm-i386v4.h" instead of
2555 "i386/tm-i386.h", "i386/tm-i386v.h" and "config/tm-sysv.h".
2556 Adjust a few comments to reflect reality a bit closer.
2557 (KERNEL_U_SIZE, TARGET_HAS_HARDWARE_WATCHPOINTS,
2558 TARGET_CAN_USE_HARDWARE_WATCHPOINT, HAVE_CONTINUEABLE_WATCHPOINT,
2559 HAVE_STEPPABLE_WATCHPOINT, STOPPED_BY_WATCHPOINT,
2560 target_insert_watchpoint, target_remove_watchpoint):
2561 Move defines to ...
2562 * config/i386/nm-i386sco5.h: ... here.
2563 (kernel_u_size): Add prototype. Improve a few comments and add
2564 protection against multiple inclusion.
2565
2566 * config/i386/nm-i386sco.h (FLOAT_INFO): Remove already commented
2567 out define.
2568
2569 * uw-thread.c (SP_ARG0): Define if not already defined.
2570 * config/i386/tm-i386.h (SO_ARG0): Remove define.
2571
2572 * config/i386/tm-i386v4.h (HAVE_I387_REGS): Remove define.
2573
2574 * config/i386/tm-i386.h: Don't include "regcache.h".
2575
2576 * i387-tdep.h (i387_print_float_info): New prototype.
2577 * i387-tdep.c (print_i387_value, print_i387_ext,
2578 print_i387_status_word, print_i387_control_word): Add `struct
2579 ui_file *' argument and use it for output.
2580 (i387_print_float_info): Renamed from i387_float_info. Add
2581 `struct gdbarch *' and `struct ui_file *' arguments and use the
2582 latter for output.
2583 * i386-tdep.c: Include "i387-tdep.h".
2584 (i386_gdbarch_init): Set print_float_info.
2585 * config/i386/tm-i386.h (i387_float_info): Remove prototype.
2586 (FLOAT_INFO): Remove define.
2587
2588 2002-08-13 Michael Snyder <msnyder@redhat.com>
2589
2590 * mips-tdep.c (mips_push_arguments): Rename to
2591 mips_eabi_push_arguments, and tune for EABI.
2592 (MIPS_REGS_HAVE_HOME_P): Delete.
2593 (struct gdbarch_tdep): Remove mips_regs_have_home_p field.
2594 (mips_gdbarch_init): Set gdbarch push_arguments for eabi.
2595 Delete references to mips_regs_have_home_p.
2596
2597 2002-08-14 Keith Seitz <keiths@redhat.com>
2598
2599 * Makefile.in (install-gdbtk): Create insight plugin directory.
2600 Install plugins.tcl file.
2601
2602 2002-08-14 Keith Seitz <keiths@redhat.com>
2603
2604 * configure.in: Move SUBDIRS to near top of the file so that
2605 --enable options may add things to it.
2606 If gdbtk is enabled, add gdbtk directory to SUBDIRS and configdirs.
2607 * configure: Regenerate.
2608
2609 2002-08-13 Michael Snyder <msnyder@redhat.com>
2610
2611 * mips-tdep.c (mips_o32o64_push_arguments): New function,
2612 cloned from mips_push_arguments, tuned for o32/o64 ABI.
2613 (mips_gdbarch_init): Set gdbarch_push_arguments to new func.
2614
2615 2002-08-13 Andrew Cagney <ac131313@redhat.com>
2616
2617 * vax-tdep.c (vax_get_saved_register): Delete function.
2618 (vax_gdbarch_init): Update.
2619 * ns32k-tdep.c (ns32k_get_saved_register): Delete function.
2620 (ns32k_gdbarch_init): Update.
2621 * alpha-tdep.c (alpha_get_saved_register): Delete function.
2622 (alpha_gdbarch_init): Update.
2623
2624 2002-08-13 Andrew Cagney <cagney@redhat.com>
2625
2626 * regcache.c (init_regcache_descr): Overallocate the
2627 raw_register_valid_p array including space for NUM_PSEUDO_REGS.
2628 (registers_changed): Replace NUM_REGS+NUM_PSEUDO_REGS with
2629 nr_raw_registers.
2630 (set_register_cached): Add range checking assertions. Use
2631 current_regcache.
2632
2633 2002-08-13 Mark Kettenis <kettenis@gnu.org>
2634
2635 * i386-tdep.c (i386_stab_reg_to_regnum): Return correct register
2636 numbers for MMX registers.
2637
2638 2002-08-13 Andrew Cagney <cagney@redhat.com>
2639
2640 * i386-tdep.c (i386_gdbarch_init): Use
2641 generic_unwind_get_saved_register.
2642
2643 2002-08-13 Kevin Buettner <kevinb@redhat.com>
2644
2645 * procfs.c (procfs_can_use_hw_breakpoint): New function.
2646 (init_procfs_ops): Define ``to_can_use_hw_breakpoint'' for procfs
2647 target vector.
2648 * config/mips/nm-irix5.h (TARGET_CAN_USE_HARDWARE_WATCHPOINT):
2649 Delete. Add comment regarding this now-deleted target method.
2650
2651 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
2652
2653 * m68hc11-tdep.c (M68HC12_NUM_PSEUDO_REGS): New define.
2654 (M68HC12_HARD_PC_REGNUM): Define specific PC for 68HC12 (pseudo reg).
2655 (m68hc11_pseudo_register_read): Compute the 68HC12 PC using the
2656 real PC and the page number (if it's within the memory bank window).
2657 (m68hc11_pseudo_register_write): Likewise when saving.
2658 (m68hc11_register_name): Name the virtual pc 'pc' and the real one ppc.
2659 (m68hc11_register_virtual_type): Return uint32 for virtual pc.
2660 (m68hc11_register_raw_size): And use 32-bit for it.
2661 (m68hc11_gdbarch_init): Use 32-bit address for 68HC12 if the
2662 16K memory bank is used by the prog; also use the virtual pc.
2663
2664 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
2665
2666 * m68hc11-tdep.c (m68hc11_elf_make_msymbol_special): New function.
2667 (m68hc11_gdbarch_init): Install it in gdbarch.
2668 (MSYMBOL_SET_RTC, MSYMBOL_SET_RTI): New to set symbol specific flags.
2669 (MSYMBOL_IS_RTC, MSYMBOL_IS_RTI): New to test these flags.
2670 (MSYMBOL_SIZE): New for documentation.
2671 (insn_return_kind): Enum to specify how a function returns.
2672 (frame_extra_info): Cleanup and record the return mode.
2673 (gdbarch_tdep, USE_PAGE_REGISTER): New to control the use of page
2674 register in address computation.
2675 (m68hc11_get_return_insn): New to obtain the return instruction used
2676 by the function.
2677 (m68hc11_frame_init_saved_regs): Take into account the return
2678 instruction used by the function for far and interrupt functions.
2679 (m68hc11_init_extra_frame_info): Take into account page register.
2680 (m68hc11_frame_args_address): Adjust according to the return mode.
2681 (show_regs): Print page register only when it's used.
2682
2683 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
2684
2685 * m68hc11-tdep.c (HARD_PAGE_REGNUM): Define for 68HC12 page register.
2686 (M68HC11_LAST_HARD_REG, m68hc11_register_names): Update.
2687 (m68hc11_register_virtual_type): Return a 8-bit type for 8-bit
2688 registers.
2689 (m68hc11_register_raw_size): Likewise.
2690
2691 2002-08-13 Andrew Cagney <cagney@redhat.com>
2692
2693 * i386-tdep.c (i386_register_name): Handle mmx registers.
2694 (mmx_regnum_p): New function.
2695 (i386_mmx_names): New array.
2696 (mmx_num_regs): New variable.
2697 (i386_pseudo_register_read): New function.
2698 (i386_pseudo_register_write): New function.
2699 (mmx_regnum_to_fp_regnum): New function. Code from Fernando Nasser.
2700
2701 * regcache.c (regcache_raw_read_unsigned): New function.
2702 (regcache_raw_read_signed): New function.
2703 * regcache.h (regcache_raw_read_unsigned): Declare.
2704 (regcache_raw_read_signed): Declare.
2705
2706 2002-08-13 Andrew Cagney <cagney@redhat.com>
2707
2708 * regcache.c (regcache_raw_read_as_address): Delete function.
2709 (regcache_cooked_read_signed): New function.
2710 (regcache_cooked_read_unsigned): New function.
2711 * regcache.h (regcache_cooked_read_signed): Declare.
2712 (regcache_cooked_read_unsigned): Declare.
2713 (regcache_raw_read_as_address): Delete declaration.
2714
2715 * blockframe.c (generic_read_register_dummy): Use
2716 regcache_cooked_read_unsigned.
2717 * i386-tdep.c (i386_extract_struct_value_address): Use
2718 regcache_cooked_read_unsigned.
2719
2720 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
2721
2722 * m68hc11-tdep.c (m68hc11_gdbarch_init): Set int, double and long
2723 double sizes according to ELF ABI flags.
2724 (gdbarch_tdep): Record elf_flags.
2725
2726 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
2727
2728 * m68hc11-tdep.c (M6812_OP_PSHX, M6812_OP_PSHY): New defines.
2729 (m6812_prolog): They can appear in 68HC12 function prologue.
2730 (m68hc11_frame_chain): Cleanup.
2731
2732 2002-08-12 Andrew Cagney <cagney@redhat.com>
2733
2734 * i386-tdep.h (i386_register_byte, i386_register_raw_size): Delete
2735 declarations.
2736 * i386-linux-tdep.c (i386_linux_register_byte): Delete function.
2737 (i386_linux_register_raw_size): Delete function.
2738 (i386_linux_init_abi): Update.
2739 * i386-tdep.c (i386_register_raw_size): Delete function.
2740 (i386_register_byte): Delete function.
2741 (i386_gdbarch_init): Update.
2742 (i386_register_size): Delete array.
2743 (i386_register_offset): Delete array.
2744
2745 * config/i386/tm-symmetry.h (REGISTER_BYTE): Delete macro.
2746 (REGISTER_RAW_SIZE): Delete macro.
2747 * config/i386/tm-ptx.h (REGISTER_RAW_SIZE): Delete macro.
2748 (REGISTER_BYTE): Delete macro.
2749
2750 2002-08-11 Aidan Skinner <aidan@velvet.net>
2751
2752 * ada-lang.c (ada_lookup_partial_symbol)
2753 (to_fixed_variant_branch_type) (find_line_in_linetable): Fix
2754 prototype names so that grep ^func works properly.
2755
2756 * ada-lang.c (ada_array_element_type)
2757 (ada_lookup_partial_symbol): Fix typos in parameter list.
2758
2759 * ada-valprint.c (val_print_packed_array_elements) (ada_val_print_1):
2760 Fix prototype names so that grep ^func works properly.
2761
2762 2002-08-10 Andrew Cagney <cagney@redhat.com>
2763 Elena Zannoni <ezannoni@redhat.com>
2764 Martin M. Hunt <hunt@redhat.com>
2765
2766 * gdbtypes.c (build_builtin_type_vec128): Set the vector bit.
2767 (build_builtin_type_vec128i): Set the vector bit.
2768 * gdbtypes.h (builtin_type_vec64, builtin_type_vec64i): Declare.
2769 * gdbtypes.c (builtin_type_vec64, builtin_type_vec64i): Define.
2770 (build_builtin_type_vec64): New function.
2771 (build_builtin_type_vec64i): New function.
2772 (build_gdbtypes): Initialize builtin_type_vec64 and
2773 builtin_type_vec64i.
2774
2775 2002-08-09 Andrew Cagney <cagney@redhat.com>
2776
2777 * regcache.c (regcache_dump): Compare the register offset
2778 with REGISTER_BYTE.
2779 * arch-utils.c (generic_register_byte): New function.
2780 * arch-utils.h (generic_register_byte): Declare.
2781 * gdbarch.sh (REGISTER_BYTE): Default to generic_register_byte.
2782 * gdbarch.h, gdbarch.c: Regenerate.
2783
2784 2002-08-09 Andrew Cagney <cagney@redhat.com>
2785
2786 * regcache.c: Include "gdbcmd.h"
2787 (_initialize_regcache): Add commands "maintenance print
2788 registers", "maintenance print raw-registers" and "maintenance
2789 print cooked-registers".
2790 (enum regcache_dump_what): Define.
2791 (dump_endian_bytes): New function.
2792 (regcache_dump): New function.
2793 (regcache_print): New function.
2794 (maintenance_print_registers): New function.
2795 (maintenance_print_raw_registers): New function.
2796 (maintenance_print_cooked_registers): New function.
2797 * Makefile.in (regcache.o): Update dependencies.
2798
2799 2002-08-09 Michael Snyder <msnyder@redhat.com>
2800
2801 * mips-tdep.c (ROUND_DOWN, ROUND_UP): Move to global scope.
2802 (mips_push_arguments): Correct some comments. Use paddr_nz
2803 for printing addresses in debug output. Replace static
2804 allocation using MAX_REGISTER_RAW_SIZE with alloca.
2805 (mips_n32n64_push_arguments): New function, cloned from
2806 mips_push_arguments and tuned for the n32/n64 ABI.
2807 (mips_push_register): Buffer needs dynamic allocation.
2808 (mips_print_register): Ditto.
2809 (do_gp_register_row): Ditto.
2810 (mips_store_return_value): Ditto.
2811 (mips_gdbarch_init): Set gdbarch_push_arguments per ABI.
2812
2813 2002-08-09 Don Howard <dhoward@redhat.com>
2814
2815 * memattr.c (mem_info_command): Print special case of upper bound
2816 as max CORE_ADDR + 1.
2817
2818 2002-08-08 Michael Snyder <msnyder@redhat.com>
2819
2820 * mips-tdep.c (mips_n32n64_use_struct_convention): N32 only
2821 returns structs by ref if they're too big to fit in two registers.
2822
2823 2002-08-09 Kevin Buettner <kevinb@redhat.com>
2824
2825 * mips-tdep.c (mips_init_extra_frame_info): Initialize SP_REGNUM's
2826 saved regs value.
2827 (read_next_frame_reg): Call FRAME_INIT_SAVED_REGS instead of
2828 mips_find_saved_regs().
2829 (mips_pop_frame): Likewise.
2830
2831 2002-08-09 Kevin Buettner <kevinb@redhat.com>
2832
2833 * blockframe.c (frame_saved_regs_register_unwind): Revise
2834 PC_IN_CALL_DUMMY assertion to only apply when generic dummy
2835 frames are in use.
2836
2837 2002-08-09 Grace Sainsbury <graces@redhat.com>
2838
2839 * remote.c: (remote_wait, remote_async_wait): Add check for awatch
2840 T-packets; the 'a' is not taken as a register number.
2841 (remote_check_watch_resources, remote_stopped_by_watchpoint)
2842 (remote_stopped_data_address): New functions; add to target
2843 vector.
2844 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Change
2845 prototypes to match other implementations of this
2846 function. replace integer argument with pointer -- the length
2847 field in the Z-packet is the length of what is pointed to or 1 if
2848 pointer is null. Add to target vector.
2849 (remote_insert_watchpoint, remote_remove_watchpoint): Add to
2850 target vector.
2851
2852 From Mark Salter:
2853 * remote.c (remote_wait): Add support to extract optional
2854 watchpoint information from T-packet. Ignore unrecognized
2855 optional info in T-packet.
2856 (remote_async_wait): Ditto.
2857
2858 2002-08-09 Corinna Vinschen <vinschen@redhat.com>
2859
2860 * cli/cli-dump.c: Change fopen modes to use binary open modes
2861 as defined in include/fopen-bin.h throughout.
2862
2863 2002-08-08 Michael Snyder <msnyder@redhat.com>
2864
2865 * mips-tdep.c: Minor whitespace and indentation clean-ups.
2866
2867 2002-08-08 Kevin Buettner <kevinb@redhat.com>
2868
2869 * doublest.c (store_floating): Avoid floatformat_from_doublest()
2870 assertion failure by returning early after a warning.
2871
2872 2002-08-08 Kevin Buettner <kevinb@redhat.com>
2873
2874 * mips-tdep.c (mips_find_saved_regs): Make static.
2875 (mips_frame_init_saved_regs): New function.
2876 (mips_gdbarch_init): Setup FRAME_INIT_SAVED_REGS method.
2877 * config/mips/tm-mips.h (FRAME_INIT_SAVED_REGS): Delete macro.
2878 (mips_find_saved_regs): Delete declaration.
2879
2880 2002-08-08 Grace Sainsbury <graces@redhat.com>
2881
2882 * remote.c (remote_wait, remote_async_wait): Change
2883 thread_num from int to ULONGEST.
2884 (unpack_varlen_hex): Change result parameter from
2885 int * to ULONGEST *.
2886
2887 2002-08-08 Andrew Cagney <ac131313@redhat.com>
2888
2889 * configure.tgt: Replace powerpc-*-sysv*, powerpc-*-elf*,
2890 powerpcle-*-eabi*, powerpcle-*-sysv* and powerpcle-*-elf* with
2891 powerpc*-*-*.
2892 * MAINTAINERS: Remove redundant rs6000-ibm-aix4.1 target.
2893
2894 2002-08-08 Andrew Cagney <cagney@redhat.com>
2895
2896 * gcore.c (override_derive_stack_segment): Delete variable.
2897 (preempt_derive_stack_segment): Delete function.
2898 (derive_stack_segment): Delete function.
2899 (default_derive_stack_segment): Renamed to derive_stack_segment.
2900 (override_derive_heap_segment): Delete variable.
2901 (preempt_derive_heap_segment): Delete function.
2902 (derive_heap_segment): Delete function.
2903 (default_derive_heap_segment): Rename to derive_heap_segment.
2904
2905 2002-08-06 Michael Snyder <msnyder@redhat.com>
2906
2907 * config/mips/tm-mips.h: Remove #define USE_STRUCT_CONVENTION.
2908 * mips-tdep.c (mips_EABI_use_struct_convention,
2909 mips_OABI_use_struct_convention, mips_NABI_use_struct_convention):
2910 New functions. (mips_use_struct_convention): Delete.
2911 (mips_gdbarch_init): set use_gdbarch_convention.
2912
2913 2002-08-06 Michael Snyder <msnyder@redhat.com>
2914
2915 * mips-tdep.c: gdbarch-ify reg_struct_has_addr.
2916 (mips_eabi_reg_struct_has_addr, mips_n32n64_reg_struct_has_addr,
2917 mips_o32_reg_struct_has_addr): New functions.
2918 (mips_gdbarch_init): Set gdbarch reg_struct_has_addr.
2919
2920 2002-08-07 Andrew Cagney <ac131313@redhat.com>
2921
2922 * regcache.c (pseudo_register): Delete function.
2923 (fetch_register): Delete function.
2924 (store_register): Delete function.
2925 (regcache_raw_read, legacy_read_register_gen): Use
2926 target_fetch_registers instead of fetch_register.
2927 (legacy_write_register_gen, regcache_raw_write): Use
2928 target_store_register instead of store_register.
2929 (write_register_bytes): Ditto.
2930
2931 * gdbarch.sh (FETCH_PSEUDO_REGISTER): Delete.
2932 (STORE_PSEUDO_REGISTER): Delete.
2933 * gdbarch.h, gdbarch.c: Regenerate.
2934
2935 2002-08-06 Corinna Vinschen <vinschen@redhat.com>
2936
2937 * cli/cli-dump.c (add_dump_command): Explicitely use "b" flag to
2938 write dump file binary.
2939
2940 2002-08-05 Michael Snyder <msnyder@redhat.com>
2941
2942 * mips-tdep.c (mips_find_saved_regs): Adjust stack according
2943 to MIPS_SAVED_REGSIZE, not GDB_TARGET_IS_MIPS64. Enhance comment.
2944 (mips_gdbarch_init): Set N32 target to be mips64.
2945
2946 2002-08-06 Kevin Buettner <kevinb@redhat.com>
2947
2948 * frame.c (find_saved_register): Break out of loop once saved
2949 register address is found. Don't mention sparc in loop comment
2950 anymore.
2951
2952 2002-08-06 Kevin Buettner <kevinb@redhat.com>
2953
2954 * mips-tdep.c (mips_gdbarch_init): For the N32 ABI, set
2955 mips_default_saved_regsize to 8.
2956
2957 2002-08-06 Andrew Cagney <ac131313@redhat.com>
2958
2959 * gcore.c: Do not include <sys/procfs.h>.
2960 * Makefile.in (gcore.o): Update dependencies.
2961
2962 2002-08-06 Andrew Cagney <cagney@redhat.com>
2963
2964 * configure.tgt: Make arc-*-* obsolete.
2965 * NEWS: Mention that arc-*-* has been identifed as obsolete.
2966 * MAINTAINERS: Make arc-elf obsolete.
2967 * arc-tdep.c: Make file obsolete.
2968 * config/arc/arc.mt: Ditto.
2969 * config/arc/tm-arc.h: Ditto.
2970
2971 2002-08-05 Theodore A. Roth <troth@verinet.com>
2972
2973 * avr-tdep.c (avr_skip_prologue): Fix to return the correct pc.
2974
2975 2002-08-05 Andrew Cagney <ac131313@redhat.com>
2976
2977 * mcore-tdep.c (mcore_gdbarch_init): Use
2978 generic_unwind_get_saved_register instead of
2979 generic_get_saved_register.
2980 * v850-tdep.c (v850_gdbarch_init): Ditto.
2981 * frv-tdep.c (frv_gdbarch_init): Ditto.
2982 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
2983 * s390-tdep.c (s390_gdbarch_init): Ditto.
2984 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
2985 * config/mn10200/tm-mn10200.h (GET_SAVED_REGISTER): Ditto.
2986 * config/h8300/tm-h8300.h (GET_SAVED_REGISTER): Ditto.
2987
2988 2002-08-05 Joel Brobecker <brobecker@gnat.com>
2989
2990 * objfiles.h: Add missing #include "symfile.h"
2991
2992 * Makefile.in (objfiles_h): Add dependency on symfile.h and dependents.
2993
2994 2002-08-04 Andrew Cagney <ac131313@redhat.com>
2995
2996 From 2002-08-01 david carlton <carlton@math.stanford.edu>:
2997 * hpread.c (hpread_read_struct_type): Deleted superfluous setting
2998 of FIELD_BITSIZE.
2999
3000 2002-08-04 Daniel Jacobowitz <drow@mvista.com>
3001
3002 * NEWS: Cleanup and nitpick.
3003
3004 2002-08-03 Andrew Cagney <ac131313@redhat.com>
3005
3006 * NEWS: Cleanup. Use *-linux*-gnu*. Only use `*' for headings.
3007
3008 2002-08-03 Andrew Cagney <ac131313@redhat.com>
3009
3010 * Makefile.in (gdbtk-bp.o): Update dependencies.
3011 (gdbtk-register.o): Ditto.
3012 (gdbtk-varobj.o): Ditto.
3013
3014 2002-08-03 Andrew Cagney <cagney@redhat.com>
3015
3016 * m68hc11-tdep.c (m68hc11_pseudo_register_read): Replace
3017 m68hc11_fetch_pseudo_register.
3018 (m68hc11_pseudo_register_write): Replace
3019 m68hc11_store_pseudo_register.
3020 (m68hc11_gdbarch_init): Update.
3021
3022 Fri Aug 2 15:53:50 2002 Andrew Cagney <cagney@redhat.com>
3023
3024 * gdbarch.sh: Include "gdb_string.h".
3025 * gdbarch.c: Regenerate.
3026
3027 * regcache.c: Include "gdb_string.h".
3028 * ax-general.c: Ditto.
3029 * varobj.c: Ditto.
3030 * std-regs.c: Ditto.
3031 * fbsd-proc.c: Ditto.
3032 * thread.c: Ditto.
3033
3034 * Makefile.in (regcache.o): Update dependencies.
3035 (thread.o, gdbarch.o): Ditto.
3036 (ax-general.o, gdbarch.o): Ditto.
3037 (varobj.o, std-regs.o): Ditto.
3038 (fbsd-proc.o): Specify dependencies.
3039
3040 2002-08-02 Andrew Cagney <cagney@redhat.com>
3041
3042 * regcache.c (regcache_cooked_read): Rename rawnum parameter to
3043 regnum.
3044 (regcache_cooked_write): Ditto.
3045
3046 2002-08-02 Andrew Cagney <ac131313@redhat.com>
3047
3048 * regcache.c (regcache_cooked_read): New function.
3049 (regcache_cooked_write): New function.
3050 (read_register_gen): Rewrite using regcache_cooked_read.
3051 (write_register_gen): Rewrite using regcache_cooked_write.
3052
3053 * regcache.h (regcache_cooked_read, regcache_cooked_write):
3054 Declare.
3055
3056 2002-08-02 Andrew Cagney <cagney@redhat.com>
3057
3058 * gdbarch.sh (pseudo_register_read, pseudo_register_write):
3059 Replace the architecture methods register_read and register_write.
3060 * gdbarch.h, gdbarch.c: Regenerate.
3061 * regcache.c (init_regcache_descr): Update.
3062 (read_register_gen): Update.
3063 (write_register_gen): Update.
3064 (supply_register): Update comment.
3065
3066 * sh-tdep.c (sh_gdbarch_init): Update.
3067 (sh_pseudo_register_read, sh64_pseudo_register_read): Add
3068 `regcache' and `gdbarch' parameters. Make `buffer' a void
3069 pointer. Update code.
3070 (sh_pseudo_register_write, sh64_pseudo_register_write): Add
3071 `regcache' and `gdbarch' parameters. Make `buffer' a constant
3072 void pointer. Update code.
3073 (sh64_register_write): Delete.
3074 (sh4_register_read): Delete.
3075 (sh64_register_read): Delete.
3076 (sh4_register_write): Delete.
3077 (sh_sh4_register_convert_to_raw): Make `from' parameter a constant
3078 void pointer, `to' parameter a void pointer.
3079 (sh_sh64_register_convert_to_raw): Ditto.
3080
3081 2002-08-01 Kevin Buettner <kevinb@redhat.com>
3082
3083 * mips-tdep.c (mips_register_virtual_type): Use architecture
3084 invariant return values.
3085
3086 2002-08-01 Andrew Cagney <cagney@redhat.com>
3087
3088 * linux-proc.c: Include "gdb_string.h".
3089 * Makefile.in (linux-proc.o): Update dependency list.
3090
3091 2002-08-01 Kevin Buettner <kevinb@redhat.com>
3092
3093 * mips-tdep.c (mips_gdbarch_init): Add comments. Fix typo in
3094 comment.
3095
3096 2002-08-01 Grace Sainsbury <graces@redhat.com>
3097
3098 * target.h: Add to_insert_hw_breakpoint, to_remove_hw_breakpoint,
3099 to_insert_watchpoint, to_remove_watchpoint,
3100 to_stopped_by_watchpoint, to_stopped_data_address,
3101 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint to
3102 target vecctor. Define their corresponding macros so they call
3103 them.
3104
3105 * target.c: Add default and debug versions of for
3106 to_insert_hw_breakpoint, to_remove_hw_breakpoint,
3107 to_insert_watchpoint, to_remove_watchpoint,
3108 to_stopped_by_watchpoint, to_stopped_data_address,
3109 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint.
3110
3111 2002-08-01 Kevin Buettner <kevinb@redhat.com>
3112
3113 * mips-tdep.c (mips_register_virtual_type): New function.
3114 (mips_gdbarch_init): Register mips_register_virtual_type()
3115 with gdbarch machinery.
3116 * config/mips/tm-irix6.h (mips/tm-bigmips64.h): Include
3117 this file instead of tm-bigmips.h.
3118 (MIPS_REGSIZE): Delete this macro.
3119 (REGISTER_VIRTUAL_TYPE): Delete macro. Undef macro so that
3120 multiarch version in mips-tdep.c will be found.
3121
3122 2002-08-01 Andrew Cagney <cagney@redhat.com>
3123
3124 * NEWS: Menion that CHILL has been made obsolete.
3125
3126 * gdbtypes.c (chill_varying_type): Make chill references obsolete.
3127 * stabsread.c (read_range_type): Ditto.
3128 * gdbtypes.h: Ditto.
3129 * language.c (binop_type_check): Ditto.
3130 (binop_result_type): Ditto.
3131 (integral_type): Ditto.
3132 (character_type): Ditto.
3133 (string_type): Ditto.
3134 (boolean_type): Ditto.
3135 (structured_type): Ditto.
3136 (lang_bool_type): Ditto.
3137 (binop_type_check): Ditto.
3138 * language.h (_LANG_chill): Ditto.
3139 * dwarfread.c (set_cu_language): Ditto.
3140 * dwarfread.c (CHILL_PRODUCER): Ditto.
3141 * dwarfread.c (handle_producer): Ditto.
3142 * expression.h (enum exp_opcode): Ditto.
3143 * eval.c: Ditto for comments.
3144 * typeprint.c (typedef_print) [_LANG_chill]: Ditto.
3145 * expprint.c (print_subexp): Ditto.
3146 (print_subexp): Ditto.
3147 * valops.c (value_cast): Ditto.
3148 (search_struct_field): Ditto.
3149 * value.h (COERCE_VARYING_ARRAY): Ditto.
3150 * symfile.c (init_filename_language_table): Ditto.
3151 (add_psymbol_with_dem_name_to_list): Ditto.
3152 * valarith.c (value_binop): Ditto.
3153 (value_neg): Ditto.
3154 * valops.c (value_slice): Ditto.
3155 * symtab.h (union language_specific): Ditto.
3156 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Ditto.
3157 (SYMBOL_DEMANGLED_NAME): Ditto.
3158 (SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
3159 * defs.h (enum language): Ditto.
3160 * symtab.c (got_symtab): Ditto.
3161 * utils.c (fprintf_symbol_filtered): Ditto.
3162
3163 * ch-typeprint.c: Make file obsolete.
3164 * ch-valprint.c: Make file obsolete.
3165 * ch-lang.h: Make file obsolete.
3166 * ch-exp.c: Make file obsolete.
3167 * ch-lang.c: Make file obsolete.
3168
3169 * Makefile.in (FLAGS_TO_PASS): Do not pass CHILL or CHILLFLAGS or
3170 CHILL_LIB.
3171 (TARGET_FLAGS_TO_PASS): Ditto.
3172 (CHILLFLAGS): Obsolete.
3173 (CHILL): Obsolete.
3174 (CHILL_FOR_TARGET): Obsolete.
3175 (CHILL_LIB): Obsolete.
3176 (SFILES): Remove ch-exp.c, ch-lang.c, ch-typeprint.c and
3177 ch-valprint.c.
3178 (HFILES_NO_SRCDIR): Remove ch-lang.h.
3179 (COMMON_OBS): Remove ch-valprint.o, ch-typeprint.o, ch-exp.o and
3180 ch-lang.o.
3181 (ch-exp.o, ch-lang.o, ch-typeprint.o, ch-valprint.o): Delete
3182 targets.
3183
3184 2002-07-31 Joel Brobecker <brobecker@gnat.com>
3185
3186 * dwarf2read.c (set_cu_language): Add handler for LANG_Ada95.
3187 This does not change anything at the moment, but will be helpful
3188 later when full Ada support is integrated.
3189
3190 2002-07-31 Kevin Buettner <kevinb@redhat.com>
3191
3192 * mips-tdep.c (_initialize_mips_tdep): Add "n64" to "set mips abi"
3193 help message.
3194
3195 2002-07-31 Kevin Buettner <kevinb@redhat.com>
3196
3197 * mips-tdep.c (mips_push_arguments): Fetch gdbarch_tdep struct
3198 and save it in a local variable. Use variable in later test.
3199
3200 2002-07-31 Kevin Buettner <kevinb@redhat.com>
3201
3202 * mips-tdep.c (mips_find_abi_section): Add N64 ABI recognition
3203 test. (Thanks to Daniel Jacobowitz.)
3204
3205 2002-07-31 Kevin Buettner <kevinb@redhat.com>
3206
3207 * mips-tdep.c (enum mips_abi): Add MIPS_ABI_N64.
3208 (mips_abi_strings): Add "n64".
3209 (mips_gdbarch_init): Add test for n64 abi. Add MIPS_ABI_N64 case.
3210
3211 2002-07-31 Kevin Buettner <kevinb@redhat.com>
3212
3213 * config/mips/tm-irix6.h (MIPS_REGSIZE): Define to be 8.
3214 (REGISTER_VIRTUAL_TYPE): Some registers are now 64 bits wide.
3215
3216 2002-07-31 Kevin Buettner <kevinb@redhat.com>
3217
3218 * utils.c (host_pointer_to_address, address_to_host_pointer):
3219 Use gdb_assert() instead of explicit call to internal_error().
3220
3221 2002-07-30 Kevin Buettner <kevinb@redhat.com>
3222
3223 * Makefile.in (rs6000-nat.o): Update dependencies.
3224
3225 From Nicholas Duffek:
3226 * Makefile.in (ALLDEPFILES): Add aix-thread.c.
3227 (aix-thread.o): New rule.
3228 * configure.host (gdb_host): Set to aix432 on AIX 4.3.2+.
3229 * config/powerpc/aix432.mh: New file.
3230
3231 2002-07-30 Daniel Jacobowitz <drow@mvista.com>
3232
3233 * ppc-linux-tdep.c (ELF_NGREG, ELF_NFPREG, ELF_NVRREG)
3234 (ELF_FPREGSET_SIZE, ELF_GREGSET_SIZE): New enums.
3235 (fetch_core_registers, ppc_linux_supply_gregset)
3236 (ppc_linux_supply_fpregset): New functions.
3237 (ppc_linux_regset_core_fns): New.
3238 (_initialize_ppc_linux_tdep): Call add_core_fns.
3239 * ppc-tdep.h: Add prototypes for ppc_linux_supply_fpregset
3240 and ppc_linux_supply_gregset.
3241 * ppc-linux-nat.c (supply_gregset): Call ppc_linux_supply_gregset.
3242 (supply_fpregset): Call ppc_linux_supply_fpregset.
3243 * config/powerpc/linux.mh (NATDEPFILES): Remove core-regset.o and
3244 corelow.o.
3245 * config/powerpc/linux.mt (TDEPFILES): Add corelow.o.
3246
3247 2002-07-30 Daniel Jacobowitz <drow@mvista.com>
3248
3249 * symtab.c (lookup_symbol): Demangle before lowercasing.
3250
3251 2002-07-30 Andrew Cagney <ac131313@redhat.com>
3252
3253 * symtab.h: Replace #include "gdb_obstack.h" with opaque
3254 declaration.
3255 * cli/cli-cmds.c, cli/cli-script.c: Include "gdb_string.h".
3256 * gnu-v3-abi.c, arc-tdep.c, cli/cli-decode.c: Ditto.
3257 * avr-tdep.c, mon960-rom.c, i960-tdep.c: Ditto.
3258 * arch-utils.c, cli/cli-setshow.c: Unconditionally include
3259 "gdb_string.h".
3260 * Makefile.in (cli-script.o, cli-cmds.o): Update dependencies.
3261 (gnu-v3-abi.o, cli-setshow.o, i960-tdep.o): Ditto.
3262 (cli-decode.o, mi-cmd-var.o, mi-cmd-disas.o): Ditto.
3263 (avr-tdep.o, mon960-rom.o): Ditto.
3264 (aout_stabs_gnu_h): Define.
3265 (symtab_h): Remove $(gdb_obstack_h).
3266
3267 2002-07-30 Jim Blandy <jimb@redhat.com>
3268
3269 Patch from David Carlton <carlton@math.stanford.edu>:
3270 * gdbinit.in: Move the `dir' commands that add GDB's own source
3271 directory to the search path to the end, so that the `gdb' source
3272 directory will be searched first.
3273
3274 2002-07-29 Andrew Cagney <ac131313@redhat.com>
3275
3276 * gdb_obstack.h: New file.
3277 * symtab.h: Include "gdb_obstack.h" instead of "obstack.h".
3278 (obstack_chunk_alloc, obstack_chunk_free): Delete macros.
3279 * objfiles.h: Include "gdb_obstack.h".
3280 * Makefile.in (gdb_obstack_h): Define.
3281 (symtab_h): Add $(gdb_obstack_h).
3282 (objfiles_h): Add $(gdb_obstack_h).
3283
3284 * objfiles.c: Include "gdb_obstack.h" instead of "obstack.h".
3285 * macrotab.c, cp-valprint.c, dbxread.c: Ditto.
3286 * ch-typeprint.c, ch-valprint.c, dstread.c: Ditto.
3287 * macroexp.c, p-typeprint.c, stabsread.c: Ditto.
3288 * symtab.c, f-typeprint.c, mdebugread.c: Ditto.
3289 * p-valprint.c, symmisc.c, typeprint.c: Ditto.
3290 * symfile.c, coffread.c, c-typeprint.c: Ditto.
3291 * buildsym.c, bcache.c, ada-typeprint.c: Ditto.
3292
3293 * Makefile.in (bcache.o): Update dependencies.
3294 (buildsym.o, c-typeprint.o, ch-typeprint.o): Ditto.
3295 (ch-valprint.o, coffread.o, cp-valprint.o): Ditto.
3296 (dbxread.o, dstread.o, f-typeprint.o): Ditto.
3297 (objfiles.o, p-typeprint.o, p-valprint.o): Ditto.
3298 (stabsread.o, symfile.o, symmisc.o): Ditto.
3299 (symtab.o, typeprint.o, macroexp.o): Ditto.
3300 (macrotab.o, mdebugread.o): Ditto.
3301 (f_lang_h, coff_sym_h, coff_symconst_h): Define.
3302 (coff_ecoff_h, aout_aout64_h): Define.
3303 (aout_stabs_gnu_h, libaout_h): Define.
3304
3305 2002-07-29 Andrew Cagney <cagney@redhat.com>
3306
3307 * regcache.c (struct regcache_descr): Rename nr_registers to
3308 nr_cooked_registers. Revise comments describing the structure
3309 member fields.
3310 (init_regcache_descr): Update.
3311 (init_legacy_regcache_descr): Update.
3312 (read_register_gen, write_register_gen): When a cooked register in
3313 the raw register range, directly access the value from the raw
3314 register cache.
3315
3316 2002-07-29 Andrew Cagney <ac131313@redhat.com>
3317
3318 * z8k-tdep.c: Do not include "obstack.h".
3319 * h8300-tdep.c, h8500-tdep.c: Ditto.
3320 * m68hc11-tdep.c, sh-tdep.c: Ditto.
3321 * valprint.c, v850-tdep.c: Ditto.
3322 * d10v-tdep.c, mn10300-tdep.c: Ditto.
3323 * mn10200-tdep.c: Ditto.
3324
3325 * Makefile.in (z8k-tdep.o): Update dependencies.
3326 (m68hc11-tdep.o, valprint.o): Ditto.
3327 (v850-tdep.o, d10v-tdep.o): Ditto.
3328 (mn10300-tdep.o, sparc-tdep.o): Ditto.
3329 (sh-tdep.o, h8500-tdep.o, h8300-tdep.o): Ditto.
3330 (m32r-tdep.o, mn10200-tdep.o): Specify dependencies.
3331 (sh_opc_h, gdb_sim_sh_h): Define.
3332 (elf_sh_h, elf_bfd_h): Define.
3333 (opcode_m68hc11_h): Define.
3334 (OPCODES_SRC, OPCODES_DIR): define.
3335 (OPCODES): Use $(OPCODES_DIR).
3336 (gdb_sim_d10v_h): Rename sim_d10v_h.
3337 (gdb_sim_arm_h): Rename sim_arm_h.
3338
3339 2002-07-26 Kevin Buettner <kevinb@redhat.com>
3340
3341 * utils.c (host_pointer_to_address, address_to_host_pointer):
3342 Change internal_error() message to indicate function responsible
3343 for the error.
3344
3345 2002-07-26 Kevin Buettner <kevinb@redhat.com>
3346
3347 * ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in
3348 calls to local_hex_string_custom().
3349
3350 2002-07-26 Kevin Buettner <kevinb@redhat.com>
3351
3352 * irix5-nat.c: Move IRIX shared library support from here...
3353 * solib-irix.c: ...to here. Revised substantially to work with
3354 generic solib framework.
3355
3356 * osabi.h (gdb_osabi): Add new enum constant GDB_OSABI_IRIX.
3357 * osabi.c (gdb_osabi_names): Add corresponding string for Irix.
3358 * mips-irix-tdep.c: New file.
3359
3360 * Makefile.in (ALLDEPFILES): Add mips-irix-tdep.c and solib-irix.c.
3361 (mips-irix-tdep.o, solib-irix.o): New rules.
3362 * config/mips/irix5.mt (TDEPFILES): Add mips-irix-tdep.o, solib.o,
3363 solib-irix.o.
3364 * config/mips/irix6.mt (TDEPFILES): Likewise.
3365 * config/mips/irix6.mh (NATDEPFILES): Remove solib.o.
3366
3367 2002-07-26 Kevin Buettner <kevinb@redhat.com>
3368
3369 * aix-thread.c (coff/internal.h, bfd/libcoff.h, pthread.h): Remove
3370 disabled (via ``#if 0'') includes.
3371
3372 2002-07-26 Kevin Buettner <kevinb@redhat.com>
3373
3374 * aix-thread.c (special_register_p, supply_sprs64, supply_sprs32)
3375 (fetch_regs_user_thread, fetch_regs_kernel_thread, fill_sprs64)
3376 (fill_sprs32, store_regs_user_thread, store_regs_kernel_thread):
3377 Add support for the fpscr register.
3378 * rs6000-nat.c (regmap, fetch_inferior_registers)
3379 (store_inferior_registers, fetch_core_registers): Likewise.
3380
3381 2002-07-26 Kevin Buettner <kevinb@redhat.com>
3382
3383 * rs6000-nat.c (language.h): Include.
3384 (special_regs): Delete this array.
3385 (regmap): New function.
3386 (fetch_register, store_register): Use regmap() to map gdb
3387 register numbers to ptrace register numbers. Also, use
3388 outputs from regmap() to make decisions regarding type of
3389 ptrace() call to make. In particular, don't compare against
3390 FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
3391 (fetch_inferior_registers, store_inferior_registers): Where
3392 possible, obtain register numbers from tdep struct. Don't
3393 refer to FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
3394 * config/rs6000/tm-rs6000.h (FIRST_UISA_SP_REGNUM)
3395 (LAST_UISA_SP_REGNUM): Delete.
3396
3397 2002-07-25 Kevin Buettner <kevinb@redhat.com>
3398
3399 * rs6000-nat.c (ppc-tdep.h): Include.
3400 (fetch_registers, store_register, fetch_core_registers): Don't
3401 access registers[] directly. Instead, use supply_register() or
3402 regcache_collect() as appropriate.
3403 (find_toc_address): Format hex address with local_hex_string().
3404
3405 2002-07-25 Andrew Cagney <ac131313@redhat.com>
3406
3407 * config/djgpp/fnchange.lst: Rename bfd/elf32-fr30.c and
3408 bfd/elf32-frv.c.
3409
3410 2002-07-24 Tom Tromey <tromey@redhat.com>
3411
3412 * jv-exp.y: Marked all strings with _().
3413 (ClassInstanceCreationExpression, ArrayCreationExpression): Use
3414 internal_error.
3415 (MethodInvocation, CastExpression, parse_number, yyerror,
3416 java_type_from_name, push_expression_name, yylex): Typo fixes.
3417
3418 2002-07-24 Daniel Jacobowitz <drow@mvista.com>
3419
3420 * ui-file.c (struct tee_file, tee_file_new, tee_file_delete)
3421 (tee_file_flush, tee_file_write, tee_file_fputs)
3422 (tee_file_isatty): New.
3423 * ui-file.h (tee_file_new): Add prototype.
3424
3425 2002-07-24 Aidan Skinner <aidan@velvet.net>
3426
3427 * ada-lang.c: Change k&r style function definitions to prototyped
3428 form.
3429 * ada-typeprint.c: Change k&r style function definitions to prototyped
3430 form.
3431 * ada-valprint.c: Change k&r style function definitions to prototyped
3432 form.
3433
3434 2002-07-24 Andrew Cagney <cagney@redhat.com>
3435
3436 * README: Remove reference to remote-bug.
3437 * Makefile.in (ALLDEPFILES): Remove m88k-nat.c, m88k-tdep.c and
3438 remote-bug.c.
3439 (m88k-nat.o): Delete rule.
3440 (m88k-tdep.o): Delete rule.
3441 (remote-bug.o): Delete rule.
3442 * MAINTAINERS: Mark as obsolete.
3443 * elfread.c (elf_symtab_read): Mention that m88k is obsolete.
3444 * m88k-tdep.c: Make file obsolete.
3445 * config/m88k/m88k.mh: Ditto.
3446 * config/m88k/delta88v4.mh: Ditto.
3447 * config/m88k/delta88v4.mt: Ditto.
3448 * config/m88k/delta88.mt: Ditto.
3449 * config/m88k/delta88.mh: Ditto.
3450 * remote-bug.c: Ditto.
3451 * config/m88k/tm-delta88.h: Ditto.
3452 * config/m88k/nm-delta88v4.h: Ditto.
3453 * config/m88k/xm-delta88.h: Ditto.
3454 * config/m88k/xm-dgux.h: Ditto.
3455 * config/m88k/tm-m88k.h: Ditto.
3456 * config/m88k/nm-m88k.h: Ditto.
3457 * config/m88k/tm-delta88v4.h: Ditto.
3458 * m88k-nat.c: Ditto.
3459 * cxux-nat.c: Ditto.
3460 * configure.host: Make m88*-motorola-sysv4*, m88*-motorola-sysv*
3461 and m88*-*-* obsolete.
3462 * configure.tgt: Make m88*-motorola-sysv4*, m88*-motorola-* and
3463 m88*-*-* obsolete.
3464
3465 2002-07-24 Andrew Cagney <cagney@redhat.com>
3466
3467 * findvar.c (extract_unsigned_integer): Make `addr' parameter
3468 constant. Same for local pointer variables.
3469 (extract_signed_integer): Ditto.
3470 * defs.h (extract_unsigned_integer): Update.
3471 (extract_signed_integer): Update.
3472
3473 2002-07-24 Andrew Cagney <cagney@redhat.com>
3474
3475 * regcache.c (regcache_raw_write): Change buf parameter to a
3476 constant void pointer.
3477 (regcache_raw_read): Change buf parameter to a void pointer.
3478 (legacy_write_register_gen): Change myaddr parameter a constant
3479 void pointer.
3480 (supply_register): Change val parameter to a const void pointer.
3481 * regcache.h (regcache_raw_write): Update declaration.
3482 (regcache_raw_read): Update declaration.
3483 (supply_register): Update declaration.
3484
3485 2002-07-24 Tom Tromey <tromey@redhat.com>
3486
3487 * defs.h (gdb_readline_wrapper): Declare.
3488 * utils.c (prompt_for_continue): Use gdb_readline_wrapper.
3489 * tracepoint.c (read_actions): Use gdb_readline_wrapper.
3490 * top.c (gdb_readline_wrapper): New function.
3491 (command_line_input): Use it.
3492
3493 2002-07-24 Andrew Cagney <cagney@redhat.com>
3494
3495 * regcache.h (regcache_raw_read, regcache_raw_write): Replace
3496 regcache_read and regcache_write.
3497 (regcache_raw_read_as_address): Replace regcache_read_as_address.
3498 * regcache.c: Update.
3499 * sh-tdep.c (sh64_push_arguments): Update comment.
3500 (sh_pseudo_register_read): Update.
3501 (sh_pseudo_register_write): Update.
3502 (sh4_register_read): Update.
3503 (sh4_register_write): Update.
3504 (sh64_pseudo_register_read): Update.
3505 (sh64_pseudo_register_write): Update.
3506 (sh64_register_read): Update.
3507 (sh64_register_write): Update.
3508 * i386-tdep.c (i386_extract_return_value): Update.
3509 (i386_extract_struct_value_address): Update.
3510 (i386_extract_return_value): Update.
3511 * blockframe.c (generic_read_register_dummy): Update.
3512 (generic_call_dummy_register_unwind): Update
3513 * infrun.c (write_inferior_status_register): Update.
3514
3515 2002-07-23 Jim Blandy <jimb@redhat.com>
3516
3517 * parser-defs.h (expression_context_pc): Make this extern.
3518 (Thanks to Michael Snyder.)
3519
3520 2002-07-23 Andrew Cagney <ac131313@redhat.com>
3521
3522 GDB 5.2.1 released from 5.2 branch.
3523 * NEWS: Mention changes in 5.2.1 including addition of AVR target.
3524 * README: Update to mention 5.2.1.
3525
3526 2002-07-23 Mark Salter <msalter@redhat.com>
3527
3528 * remote.c (remote_read_bytes): Fix check for error.
3529
3530 2002-07-22 Kevin Buettner <kevinb@redhat.com>
3531
3532 * aix-thread.c (language.h): Include.
3533 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
3534 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
3535 Print newlines at end of debug messages.
3536 (pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
3537 (pdc_write_data): Use local_hex_string() instead of %llx formats.
3538
3539 2002-07-22 Kevin Buettner <kevinb@redhat.com>
3540
3541 * aix-thread.c (ppc-tdep.h): Include.
3542 (special_register_p): New function.
3543 (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32)
3544 (store_regs_user_thread): Use register number information from
3545 gdbarch_tdep struct instead of hardcoded offsets relative to
3546 FIRST_UISA_SP_REGNUM.
3547 (fetch_regs_kernel_thread, store_regs_kernel_thread): Call
3548 special_register_p() instead of using FPLAST_REGNUM and
3549 LAST_UISA_SP_REGNUM as lower and upper bounds on the special
3550 register numbers. Also, don't assume that LAST_UISA_SP_REGNUM
3551 will be MQ's register number.
3552
3553 2002-07-22 Michael Snyder <msnyder@redhat.com>
3554
3555 * aix-thread.c (ops): Rename to aix_thread_ops.
3556 (base_ops): Rename to base_target.
3557 (ops_attach): Rename to aix_thread_attach.
3558 (ops_detach): Rename to aix_thread_detach.
3559 (ops_resume): Rename to aix_thread_detach.
3560 (ops_wait): Rename to aix_thread_wait.
3561 (ops_kill): Rename to aix_thread_kill.
3562 (init_ops): Rename to init_aix_thread_ops.
3563 (ops_fetch_register): Rename to aix_thread_fetch_register.
3564 (ops_store_register): Rename to aix_thread_store_register.
3565 (ops_mourn_inferior): Rename to aix_thread_mourn_inferior.
3566 (ops_thread_alive): Rename to aix_thread_thread_alive.
3567 (ops_extra_thread_info: Rename to aix_thread_extra_thread_info.
3568 (ops_pid_to_str): Rename to aix_thread_pid_to_str.
3569 (ops_xfer_memory): Rename to aix_thread_xfer_memory.
3570 (fetch_regs_lib): Rename to fetch_regs_user_thread.
3571 (fetch_regs_kern): Rename to fetch_regs_kernel_thread.
3572 (store_regs_lib): Rename to store_regs_user_thread.
3573 (store_regs_kern): Rename to store_regs_kernel_thread.
3574
3575 2002-07-22 Michael Snyder <msnyder@redhat.com>
3576
3577 * aix-thread.c (ops_prepare_to_store): Eliminate.
3578 (init_ops): Don't initialize ops.prepare_to_store.
3579 (store_regs_kern): Pre-fetch register buffers from child,
3580 because some registers may not be in the cache. Copy
3581 regs from register cache only if they are cached.
3582 (store_regs_lib): Copy regs from register cache only
3583 if they are cached.
3584 (fill_sprs32, (fill_sprs64, fill_fprs, fill_gprs32,
3585 fill_gprs64): Ditto.
3586
3587 2002-07-22 Kevin Buettner <kevinb@redhat.com>
3588
3589 * aix-thread.c (gdb_assert.h): Include.
3590 (fill_sprs64, fill_sprs32): Add selected asserts to make sure that
3591 register sizes (from register cache) match size of buffer holding
3592 register data.
3593 (fill_sprs32): Change parameter types to match those in the ptrace()
3594 buffer.
3595 (store_regs_lib): Likewise, but for 32-bit temporary variables.
3596 (ops_prepare_to_store): Rename loop variable ``i'' to ``regno''.
3597
3598 2002-07-22 Michael Snyder <msnyder@redhat.com>
3599
3600 * aix-thread.c (supply_sprs64): Cosmetic change.
3601 (supply_sprs32): Cosmetic change.
3602 (fill_gprs64, fill_gprs32, fill_fprs, fill_sprs32): New funcs.
3603 (fill_sprs64): Use regcache_collect instead of read_register.
3604 (store_regs_lib): Use regcache_collect instead of
3605 read_register. Use fill_sprs32 instead of fill_sprs64,
3606 if debugging a 32-bit architecture.
3607 (store_regs_kern): Use fill_gprs64 etc. to pull the values
3608 out of the register cache, instead of passing a pointer into
3609 the register cache directly to ptrace. Use regcache_collect
3610 insteaad of read_register.
3611 (ops_prepare_to_store): Use target_read_registers instead
3612 of read_register_bytes.
3613
3614 2002-07-20 Aidan Skinner <aidan@velvet.net>
3615
3616 * MAINTAINERS: Add self under write after approval.
3617
3618 2002-07-20 Aidan Skinner <aidan@velvet.net>
3619
3620 * ada-tasks.c: Change k&r style function definitions to prototyped
3621 form.
3622
3623 2002-07-19 Andrew Cagney <ac131313@redhat.com>
3624
3625 * Makefile.in (x86-64-tdep.o): Add $(objfiles_h).
3626 * x86-64-tdep.c: Include "objfiles.h".
3627 (x86_64_gdbarch_init): Set in_solib_call_trampoline to
3628 in_plt_section. From 2002-07-18 Michal Ludvig <mludvig@suse.cz>.
3629
3630 2002-07-17 Michal Ludvig <michal@suse.cz>
3631
3632 * dwarf2cfi.c (execute_stack_op): Complain on unknown DW_OP_ value.
3633 (update_context): Initialise cfa variable.
3634
3635 2002-07-17 Michael Snyder <msnyder@redhat.com>
3636
3637 * aix-thread.c: Shorten some long lines.
3638 Bring comments into line with code spec.
3639
3640 2002-07-18 Joel Brobecker <brobecker@gnat.com>
3641
3642 * infrun.c: Re-indent using gdb_indent.sh.
3643
3644 2002-07-18 Joel Brobecker <brobecker@gnat.com>
3645
3646 * infrun.c (handle_inferior_event): Remove unneeded extra brace.
3647 Leave the indentation temporarily untouched, to minimize the diffs.
3648
3649 2002-07-18 Elena Zannoni <ezannoni@redhat.com>
3650
3651 * stabsread.c: Make os9k sections of the code obsolete,
3652 for real this time.
3653 * stabsread.h: Make os9k sections of the code obsolete.
3654
3655 2002-07-18 Michal Ludvig <mludvig@suse.cz>
3656
3657 * linux-low.c (regsets_store_inferior_registers): Add free()
3658 at the end of a loop to prevent memory leak.
3659 * linux-x86-64-low.c (x86_64_regmap): Add CS, SS registers.
3660 (X86_64_NUM_GREGS): Count it from the size of x86_64_regmap.
3661 * config/sparc/tm-sp64linux.h: Make the rest of #endif
3662 line a comment.
3663 * Makefile.in (x86-64-linux-nat.o): Remove dependency on i387-tdep.h
3664
3665 2002-07-17 Jim Blandy <jimb@redhat.com>
3666
3667 * macrocmd.c (info_macro_command): Remove newline from error
3668 message.
3669
3670 2002-07-17 J"orn Rennecke <joern.rennecke@superh.com>
3671
3672 * sh-tdep.c (sh_dsp_register_sim_regno): New function.
3673 (sh_gdbarch_init): Use it for sh-dsp.
3674
3675 2002-07-16 Kevin Buettner <kevinb@redhat.com>
3676
3677 * dwarf2read.c (read_initial_length): Handle older, non-standard,
3678 64-bit DWARF2 format.
3679
3680 2002-07-16 Joel Brobecker <brobecker@gnat.com>
3681
3682 * proc-api.c: use HAVE_SYS_PROC_H macro to avoid including
3683 <sys/proc.h> when not available.
3684
3685 2002-07-16 Andrew Cagney <ac131313@redhat.com>
3686
3687 * NEWS: Mention that the i[34]86-*-os9k has been made obsolete.
3688 * stabsread.c: Make os9k sections of the code obsolete.
3689 * configure.tgt: Make i[3456]86-*-os9k target obsolete.
3690 * config/i386/i386os9k.mt: Make file obsolete.
3691 * Makefile.in (ALLDEPFILES): Remove remote-os9k.c.
3692 (COMMON_OBS): Remove os9kread.o
3693 (SFILES): Remove os9kread.c.
3694 (os9kread.o, remote-os9k.o): Make target obsolete.
3695 * remote-os9k.c: Make file obsolete.
3696 * os9kread.c: Make file obsolete.
3697 * Makefile.in
3698
3699 2002-07-16 Andrew Cagney <ac131313@redhat.com>
3700
3701 * NEWS: Mention that the FR30 has been made obsolete.
3702 * fr30-tdep.c: Make file obsolete.
3703 * config/fr30/tm-fr30.h: Ditto.
3704 * config/fr30/fr30.mt: Ditto.
3705 * configure.tgt: Make fr30-*-elf obsolete.
3706 * MAINTAINERS: Make fr30-elf obsolete.
3707
3708 2002-07-16 Pierre Muller <muller@ics.u-strasbg.fr>
3709
3710 * blockframe.c (get_pc_function_start): return 0 if the minimal symbol
3711 found is not inside a section.
3712
3713 2002-07-15 Kevin Buettner <kevinb@redhat.com>
3714
3715 * aix-thread.c (ptrace_check): Use safe_strerror() instead of
3716 strerror().
3717 (pdc_realloc): Use xrealloc() instead of realloc().
3718
3719 2002-07-15 Kevin Buettner <kevinb@redhat.com>
3720
3721 * aix-thread.c (PD_ERROR, CALL_BASE): Delete.
3722 (ops_resume, ops_wait, fetch_regs_lib, store_regs_lib)
3723 (ops_xfer_memory, ops_kill): Don't use PD_ERROR or CALL_BASE
3724 macros.
3725
3726 2002-07-15 Kevin Buettner <kevinb@redhat.com>
3727
3728 * aix-thread.c (ptrace_check): Eliminate goto.
3729 (sync_threadlists): Eliminate gotos. Also, fix array overrun
3730 problem.
3731
3732 2002-07-15 Kevin Buettner <kevinb@redhat.com>
3733
3734 * aix-thread.c (gdbcmd.h): Include.
3735 (DEBUG, DBG, DBG2, dbg): Eliminate.
3736 (debug_aix_thread): New static global.
3737 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
3738 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
3739 (fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
3740 invocations to DBG and DBG2 macros to test against
3741 ``debug_aix_thread'' and call fprintf_unfiltered().
3742 (_initialize_aix_thread): Add new command "set debug aix-thread".
3743
3744 2002-07-15 Andrew Cagney <ac131313@redhat.com>
3745
3746 From Gerhard Tonn <TON@de.ibm.com>:
3747 * s390-nat.c (fill_fpregset, fill_gregset): Use regcache_collect
3748 instead of supply_register.
3749
3750 2002-07-15 Andrew Cagney <ac131313@redhat.com>
3751
3752 * dwarf2cfi.c: Include "gdb_assert.h".
3753 (frame_state_for): Use gdb_assert to check that fde->cie_ptr is
3754 non-NULL.
3755 (update_context): Do not use __func__. Add missing ``break''.
3756 (update_context): Do not use __func__.
3757
3758 2002-07-15 Elena Zannoni <ezannoni@redhat.com>
3759
3760 * rs6000-tdep.c (rs6000_gdbarch_init): Remove variable print_insn
3761 and its setting. Set gdbarch instruction printing functions
3762 directly. For non-rs6000 case use new function
3763 gdb_print_insn_powerpc.
3764 (gdb_print_insn_powerpc): New function.
3765
3766 2002-07-13 Andrew Cagney <ac131313@redhat.com>
3767
3768 * NEWS: Mention that the d30v has been marked obsolete.
3769 * MAINTAINERS: Note that d30v / d30v-elf has been made obsolete.
3770 * configure.tgt: Mark d30v-*-* as obsolete.
3771 * d30v-tdep.c: Mark file as obsolete.
3772 * config/d30v/d30v.mt: Ditto.
3773 * config/d30v/tm-d30v.h: Ditto.
3774
3775 2002-07-13 Aidan Skinner <aidan@velvet.net>
3776
3777 * ada-tasks.c (add_task_entry): replace calls to
3778 malloc() with xmalloc
3779 * ada-tasks.c (init_task_list): replace calls to free with xfree()
3780
3781 * ada-lang.c (replace_operator_with_call, fill_in_ada_prototype,
3782 ada_finish_decode_line_1, all_sals_for_line
3783 ada_breakpoint_rewrite): replace calls to free() with xfree()
3784
3785 2002-07-12 Kevin Buettner <kevinb@redhat.com>
3786
3787 From Nicholas Duffek (with minor changes by Martin Hunt,
3788 Louis Hamilton, and Kevin Buettner):
3789 * aix-thread.c: New file.
3790
3791 2002-07-12 Petr Sorfa <petrs@caldera.com>
3792
3793 * dwarf2read.c (dwarf2_invalid_attrib_class): New
3794 complaint for invalid attribute class or form.
3795 (read_func_scope): DW_AT_frame_base
3796 better handling of DW_AT_block*.
3797 (dwarf2_add_member_fn): DW_AT_vtable_elem_location
3798 better handling of DW_AT_block*.
3799 (read_common_block): DW_AT_location
3800 better handling of DW_AT_block*.
3801 (read_partial_die): DW_AT_location better handling
3802 of DW_AT_block*.
3803 (new_symbol): DW_AT_external better handling of
3804 DW_AT_block*. Proper initialization of variable
3805 "addr".
3806 (attr_form_is_block): New function that returns true
3807 if the attribute's form is of DW_FORM_block*.
3808
3809 2002-07-12 Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
3810
3811 * valops.c (find_method_list): Remove comment about
3812 removed STATIC_MEMFUNCP argument.
3813 (value_find_oload_method_list): Likewise.
3814
3815 2002-07-12 Kevin Buettner <kevinb@redhat.com>
3816
3817 From Nicholas Duffek:
3818 * rs6000-nat.c (vmap_ldinfo, xcoff_relocate_core): Call
3819 target_new_objfile_hook.
3820
3821 2002-07-12 Kevin Buettner <kevinb@redhat.com>
3822
3823 From Nicholas Duffek:
3824 * xcoffread.c (scan_xcoff_symtab): Recognize XMC_TD as a data storage
3825 csect.
3826
3827 2002-07-12 Andrew Cagney <cagney@redhat.com>
3828
3829 * MAINTAINERS: Mention --enable-sim-build-warnings.
3830 (m68hc11-elf): Disable sim build warnings.
3831 (m32r-elf): Mark as broken obsolete candidate.
3832 (x86_64-linux-gnu): Mark as buildable with -Werror.
3833 (arm-elf): Change -w to ``,'' which enables warnings but not
3834 -Werror.
3835
3836 2002-07-12 Andrew Cagney <ac131313@redhat.com>
3837
3838 * bcache.h: Update copyright.
3839 (struct bstring, struct bcache): Move definition to "bcache.c".
3840 Replaced by opaque declaration.
3841 (bcache_xfree): Replace free_bcache.
3842 (bcache_xmalloc, bcache_memory_used): Declare.
3843
3844 * bcache.c: Update copyright.
3845 (struct bstring, struct bcache): Moved to here from "bcache.h".
3846 Update comments.
3847 (bcache_xmalloc, bcache_memory_used): New functions.
3848 (bcache_xfree): Replace function free_bcache.
3849
3850 * Makefile.in (objfiles.o): Add $(bcache_h).
3851 (objfiles_h): Remove $(bcache_h).
3852 (symfile.o): Add $(bcache_h).
3853
3854 * symmisc.c: Update copyright.
3855 (print_symbol_bcache_statistics): Pass psymbol_cache by value.
3856 (print_objfile_statistics): Use bcache_memory_used.
3857
3858 * symfile.c: Include "bcache.h".
3859 (reread_symbols): Use bcache_xfree.
3860 (reread_symbols): Use bcache_xmalloc and bcache_xfree.
3861 (add_psymbol_to_list): Pass psymbol_cache by value.
3862 (add_psymbol_with_dem_name_to_list): Ditto.
3863
3864 * objfiles.h: Update copyright.
3865 (struct bcache): Declare opaque. Do not include "bcache.h".
3866 (struct objfile): Change psymbol_cache and macro_cache to ``struct
3867 bcache'' pointers.
3868 * dwarf2read.c (macro_start_file): Pass macro_cache by value.
3869
3870 * objfiles.c: Include "bcache.h". Update copyright.
3871 (allocate_objfile): Use bcache_xmalloc to create psymbol_cache and
3872 macro_cache.
3873 (free_objfile): Use bcache_xfree.
3874
3875 2002-07-11 Grace Sainsbury <graces@redhat.com>
3876
3877 * monitor.c (monitor_fetch_register): Make name a constant.
3878 (monitor_store_register): Same.
3879
3880 2002-07-11 Daniel Jacobowitz <drow@mvista.com>
3881
3882 Based on patch from Daniel Berlin <dberlin@dberlin.org>.
3883 * buildsym.c: Include "demangle.h" for SYMBOL_INIT_DEMANGLED_NAME.
3884 (finish_block) For non-function blocks, hash the symbol table. For
3885 function blocks, mark the symbol table as unhashed.
3886 * minsyms.c (msymbol_hash): Return hash value without taking modulus.
3887 (msymbol_hash_iw): Likewise.
3888 (add_minsym_to_hash_table): Take modulus of msymbol_hash's return
3889 value.
3890 (add_minsym_to_demangled_hash_table): Likewise for msymbol_hash_iw.
3891 (lookup_minimal_symbol): Likewise for both.
3892 * symtab.h (struct block): Add `hashtable' flag. Comment the
3893 hashtable.
3894 (BLOCK_HASHTABLE, BLOCK_BUCKETS, BLOCK_BUCKET): New macro.
3895 (ALL_BLOCK_SYMBOLS): Update.
3896 (BLOCK_SHOULD_SORT): Do not sort hashed blocks.
3897 (struct symbol): Add `hash_next' pointer.
3898 * symtab.c (lookup_block_symbol): Search using the hash table when
3899 possible.
3900 (find_pc_sect_symtab): Use ALL_BLOCK_SYMBOLS.
3901 (search_symbols, find_addr_symbol): Likewise.
3902
3903 * dstread.c (process_dst_block): Clear hashtable bit for new block.
3904 (read_dst_symtab): Likewise.
3905 * jv-lang.c (get_java_class_symtab): Likewise.
3906 * mdebugread.c: Include "gdb_assert.h".
3907 (shrink_block): Assert that the block being modified is not hashed.
3908 * coffread.c (patch_opaque_types): Use ALL_BLOCK_SYMBOLS.
3909 * symmisc.c (free_symtab_block): Walk the hash table when freeing
3910 symbols.
3911 (dump_symtab): Recognize hashed blocks.
3912 * printcmd.c (print_frame_args): Assert that function blocks do not
3913 have hashed symbol tables.
3914 * ada-lang.c (symtab_for_sym): Use ALL_BLOCK_SYMBOLS.
3915 (fill_in_ada_prototype, debug_print_block): Likewise.
3916 (ada_add_block_symbols): Use ALL_BLOCK_SYMBOLS. Handle hash tables.
3917
3918 2002-07-11 Corinna Vinschen <vinschen@redhat.com>
3919
3920 * stack.c (print_frame): Use result of frame_address_in_block()
3921 instead of fi->pc when evaluating symbols.
3922 (backtrace_command_1): Ditto.
3923
3924 2002-07-11 Andrew Cagney <cagney@redhat.com>
3925
3926 * cris-tdep.c (cris_saved_pc_after_call): Fix parameter type.
3927 Make static.
3928
3929 * arm-tdep.c (arm_register_name): Make return type constant.
3930
3931 2002-07-10 Andrew Cagney <ac131313@redhat.com>
3932
3933 * win32-nat.c (has_detach_ability): Convert to strict ISO C
3934 prototype.
3935 * top.c (gdb_rl_operate_and_get_next_completion): Ditto.
3936 * s390-tdep.c (s390_fp_regnum): Ditto.
3937 (s390_read_fp): Ditto.
3938 (s390_pop_frame): Ditto.
3939 (_initialize_s390_tdep): Ditto.
3940 * remote.c (get_remote_state): Ditto.
3941 * procfs.c (mappingflags): Ditto.
3942 * memattr.c (_initialize_mem): Ditto.
3943 * mcore-tdep.c (mcore_pop_frame): Ditto.
3944 * m68klinux-nat.c (_initialize_m68k_linux_nat): Ditto.
3945 * m68k-tdep.c (m68k_register_bytes_ok): Ditto.
3946 * language.c (set_case_str): Ditto.
3947 * gnu-v3-abi.c (vtable_address_point_offset): Ditto.
3948 * frv-tdep.c (new_variant): Ditto.
3949 (frv_stopped_data_address): Ditto.
3950 * dwarf2cfi.c (fde_chunks_need_space): Ditto.
3951 (context_alloc): Ditto.
3952 (frame_state_alloc): Ditto.
3953 (unwind_tmp_obstack_init): Ditto.
3954 (unwind_tmp_obstack_free): Ditto.
3955 (cfi_read_fp): Ditto.
3956 * cris-tdep.c (cris_saved_pc_after_call): Ditto.
3957 (cris_pop_frame): Ditto.
3958 * c-lang.c (scanning_macro_expansion): Ditto.
3959 (finished_macro_expansion): Ditto.
3960 (c_preprocess_and_parse): Ditto.
3961 * gdbarch.sh: Ditto.
3962 * gdbarch.h, gdbarch.c: Regenerate.
3963 * config/mn10200/tm-mn10200.h: Adjust indentation.
3964 * target.c: Adjust indentation.
3965 * symtab.h: Adjust indentation.
3966 * stabsread.h: Adjust indentation.
3967 * remote-es.c: Adjust indentation.
3968 * os9kread.c: Adjust indentation.
3969
3970 2002-07-10 Andrew Cagney <ac131313@redhat.com>
3971
3972 * wince.c (_initialize_wince): Rename _initialize_inftarg.
3973 * win32-nat.c (_initialize_win32_nat): Rename _initialize_inftarg.
3974
3975 2002-07-10 Grace Sainsbury <graces@redhat.com>
3976
3977 * NEWS: Mention m68k, mcore multi-arching.
3978 * MAINTAINERS: Change status of m68k, mcore to reflect
3979 multi-arching.
3980
3981 2002-07-10 Daniel Jacobowitz <drow@mvista.com>
3982
3983 * valops.c (find_overload_match): Free oload_syms.
3984
3985 2002-07-09 Joel Brobecker <brobecker@gnat.com>
3986
3987 Define HAVE_SYS_PROC_H if sys/proc.h exists
3988 * configure.in: Add check for sys/proc.h
3989 * config.in: Regenerate.
3990 * configure: Regenerate.
3991
3992 2002-07-09 Grace Sainsbury <graces@redhat.com>
3993
3994 * config/m68k/tm-m68k.h: Remove macros wrapped in
3995 #if !GDB_MULTI_ARCH.
3996
3997 2002-07-08 Andrew Cagney <ac131313@redhat.com>
3998
3999 * config.in, configure: Regenerate.
4000
4001 2002-07-08 Mark Kettenis <kettenis@gnu.org>
4002
4003 * dwarf2cfi.c: Include "gcore.h".
4004 (execute_stack_op): Fix implementation of the
4005 DW_OP_deref and DW_OP_deref_size operators by letting do their
4006 lookup in the target.
4007
4008 2002-07-07 Mark Kettenis <kettenis@gnu.org>
4009
4010 From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de>:
4011 * i386-sol2-tdep.c (i386_sol2_init_abi): Correct value for
4012 tdep->sc_sp_offset.
4013
4014 2002-07-05 Daniel Jacobowitz <drow@mvista.com>
4015
4016 Fix PR gdb/595, gdb/602
4017 * gnu-v3-abi.c (gnuv3_baseclass_offset): Remove unused variables.
4018 Don't call value_cast, just read the vtable pointer; update comments
4019 to match.
4020
4021 2002-07-05 Grace Sainsbury <graces@redhat.com>
4022
4023 * config/mcore/tm-mcore.h: Remove file.
4024 * config/mcore/mcore.mt: Remove definition of TM_FILE
4025 * configure.tgt: Set gdb_multi_arch to yes for the mcore target.
4026
4027 2002-07-05 Mark Kettenis <kettenis@gnu.org>
4028
4029 * i386bsd-tdep.c: Include "gdb_string.h".
4030
4031 2002-07-04 Grace Sainsbury <graces@redhat.com>
4032
4033 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Set to 2.
4034 (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG,RETVAL_REGNUM): Move to
4035 mcore-tdep.
4036 (REG_STRUCT_HAS_ADDR, USE_STRUCT_CONVENTION, GET_SAVED_REGISTER)
4037 (TARGET_VIRTUAL_FRAME_POINTER, BELIEVE_PCC_PROMOTION): Remove.
4038 * mcore-tdep.c (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG)
4039 (RETVAL_REGNUM): Move macros from tm-mcore.h
4040 (mcore_reg_struct_has_addr): New function.
4041 (mcore_gdbarch_init): Added initializations for the macros removed
4042 from tm-mcore.h.
4043
4044 2002-07-04 Mark Kettenis <kettenis@gnu.org>
4045
4046 * osabi.c (generic_elf_osabi_sniffer): Add check for FreeBSD 3.x's
4047 traditonal string branding within the ELF header.
4048
4049 2002-07-04 Daniel Jacobowitz <drow@mvista.com>
4050
4051 * symtab.c (remove_params): New function.
4052 (make_symbol_overload_list): Use it instead of cplus_demangle.
4053 (overload_list_add_symbol): Likewise. Reorder. Fix memory leak.
4054
4055 2002-07-04 Mark Kettenis <kettenis@gnu.org>
4056
4057 * i386obsd-nat.c (_initialize_i386obsd_nat): Fix typo in prototype.
4058
4059 * i386bsd-tdep.c (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end):
4060 New variables.
4061 (i386nbsd_init_abi): Use these to initialize tdep->sigtramp_start
4062 and tdep->sigtramp_end.
4063 * i386obsd-nat.c: New file.
4064 * config/i386/obsd.mh (NATDEPFILES): Add i386obsd-nat.o.
4065
4066 * dwarf2cfi.c (cfi_pop_frame): Use alloca() for regbuf.
4067 Don't call get_current_frame().
4068
4069 2002-07-04 Pierre Muller <muller@ics.u-strasbg.fr>
4070
4071 * i386-nat.c (child_post_startup_inferior): New function
4072 calling i386_cleanup_dregs if
4073 I386_USE_GENERIC_WATCHPOINTS is defined.
4074 * config/i386/nm-i386.h: define CHILD_POST_STARTUP_INFERIOR
4075 conditional to acknowledge that i386-nat.c has its
4076 own child_post_startup_inferior function.
4077
4078 2002-07-04 Mark Kettenis <kettenis@gnu.org>
4079
4080 * i386-tdep.h (I386_MAX_REGISTER_SIZE): New define.
4081 * i386-tdep.c (i386_do_pop_frame): Use I386_MAX_REGISTER_SIZE
4082 instead of MAX_REGISTER_RAW_SIZE.
4083 (i386_extract_return_value, i386_extract_struct_value_address):
4084 Convert to use regcache.
4085 (i386_gdbarch_init): Set max_register_raw_size and
4086 max_register_virtual_size to I386_MAX_REGISTER_SIZE.
4087 Set extract_return_value and extract_struct_value_address instead
4088 of their deprecated variants.
4089
4090 Convert i386 target to generic dummy frames.
4091 * i386-tdep.c: Include "symfile.h".
4092 (i386_frameless_signal_p): Consider a function to be frameless if
4093 the pc points at the first instruction of the function.
4094 (i386_frame_chain): Handle (generic) call dummies.
4095 (i386_frame_saved_pc): Likewise.
4096 (i386_frame_init_saved_regs): Remove code dealing with call
4097 dummies on the stack.
4098 (i386_push_dummy_frame): Removed.
4099 (i386_call_dummy_words): Removed.
4100 (i386_fix_call_dummy): Removed.
4101 (i386_push_return_address): New function.
4102 (i386_do_pop_frame): Renamed from i386_pop_frame. Add FRAME
4103 parameter, and don't call get_current_frame.
4104 (i386_pop_frame): New function.
4105 (i386_gdbarch_init): Set use_generic_dummy_frames to 1, set
4106 call_dummy_location to AT_ENTRY_POINT, set call_dummy_address to
4107 entry_point_address, set call_dummy_breakpoint_offset to 0, set
4108 call_dummy_length to 0, set call_dummy_words to NULL, set
4109 sizeof_call_dummy_words to 0, set fix_call_dummy to
4110 generic_fix_call_dummy, set pc_in_call_dummy to
4111 pc_in_call_dummy_at_entry_point, set push_dummy_frame to
4112 generic_push_dummy_frame, set push_return_address to
4113 i386_push_return_address and set frame_chain_valid to
4114 generic_file_frame_chain_valid.
4115
4116 2002-07-03 Andrew Cagney <ac131313@redhat.com>
4117
4118 * gdbarch.sh (struct regcache): Add opaque declaration.
4119 (EXTRACT_RETURN_VALUE): New architecture method.
4120 (EXTRACT_STRUCT_VALUE_ADDRESS): Ditto.
4121 * gdbarch.h, gdbarch.c: Regenerate.
4122 * arch-utils.c (legacy_extract_return_value): New function.
4123 * arch-utils.h (legacy_extract_return_value): Declare.
4124 * values.c (value_being_returned): Re-enable code handling
4125 EXTRACT_STRUCT_VALUE_ADDRESS. Move
4126 deprecated_grub_regcache_for_registers call to block handling
4127 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
4128 (EXTRACT_RETURN_VALUE): Do not define.
4129
4130 2002-07-03 Grace Sainsbury <graces@redhat.com>
4131
4132 * config/mcore/tm-mcore.h (REGISTER_BYTES, NUM_REGS, PC_REGNUM)
4133 (SP_REGNUM, FP_REGNUM, FUNCTION_START_OFFSET, DECR_PC_AFTER_BREAK)
4134 (BREAKPOINT_FROM_PC, INNER_THAN, SAVED_PC_AFTER_CALL)
4135 (INIT_EXTRA_FRAME_INFO, FRAME_INIT_SAVED_REGS, INIT_FRAME_PC)
4136 (FRAME_CHAIN, FRAME_CHAIN_VALID, FRAME_SAVED_PC)
4137 (STORE_RETURN_VALUE, DEPRECATED_EXTRACT_RETURN_VALUE)
4138 (STORE_STRUCT_RETURN, DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
4139 (SKIP_PROLOGUE, FRAME_ARGS_SKIP, FRAME_ARGS_ADDRESS)
4140 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, POP_FRAME)
4141 (PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME, PUSH_ARGUMENTS): Remove.
4142 * mcore-tdep.c (mcore_init_extra_frame_info): Add fromleaf
4143 argument so the function fits the prototype in the architecture
4144 vector.
4145 (mcore_pop_frame): Remove argument so the function fits the
4146 prototype. Use get_current_frame instead of the argument.
4147 (mcore_push_arguments): Change type of struct_return so the
4148 function can be used in the architecture vector.
4149 (mcore_store_struct_return): Add.
4150 (mcore_frame_init_saved_regs): Add.
4151 (mcore_gdbarch_init): Add function calls to replace the macros
4152 removed from tm-mcore.h
4153
4154 2002-07-03 Andrew Cagney <ac131313@redhat.com>
4155
4156 * infcmd.c (print_return_value): Remove compatibility code calling
4157 deprecated_grub_regcache_for_registers.
4158
4159 * values.c: Include "regcache.h".
4160 (value_being_returned): Update. Use
4161 deprecated_grub_regcache_for_registers to extract the register
4162 buffer address.
4163 * value.h (value_being_returned): Change ``retbuf'' parameter to a
4164 ``struct regcache''.
4165 * Makefile.in (values.o): Add dependency on $(regcache_h).
4166
4167 * inferior.h (run_stack_dummy): Change type of second parameter to
4168 a ``struct regcache''.
4169 * valops.c (hand_function_call): Change type of retbuf to ``struct
4170 regcache''. Allocate using regcache_xmalloc, clean using
4171 make_cleanup_regcache_xfree.
4172 * infcmd.c (run_stack_dummy): Update. Use
4173 regcache_cpu_no_passthrough instead of memcpy to copy the buffer.
4174
4175 * regcache.c (do_regcache_xfree): New function.
4176 (make_cleanup_regcache_xfree): New function.
4177 * regcache.h (make_cleanup_regcache_xfree): Declare.
4178
4179 2002-07-03 Martin M. Hunt <hunt@redhat.com>
4180
4181 * event-top.c (command_line_handler): Don't read past
4182 beginning of buffer.
4183
4184 2002-07-03 Martin M. Hunt <hunt@redhat.com>
4185
4186 * varobj.c (struct varobj_root): Change frame from CORE_ADDR to
4187 struct frame_id.
4188 (varobj_create): Store frame_id for root.
4189 (varobj_gen_name): Use xasprintf.
4190 (varobj_update): Save and restore frame using get_frame_id() and
4191 frame_find_by_id().
4192 (create_child): Use xasprintf.
4193 (new_root_variable): Initialize frame_id.
4194 (c_name_of_child): Use xasprintf. Call find_frame_by_id().
4195 (c_value_of_variable): Use xasprintf. Move mem_fileopen call
4196 to prevent memory leak.
4197
4198 2002-07-03 Andrew Cagney <ac131313@redhat.com>
4199
4200 * valops.c (hand_function_call): Move declaration of retbuf to
4201 start of function, allocate using malloc, add a cleanup but before
4202 the inf_status cleanup, cleanup the buffer. Rename local variable
4203 old_chain to inf_status_cleanup.
4204
4205 2002-07-03 Martin M. Hunt <hunt@redhat.com>
4206
4207 * top.c (execute_command): Use cmd_func() and cmd_func_p().
4208
4209 * cli/cli-decode.c (cmd_func_p): New function.
4210 (cmd_func): New function.
4211
4212 * command.h: Add cmd_func() and cmd_func_p().
4213
4214 2002-07-03 Grace Sainsbury <graces@redhat.com>
4215
4216 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Add macro. Set to 0.
4217 (REGISTER_SIZE): Remove.
4218 (MAX_REGISTER_RAW_SIZE): Remove.
4219 (REGISTER_VIRTUAL_TYPE): Remove.
4220 (MAX_REGISTER_VIRTUAL_SIZE): Remove.
4221 (REGISTER_NAME): Remove.
4222 (USE_GENERIC_DUMMY_FRAMES): Remove.
4223 (CALL_DUMMY): Remove.
4224 (CALL_DUMMY_START_OFFSET): Remove.
4225 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
4226 (CALL_DUMMY_LOCATION): Remove.
4227 (FIX_CALL_DUMMY): Remove.
4228 (CALL_DUMMY_ADDRESS): Remove.
4229 (SIZEOF_CALL_DUMMY_WORDS): Remove.
4230 (SAVE_DUMMY_FRAME_TOS): Remove.
4231 * mcore-tdep.c (MCORE_REG_SIZE, MCORE_NUM_REGS): Add macros.
4232 (mcore_register_virtual_type): New function.
4233 (mcore_register_byte): New function.
4234 (mcore_register_size): New function.
4235 (mcore_register_name): New function.
4236 (mcore_gdbarch_init): New function. Add set_gdbarch calls for
4237 macros removed from tm-mcore.h.
4238 (mcore_dump_tdep): Add.
4239 (_initialize_mcore_tdep): Add gdbarch_register call.
4240
4241 2002-07-03 Mark Kettenis <kettenis@gnu.org>
4242
4243 * i386-tdep.c (i386_frameless_signal_p): Provide an argument in to
4244 frameless_look_for_prologue, such that we actually call this
4245 function.
4246
4247 2002-07-02 Joel Brobecker <brobecker@gnat.com>
4248
4249 * frame.h (frame_address_in_block): New function.
4250
4251 * blockframe.c (frame_address_in_block): New function extracted
4252 from get_frame_block().
4253 (get_frame_block): Use frame_address_in_block().
4254 (block_innermost_frame): Use frame_address_in_block() to match
4255 the frame pc address against the block boundaries rather than
4256 the frame pc directly. This prevents a failure when a frame pc
4257 is actually a return-address pointing immediately after the end
4258 of the given block.
4259
4260 2002-07-02 Grace Sainsbury <graces@redhat.com>
4261
4262 * MAINTAINERS: Add self under write after approval.
4263
4264 2002-07-02 Grace Sainsbury <graces@redhat.com>
4265
4266 * m68k-tdep.c (m68k_remote_breakpoint_from_pc): Add. Currently not
4267 used in architecture vector. The default is
4268 m68k_local_breakpoint_from_pc.
4269 (m68k_local_breakpoint_from_pc): Add.
4270 (enum): Add register numbers from tm-m68k.h.
4271 (m68k_gdbarch_init): Add breakpoint_from_pc to architecture
4272 vector.
4273 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Set to
4274 GDB_MULTI_ARCH_PARTIAL.
4275 (BPT_VECTOR, REGISTER_BYTES_FP, REGISTER_BYTES_NOFP)
4276 (NUM_FREGS, SIG_PC_FP_OFFSET, SP_ARG0, REMOTE_BPT_VECTOR): Move to
4277 m68k-tdep.c.
4278 (BREAKPOINT, REMOTE_BREAKPOINT): Remove.
4279 (A1_REGNUM, FP0_REGNUM, FPC_REGNUM, FPS_REGNUM, FPI_REGNUM): Move
4280 to enum in m68k-tdep.c
4281
4282 2002-07-02 Joel Brobecker <brobecker@gnat.com>
4283
4284 * solib-osf.c (open_map): Compute the list of shared libraries
4285 loaded by the inferior, rather than the list of libraries loaded
4286 by GDB itself. Otherwise, GDB ends up reading the symbols from
4287 the wrong shared libraries...
4288
4289 2002-07-02 Mark Kettenis <kettenis@gnu.org>
4290
4291 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Make static.
4292 (LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONEXT_SP_OFFSET): Remove
4293 macros.
4294 (i386_linux_sigtramp_saved_pc, i386_linux_sigtramp_saved_sp):
4295 Remove functions.
4296 (FRAMELESS_SIGNAL): Remove function.
4297 (i386_linux_frame_chain, i386_linux_frame_saved_pc,
4298 i386_linux_saved_pc_after_call): Removed.
4299 (i386_linux_init_abi): Initialize tdep->sigcontext_addr,
4300 tdep->sc_pc_offset and tdep->sc_sp_offset. Don't override
4301 frame_chain, frame_saved_pc and saved_pc_after_call any longer.
4302
4303 * i386-tdep.c (i386_frameless_signal_p): New function.
4304 (i386_frame_chain): Deal with frameless signals.
4305 (i386_sigtramp_saved_sp): New function.
4306 (i386_frame_saved_pc): Deal with frameless signals.
4307 (i386_saved_pc_after_call): Make sure the correct value is
4308 returned just after entry into a sigtramp.
4309 * i386bsd-tdep.c (i386bsd_sc_sp_offset, i386nbsd_sc_sp_offset,
4310 i386fbsd4_sc_sp_offset): New variables.
4311 (i386bsd_init_abi, i386nbsd_init_abi, i386fbsd4_init_abi): Use
4312 these variables to initialize tdep->sc_sp_offset. * i386bsd-nat.c
4313 (_initialize_i386bsd_nat): Add sanity check for sc_sp_offset
4314 similiar to what we already did for sc_pc_offset.
4315 * i386-sol2-tdep.c (i386_sol2_init_abi): Initialize
4316 tdep->sc_sp_offset.
4317
4318 * i386nbsd-tdep.c (fetch_elfcore_registers): Wrap long line.
4319
4320 2002-07-02 Michal Ludvig <mludvig@suse.cz>
4321
4322 * config/i386/tm-x86-64linux.h: New.
4323 * config/i386/x86-64linux.mt: Add GDB_MULTI_ARCH and TM_FILE
4324 definitions.
4325 * config/i386/nm-x86-64.h: Rename to ...
4326 * config/i386/nm-x86-64linux.h: ... this one.
4327 * config/i386/x86-64linux.mh: Reflect the above change.
4328
4329 2002-07-01 Mark Kettenis <kettenis@gnu.org>
4330
4331 * i386-tdep.h (struct gdbarch_tdep): Replace sigtramp_saved_pc
4332 with sigcontext_addr. Add sc_sp_offset.
4333 (i386bsd_sigtramp_saved_pc): Remove prototype.
4334 (i386bsd_sicontext_addr): Add prototype.
4335 * i386-tdep.c (i386_sigtramp_saved_pc): New function.
4336 (i386_frame_saved_pc): Rewrite to call i386_sigtramp_saved_pc.
4337 (i386_svr4_sigtramp_saved_pc): Removed.
4338 (i386_svr4_sigcontext_addr): New function.
4339 (i386_svr4_init_abi): Don't initialize tdep->sigtramp_saved_pc.
4340 Initialize tdep->sigcontext_addr instead. Initialize
4341 tdep->sc_pc_offset and tdep->sc_sp_offset.
4342 (i386_gdbarch_init): Likewise.
4343 * i386bsd-tdep.c (i386bsd_sigcontext_addr): Don't make it static
4344 any more.
4345 (i386bsd_sigtramp_saved_pc): Remove function.
4346 (i386bsd_init_abi): Don't initialize tdep->sigtramp_saved_pc.
4347 Initialize tdep->sigcontext_addr instead. Initialize
4348 tdep->sc_pc_offset.
4349 * i386-linux-tdep.c (i386_linux_init_abi): Remove initialization
4350 of tdep->sigtramp_saved_pc.
4351 * i386-sol2-tdep.c (i386_sol2_init_abi): Don't initialize
4352 tdep->sigtramp_saved_pc. Initialize tdep->sigcontext_addr
4353 instead.
4354
4355 * i386-tdep.c (i386_frameless_function_invocation,
4356 i386_frame_num_args, i386_frame_init_saved_regs,
4357 i386_skip_prologue, i386_push_dummy_frame, i386_fix_call_dummy,
4358 i386_pop_frame, i386_push_arguments, i386_store_struct_return,
4359 i386_extract_return_value, i386_store_return_value,
4360 i386_extract_struct_value_address, i386_register_virtual_type,
4361 i386_register_convertible, i386_register_convert_to_virtual,
4362 i386_register_convert_to_raw, i386_svr4_sigtramp_saved_pc,
4363 i386_go32_init_abi, i386_nw_init_abi, i386_gdbarch_init): Make
4364 static.
4365
4366 2002-07-01 Mark Kettenis <kettenis@gnu.org>
4367
4368 * i386bsd-tdep.c (i386bsd_frame_saved_pc): Removed.
4369
4370 * config/i386/tm-i386sol2.h (COERCE_FLOAT_TO_DOUBLE): Removed.
4371 * i386-sol2-tdep.c (i386_sol2_init_abi): Adjust for the removal of
4372 this macro. Include "value.h".
4373
4374 2002-06-30 Aidan Skinner <aidan@velvet.net>
4375
4376 * ada-exp.tab.c: remove as it's a generated file
4377 * ada-lex.c: remove as it's a generated file
4378
4379 2002-06-30 Mark Kettenis <kettenis@gnu.org>
4380
4381 * config/i386/tm-i386.h (struct frame_info, struct
4382 frame_saved_regs, struct value, struct type): Remove forward
4383 declarations.
4384
4385 * config/i386/tm-linux.h [HAVE_PTRACE_GETFPXREGS]
4386 (FILL_FPXREGSET, HAVE_SSE_REGS): Remove define.
4387 * config/i386/nm-linux.h [HAVE_PTRACE_GETFPXREGS]
4388 (FILL_FPXREGSET): Define.
4389
4390 * config/i386/tm-nbsd.h (HAVE_SSE_REGS): Remove define.
4391
4392 * configure.tgt (i[3456]86-*-openbsd*): Fold into
4393 i[3456]86-*-netbsd* case.
4394 * config/i386/tm-obsd.h: Removed.
4395 * config/i386/obsd.mt: Removed.
4396 * config/i386/obsd.mh (NATDEPFILES): Remove corelow.o and
4397 core-aout.o.
4398 (MH_CFLAGS): Add -DYYDEBUG=0.
4399
4400 * i386bsd-nat.c (_initialize_i386bsd_nat): Define SC_PC_OFFSET to
4401 i386nbsd_sc_pc_offset on OpenBSD too.
4402
4403 * config/i386/tm-fbsd.h [!SVR4_SHARED_LIBS]
4404 (IN_SOLIB_CALL_TRAMPOLINE): Remove define.
4405 * config/i386/tm-nbsdaout.h (IN_SOLIB_CALL_TRAMPOLINE): Remove
4406 define.
4407 * i386bsd-tdep.c: Include "arch-utils.h".
4408 (i386bsd_aout_in_solib_call_trampoline): New function.
4409 (i386bsd_init_abi): Set in_solib_call_trampoline to
4410 i386bsd_aout_in_solib_call_trampoline.
4411 (i386nbsdelf_init_abi, i386fbsd_init_abi): Set
4412 in_solib_call_trampoline to generic_in_solib_call_trampoline.
4413
4414 2002-06-28 Andrew Cagney <ac131313@redhat.com>
4415
4416 * macrotab.h: Do not include "obstack.h" or "bcache.h".
4417 (struct obstack, struct bcache): Add opaque declarations.
4418 * Makefile.in (macrotab_h): Update
4419
4420 2002-06-28 Andrew Cagney <ac131313@redhat.com>
4421
4422 * blockframe.c (generic_find_dummy_frame): Change return type to
4423 ``struct regcache''.
4424 (struct dummy_frame): Replace field ``registers'' with regcache, a
4425 struct regcache object.
4426 (generic_find_dummy_frame): Update.
4427 (generic_push_dummy_frame): Update. Use regcache_xfree,
4428 regcache_xmalloc and regcache_cpy.
4429 (generic_pop_dummy_frame): Update. Use regcache_cpy and
4430 regcache_xfree.
4431 (deprecated_generic_find_dummy_frame): Update.
4432 (generic_read_register_dummy): Update. Use
4433 regcache_read_as_address.
4434 (generic_call_dummy_register_unwind): Update. Use regcache_read.
4435 (generic_get_saved_register): Update. Use regcache_read.
4436
4437 2002-06-28 Andrew Cagney <ac131313@redhat.com>
4438
4439 * Makefile.in (objfiles_h): Add $(bcache_h).
4440 * objfiles.h: Include "bcache.h".
4441
4442 * Makefile.in (symtab_h): Remove $(bcache_h).
4443 * symtab.h: Do not include "bcache.h".
4444
4445 2002-06-28 Andrew Cagney <ac131313@redhat.com>
4446
4447 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Set frame_chain_valid to
4448 generic_func_frame_chain_valid.
4449
4450 2002-06-28 David O'Brien <obrien@FreeBSD.org>
4451
4452 * config/i386/nm-fbsd.h: Include <sys/param.h>.
4453 * config/i386/tm-fbsd.h: Likewise.
4454
4455 2002-06-28 Andrew Cagney <ac131313@redhat.com>
4456
4457 * rs6000-tdep.c (rs6000_gdbarch_init): Use
4458 generic_unwind_get_saved_register.
4459
4460 2002-06-27 Andrew Cagney <ac131313@redhat.com>
4461
4462 From 2002-06-27 John David Anglin <dave@hiauly1.hia.nrc.ca>:
4463 * regcache.c (supply_register): Add missing argument to
4464 register_buffer call.
4465
4466 2002-06-27 Andrew Cagney <ac131313@redhat.com>
4467
4468 * Makefile.in (init.c): Drop -e option to grep. Not necessary and
4469 Solaris /bin/grep does not not like it. From Peter Schauer.
4470
4471 2002-06-26 Tom Tromey <tromey@redhat.com>
4472
4473 * command.h (add_setshow_cmd): Declare.
4474 (add_setshow_cmd_full): Declare.
4475 * cli/cli-decode.c (add_setshow_cmd): No longer static. Now
4476 returns void. Use add_setshow_cmd_full.
4477 (add_setshow_cmd_full): New function.
4478 (add_setshow_auto_boolean_cmd): Use add_setshow_cmd_full.
4479 (add_setshow_boolean_cmd): Likewise.
4480
4481 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
4482
4483 * config/vax/tm-vax.h: Protect from multiple inclusion.
4484 (TARGET_UPAGES, TARGET_NBPG, STACK_END_ADDR)
4485 (SIGTRAMP_START, SIGTRAMP_END, SIGCONTEXT_PC_OFFSET): Move to...
4486 * config/vax/tm-vaxbsd.h: ...here. New file.
4487 * config/vax/vax.mt (TM_FILE): Set to tm-vaxbsd.h.
4488
4489 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
4490
4491 * config/vax/tm-vax.h (BREAKPOINT): Remove.
4492 (BELIEVE_PCC_PROMOTION): Remove.
4493 (AP_REGNUM): Move to...
4494 * config/vax/nm-vax.h: ...here.
4495 * vax-tdep.c: Use VAX_AP_REGNUM instead of AP_REGNUM.
4496 (vax_breakpoint_from_pc): New function.
4497 (vax_gdbarch_init): Initialize gdbarch_breakpoint_from_pc
4498 and gdbarch_believe_pcc_promotion.
4499
4500 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
4501
4502 * Makefile.in (vax_tdep_h): Define.
4503 (vax-tdep.o): Use $(vax_tdep_h).
4504 * vax-tdep.c (vax_gdbarch_init): Use generic OS ABI framework.
4505 (vax_dump_tdep): New function.
4506 (_initialize_vax_tdep): Register vax_dump_tdep.
4507 * vax-tdep.h: Include osabi.h.
4508 (struct gdbarch_tdep): New.
4509
4510 2002-06-26 Andrew Cagney <cagney@redhat.com>
4511
4512 * frame.h (deprecated_generic_find_dummy_frame): Rename
4513 generic_find_dummy_frame.
4514 * blockframe.c (generic_find_dummy_frame): Make static.
4515 (deprecated_generic_find_dummy_frame): New function.
4516 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Replace
4517 generic_find_dummy_frame with deprecated_find_dummy_frame.
4518 (sh64_nofp_frame_init_saved_regs): Ditto.
4519 (sh_fp_frame_init_saved_regs): Ditto.
4520 * s390-tdep.c (s390_frame_saved_pc_nofix): Ditto.
4521 (s390_frame_chain): Ditto.
4522 * cris-tdep.c (cris_frame_init_saved_regs): Ditto.
4523
4524 2002-06-26 Grace Sainsbury <graces@redhat.com>
4525
4526 * config/m68k/tm-m68k.h: Rearrange code so macros not in the
4527 gdbarch vector are at the top.
4528 (NUM_REGS): Remove.
4529 (FP_REGNUM, SP_REGNUM, PS_REGNUM, PC_REGNUM, FP0_REGNUM): Remove.
4530 (FRAME_ARGS_ADDRESS): Remove.
4531 (FRAME_LOCALS_ADDRESS): Remove.
4532 (FRAME_NUM_ARGS): Remove.
4533 (FRAME_ARGS_SKIP): Remove.
4534 * m68k-tdep.c (enum): Add eumeration of special register numbers.
4535 (m68k_gdbarch_init): Add gdbarch initializations for macros
4536 undefined in tm-m68k.h
4537
4538 2002-06-26 Grace Sainsbury <graces@redhat.com>
4539
4540 * monitor.h: Add the function regname to monitor_ops
4541 structure. This way NUM_REGS does not have to be a constant.
4542 * monitor.c (monitor_fetch_register): Added support for regname
4543 function. The function is called if the array regnames is NULL.
4544 (monitor_store_register): Same.
4545 * cpu32bug-rom.c (cpu32bug_regname): Add function. Replaces
4546 regnames array.
4547 (init_cpu32bug_cmds): set cpu32bug_cmds.regnames to NULL,
4548 cpu32bug_cmds.regname to point to new function.
4549 * abug-rom.c (abug_regname): Same as above.
4550 (init_abug_cmds): Same.
4551 * dbug-rom.c (dbug_regname): Same as above.
4552 (init_dbug_cmds): Same.
4553 * remote-est.c (est_regname): Same.
4554 (init_est_cmds): Same.
4555 * rom68k-rom.c (rom68k_regname): Same.
4556 (init_rom68k_cmds): Same.
4557
4558 2002-06-25 Tom Tromey <tromey@redhat.com>
4559
4560 * breakpoint.c (delete_command): Don't repeat `delete' commands.
4561
4562 2002-06-25 Andrew Cagney <cagney@redhat.com>
4563
4564 * infrun.c (stop_registers): Change variable's type to ``struct
4565 regcache'''.
4566 (xmalloc_inferior_status): Delete function.
4567 (free_inferior_status): Delete function.
4568 (normal_stop): Use regcache_cpy.
4569 (struct inferior_status): Change type of fields ``stop_registers''
4570 and ``registers'' to ``struct regcache''.
4571 (write_inferior_status_register): Use regcache_write.
4572 (save_inferior_status): Instead of calling
4573 xmalloc_inferior_status, allocate the inf_status buffer directly.
4574 Use regcache_dup_no_passthrough and regcache_dup to save the
4575 buffers.
4576 (restore_inferior_status): Use regcache_xfree and regcache_cpy.
4577 Replace the stop_registers regcache instead of overriding it. Use
4578 regcache_xfree. Instead of calling free_inferior_status, xfree
4579 the buffer directly.
4580 (discard_inferior_status): Use regcache_xfree. Instead of calling
4581 free_inferior_status, xfree the buffer directly.
4582 (build_infrun): Use regcache_xmalloc.
4583 (_initialize_infrun): Delete redundant call to build_infrun.
4584
4585 * Makefile.in (infcmd.o): Add $(regcache_h).
4586
4587 * infcmd.c: Include "regcache.h".
4588 (run_stack_dummy): Use deprecated_grub_regcache_for_registers to
4589 obtain the address of `stop_registers' register buffer.
4590 (print_return_value): Ditto.
4591
4592 * inferior.h (struct regcache): Add opaque declaration.
4593 (stop_registers): Change variable's declared type to ``struct
4594 regcache''.
4595
4596 2002-06-24 Tom Tromey <tromey@redhat.com>
4597
4598 * cli/cli-decode.c (add_show_from_set): Fixed typo in comment.
4599 * target.c (initialize_targets): Fixed typo in
4600 trust-readonly-sections `show' documentation.
4601
4602 * main.c: Marked all strings with _().
4603
4604 2002-06-24 Don Howard <dhoward@redhat.com>
4605
4606 * memattr.c (create_mem_region): Treat hi == 0 as a special case
4607 that means max CORE_ADDR+1.
4608 (lookup_mem_region): Ditto.
4609 (mem_info_command): Ditto.
4610
4611 2002-06-24 Grace Sainsbury <graces@redhat.com>
4612
4613 * config/m68k/tm-m68k.h (DECR_PC_AFTER_BREAK): Remove.
4614 (REGISTER_BYTES_OK): Remove.
4615 (REGISTER_BYTES): Remove.
4616 (STORE_STRUCT_RETURN): Remove.
4617 (DEPRECATED_EXTRACT_RETURN_VALUE): Remove.
4618 (STORE_RETURN_VALUE): Remove.
4619 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Remove.
4620 (FRAME_CHAIN): Remove.
4621 (FRAMELESS_FUNCTION_INVOCATION): Remove.
4622 (FRAME_SAVED_PC): Remove.
4623 * m68k-tdep.c (m68k_register_bytes_ok):Add.
4624 (m68k_store_struct_return): Add.
4625 (m68k_deprecated_extract_return_value): Add.
4626 (m68k_deprecated_extract_struct_value_address): Add.
4627 (m68k_store_return_value): Add.
4628 (m68k_frame_chain): Add.
4629 (m68k_frameless_function_invocation): Add.
4630 (m68k_frame_saved_pc): Add.
4631 (m68k_gdbarch_init): added set_gdbarch calls for new
4632 functions and deleted macros.
4633
4634 2002-06-23 Tom Tromey <tromey@redhat.com>
4635
4636 * Makefile.in (HFILES_NO_SRCDIR): Remove old files.
4637 (ALLDEPFILES): Likewise.
4638 (udiheaders): Removed.
4639 (udip2soc.o): Likewise.
4640 (udi2go32.o): Likewise.
4641 (udr.o): Likewise.
4642 (HFILES_WITH_SRCDIR): Don't mention udiheaders.
4643
4644 2002-06-22 Andrew Cagney <ac131313@redhat.com>
4645
4646 * infrun.c (_initialize_infrun): Delete unnecessary call to
4647 build_infrun.
4648
4649 * regcache.h: Update comments describing the regcache_cpy family
4650 of functions.
4651 (regcache_save, regcache_restore): Delete declaration.
4652 (regcache_save_no_passthrough): Delete declaration.
4653 (regcache_restore_no_passthrough): Delete declaration.
4654 * regcache.c (regcache_save): Delete function.
4655 (regcache_save_no_passthrough): Delete function.
4656 (regcache_restore): Delete function.
4657 (regcache_restore_no_passthrough): Delete function.
4658
4659 2002-06-21 Andrew Cagney <ac131313@redhat.com>
4660
4661 * config/m68k/tm-m68k.h: Fix typo.
4662 (FRAME_INIT_SAVED_REGS): Define when non-multi-arch.
4663 (m68k_frame_init_saved_regs): Declare.
4664
4665 2002-06-21 Jim Blandy <jimb@redhat.com>
4666
4667 Remove some vestiges of Harris 88k support.
4668 * dwarf2read.c (decode_locdesc): Remove `#if' block for Harris 88k
4669 register numbering quirk.
4670 * elfread.c (elf_symtab_read): Remove `#if' block for skipping
4671 odd symbols occurring in Harris 88k ELF targets.
4672
4673 2002-06-21 Tom Tromey <tromey@redhat.com>
4674
4675 * gdb_locale.h: New file.
4676 * Makefile.in (GDB_CFLAGS): Define LOCALEDIR.
4677 (defs_h): Added gdb_locale.h.
4678 * configure, config.in: Rebuilt.
4679 * configure.in (PACKAGE): Define.
4680 * defs.h: Include gdb_locale.h.
4681 * main.c (captured_main): Call setlocale, bindtextdomain,
4682 textdomain.
4683
4684 2002-06-21 Dave Brolley <brolley@redhat.com>
4685
4686 From Stan Shebs, Jim Blandy, Mark Salter, Kevin Buettner:
4687 * config/frv/frv.mt: New file.
4688 * config/frv/tm-frv.h: New file.
4689 * configure.tgt: Support frv-*-*.
4690 * Makefile.in (frv-tdep.o): New target.
4691 * frv-tdep.c: New file.
4692 * NEWS: Mention frv.
4693
4694 2002-06-21 Dave Brolley <brolley@redhat.com>
4695
4696 * MAINTAINERS: Add self to "Write After Approval" list.
4697
4698 2002-06-21 Grace Sainsbury <graces@redhat.com>
4699
4700 * config/m68k/tm-m68k.h (REGISTER_BYTE, REGISTER_RAW_SIZE)
4701 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
4702 (REGISTER_VIRTUAL_TYPE, REGISTER_NAMES, TARGET_LONG_DOUBLE_FORMAT)
4703 (FUNCTION_START_OFFSET, SKIP_PROLOGUE, SAVED_PC_AFTER_CALL)
4704 (INNER_THAN, STACK_ALIGN, REGISTER_SIZE): Remove macros.
4705
4706 * m68k-tdep.c: Include arch-utils.h
4707 (m68k_register_raw_size): Add.
4708 (m68k_register_virtual_size): Add.
4709 (m68k_register_virtual_type): Add.
4710 (m68k_register_name): Add.
4711 (m68k_stack_align): Add.
4712 (m68k_register_byte): Add.
4713 (m68k_gdbarch_init): Add set_gdbarch calls for macros removed in
4714 tm-m68k.h.
4715
4716 2002-06-21 Grace Sainsbury <graces@redhat.com>
4717
4718 * m68k-tdep.c (m68k_frame_init_saved_regs): Replace
4719 m68k_find_saved_regs.
4720 (m68k_pop_frame): Removed saved_regs structure, and replaced
4721 references to it with frame->saved_regs.
4722 (m68k_gdbarch_init): Added function calls to initialize the
4723 gdbarch structure.
4724 (m68k_fix_call_dummy): Add.
4725 * config/m68k/tm-m68k.h: (FRAME_FIND_SAVED_REGS): Remove.
4726 (CALL_DUMMY): Remove.
4727 (CALL_DUMMY_LENGTH): Remove.
4728 (CALL_DUMMY_START_OFFSET): Remove.
4729 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
4730 (FIX_CALL_DUMMY): Remove.
4731 (PUSH_DUMMY_FRAME): Remove.
4732 (POP_FRAME): Remove.
4733
4734 2002-06-19 Pierre Muller <muller@ics.u-strasbg.fr>
4735
4736 * parse.c (parse_fprintf): New function used to avoid calls to
4737 fprintf in bison parser generated debug code.
4738 * parser-defs.h: Declaration of new parse_fprintf function.
4739 * ada-exp.y, c-exp.y, f-exp.y, jv-exp.y, m2-exp.y, p-exp.y:
4740 Set YYDEBUG to 1 by default.
4741 Set YYFPRINTF as parse_fprintf.
4742
4743 2002-06-21 Michal Ludvig <mludvig@suse.cz>
4744
4745 * dwarf2cfi.c (read_encoded_pointer): Don't handle pointer
4746 encoding anymore.
4747 (pointer_encoding, enum ptr_encoding): New.
4748 (execute_cfa_program): Take care about pointer encoding.
4749 (dwarf2_build_frame_info): Only call parse_frame_info for
4750 .debug_frame and .eh_frame.
4751 (parse_frame_info): New, derived from former dwarf2_build_frame_info.
4752 fixed augmentation handling, added relative addressing,
4753 ignore duplicate FDEs. Added comments.
4754 * dwarf2cfi.c: Reindented.
4755
4756 2002-06-20 Elena Zannoni <ezannoni@redhat.com>
4757
4758 * event-top.c (command_handler): Don't use space_at_cmd_start
4759 unless there is sbrk() on the host. Assign time and space data
4760 to union fields of the appropriate length.
4761
4762 2002-06-20 Michal Ludvig <mludvig@suse.cz>
4763
4764 * x86-64-tdep.c (x86_64_register_nr2name): Rename to
4765 x86_64_register_name. Return type changed to 'const char *'.
4766 (x86_64_register_name2nr): Rename to x86_64_register_number.
4767 (x86_64_gdbarch_init): Update to reflect the change.
4768 * x86-64-tdep.h: Ditto.
4769 * x86-64-linux-nat.c (x86_64_fxsave_offset)
4770 (supply_fpregset): Ditto.
4771
4772 2002-06-19 Andrew Cagney <cagney@redhat.com>
4773
4774 * regcache.h: Update copyright.
4775 (struct regcache, struct gdbarch): Add opaque declarations.
4776 (current_regcache): Declare global variable.
4777 (regcache_read, regcache_write): Add gdbarch parameter.
4778 (regcache_save, regcache_save_no_passthrough)
4779 (regcache_restore, regcache_restore_no_passthrough)
4780 (regcache_dup, regcache_dup_no_passthrough)
4781 (regcache_cpy, regcache_cpy_no_passthrough)
4782 (deprecated_grub_regcache_for_registers)
4783 (deprecated_grub_regcache_for_register_valid)
4784 (regcache_valid_p): Add function declarations.
4785
4786 * regcache.c: Update copyright.
4787 (regcache_descr_handle): New global variable.
4788 (struct regcache_descr): Define.
4789 (init_legacy_regcache_descr, init_regcache_descr): New functions.
4790 (regcache_descr, xfree_regcache_descr): New functions.
4791 (struct regcache): Define.
4792 (regcache_xmalloc, regcache_xfree): New functions.
4793 (regcache_cpy, regcache_cpy_no_passthrough): New functions.
4794 (regcache_dup, regcache_dup_no_passthrough): New functions.
4795 (regcache_valid_p, regcache_read_as_address): New functions.
4796 (deprecated_grub_regcache_for_registers): New function.
4797 (deprecated_grub_regcache_for_register_valid): New function.
4798 (current_regcache): New global variable.
4799 (register_buffer): Add regcache parameter. Update calls.
4800 (regcache_read, regcache_write): Add regcache parameter. Rewrite.
4801 (read_register_gen, write_register_gen): Update register_buffer
4802 call. Test for legacy_p instead of gdbarch_register_read_p or
4803 gdbarch_register_write_p.
4804 (regcache_collect): Update register_buffer call.
4805 (build_regcache): Rewrite. Use deprecated grub functions.
4806 (regcache_save, regcache_save_no_passthrough): New functions.
4807 (regcache_restore, regcache_restore_no_passthrough): New
4808 functions.
4809 (_initialize_regcache): Create the regcache_data_handle. Swap
4810 current_regcache global variable.
4811
4812 * sh-tdep.c (sh_pseudo_register_read): Add current_regcache
4813 parameter to regcache_read and regcache_write calls.
4814 (sh4_register_read): Ditto.
4815 (sh64_pseudo_register_read): Ditto.
4816 (sh64_register_read): Ditto.
4817 (sh_pseudo_register_write): Ditto.
4818 (sh4_register_write): Ditto.
4819 (sh64_pseudo_register_write): Ditto.
4820 (sh64_register_write): Ditto.
4821
4822 * defs.h (XCALLOC): Define.
4823
4824 2002-06-19 Grace Sainsbury <graces@redhat.com>
4825
4826 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Added (set to 0).
4827 * m68k-tdep.c (m68k_gdbarch_init): Added.
4828 (m68k_dump_tdep): Added.
4829
4830 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
4831
4832 * ada-lang.c (fill_in_ada_prototype): Update comment.
4833
4834 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
4835
4836 * mips-tdep.c (enum mips_abi): Explicitly start at 0. Add
4837 MIPS_ABI_LAST.
4838 (mips_abi_string, mips_abi_strings): New.
4839 (struct gdbarch_tdep): Remove mips_abi_string, add found_abi.
4840 (mips_gdbarch_init): Set tdep->found_abi. Don't set
4841 tdep->mips_abi_string. Honor mips_abi_string. Default to
4842 O32 if no ABI is found.
4843 (mips_dump_tdep): Use mips_abi_strings.
4844 (mips_abi_update): New function.
4845 (_initialize_mips_tdep): Initialize mips_abi_string. Add
4846 ``set mips abi'' and ``show mips abi''. Check the size of
4847 mips_abi_strings.
4848
4849 2002-06-19 Andrew Cagney <cagney@redhat.com>
4850
4851 * i386-linux-tdep.c (i386_linux_register_name): Make return type
4852 constant.
4853
4854 2002-06-18 Joel Brobecker <brobecker@gnat.com>
4855
4856 * alpha-tdep.c (heuristic_proc_desc): Compute the size of the
4857 current frame using only the first stack size adjustment. All
4858 subsequent size adjustments are not considered to be part of
4859 the "static" part of the current frame.
4860 Compute the address of the saved registers relative to the
4861 Frame Pointer ($fp) instead of the Stack Pointer if $fp is
4862 in use in this frame.
4863
4864 2002-06-18 Don Howard <dhoward@redhat.com>
4865
4866 * valops.c (value_ind): Use value_at_lazy() when dereferencing
4867 type int expressions. Thanks to Jim Blandy <jimb@redhat.com> for
4868 suggesting this solution.
4869
4870 2002-06-18 Andrew Cagney <ac131313@redhat.com>
4871
4872 * config/romp/xm-rtbsd.h: Delete file.
4873 * config/romp/rtbsd.mh: Delete file.
4874
4875 2002-06-18 Keith Seitz <keiths@redhat.com>
4876
4877 * breakpoint.c (condition_command): Post breakpoint_modify
4878 when a condition is added to an existing breakpoint.
4879 (commands_command): Likewise for commands.
4880 (set_ignore_count): Likewise for ignore counts.
4881 If no tty, do not simply return, still need to send event
4882 notification.
4883 (ignore_command): Only print a newline if the command came
4884 from a tty.
4885 Don't call breakpoints_changed, since this is now properly
4886 handled by set_ignore_count.
4887
4888 2002-06-18 Andrew Cagney <cagney@redhat.com>
4889
4890 * MAINTAINERS: Note that cris-elf target can be compiled with
4891 -Werror.
4892 * cris-tdep.c (cris_register_name): Make return type constant.
4893 (cris_breakpoint_from_pc): Ditto.
4894
4895 2002-06-18 Michal Ludvig <mludvig@suse.cz>
4896
4897 * frame.h (struct frame_info): Change type of context to
4898 'struct context'.
4899
4900 2002-06-17 Andrew Cagney <cagney@redhat.com>
4901
4902 * gdbarch.sh (REGISTER_NAME): Change return type a constant string
4903 pointer.
4904 * gdbarch.h, gdbarch.c: Regenerate.
4905 * config/mips/tm-mips.h (mips_register_name): Update.
4906 * i386-tdep.h (i386_register_name): Update.
4907 * mips-tdep.c (mips_register_name): Update
4908 * alpha-tdep.c (alpha_register_name): Update.
4909 * arch-utils.c (legacy_register_name): Update.
4910 * arch-utils.h (legacy_register_name): Update.
4911 * avr-tdep.c (avr_register_name): Update.
4912 * ia64-tdep.c (ia64_register_name): Update.
4913 * i386-tdep.c (i386_register_name): Update.
4914 * sparc-tdep.c (sparc32_register_name): Update.
4915 (sparc64_register_name): Update.
4916 (sparclite_register_name): Update.
4917 (sparclet_register_name): Update.
4918 * sh-tdep.c (sh_generic_register_name): Update.
4919 (sh_sh_register_name): Update.
4920 (sh_sh3_register_name): Update.
4921 (sh_sh3e_register_name): Update.
4922 (sh_sh_dsp_register_name): Update.
4923 (sh_sh3_dsp_register_name): Update.
4924 (sh_sh4_register_name): Update.
4925 (sh_sh64_register_name): Update.
4926 * s390-tdep.c (s390_register_name): Update.
4927 * rs6000-tdep.c (rs6000_register_name): Update.
4928 * ns32k-tdep.c (ns32k_register_name_32082): Update.
4929 (ns32k_register_name_32382): Update.
4930 * d10v-tdep.c (d10v_ts2_register_name): Update.
4931 (d10v_ts3_register_name): Update.
4932 * xstormy16-tdep.c (xstormy16_register_name): Update.
4933 * vax-tdep.c (vax_register_name): Update.
4934 * v850-tdep.c (v850_register_name): Update.
4935 * m68hc11-tdep.c (m68hc11_register_name): Update.
4936 * mn10300-tdep.c (mn10300_generic_register_name): Update.
4937 (am33_register_name): Update.
4938
4939 2002-06-17 Grace Sainsbury <graces@redhat.com>
4940
4941 * m68k-tdep.c: Reindented.
4942
4943 2002-06-17 Andrew Cagney <ac131313@redhat.com>
4944
4945 * gdb_indent.sh: Add prgregset_t, fpregset_t, and gregset_t to the
4946 list of predefined types.
4947
4948 2002-06-16 Mark Kettenis <kettenis@gnu.org>
4949
4950 * config/i386/tm-i386.h (REGISTER_VIRTUAL_TYPE,
4951 REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL,
4952 REGISTER_CONVERT_TO_RAW): Remove defines.
4953 (i386_register_virtual_type, i386_register_convertible,
4954 i386_register_convert_to_virtual, i386_register_convert_to_raw):
4955 Remove prototypes.
4956 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
4957 macros mentioned above.
4958
4959 * config/i386/tm-i386lynx.h (SAVED_PC_AFTER_CALL): Remove define.
4960 (i386lynx_saved_pc_after_call): Remove prototype.
4961 * i386ly-tdep.c: Include "i386-tdep.h".
4962 (i386lynx_saved_pc_after_call): Make static. Use
4963 read_memory_nobpt instead of read_memory. Use
4964 read_memory_unsigned_integer instead of read_memory_integer.
4965 (i386lynx_init_abi): New function.
4966 (i386lynx_coff_osabi_sniffer): New function.
4967 (_initialize_i386bsd_tdep): New function.
4968
4969 * config/i386/tm-i386.h (PARM_BOUNDARY, CALL_DUMMY,
4970 CALL_DUMMY_LENGTH, CALL_DUMMY_START_OFFSET,
4971 CALL_DUMMY_BREAKPOINT_OFFSET, FIX_CALL_DUMMY): Remove defines.
4972 (i386_fix_call_dummy): Remove prototype.
4973 * i386-tdep.c (i386_call_dummy_words): New variable.
4974 (i386_gdbarch_init): Adjust for removal of the
4975 macros mentioned above.
4976
4977 2002-06-15 Andrew Cagney <ac131313@redhat.com>
4978
4979 * command.h (add_setshow_auto_boolean_cmd): Replace
4980 add_set_auto_boolean_cmd.
4981 * cli/cli-decode.c (add_setshow_auto_boolean_cmd): Replace
4982 add_set_auto_boolean_cmd.
4983 * cli/cli-decode.h (add_set_auto_boolean_cmd): Delete declaration.
4984 * mips-tdep.c (_initialize_mips_tdep): Update ``set mips
4985 mask-address'' command.
4986 (show_mask_address): Add cmd parameter.
4987 * remote.c (add_packet_config_cmd): Update. Change type of
4988 set_func and show_func to cmd_sfunc_ftype.
4989 (_initialize_remote): Update `set remote Z-packet'
4990 (show_remote_protocol_qSymbol_packet_cmd): Add cmd parameter.
4991 (show_remote_protocol_e_packet_cmd): Ditto.
4992 (show_remote_protocol_E_packet_cmd): Ditto.
4993 (show_remote_protocol_P_packet_cmd): Ditto.
4994 (show_remote_protocol_Z_software_bp_packet_cmd): Ditto.
4995 (show_remote_protocol_Z_hardware_bp_packet_cmd): Ditto.
4996 (show_remote_protocol_Z_write_wp_packet_cmd): Ditto.
4997 (show_remote_protocol_Z_read_wp_packet_cmd): Ditto.
4998 (show_remote_protocol_Z_access_wp_packet_cmd): Ditto.
4999 (show_remote_protocol_Z_packet_cmd): Ditto.
5000 (show_remote_protocol_binary_download_cmd): Ditto.
5001 (show_remote_cmd): Pass NULL to all of above.
5002
5003 2002-06-15 Mark Kettenis <kettenis@gnu.org>
5004
5005 * config/i386/tm-i386.h (PUSH_ARGUMENTS, STORE_STRUCT_RETURN,
5006 DEPRECATED_EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE,
5007 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS, PUSH_DUMMY_FRAME,
5008 POP_FRAME): Remove defines.
5009 (i386_push_arguments, i386_store_struct_return,
5010 i386_extract_return_value, i386_store_return_value,
5011 i386_extract_struct_value_address, i386_push_dummy_frame,
5012 i386_pop_frame): Renove prototypes.
5013 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
5014 macros mentioned above.
5015
5016 2002-06-15 Andrew Cagney <ac131313@redhat.com>
5017
5018 * cli/cli-decode.c (add_setshow_boolean_cmd): Replace
5019 add_set_boolean_cmd.
5020 (add_setshow_cmd): New function.
5021 * command.h (add_setshow_boolean_cmd): Replace
5022 add_set_boolean_cmd.
5023 * remote-rdi.c (_initialize_remote_rdi): Update ``set rdiheartbeat''
5024 and ``set rdiromatzero''.
5025 * maint.c (_initialize_maint_cmds): Update commented out code.
5026 * cli/cli-decode.h (add_set_boolean_cmd): Delete declaration.
5027 * target.c (initialize_targets): Update `set
5028 trust-readonly-sections'.
5029 * remote.c (_initialize_remote): Update `set remotebreak'.
5030
5031 2002-06-15 Mark Kettenis <kettenis@gnu.org>
5032
5033 * config/i386/tm-i386.h (FUNCTION_START_OFFSET, INNER_THAN,
5034 BREAKPOINT, DECR_PC_AFTER_BREAK): Removed.
5035 * i386-tdep.c (i386_skip_prologue): Adjust function signature to
5036 fit into multi-arch framework.
5037 (i386_breakpoint_from_pc): New function.
5038 (i386_gdbarch_init): Adjust for removal of the macros mentioned
5039 above.
5040
5041 * config/i386/tm-i386.h (FRAMELESS_FUNCTION_INVOCATION,
5042 FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS,
5043 FRAME_ARGS_SKIP, FRAME_INIT_SAVED_REGS): Remove defines.
5044 (i386_frameless_function_invocation, i386_frame_num_args,
5045 i386_frame_init_saved_regs): Remove prototypes.
5046 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
5047 macros mentioned above.
5048
5049 2002-06-15 Andrew Cagney <ac131313@redhat.com>
5050
5051 * cli/cli-decode.c (set_cmd_cfunc): Update.
5052 (set_cmd_sfunc): Update.
5053 * command.h (cmd_cfunc_ftype, cmd_sfunc_ftype): Declare.
5054 (set_cmd_sfunc, set_cmd_cfunc): Update.
5055 * cli/cli-decode.h: Update.
5056
5057 2002-06-15 Mark Kettenis <kettenis@gnu.org>
5058
5059 * i386-sol2-tdep.c (i386_sol2_osabi_sniffer): New function.
5060 (_initialize_i386_sol2_tdep): Register i386_sol2_osabi_sniffer.
5061
5062 2002-06-15 Andrew Cagney <ac131313@redhat.com>
5063
5064 * defs.h (auto_boolean): Declare enum.
5065 * command.h (cmd_auto_boolean): Delete enum.
5066 * mips-tdep.c (mask_address_var): Update.
5067 (mips_mask_address_p): Update.
5068 (show_mask_address): Update.
5069 * remote.c (struct packet_config): Update.
5070 (update_packet_config): Update.
5071 (show_packet_config_cmd): Update.
5072 (packet_ok): Update.
5073 (add_packet_config_cmd): Update.
5074 (_initialize_remote):
5075 * command.h: Update.
5076 * cli/cli-setshow.c (parse_auto_binary_operation): Update.
5077 (do_setshow_command): Update.
5078 * cli/cli-decode.c (add_set_auto_boolean_cmd): Update.
5079 * cli/cli-decode.h: Update.
5080
5081 2002-06-15 Mark Kettenis <kettenis@gnu.org>
5082
5083 * config/i386/tm-cygwin.h, config/i386/tm-fbsd.h,
5084 config/i386/tm-go32.h, config/i386/tm-i386gnu.h,
5085 config/i386/tm-i386sol2.h, config/i386/tm-i386v4.h,
5086 config/i386/tm-linux.h, config/i386/tm-nbsd.h,
5087 config/i386/tm-obsd.h (HAVE_I387_REGS): Remove define.
5088 * config/i386/tm-i386.h: Unconditionally define FLOAT_INFO.
5089
5090 * i386-tdep.c (i386_coff_osabi_sniffer): Add "coff-go32" to the
5091 list of DJGPP COFF targets.
5092
5093 * config/i386/tm-i386.h (REGISTER_SIZE): Remove define.
5094 (NUM_GREGS, NUM_FREGS, NUM_SSE_REGS): Remove defines.
5095 (FP_REGNUM, SP_REGNUM, PC_REGNUM, PS_REGNUM): Remove defines.
5096 (FP0_REGNUM): Remove define.
5097 (MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE,
5098 MAX_REGISTER_VIRTUAL_SIZE): Remove define.
5099 (i386_register_virtual_size): Remove protoype.
5100 * i386-tdep.c (i386_register_virtual_size): Removed.
5101 (i386_extract_return_value, i386_store_return_value): Use
5102 FP0_REGNUM instead of NUM_FREGS to determine whether the
5103 floating-point registers are available.
5104 (i386_gdbarch_init): Tweak FIXME about FPU registers.
5105 Adjust for removal of macros mentioned above.
5106
5107 2002-06-15 Mark Kettenis <kettenis@gnu.org>
5108
5109 * i386v4-nat.c: Include "i386-tdep.h". Reformat and tweak various
5110 comments.
5111 (fill_gregset, supply_gregset, supply_fpregset, fill_fpregset):
5112 Remove prototypes.
5113 (supply_gregset, fill_gregset): Remove use of register keyword and
5114 remove declaration for regmap. Use I386_NUM_GREGS instead of
5115 NUM_REGS and NUM_FREGS.
5116 (FPREGSET_FSAVE_OFFSET): Remove.
5117 (supply_fpregset, fill_fpregset): Use FPO_REGNUM instead of
5118 NUM_FREGS to determine whether the floating-point registers are
5119 available.
5120
5121 * i386gnu-nat.c (supply_gregset, gnu_fetch_registers,
5122 gnu_store_registers): Replace usage of NUM_GREGS with
5123 I386_NUM_GREGS.
5124
5125 * i386-linux-nat.c (OLD_CANNOT_FETCH_REGISTER,
5126 OLD_CANNOT_STORE_REGISTER, supply_gregset, fill_gregset): Replace
5127 usage of NUM_GREGS with I386_NUM_GREGS.
5128
5129 * i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
5130
5131 * i386bsd-nat.c: Include "i386-tdep.h".
5132 (supply_gregset, fill_gregset): Replace usage of NUM_GREGS with
5133 I386_NUM_GREGS.
5134
5135 * i386v-nat.c: Remove copnditional inclusion of <asm/debugreg.h>,
5136 and associated comment. They no longer make any sense, since we
5137 don't use this file anymore on Linux.
5138
5139 * config/i386/tm-i386.h (MAX_NUM_REGS): Removed.
5140 * i386-tdep.c (i386_register_offset, i386_register_size): Use
5141 I386_SSE_NUM_REGS instead of MAX_NUM_REGS for the number of
5142 elements in these arrays.
5143 (_initialize_i386_tdep): Use I386_SSE_NUM_REGS instead of
5144 MAX_NUM_REGS.
5145
5146 2002-06-15 Mark Kettenis <kettenis@gnu.org>
5147
5148 * osabi.h (gdb_osabi): Add GDB_OSABI_LYNXOS.
5149 * osabi.c (gdb_osabi_names): Add entry for "LynxOS".
5150
5151 2002-06-14 Andrew Cagney <cagney@redhat.com>
5152
5153 * gdbarch.sh (DEPRECATED_EXTRACT_RETURN_VALUE): Rename
5154 EXTRACT_RETURN_VALUE.
5155 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Rename
5156 EXTRACT_STRUCT_VALUE_ADDRESS.
5157 * gdbarch.h, gdbarch.c: Regenerate.
5158
5159 * values.c (value_being_returned): Handle
5160 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
5161 (EXTRACT_RETURN_VALUE): Define as DEPRECATED_EXTRACT_RETURN_VALUE.
5162
5163 * arm-linux-tdep.c (arm_linux_init_abi): Update.
5164 * arm-tdep.c (arm_gdbarch_init): Update.
5165 * avr-tdep.c (avr_gdbarch_init): Update.
5166 * cris-tdep.c (cris_gdbarch_init): Update.
5167 * d10v-tdep.c (d10v_gdbarch_init): Update.
5168 * ia64-tdep.c (ia64_gdbarch_init): Update.
5169 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
5170 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
5171 * s390-tdep.c (s390_gdbarch_init): Update.
5172 * sh-tdep.c (sh_gdbarch_init): Update.
5173 * s390-tdep.c (s390_gdbarch_init): Update.
5174 * sparc-tdep.c (sparc_gdbarch_init): Update.
5175 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
5176 * v850-tdep.c (v850_gdbarch_init): Update.
5177 * vax-tdep.c (vax_gdbarch_init): Update.
5178 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
5179 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
5180
5181 * config/arc/tm-arc.h: Update.
5182 * config/d30v/tm-d30v.h: Update.
5183 * config/fr30/tm-fr30.h: Update.
5184 * config/h8300/tm-h8300.h: Update.
5185 * config/h8500/tm-h8500.h: Update.
5186 * config/i386/tm-i386.h: Update.
5187 * config/i386/tm-ptx.h: Update.
5188 * config/i386/tm-symmetry.h: Update.
5189 * config/i960/tm-i960.h: Update.
5190 * config/m32r/tm-m32r.h: Update.
5191 * config/m68k/tm-delta68.h: Update.
5192 * config/m68k/tm-linux.h: Update.
5193 * config/m68k/tm-m68k.h: Update.
5194 * config/m88k/tm-m88k.h: Update.
5195 * config/mcore/tm-mcore.h: Update.
5196 * config/mips/tm-mips.h: Update.
5197 * config/mn10200/tm-mn10200.h: Update.
5198 * config/pa/tm-hppa.h: Update.
5199 * config/pa/tm-hppa64.h: Update.
5200 * config/sparc/tm-sp64.h: Update.
5201 * config/sparc/tm-sparc.h: Update.
5202 * config/sparc/tm-sparclet.h: Update.
5203 * config/z8k/tm-z8k.h: Update.
5204
5205 2002-06-14 Andrew Cagney <cagney@redhat.com>
5206
5207 * Makefile.in (i386_linux_tdep_h): Define.
5208 (i386_tdep_h, i387_tdep_h): Define.
5209 (i386-linux-nat.o): Add $(i386_linux_tdep_h),
5210 $(i386_tdep_h) and $(i387_tdep_h).
5211 * i386-linux-nat.c: Include "i386-linux-tdep.h".
5212
5213 2002-06-14 Mark Kettenis <kettenis@gnu.org>
5214
5215 * config/i386/tm-i386.h (START_INFERIOR_TRAPS_EXPECTED): Removed.
5216 Already covered by the default.
5217
5218 * config/i386/tm-i386.h (TARGET_LONG_DOUBLE_FORMAT,
5219 TARGET_LONG_DOUBLE_BIT): Remove. * i386-tdep.c
5220 (i386_gdbarch_init): Initialize long_double_format and long_double
5221 bit.
5222
5223 * config/i386/i386sol2.mt (TDEPFILES): Add i386-sol2-tdep.o and
5224 i386bsd-tdep.o. Remove solib.o, solib-svr4.o and solib-legacy.o.
5225 Move these to ...
5226 * config/i386/i386sol2.mh: ... here.
5227 * config/i386/tm-i386sol2.h (STAB_REG_TO_REGNUM): Remove define.
5228 (sigtramp_saved_pc, I386V4_SIGTRAMP_SAVED_PC): Don't #undef.
5229 (SIGCONTEXT_PC_OFFSET): Remove define.
5230 (IN_SIGTRAMP): Remove define.
5231 * i386-sol2-tdep.c: New file.
5232
5233 * config/i386/i386nw.mt (TM_FILE): Change to tm-i386.h.
5234 * config/i386/tm-i386nw.h: Removed.
5235
5236 * config/i386/tm-fbsd.h (STAB_REG_TO_REGNUM,
5237 USE_STRUCT_CONVENTION): Remove defines.
5238 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
5239 (get_longjmp_target): Remove prototype.
5240 (IN_SIGTRAMP): Remove define.
5241 (i386bsd_in_sigtramp): Remove prototype.
5242 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
5243 function. Update comment accordingly
5244 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
5245 (FRAME_SAVED_PC): Remove define.
5246 (i386bsd_frame_saved_pc): Remove prototype.
5247 * config/i386/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC,
5248 GET_LONGJMP_TARGET): Remove defines.
5249 (get_longjmp_target): Remove prototype.
5250 (IN_SIGTRAMP): Remove define.
5251 (i386bsd_in_sigtramp): Remove prototype.
5252 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
5253 function. Update comment accordingly
5254 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
5255 (FRAME_SAVED_PC): Remove define.
5256 (i386bsd_frame_saved_pc): Remove prototype.
5257 * config/i386/tm-nbsdaout.h (i386nbsd_aout_use_struct_convention):
5258 Remove prototype.
5259 (USE_STRUCT_CONVENTION): Remove prototype.
5260 * i386bsd-nat.c (i386bsd_sigcontext_pc_offset): Remove
5261 declaration.
5262 (_initialize_i386bsd_nat): Revise logic to determine some
5263 constants at compile time when compiling a native GDB. Warn if
5264 things don't match up with what we expect.
5265 * i386bsd-tdep.c (i386bsd_sigtramp_start, i386bsd_sigtramp_end):
5266 Remove variables.
5267 (i386bsd_in_sigtramp): Rename tp i386bsd_pc_in_sigtramp. Rewrite
5268 to use date stored in `struct gdbarch_tdep'.
5269 (i386bsd_sigcontext_offset): Remove varaible.
5270 (i386bsd_sigtramp_saved_pc): Make public. Rewrite to use data
5271 stored in `struct gdbarch_tdep'.
5272 (i386bsd_frame_saved_pc): Make static.
5273 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): New functions.
5274 (i386bsd_sc_pc_offset, i386nbsd_sc_pc_offset,
5275 i386fbsd_sigtramp_start, i386fbsd_sigtramp_end,
5276 i386fbsd4_sc_pc_offset): New variables.
5277 (i386bsd_init_abi, i386nbsd_init_abi, i386nbsdelf_init_abi,
5278 i386fbsdaout_init_abi, i386fbsd_init_abi, i386fbsd4_init_abi): New
5279 functions.
5280 (i386bsd_aout_osabi_sniffer, _initialize_i386bsd_tdep): New
5281 functions.
5282 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Fix type in comment.
5283 Modify the value of i386fbsd_sigtramp_start and
5284 i386fbsd_sigtramp_end instead of i386bsd_sigtramp_start and
5285 i386fbsd_sigtramp_end.
5286 * i386nbsd-tdep.c: (i386nbsd_aout_use_struct_convention): Remove
5287 function.
5288
5289 * config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): Move
5290 define to i386-linux-tdep.h.
5291 (NUM_REGS, MAX_NUM_REGS, REGISTER_BYTES, REGISTER_NAME,
5292 REGISTER_BYTE, REGISTER_RAW_SIZE, STAB_REG_TO_REGNUM): Remove
5293 defines.
5294 (i386_linux_register_name, i386_linux_register_byte,
5295 i386_linux_register_raw_size): Remove prototypes.
5296 (i386_linux_svr4_fetch_link_map_offsets): Remove prototype.
5297 (SVR4_FETCH_LINK_MAP_OFFSETS): Remove define.
5298 (IN_SIGTRAMP, FRAME_CHAIN, FRAME_SAVED_PC, SAVED_PC_AFTER_CALL,
5299 TARGET_WRITE_PC): Remove defines.
5300 (i386_linux_in_sigtramp, i386_linux_frame_chain,
5301 i386_linux_frame_saved_pc, i386_linux_saved_pc_after_call,
5302 i386_linux_write_pc): Remove prototypes.
5303 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
5304 (get_longjmp_target): Remove prototype.
5305 * i386-linux-tdep.h: New file.
5306 * i386-linux-nat.c: Include "i386-linux-tdep.h".
5307 * i386-linux-tdep.c: Include "i386-tdep.h" and
5308 "i386-linux-tdep.h".
5309 (i386_linux_register_name, i386_linux_register_byte,
5310 i386_linux_register_raw_size, i386_linux_in_sigtramp,
5311 i386_linux_write_pc, i386_linux_svr4_fetch_link_map_offsets):
5312 Make static.
5313 (i386_linux_init_abi): New function.
5314 (_initialize_i386_linux_tdep): New function.
5315
5316 * config/i386/tm-i386.h (SAVED_PC_AFTER_CALL): Remove define.
5317 (i386_saved_pc_after_call): Remove prototype.
5318 (MAX_NUM_REGS): Increase to deal with Linux's orig_eax "register".
5319 (REGISTER_NAME, STAB_REG_TO_REGNUM, SDB_REG_TO_REGNUM,
5320 DWARF_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM): Remove defines.
5321 (i386_register_name, i386_stab_reg_to_regnum,
5322 i386_dwarf_reg_to_regnum): Remove prototypes.
5323 (SIZEOF_GREGS, SIZEOF_FPU_REGS, SIZEOF_FPU_CTL_REGS,
5324 SIZEOF_SSE_REGS): Remove defines.
5325 (REGISTER_BYTES): Remove define.
5326 (REGISTER_BYTE, REGISTER_RAW_SIZE): Remove defines.
5327 (i386_register_byte, i386_register_raw_size): Remove prototypes.
5328 (FRAME_CHAIN, FRAME_SAVED_PC): Remove defines.
5329 (i386_frame_chain, i386_frame_saved_pc): Remove prototypes.
5330 * config/i386/tm-i386v4.h (FRAME_CHAIN_VALID): Remove define.
5331 (JB_ELEMENT_SIZE, JB_PC, JB_EBX, JB_ESI, JB_EDI, JB_EBP, JB_ESP,
5332 JB_EDX, GET_LONGJMP_TARGET): Remove defines.
5333 (get_longjmp_target): Remove prototype.
5334 (I386V4_SIGTRAMP_SAVED_PC, IN_SIGTRAMP): Remove defines.
5335 (sigtramp_saved_pc): Remove define.
5336 (i386v4_sigtramp_saved_pc): Remove prototype.
5337 * config/i386/tm-go32.h (FRAME_CHAIN,
5338 FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC): Remove defines.
5339 (i386go32_frame_saved_pc): Remove prototype.
5340 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
5341 (get_longjmp_target): Remove prototype.
5342 * i386-tdep.h: Include "osabi.h".
5343 (enum i386_abi): Removed.
5344 (enum struct_return): New enum.
5345 (struct gdbarch_tdep): Remove abi member, add osabi, jb_pc_offset,
5346 struct_return, sigtramp_saved_pc, sigtramp_start, sigtramp_end and
5347 sc_pc_offset members.
5348 (i386_gdbarch_register_os_abi): Remove prototype.
5349 (I386_NUM_GREGS, I386_NUM_FREGS, I386_NUM_XREGS,
5350 I386_SSE_NUM_REGS): New defines.
5351 (I386_SIZEOF_GREGS, I386_SIZEOF_FREGS, I386_SIZEOF_XREGS,
5352 I386_SSE_SIZEOF_REGS): New defines.
5353 (i386_register_name, i386_register_byte, i386_register_raw_size):
5354 New prototypes.
5355 (i386_elf_init_abi, i386_svr4_init_abi): New prototypes.
5356 (i386bsd_sigtramp_saved_pc): New prototype.
5357 * i386-tdep.c: Don't include "elf-bfd.h".
5358 (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum,
5359 i386_frame_chain, i386_saved_pc_after_call): Make static.
5360 (i386_frame_saved_pc): Rewrite to call architecture dependent
5361 function to deal with signal handlers. Make static.
5362 (i386go32_frame_saved_pc): Removed.
5363 [GET_LONGJMP_TARGET] (JB_PC, JB_ELEMENT_SIZE, get_longjmp_target):
5364 Removed.
5365 (i386_get_longjmp_target): New function.
5366 (default_struct_convention, pcc_struct_convention,
5367 reg_struct_convention, valid_conventions, struct_convention): New
5368 variables.
5369 (i386_use_struct_convention): New function.
5370 (i386v4_sigtramp_saved_pc): Renamed to
5371 i386_svr4_sigtramp_saved_pc. Made static. Moved.
5372 (i386_pc_in_sigtramp): New function.
5373 (i386_abi_names): Removed.
5374 (ABI_TAG_OS_GNU_LINUX, ABI_TAG_OS_GNU_HURD,
5375 ABI_TAG_OS_GNU_SOLARIS, ABI_TAG_OS_FREEBSD, ABI_TAG_OS_NETBSD):
5376 Removed.
5377 (process_note_sections, i386_elf_abi_from_note, i386_elf_abi,
5378 i386_gdbarch_register_os_abi): Removed.
5379 (struct i386_abi_handler): Removed.
5380 (i386_abi_handler_list): Removed.
5381 (i386_svr4_pc_in_sigtramp, i386_go32_pc_in_sigtramp): New
5382 functions.
5383 (i386_elf_init_abi, i386_svr4_init_abi, i386_go32_init_abi,
5384 i386_nw_init_abi): New functions.
5385 (i386_gdbarch_init): Rewritten to use generic OS ABI framework.
5386 Use set_gdbarch_xxx() calls instead of relying on macros for a
5387 number of calls.
5388 (i386_coff_osabi_sniffer, i386_nlm_osabi_sniffer): New functions.
5389 (_initialize_i386_tdep): Add new 'struct-convcention' command.
5390 Register the various architecture variants defined in this file.
5391
5392 2002-06-14 Daniel Jacobowitz <drow@mvista.com>
5393
5394 * gdbtypes.h (TYPE_FLAG_VARARGS): Update comment.
5395 (struct main_type): Remove arg_types member. Update comments for
5396 struct field.
5397 (TYPE_ARG_TYPES): Remove.
5398 (TYPE_FN_FIELD_ARGS): Update.
5399 (smash_to_method_type): Update prototype.
5400
5401 * c-typeprint.c (cp_type_print_method_args): Take method type
5402 instead of argument list. Use new argument layout. Simplify.
5403 (c_type_print_args): Use new argument layout. Simplify.
5404 (c_type_print_base): Update call to cp_type_print_method_args.
5405 * dwarf2read.c (dwarf2_add_member_fn): Remove unneeded type
5406 argument; use die->type instead. Update call to
5407 smash_to_method_type.
5408 (read_structure_scope): Update call to dwarf2_add_member_fn.
5409 * gdbtypes.c (allocate_stub_method): Update comment.
5410 (smash_to_method_type): Take new NARGS and VARARGS arguments.
5411 Use new argument layout.
5412 (check_stub_method): Use new argument layout. Don't count
5413 void as an argument.
5414 (print_arg_types): Update comments. Use new argument layout.
5415 (recursive_dump_type): Don't print arg_types member.
5416 * hpread.c (hpread_read_struct_type): Use new argument layout.
5417 (fixup_class_method_type): Likewise.
5418 (hpread_type_lookup): Likewise.
5419 * stabsread.c (read_type): Update calls to read_args and
5420 smash_to_method_type.
5421 (read_args): Use new argument layout. Simplify.
5422 * valops.c (typecmp): Use new argument layout. Update parameters
5423 and comments. Simplify.
5424 (hand_function_call): Use new argument layout.
5425 (search_struct_method): Update call to typecmp.
5426 (find_overload_match): Use new argument layout.
5427
5428 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
5429
5430 * NEWS: Mention multithreaded debug support for gdbserver.
5431
5432 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
5433
5434 * MAINTAINERS: Mention NEWS.
5435
5436 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
5437
5438 * mips-tdep.c (PROC_SYMBOL): Add warning comment.
5439 (struct mips_objfile_private, compare_pdr_entries): New.
5440 (non_heuristic_proc_desc): Read the ".pdr" section if it
5441 is present.
5442
5443 2002-06-12 Andrew Cagney <ac131313@redhat.com>
5444
5445 * arm-tdep.c (arm_push_arguments): Rewrite using a two-pass loop.
5446 (arm_debug): New static variable.
5447 (_initialize_arm_tdep): Add ``set debug arm'' command.
5448
5449 2002-06-12 Andrew Cagney <ac131313@redhat.com>
5450
5451 * Makefile.in (sim_arm_h): Define.
5452 (arm-tdep.o): Add $(sim_arm_h) and $(gdb_assert_h).
5453 * arm-tdep.c: Include "gdb/sim-arm.h" and "gdb_assert.h".
5454 (arm_register_sim_regno): New function, map an internal REGNUM
5455 onto a simulator register number.
5456 (arm_gdbarch_init): Set register_sim_regno.
5457
5458 2002-06-09 Aldy Hernandez <aldyh@redhat.com>
5459
5460 * MAINTAINERS: Add self.
5461
5462 2002-06-11 Jim Blandy <jimb@redhat.com>
5463
5464 * source.c (source_info): Mention whether the symtab has
5465 information about preprocessor macros.
5466
5467 Call the command `info macro', not `show macro'.
5468 * macrocmd.c (info_macro_command): Renamed from `show_macro_command'.
5469 Fix error message.
5470 (_initialize_macrocmd): Register `info_macro_command' in
5471 `infolist', not `showlist'.
5472
5473 2002-06-11 Daniel Jacobowitz <drow@mvista.com>
5474
5475 * mips-tdep.c (MIPS_FPU_TYPE, FP_REGISTER_DOUBLE, MIPS_EABI)
5476 (MIPS_LAST_FP_ARG_REGNUM, MIPS_LAST_ARG_REGNUM)
5477 (MIPS_DEFAULT_SAVED_REGSIZE, MIPS_REGS_HAVE_HOME_P)
5478 (MIPS_DEFAULT_STACK_ARGSIZE, GDB_TARGET_IS_MIPS64)
5479 (MIPS_DEFAULT_MASK_ADDRESS_P): Remove obsolete definitions. Define
5480 unconditionally.
5481 (set_mipsfpu_single_command, set_mipsfpu_double_command)
5482 (set_mipsfpu_none_command): Remove if (GDB_MULTI_ARCH).
5483 (_initialize_mips_tdep): Remove dead code.
5484 * config/mips/tm-irix5.h (MIPS_LAST_ARG_REGNUM)
5485 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
5486 * config/mips/tm-irix6.h (MIPS_LAST_ARG_REGNUM)
5487 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
5488 * config/mips/tm-mips.h (MIPS_EABI, MIPS_LAST_ARG_REGNUM,
5489 MIPS_LAST_FP_ARG_REGNUM): Remove.
5490
5491 2002-06-11 Michal Ludvig <mludvig@suse.cz>
5492
5493 * dwarf2cfi.c (unwind_tmp_obstack_init): New.
5494 (unwind_tmp_obstack_free, parse_frame_info)
5495 (update_context, cfi_read_fp, cfi_write_fp)
5496 (cfi_frame_chain, cfi_init_extra_frame_info)
5497 (cfi_virtual_frame_pointer): Use the above function.
5498 * dwarf2cfi.c: Reindented (using 'indent dwarf2cfi.c').
5499
5500 2002-06-11 Corinna Vinschen <vinschen@redhat.com>
5501
5502 * v850-tdep.c (v850_type_is_scalar): New function.
5503 (v850_use_struct_convention): Match current gcc implementation
5504 as close as possible.
5505 (v850_push_arguments): Fix stack_offset handling. Don't write
5506 struct_addr into register. This is done by v850_store_struct_return.
5507 (v850_extract_return_value): Care for structs.
5508 (v850_store_return_value): Ditto.
5509 (v850_store_struct_return): Actually write address.
5510
5511 2002-06-11 Michal Ludvig <mludvig@suse.cz>
5512
5513 * x86-64-tdep.c (x86_64_skip_prologue): Fix to work on functions
5514 without debug information too.
5515
5516 2002-06-10 Andrew Cagney <ac131313@redhat.com>
5517
5518 * gdbarch.sh (PRINT_FLOAT_INFO): Add frame and ui_file parameters.
5519 Make multi-arch pure.
5520 * gdbarch.h, gdbarch.c: Re-generate.
5521 * arm-tdep.c (arm_print_float_info): Update.
5522 * arch-utils.h (default_print_float_info): Update.
5523 * arch-utils.c (default_print_float_info): Update.
5524 * infcmd.c (float_info): Update call.
5525
5526 2002-06-10 Andrew Cagney <ac131313@redhat.com>
5527
5528 * Makefile.in (init.c): Move the call to _initialize_gdbtypes to
5529 the front of the initialize list.
5530
5531 2002-06-10 Andrew Cagney <ac131313@redhat.com>
5532
5533 * infrun.c (struct inferior_status): Replace fields
5534 selected_frame_address and selected_level with field
5535 selected_frame_id.
5536 (save_inferior_status): Update. Use get_frame_id.
5537 (struct restore_selected_frame_args): Delete.
5538 (restore_selected_frame): Update. Use frame_find_by_id.
5539 (restore_inferior_status): Update.
5540
5541 * breakpoint.h (struct breakpoint): Change type of
5542 watchpoint_frame to frame_id.
5543 * breakpoint.c (insert_breakpoints): Use frame_find_by_id. Remove
5544 call to get_current_frame.
5545 (do_enable_breakpoint): Use frame_find_by_id. Remove call to
5546 get_current_frame.
5547 (watchpoint_check): Use frame_find_by_id.
5548
5549 * frame.h (record_selected_frame): Delete declaration.
5550 * stack.c (record_selected_frame): Delete function.
5551
5552 * frame.h (struct frame_id): Define.
5553 (get_frame_id): Declare.
5554 (frame_find_by_id): Declare.
5555 * frame.c (frame_find_by_id): New function.
5556 (get_frame_id): New function.
5557
5558 2002-06-10 Andrey Volkov <avolkov@transas.com>
5559
5560 * ser-e7kpc.c: Fix duplicated define and call of
5561 _initialize_ser_e7000pc
5562
5563 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
5564
5565 * signals/signals.c (target_signal_from_host): Fix #ifdef
5566 SIGRTMIN case.
5567 (do_target_signal_to_host): Likewise.
5568
5569 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
5570
5571 * mips-tdep.c (mips_find_abi_section): New function.
5572 (mips_gdbarch_init): Call it.
5573
5574 2002-06-09 Mark Kettenis <kettenis@gnu.org>
5575
5576 * solib-svr4.c (init_fetch_link_map_offsets): Simply return
5577 legacy_fetch_link_map_offsets. Adjust comment to reflect reality
5578 after Andrew's 2002-06-08 gdbarch change.
5579
5580 2002-06-09 Mark Kettenis <kettenis@gnu.org>
5581
5582 * i386-linux-nat.c (suppy_gregset): Don't supply
5583 I386_LINUX_ORIG_EAX_REGNUM if there isn't room for it in GDB's
5584 register cache.
5585 (fill_gregset): Don't fetch it under the same circumstances.
5586
5587 2002-06-09 Andrew Cagney <cagney@redhat.com>
5588
5589 * Makefile.in (callback_h): Define.
5590 (remote_sim_h): Update path to remote-sim.h.
5591 (remote-rdp.o): Add $(callback_h).
5592 (remote-sim.o): Use $(callback_h).
5593 * remote-sim.c: Include "gdb/callback.h" and "gdb/remote-sim.h".
5594 * remote-rdp.c: Include "gdb/callback.h".
5595
5596 2002-06-09 Mark Kettenis <kettenis@gnu.org>
5597
5598 * osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
5599 * osabi.c (gdb_osabi_names): Add "DJGPP" and "NetWare".
5600
5601 2002-06-08 Andrew Cagney <ac131313@redhat.com>
5602
5603 * sparcl-tdep.c: Use __CYGWIN__ instead of __CYGWIN32__.
5604 * rdi-share/serpardr.c: Ditto.
5605 * rdi-share/unixcomm.c: Ditto.
5606 * rdi-share/serdrv.c: Ditto.
5607 * rdi-share/hostchan.h: Ditto.
5608 * rdi-share/hostchan.c: Ditto.
5609 * rdi-share/host.h: Ditto.
5610 * rdi-share/devsw.c: Ditto.
5611
5612 * objfiles.h: Change type of obj_private to void pointer.
5613 * pa64solib.c: Update copyright. Don't include "assert.h", use
5614 strcmp instead of STREQ, use LONGEST, do not use PTR
5615 * somsolib.c: Ditto.
5616
5617 * config/djgpp/fnchange.lst: Fix problems with bfd/elf32-i386.c,
5618 bfd/elf32-i386qnx.c, bfd/elf32-sh.c, bfd/elf32-sh64-nbsd.c,
5619 bfd/elf64-sh64-nbsd.c bfd/elf64-sh64.c.
5620
5621 2002-06-08 Andrew Cagney <ac131313@redhat.com>
5622
5623 * frame.c (GET_SAVED_REGISTER): Delete macro definition.
5624 (default_get_saved_register): Delete function.
5625 * gdbarch.sh (GET_SAVED_REGISTER): Set default to
5626 generic_unwind_get_saved_register.
5627 * gdbarch.h, gdbarch.c: Re-generate.
5628
5629 2002-06-08 Andrew Cagney <ac131313@redhat.com>
5630
5631 * gdbarch.sh (FRAME_CHAIN_VALID): Set default to
5632 generic_func_frame_chain_valid.
5633 * gdbarch.h, gdbarch.c: Re-generate.
5634 * blockframe.c (generic_func_frame_chain_valid): Only check
5635 PC_IN_CALL_DUMMY when generic dummy frames. Don't worry about
5636 passing FP to PC_IN_CALL_DUMMY.
5637 Fix PR gdb/360.
5638
5639 2002-06-08 Andrew Cagney <ac131313@redhat.com>
5640
5641 * gdbarch.sh (struct gdbarch_data): Add field init_p.
5642 (register_gdbarch_data): Initialize init_p.
5643 (gdbarch_data): Initialize data pointer using the init function.
5644 (init_gdbarch_data): Delete function.
5645 (gdbarch_update_p): Update.
5646 (initialize_non_multiarch): Update.
5647 (struct gdbarch): Add field initialized_p.
5648 * gdbarch.h, gdbarch.c: Re-generate.
5649
5650 2002-06-07 Michal Ludvig <mludvig@suse.cz>
5651
5652 * x86-64-linux-nat.c (x86_64_fxsave_offset): New.
5653 (supply_fpregset, fill_fpregset): Don't call i387_*_fxsave,
5654 better do the things actually here.
5655 * x86-64-tdep.c (x86_64_register_name2nr): New.
5656 (x86_64_register_name): Renamed to x86_64_register_nr2name.
5657 (x86_64_gdbarch_init): Respect the above change.
5658 * x86-64-tdep.h (x86_64_register_name2nr)
5659 (x86_64_register_nr2name): Add prototypes.
5660 * config/i386/x86-64linux.mt (TDEPFILES): Remove i387-tdep.o.
5661
5662 2002-06-06 Michael Snyder <msnyder@redhat.com>
5663
5664 * d10v-tdep.c (d10v_push_arguments): Handle struct_return.
5665 Delete extra braces and re-indent.
5666 (d10v_store_return_value): Char return values
5667 must be shifted over by one byte in R0.
5668 (d10v_extract_return_value): Delete extra braces, re-indent.
5669
5670 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
5671
5672 * d10v-tdep.c (d10v_read_sp, d10v_read_fp): Add prototype.
5673 (d10v_register_virtual_type): Make $fp and $sp be pointer to data.
5674 (d10v_integer_to_address): Rewrite.
5675 (d10v_frame_init_saved_regs): When reading fp and sp registers use
5676 the d10v specific functions which take care of converting to the
5677 correct space.
5678
5679 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
5680
5681 * config/djgpp/fnchange.lst: Add testsuite files altivec-abi.c,
5682 altivec-abi.exp, altivec-regs.c, altivec-regs.exp.
5683
5684 2002-06-02 Andrew Cagney <ac131313@redhat.com>
5685
5686 * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm
5687 includes.
5688 * config/tm-linux.h: Ditto.
5689 * config/alpha/tm-alphalinux.h: Ditto.
5690 * config/arm/nm-linux.h, config/arm/tm-linux.h: Ditto.
5691 * config/arm/xm-nbsd.h, config/i386/nm-gnu.h: Ditto.
5692 * config/i386/nm-i386lynx.h, config/i386/nm-i386sol2.h: Ditto.
5693 * config/i386/nm-i386v4.h, config/i386/nm-i386v42mp.h: Ditto.
5694 * config/i386/nm-linux.h, config/i386/nm-m3.h: Ditto.
5695 * config/i386/nm-ptx4.h, config/i386/nm-x86-64.h: Ditto.
5696 * config/i386/tm-i386gnu.h, config/i386/tm-i386lynx.h: Ditto.
5697 * config/i386/tm-i386m3.h, config/i386/tm-i386sco5.h: Ditto.
5698 * config/i386/tm-i386v4.h, config/i386/tm-linux.h: Ditto.
5699 * config/i386/tm-ptx4.h, config/i386/tm-vxworks.h: Ditto.
5700 * config/i386/xm-i386v4.h, config/i386/xm-nbsd.h: Ditto.
5701 * config/i386/xm-ptx.h, config/i386/xm-ptx4.h: Ditto.
5702 * config/i960/tm-vx960.h, config/ia64/nm-aix.h: Ditto.
5703 * config/ia64/nm-linux.h, config/ia64/tm-aix.h: Ditto.
5704 * config/ia64/tm-linux.h, config/ia64/xm-aix.h: Ditto.
5705 * config/m68k/nm-linux.h, config/m68k/nm-m68klynx.h: Ditto.
5706 * config/m68k/nm-sysv4.h, config/m68k/tm-linux.h: Ditto.
5707 * config/m68k/tm-m68klynx.h, config/m68k/tm-m68kv4.h: Ditto.
5708 * config/m68k/tm-sun2os4.h, config/m68k/tm-sun3os4.h: Ditto.
5709 * config/m68k/tm-vx68.h, config/m68k/xm-m68kv4.h: Ditto.
5710 * config/m68k/xm-nbsd.h, config/m88k/nm-delta88v4.h: Ditto.
5711 * config/m88k/tm-delta88v4.h, config/m88k/xm-delta88v4.h: Ditto.
5712 * config/mips/nm-irix5.h, config/mips/nm-linux.h: Ditto.
5713 * config/mips/tm-linux.h, config/mips/tm-mips64.h: Ditto.
5714 * config/mips/tm-mipsm3.h, config/mips/tm-mipsv4.h: Ditto.
5715 * config/mips/tm-vxmips.h, config/mips/xm-irix5.h: Ditto.
5716 * config/mips/xm-mipsv4.h, config/ns32k/xm-nbsd.h: Ditto.
5717 * config/pa/nm-hppao.h, config/powerpc/nm-linux.h: Ditto.
5718 * config/powerpc/tm-linux.h, config/powerpc/tm-vxworks.h: Ditto.
5719 * config/powerpc/xm-aix.h, config/rs6000/nm-rs6000ly.h: Ditto.
5720 * config/rs6000/tm-rs6000ly.h, config/rs6000/xm-aix4.h: Ditto.
5721 * config/sh/tm-linux.h, config/sparc/nm-linux.h: Ditto.
5722 * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4sol2.h: Ditto.
5723 * config/sparc/tm-linux.h, config/sparc/tm-sp64linux.h: Ditto.
5724 * config/sparc/tm-sp64sim.h, config/sparc/tm-sparclynx.h: Ditto.
5725 * config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h: Ditto.
5726 * config/sparc/tm-vxsparc.h, config/sparc/xm-sun4sol2.h: Ditto.
5727
5728 2002-05-04 Aidan Skinner <aidan@velvet.net>
5729
5730 * ada-exp.tab.c: New file
5731 * ada-exp.y: New file
5732 * ada-lang.c: New file
5733 * ada-lang.h: New file
5734 * ada-lex.c: New file
5735 * ada-lex.l: New file
5736 * ada-tasks.c: New file
5737 * ada-typeprint.c: New file
5738 * ada-valprint.c: New file
5739
5740 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
5741
5742 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Don't set
5743 use_struct_convention to ppc_sysv_abi_broken_use_struct_convention.
5744
5745 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
5746
5747 * config/rs6000/aix4.mt (TDEPFILES): Use ppc-sysv-tdep.o
5748 insetead of ppc-linux-tdep.o.
5749 * config/rs6000/rs6000.mt (TDEPFILES): Likewise.
5750 * config/rs6000/rs6000lynx.mt (TDEPFILES): Likewise.
5751
5752 2002-06-02 Andrew Cagney <ac131313@redhat.com>
5753
5754 2002-05-07 Christian Groessler <chris@groessler.org>
5755 * z8k-tdep.c (z8k_print_register_hook): Fix display of 32 and 64
5756 bit register contents for little endian hosts.
5757
5758 2002-06-01 Andrew Cagney <ac131313@redhat.com>
5759
5760 * MAINTAINERS: Mention that any `HP/UX reader' can be changed by
5761 any maintainer.
5762
5763 2002-06-01 Andrew Cagney <ac131313@redhat.com>
5764
5765 * gdbarch.h: Regenerate.
5766
5767 2002-06-01 Andrew Cagney <ac131313@redhat.com>
5768
5769 * MAINTAINERS: Add everyone to write-after-approval list.
5770
5771 2002-06-01 Andrew Cagney <ac131313@redhat.com>
5772
5773 * stack.c (frame_info): Use frame_register_unwind instead of
5774 saved_regs. Mention when the SP is on the stack or in a register.
5775
5776 * frame.h (frame_register_unwind_ftype): Define. Document.
5777 (struct frame_info): Add field register_unwind and
5778 register_unwind_cache.
5779 (frame_register_unwind): Declare.
5780 (generic_unwind_get_saved_register): Declare.
5781
5782 * frame.c (frame_register_unwind): New function.
5783 (generic_unwind_get_saved_register): New function.
5784
5785 * blockframe.c (generic_call_dummy_register_unwind): New function.
5786 (frame_saved_regs_register_unwind): New function.
5787 (set_unwind_by_pc): New function.
5788 (create_new_frame): New function.
5789 (get_prev_frame): New function.
5790
5791 2002-05-30 Andrew Cagney <ac131313@redhat.com>
5792
5793 * a29k-share/: Delete directory.
5794 * remote-vx29k.c: Delete file.
5795
5796 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
5797
5798 * config/djgpp/fnchange.lst: Add ns32knbsd-nat.c, ns32knbsd-tdep.c,
5799 ppcnbsd-nat.c, ppcnbsd-tdep.c, sparcnbsd-nat.c, and sparcnbsd-tdep.c.
5800
5801 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
5802
5803 * Makefile.in (ALLDEPFILES): Add sparc64nbsd-nat.c,
5804 sparcnbsd-nat.c, and sparcnbsd-tdep.c.
5805 (sparc64nbsd-nat.o)
5806 (sparcnbsd-nat.o)
5807 (sparcnbsd-tdep.o): New dependency lists.
5808 * NEWS: Note new UltraSPARC NetBSD native configuration.
5809 * configure.host (sparc64-*-netbsd*): New host.
5810 * configure.tgt (sparc-*-netbsdelf*)
5811 (sparc-*-netbsd*): Set gdb_target to nbsd.
5812 (sparc64-*-netbsd*): New target.
5813 * sparc64nbsd-nat.c: New file.
5814 * sparcnbsd-nat.c: New file.
5815 * sparcnbsd-tdep.c: New file.
5816 * sparcnbsd-tdep.h: New file.
5817 * config/sparc/nbsd.mt: New file.
5818 * config/sparc/nbsd64.mh: New file.
5819 * config/sparc/nbsd64.mt: New file.
5820 * config/sparc/nbsdaout.mh (NATDEPFILES): Remove corelow.o,
5821 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
5822 (HOST_IPC): Remove.
5823 * config/sparc/nbsdaout.mt: Remove.
5824 * config/sparc/nbsdelf.mh (NATDEPFILES): Remove corelow.o,
5825 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
5826 (HOST_IPC): Remove.
5827 * config/sparc/nbsdelf.mt: Remove.
5828 * config/sparc/nm-nbsd.h: Update copyright years. Remove all
5829 sparc-nat.c compatiblity defines.
5830 * config/sparc/tm-nbsd.h: Update copyright years. Include solib.h.
5831 (GDB_MULTI_ARCH): Set to GDB_MULTI_ARCH_PARTIAL.
5832 * config/sparc/tm-nbsd64.h: New file.
5833 * config/sparc/tm-nbsdaout.h: Remove.
5834 * config/sparc/xm-nbsd.h: Remove.
5835
5836 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
5837
5838 * Makefile.in (sparc-tdep.o): Add osabi.h to dependency list.
5839 * sparc-tdep.c: Include osabi.h.
5840 (gdbarch_tdep): Add osabi member.
5841 (_initialize_sparc_tdep): Use gdbarch_register.
5842 (sparc_gdbarch_init): Use generic OS ABI framework.
5843 (sparc_dump_tdep): New function.
5844
5845 2002-05-30 Kevin Buettner <kevinb@redhat.com>
5846
5847 * corefile.c (do_captured_read_memory_integer): Return non-zero
5848 result.
5849 (safe_read_memory_integer): Copy result of memory read when
5850 status is non-zero. Also, add comments.
5851
5852 2002-05-20 Jason Thorpe <thorpej@wasabisystems.com>
5853
5854 * Makefile.in (ppc_tdep_h): Define.
5855 (ppc-linux-nat.o)
5856 (ppc-linux-tdep.o)
5857 (rs6000-tdep.o): Use $(ppc_tdep_h).
5858 (ppc-sysv-tdep.o)
5859 (ppcnbsd-nat.o)
5860 (ppcnbsd-tdep.o): New dependency lists.
5861 * ppc-tdep.h: Use generic OS ABI framework.
5862 * ppc-linux-tdep.c (_initialize_ppc_linux_tdep)
5863 (ppc_linux_init_abi): New functions.
5864 (ppc_sysv_abi_broken_use_struct_convention)
5865 (ppc_sysv_abi_use_struct_convention)
5866 (ppc_sysv_abi_push_arguments): Move to...
5867 * ppc-sysv-tdep.c: ...here.
5868 * ppcnbsd-nat.c: Don't include gdbcore.h and regcache.h.
5869 * rs6000-tdep.c (process_note_abi_tag_sections)
5870 (get_elfosabi): Remove.
5871 (rs6000_gdbarch_init): Use generic OS ABI framework.
5872 (rs6000_dump_tdep): New function.
5873 (_initialize_rs6000_tdep): Use gdbarch_register.
5874 * config/powerpc/linux.mt (TDEPFILES): Add ppc-sysv-tdep.o.
5875 * config/powerpc/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
5876 * config/powerpc/aix.mt (TDEPFILES): Use ppc-sysv-tdep.o instead
5877 of ppc-linux-tdep.o.
5878 * config/powerpc/nbsd.mt (TDEPFILES): Likewise.
5879 * config/powerpc/ppc-eabi.mt (TDEPFILES): Likewise.
5880 * config/powerpc/ppc-sim.mt (TDEPFILES): Likewise.
5881 * config/powerpc/ppcle-eabi.mt (TDEPFILES): Likewise.
5882 * config/powerpc/ppcle-sim.mt (TDEPFILES): Likewise.
5883 * config/powerpc/vxworks.mt (TDEPFILES): Likewise.
5884
5885 2002-05-29 Jim Blandy <jimb@redhat.com>
5886
5887 * macroscope.c (default_macro_scope): Put `void' in empty argument
5888 list.
5889
5890 2002-05-29 Andrew Cagney <ac131313@redhat.com>
5891
5892 * Makefile.in (arch-utils.o): Add $(sim_regno_h).
5893 * arch-utils.c: Include "sim-regno.h".
5894 * gdbarch.sh: Don't include "sim-regno.h".
5895 * gdbarch.h, gdbarch.c: Regenerate.
5896 * sim-regno.h (legacy_register_sim_regno): Move declaration from
5897 here.
5898 * arch-utils.h (legacy_register_sim_regno): To here.
5899 * remote-sim.c (legacy_register_sim_regno): Move function from
5900 here.
5901 * arch-utils.c (legacy_register_sim_regno): To here.
5902
5903 2002-05-28 Andrew Cagney <ac131313@redhat.com>
5904
5905 * sim-regno.h: New file.
5906 * Makefile.in (sim_regno_h): Define.
5907 (d10v-tdep.o, remote-sim.o): Add dependency on $(sim_regno_h).
5908 * remote-sim.c: Include "sim-regno.h" and "gdb_assert.h".
5909 (legacy_register_sim_regno): New function.
5910 (one2one_register_sim_regno): New function.
5911 (gdbsim_fetch_register): Rewrite.
5912 (gdbsim_store_register): Only store a register when
5913 REGISTER_SIM_REGNO is valid.
5914 * d10v-tdep.c: Include "sim-regno.h".
5915 (d10v_ts2_register_sim_regno): Add legacy_regiter_sim_regno check.
5916 (d10v_ts3_register_sim_regno): Ditto.
5917 * gdbarch.sh: Include "sim-regno.h".
5918 (REGISTER_SIM_REGNO): Set default to legacy_register_sim_regno.
5919 * gdbarch.h, gdbarch.c: Regenerate.
5920 * arch-utils.h (default_register_sim_regno): Delete declaration.
5921 * arch-utils.c (default_register_sim_regno): Delete function.
5922
5923 2002-05-28 Jason Thorpe <thorpej@wasabisystems.com>
5924
5925 * ppcnbsd-nat.c: Rewrite.
5926 * ppcnbsd-tdep.c: New file.
5927 * ppcnbsd-tdep.h: New file.
5928 * config/powerpc/nbsd.mh (NATDEPFILES): Remove corelow.o,
5929 solib.o, and solib-svr4.o.
5930 * config/powerpc/nbsd.mt (TDEPFILES): Add ppcnbsd-tdep.o,
5931 nbsd-tdep.o, and corelow.o.
5932
5933 2002-05-28 Andrew Cagney <ac131313@redhat.com>
5934
5935 * MAINTAINERS (--enable-gdb-build-warnings): Rewrite script to use
5936 `tr' and `sed'. Mention that `broken' targets are not expected to
5937 build.
5938
5939 2002-05-27 Michal Ludvig <mludvig@suse.cz>
5940
5941 * x86-64-tdep.c (x86_64_skip_prologue): Remove obsolete note.
5942 Let PC point right after the prologue before looking up symbols.
5943
5944 2002-05-27 Martin M. Hunt <hunt@redhat.com>
5945
5946 * i386-tdep.c (i386_register_virtual_type): Return
5947 builtin_type_vec128i for SSE registers.
5948
5949 * gdbtypes.h (builtin_type_vec128i): Declare.
5950
5951 * gdbtypes.c (build_builtin_type_vec128i): New function.
5952 (builtin_type_v2_double, builtin_type_v4_int64): New types.
5953 (builtin_type_vec128i): New type for SSE2 128-bit registers.
5954 (build_gdbtypes): Initialize new builtin vector types.
5955 (_initialize_gdbtypes): Register new vector types with gdbarch.
5956
5957 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5958
5959 * MAINTAINERS: ns32k is not longer an obsolete candidate,
5960 since it has been multi-arch'd.
5961 * NEWS: Note that ns32k-*-* is now partial multi-arch.
5962 Move Alpha and VAX multi-arch news entries to same section
5963 as other multi-arch news.
5964
5965 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5966
5967 * ns32k-tdep.c: include gdbtypes.h, inferior.h, regcache.h,
5968 target.s, arch-utils.h, ns32k-tdep.h. Make many functions
5969 static. Rename some register numbers to put them in ns32k-tdep
5970 private namespace.
5971 (ns32k_get_saved_register, ns32k_gdbarch_init_32082,
5972 ns32k_gdbarch_init_32382, ns32k_gdbarch_init, ns32k_dump_tdep): New
5973 functions.
5974 (_initialize_ns32k_tdep): Use gdbarch_register.
5975 * ns32k-tdep.h: New file.
5976 * ns32knbsd-tdep.c: New file.
5977 * config/ns32k/nbsdaout.mt (TDEPFILES): Add ns32knbsd-tdep.o.
5978 * config/ns32k/tm-nbsd.h: Include "ns32k/tm-ns32k.h".
5979 (IN_SOLIB_CALL_TRAMPOLINE, REGISTER_NAME, NUM_REGS,
5980 REGISTER_BYTES, REGISTER_BYTE): Remove.
5981 * config/ns32k/tm-ns32k.h: New file.
5982 * config/ns32k/tm-umax.h: Remove.
5983
5984 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5985
5986 * ns32k-tdep.c (ns32k_saved_pc_after_call,
5987 ns32k_store_struct_return, ns32k_extract_return_value,
5988 ns32k_store_return_value, ns32k_extract_struct_value_address): New
5989 functions.
5990 * config/ns32k/tm-umax.h (SAVED_PC_AFTER_CALL): Define as
5991 ns32k_saved_pc_after_call.
5992 (STORE_STRUCT_RETURN): Define as ns32k_store_struct_return.
5993 (EXTRACT_RETURN_VALUE): Define as ns32k_extract_return_value.
5994 (STORE_RETURN_VALUE): Define as ns32k_store_return_value.
5995 (EXTRACT_STRUCT_VALUE_ADDRESS): Define as
5996 ns32k_extract_struct_value_address.
5997
5998 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5999
6000 * ns32k-tdep.c (ns32k_call_dummy_words, sizeof_ns32k_call_dummy_words,
6001 ns32k_fix_call_dummy): New.
6002 * config/ns32k/tm-umax.h (CALL_DUMMY_WORDS): Define as
6003 ns32k_call_dummy_words.
6004 (SIZEOF_CALL_DUMMY_WORDS): Define as sizeof_ns32k_call_dummy_words.
6005 (CALL_DUMMY, CALL_DUMMY_LENGTH, CALL_DUMMY_ADDR,
6006 CALL_DUMMY_NARGS): Remove.
6007 (FIX_CALL_DUMMY): Define as ns32k_fix_call_dummy.
6008
6009 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6010
6011 * ns32k-tdep.c (ns32k_breakpoint_from_pc, ns32k_frame_chain,
6012 ns32k_frame_saved_pc, ns32k_frame_args_address,
6013 ns32k_frame_locals_address, ns32k_frame_init_saved_regs,
6014 ns32k_push_dummy_frame, ns32k_pop_frame): New functions.
6015 * config/ns32k/tm-nbsd.h (FRAME_SAVED_PC): Remove.
6016 * config/ns32k/tm-umax.h (INNER_THAN): Define as core_addr_lessthan.
6017 (BREAKPOINT_FROM_PC): Define as ns32k_breakpoint_from_pc.
6018 (BREAKPOINT): Remove..
6019 (FRAME_CHAIN): Define as ns32k_frame_chain.
6020 (FRAME_SAVED_PC): Define as ns32k_frame_saved_pc.
6021 (FRAME_ARGS_ADDRESS): Define as ns32k_frame_args_address.
6022 (FRAME_LOCALS_ADDRESS): Define as ns32k_frame_locals_address.
6023 (FRAME_FIND_SAVED_REGS): Remove.
6024 (FRAME_INIT_SAVED_REGS): Define as ns32k_frame_init_saved_regs.
6025 (PUSH_DUMMY_FRAME): Define as ns32k_push_dummy_frame.
6026 (POP_FRAME): Define as ns32k_pop_frame.
6027
6028 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6029
6030 * ns32k-tdep.c (ns32k_register_byte_32082,
6031 ns32k_register_byte_32382, ns32k_register_raw_size,
6032 ns32k_register_virtual_size, ns32k_register_virtual_type): New
6033 functions.
6034 * config/ns32k/tm-nbsd.h (REGISTER_BYTE): Define as
6035 ns32k_register_byte_32382.
6036 * config/ns32k/tm-umax.h: Update copyright years.
6037 (REGISTER_BYTE): Define as ns32k_register_byte_32082.
6038 (REGISTER_RAW_SIZE): Define as ns32k_register_raw_size.
6039 (REGISTER_VIRTUAL_SIZE): Define as ns32k_register_virtual_size.
6040 (REGISTER_VIRTUAL_TYPE): Define as ns32k_register_virtual_type.
6041 (ns32k_get_enter_addr): Fix prototype.
6042
6043 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
6044
6045 * ns32k-tdep.c: Update copyright years.
6046 (ns32k_register_name_32082): New function.
6047 (ns32k_register_name_32382): Ditto.
6048 * config/ns32k/tm-nbsd.h (REGISTER_NAMES): Remove.
6049 (REGISTER_NAME): Define as ns32k_register_name_32382.
6050 * config/ns32k/tm-umax.h (REGISTER_NAMES): Remove.
6051 (REGISTER_NAME): Define as ns32k_register_name_32082.
6052
6053 2002-05-24 Jim Blandy <jimb@redhat.com>
6054
6055 * dwarf2read.c (free_line_header): Use xfree, not free.
6056
6057 2002-05-24 Jason Thorpe <thorpej@wasabisystems.com>
6058
6059 * config/djgpp/fnchange.lst: Add alphabsd-nat.c,
6060 alphabsd-tdep.c, mipsnbsd-nat.c, and mipsnbsd-tdep.c
6061
6062 2002-05-23 Andrew Cagney <ac131313@redhat.com>
6063
6064 * PROBLEMS: Mention s390 and FreeBSD 4.4 build problems.
6065
6066 2002-05-23 Andrew Cagney <ac131313@redhat.com>
6067
6068 From Ross Alexander at NEC Europe:
6069 * config/pa/hpux11w.mh (NATDEPFILES): Add solib.o.
6070
6071 2002-05-23 Michael Snyder <msnyder@redhat.com>
6072
6073 * cli/cli-dump.c (restore_command): Use parse_and_eval_long
6074 for input, rather than parse_and_eval_address.
6075
6076 2002-05-23 Andrew Cagney <ac131313@redhat.com>
6077
6078 * d10v-tdep.c: Include "gdb/sim-d10v.h" instead of "sim-d10v.h".
6079 * Makefile.in (sim_d10v_h): Update definition.
6080
6081 2002-05-24 Andrew Cagney <cagney@redhat.com>
6082
6083 * d10v-tdep.c (d10v_gdbarch_init): Revert old code included in
6084 change `2002-05-22 Michael Snyder' below.
6085 (d10v_push_arguments): Ditto.
6086 (d10v_extract_return_value): Ditto.
6087
6088 2002-05-23 Jim Blandy <jimb@redhat.com>
6089
6090 * macrotab.c (check_for_redefinition): Don't complain if the new
6091 definition is the same as the previous one. Take more arguments
6092 to allow the comparison.
6093 (macro_define_object, macro_define_function): Pass more arguments
6094 to check_for_redefinition.
6095
6096 2002-05-22 Michael Snyder <msnyder@redhat.com>
6097
6098 * d10v-tdep.c: Change a few macros to enums for ease of debugging.
6099 (d10v_frame_chain_valid): Add PC_IN_CALL_DUMMY clause.
6100 (d10v_frame_saved_pc): Add PC_IN_CALL_DUMMY clause.
6101 (d10v_frame_chain): Bail immediately if PC_IN_CALL_DUMMY.
6102 Don't bail if return_pc is PC_IN_CALL_DUMMY.
6103 Add a temp variable to save a call (and a memory read).
6104 (d10v_init_extra_frame_info): Get fi->pc from callee's return_pc
6105 if possible (so that PC_IN_CALL_DUMMY will work).
6106
6107 2002-05-22 Corinna Vinschen <vinschen@redhat.com>
6108
6109 * MAINTAINERS: Remove status `OBSOLETE' from v850.
6110
6111 2002-05-22 Michal Ludvig <mludvig@suse.cz>
6112
6113 * dwarf2cfi.c (frame_state_for): Added safety check for a valid
6114 fde->cie_ptr.
6115 (dwarf2_build_frame_info): Corrected handling of eh_frame.
6116 (dwarf2_build_frame_info): Add offset to fde->initial_location
6117 so that frames of shared libraries are mapped correctly.
6118 (execute_stack_op): Change type of 'result' from ULONGEST to
6119 CORE_ADDR.
6120
6121 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
6122
6123 * config/alpha/tm-nbsd.h: Include solib.h.
6124
6125 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
6126
6127 * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Don't make
6128 assumptions about the host's byte order.
6129
6130 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
6131
6132 * Makefile.in (alphanbsd-tdep.o, shnbsd-tdep.o): Add solib-svr4.h
6133 to dependency list.
6134 * alphanbsd-tdep.c: Include solib-svr4.h.
6135 * shnbsd-tdep.c: Ditto.
6136
6137 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
6138
6139 * Makefile.in (armnbsd-tdep.o): Add solib-svr4.h and
6140 nbsd-tdep.h to dependency list.
6141 * configure.host (arm*-*-netbsdelf*, arm*-*-netbsd*,
6142 i[3456]86-*-netbsdaout*, i[3456]86-*-netbsd*, m68*-*-netbsd*,
6143 ns32k-*-netbsd*, sparc-*-netbsdaout*, sparc-*-netbsd*): Use
6144 nbsdaout.mh and nbsdelf.mh consistently.
6145 * configure.tgt (i[3456]86-*-netbsd*, m68*-*-netbsd*,
6146 ns32k-*-netbsd*, sparc-*-netbsdelf*, sparc-*-netbsd*) Use
6147 nbsdaout.mt and nbsdelf.mh consistently.
6148 * armnbsd-tdep.c: Include nbsd-tdep.h and solib-svr4.h.
6149 (arm_netbsd_elf_init_abi): Use set_solib_svr4_fetch_link_map_offsets
6150 to set nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
6151 * config/nm-nbsd.h: Garbage-collect SVR4_SHARED_LIBS. Move
6152 a.out shared library stuff from here...
6153 * config/nm-nbsdaout.h: ...to here.
6154 * config/tm-nbsd.h: Remove.
6155 * config/alpha/nm-nbsd.h (SVR4_SHARED_LIBS): Remove.
6156 * config/arm/nbsd.mh: Remove.
6157 * config/arm/nbsd.mt (TDEPFILES): Remove solib-sunos.o, add
6158 nbsd-tdep.o.
6159 * config/arm/nbsdaout.mh: New file.
6160 * config/arm/nbsdelf.mh: New file.
6161 * config/arm/nm-nbsdaout.h: New file.
6162 * config/i386/nbsd.mh: Remove.
6163 * config/i386/nbsd.mt: Remove.
6164 * config/i386/nbsdaout.mh: New file.
6165 * config/i386/nbsdaout.mt: New file.
6166 * config/i386/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
6167 * config/i386/nbsdelf.mt (TM_FILE): Use tm-nbsd.h.
6168 * config/i386/nm-nbsd.h (REGISTER_U_ADDR,
6169 i386_register_u_addr): Remove.
6170 * config/i386/nm-nbsdaout.h: New file.
6171 * config/i386/nm-nbsdelf.h: Remove.
6172 * config/i386/tm-nbsd.h: Don't include config/tm-nbsd.h.
6173 (USE_STRUCT_CONVENTION): Remove.
6174 * config/i386/tm-nbsdaout.h: New file.
6175 * config/i386/tm-nbsdelf.h: Remove.
6176 * config/m68k/nbsd.mh: Remove.
6177 * config/m68k/nbsd.mt: Remove.
6178 * config/m68k/nbsdaout.mh: New file.
6179 * config/m68k/nbsdaout.mt: New file.
6180 * config/m68k/nm-nbsd.h: Use config/nm-nbsd.h.
6181 * config/m68k/nm-nbsdaout.h: New file.
6182 * config/m68k/tm-nbsd.h: Don't include config/tm-nbsd.h.
6183 (IN_SOLIB_CALL_TRAMPOLINE): Define.
6184 * config/ns32k/nbsd.mh: Remove.
6185 * config/ns32k/nbsd.mt: Remove.
6186 * config/ns32k/nbsdaout.mh: New file.
6187 * config/ns32k/nbsdaout.mt: New file.
6188 * config/ns32k/nm-nbsd.h: Include config/nm-nbsd.h.
6189 * config/ns32k/nm-nbsdaout.h: New file.
6190 * config/ns32k/tm-nbsd.h: Don't include config/tm-nbsd.h.
6191 (IN_SOLIB_CALL_TRAMPOLINE): Define.
6192 * config/powerpc/nm-nbsd.h: Include config/nm-nbsd.h.
6193 (SVR4_SHARED_LIBS): Remove.
6194 * config/powerpc/tm-nbsd.h: Dont' include config/tm-nbsd.h.
6195 * config/sparc/nbsd.mh: Remove.
6196 * config/sparc/nbsd.mt: Remove.
6197 * config/sparc/nbsdaout.mh: New file.
6198 * config/sparc/nbsdaout.mt: New file.
6199 * config/sparc/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
6200 * config/sparc/nbsdelf.mt: New file.
6201 * config/sparc/nm-nbsdaout.h: New file.
6202 * config/sparc/nm-nbsdelf.h: Remove.
6203 * config/sparc/tm-nbsd.h: Don't include config/tm-nbsd.h.
6204 * config/sparc/tm-nbsdaout.h: New file.
6205
6206 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
6207
6208 * Makefile.in (ALLDEPFILES): Add mipsnbsd-nat.c and
6209 mipsnbsd-tdep.c
6210 (mipsnbsd-nat.o, mipsnbsd-tdep.o): New dependency lists.
6211
6212 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
6213
6214 * Makefile.in (ALLDEPFILES): Add shnbsd-tdep.c and
6215 shnbsd-nat.c.
6216 (shnbsd-tdep.o, shnbsd-nat.o): New dependency lists.
6217
6218 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
6219
6220 * NEWS: Note new MIPS NetBSD native configuration.
6221 * configure.host (mips*-*-netbsd*): New host.
6222 * configure.tgt (mips*-*-netbsd*): New target.
6223 * mipsnbsd-nat.c: New file.
6224 * mipsnbsd-tdep.c: New file.
6225 * mipsnbsd-tdep.h: New file.
6226 * config/mips/nbsd.mh: New file.
6227 * config/mips/nbsd.mt: New file.
6228 * config/mips/nm-nbsd.h: New file.
6229 * config/mips/tm-nbsd.h: New file.
6230
6231 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
6232
6233 * Makefile.in (SFILES): Add osabi.c.
6234 (COMMON_OBS): Add osabi.o.
6235 (osabi.o): New dependency list.
6236 * osabi.c: New file.
6237 * osabi.h: New file.
6238 * doc/gdbint.texinfo: Document new generic OS ABI framework.
6239
6240 * Makefile.in (alpha_tdep_h): Define and use instead of
6241 alpha-tdep.h.
6242 * alpha-tdep.c (alpha_abi_names, process_note_abi_tag_sections,
6243 get_elfosabi, alpha_abi_handler_list, alpha_gdbarch_register_os_abi):
6244 Remove.
6245 (alpha_gdbarch_init, alpha_dump_tdep): Use generic OS ABI framework.
6246 * alpha-tdep.h: Include osabi.h.
6247 (alpha_abi): Remove.
6248 (gdbarch_tdep): Use generic OS ABI framework.
6249 * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Use
6250 gdbarch_register_osabi.
6251 * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Likewise.
6252 * alphafbsd-tdep.c (_initialize_alphafbsd_tdep): Likewise.
6253 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Likewise.
6254
6255 * Makefile.in (sh_tdep_h): Add osabi.h.
6256 * sh-tdep.h (sh_osabi): Remove.
6257 (gdbarch_tdep): Use generic OS ABI framework.
6258 * sh-tdep.c (sh_osabi_names, process_note_abi_tag_sections,
6259 sh_osabi_handler_list, sh_gdbarch_register_os_abi): Remove.
6260 (sh_gdbarch_init, sh_dump_tdep): Use generic OS ABI framework.
6261 * shnbsd-tdep.c (_initialize_shnbsd_tdep): Use gdbarch_register_osabi.
6262
6263 * Makefile.in (arm_tdep_h): Define and use instead of arm-tdep.h.
6264 * arm-linux-tdep.c (_initialize_arm_linux_tdep): Use
6265 gdbarch_register_osabi.
6266 * arm-tdep.c (arm_abi_names, process_note_abi_tag_sections,
6267 arm_abi_handler_list, arm_gdbarch_register_os_abi): Remove.
6268 (get_elfosabi): Rename to...
6269 (arm_elf_osabi_sniffer): ...this. Adjust to use generic OS
6270 ABI framework support routines.
6271 (arm_gdbarch_init): Use generic OS ABI framework.
6272 (arm_dump_tdep): Likewise.
6273 (_initialize_arm_tdep): Likewise.
6274 * arm-tdep.h: Include osabi.h.
6275 (arm_abi): Remove.
6276 (gdbarch_tdep): Remove arm_abi and abi_name members. Add
6277 osabi member.
6278 (arm_gdbarch_register_os_abi): Remove prototype.
6279 * armnbsd-tdep.c (arm_netbsd_aout_osabi_sniffer): New function.
6280 (_initialize_arm_netbsd_tdep): Use gdbarch_register_osabi.
6281
6282 * Makefile.in (mips-tdep.o): Add osabi.h to dependency list.
6283 * mips-tdep.c: Include osabi.h.
6284 (gdbarch_tdep, mips_gdbarch_init, mips_dump_tdep): Use generic
6285 OS ABI framework.
6286
6287 2002-05-20 Kazu Hirata <kazu@cs.umass.edu>
6288
6289 * h8300-tdep.c: Fix formatting.
6290
6291 2002-05-20 Elena Zannoni <ezannoni@redhat.com>
6292
6293 * rs6000-tdep.c (rs6000_do_registers_info): Simplify code for
6294 printing vector registers.
6295
6296 2002-05-19 Andrew Cagney <ac131313@redhat.com>
6297
6298 From Fernando Nasser:
6299 * remote.c (remote_async_open_1): Re-throw the exception when the
6300 connection fails.
6301 (remote_cisco_open): Ditto.
6302 (remote_open_1): Ditto.
6303
6304 2002-05-19 Andrew Cagney <ac131313@redhat.com>
6305
6306 * remote.c (remote_start_remote_dummy): Add uiout parameter.
6307 (remote_start_remote): Add uiout parameter. Pass through to
6308 remote_start_remote_dummy.
6309 (remote_open_1): Use catch_exception instead of catch_errors.
6310 (remote_async_open_1): Ditto.
6311 (remote_cisco_open): Ditto.
6312
6313 2002-05-19 Andrew Cagney <ac131313@redhat.com>
6314
6315 * remote.c (remote_start_remote): Replace PTR with void pointer.
6316 (sigint_remote_twice_token, sigint_remote_token): Ditto. Make
6317 static.
6318
6319 2002-05-18 Andrew Cagney <ac131313@redhat.com>
6320
6321 * gdb_indent.sh: Allow the script to be run in the sim directory.
6322
6323 2002-05-18 Mark Kettenis <kettenis@gnu.org>
6324
6325 * config/i386/nm-cygwin.h (NO_PTRACE_H): Remove define.
6326 * config/i386/nm-go32.h (NO_PTRACE_H): Remove define.
6327
6328 * corelow.c (core_open): Only call set_gdbarch_from_file if
6329 exec_bfd is NULL.
6330
6331 2002-05-17 Andrey Volkov <avolkov@transas.com>
6332
6333 * h8300-tdep.c: Add support of EXR register
6334 * config/h8300/tm-h8300.h: Ditto.
6335
6336 2002-05-17 Andrey Volkov <avolkov@transas.com>
6337
6338 * h8300-tdep.c: Add additional CCR flags (I,UI,H,U)
6339
6340 2002-05-17 Andrey Volkov <avolkov@transas.com>
6341
6342 * h8300-tdep.c: Change literal regnums to REGNO.
6343
6344 2002-05-17 Jim Blandy <jimb@redhat.com>
6345
6346 * NEWS: Note addition of macro support.
6347
6348 Expand preprocessor macros in C expressions.
6349 * c-lang.h: #include "macroexp.h", for macro_lookup_ftype.
6350 (scan_macro_expansion, scanning_macro_expansion,
6351 finished_macro_expansion): New function declarations.
6352 (expression_macro_lookup_func, expression_macro_lookup_baton): New
6353 variable declarations.
6354 * parser-defs.h (expression_context_pc): New declaration.
6355 * parse.c (expression_context_pc): New variable.
6356 (parse_exp_1): Set expression_context_pc, as well as
6357 expression_context_block.
6358 * c-exp.y (yylex): If we're not already reading the result of a
6359 macro expansion, try to macro-expand the next token. When we're
6360 done scanning a macro expansion, switch back to the mainline text.
6361 Commas and `if's in a macro's expansion don't terminate the input.
6362 * c-lang.c: #include "macroscope.h" and "gdb_assert.h".
6363 (macro_original_text, macro_expanded_text,
6364 expression_macro_lookup_func, expression_macro_lookup_baton): New
6365 variables.
6366 (scan_macro_expansion, scanning_macro_expansion,
6367 finished_macro_expansion, scan_macro_cleanup, null_macro_lookup,
6368 c_preprocess_and_parse): New functions.
6369 (c_language_defn, cplus_language_defn, asm_language_defn): Call
6370 c_preprocess_and_parse, instead of c_parse.
6371 * Makefile.in (c_lang_h): Note that this #includes macroexp.h.
6372 (c-lang.o): Note dependency on macroscope.h and gdb_assert.h.
6373
6374 Fri May 17 14:26:19 2002 J"orn Rennecke <joern.rennecke@superh.com>
6375
6376 * sh-tdep.c (gdb_print_insn_sh64): Delete.
6377 (gdb_print_insn_sh): Just set info->endian and use print_insn_sh.
6378 (sh_gdbarch_init): Always use gdb_print_insn_sh.
6379
6380 2002-05-17 Corinna Vinschen <vinschen@redhat.com>
6381
6382 * NEWS: Add section for multi-arched targets. Add v850 to that section.
6383
6384 2002-05-17 Jason Thorpe <thorpej@wasabisystems.com>
6385
6386 * Makefile.in (sh_tdep_h): Define and use.
6387 * config/sh/tm-sh.h (sh_osabi, sh_abi, gdbarch_tdep,
6388 register enum): Move to...
6389 * * sh-tdep.h: ...here.
6390 * sh-tdep.c: Include sh-tdep.h.
6391 * sh3-rom.c: Likewise.
6392 * shnbsd-tdep.c: Likewise.
6393
6394 2002-05-16 Michael Snyder <msnyder@redhat.com>
6395
6396 * arm-tdep.c: Spelling fix in comment.
6397
6398 2002-05-16 Jim Blandy <jimb@redhat.com>
6399
6400 Add commands for manually expanding macros and showing their
6401 definitions.
6402 * macrocmd.c, macroscope.c, macroscope.h: New files.
6403 * Makefile.in (SFILES): Add macrocmd.c, macroscope.c.
6404 (macroscope_h): New variable.
6405 (HFILES_NO_SRCDIR): Add macroscope.h.
6406 (COMMON_OBS): Add macrocmd.o, macroscope.o.
6407 (macroscope.o, macrocmd.o): New rules.
6408
6409 Teach the Dwarf 2 reader to read macro information.
6410 * dwarf2read.c: #include "macrotab.h".
6411 (dwarf_macinfo_buffer): New variable.
6412 (struct dwarf2_pinfo): New members: dwarf_macinfo_buffer, and
6413 dwarf_macinfo_size.
6414 (DWARF_MACINFO_BUFFER, DWARF_MACINFO_SIZE): New macros.
6415 (dwarf2_missing_macinfo_section, dwarf2_macros_too_long,
6416 dwarf2_macros_not_terminated, dwarf2_macro_outside_file,
6417 dwarf2_macro_unmatched_end_file, dwarf2_macro_malformed_definition,
6418 dwarf2_macro_spaces_in_definition): New complaints.
6419 (dwarf2_has_info): Initialize dwarf_macinfo_offset.
6420 (dwarf2_build_psymtabs): Read the .dwarf_macinfo section.
6421 (dwarf2_build_psymtabs_hard): Record the buffer and its size in
6422 the partial symbol table.
6423 (psymtab_to_symtab_1): Set the macinfo buffer and size globals
6424 from what's recorded in the partial symbol table.
6425 (read_file_scope): If the compilation unit has a
6426 `DW_AT_macro_info' attribute, read its macro information.
6427 * Makefile.in (dwarf2read.o): Depend on macrotab.h.
6428
6429 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
6430
6431 Fix PR gdb/546
6432 * ser-tcp.c: Don't include <netinet/udp.h>.
6433
6434 2002-05-16 Stephane Carrez <stcarrez@nerim.fr>
6435
6436 * MAINTAINERS: Update my email address.
6437
6438 2002-05-16 Richard Earnshaw <rearnsha@arm.com>
6439
6440 * config/arm/nm-nbsd.h: Use "config/nm-nbsd.h" to include generic
6441 include file of the same name.
6442
6443 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
6444
6445 * configure.tgt: Mark v850 as multi-arched.
6446 * config/v850/tm-v850.h: Remove file.
6447 * config/v850/v850.mt: Eliminate TM_FILE.
6448
6449 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
6450
6451 * v850-tdep.c: Full multi-arch.
6452 * config/v850/tm-v850.h: Eliminate or move to v850-tdep.c everything.
6453 Define GDB_MULTI_ARCH to 2.
6454
6455 2002-05-16 Pierre Muller <muller@ics.u-strasbg.fr>
6456
6457 * p-exp.y (current_type): New static variable.
6458 Carries the type of the expression at the position that is parsed.
6459 (push_current_type, pop_current_type): Two new functions. Used
6460 to store/restore current_type in expression on specific tokens.
6461 (search_field): New static variable. Set to one after parsing a point
6462 as at that point only a FIELDNAME token should be searched.
6463 (FIELDNAME): New token. After a point only a token belonging to
6464 current_type type definition is allowed.
6465 (all over token rules): reset and change current_type according
6466 to rules.
6467 (exp '[' rule): insert implicit array index field if
6468 exp is a pascal string type.
6469
6470 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
6471
6472 * v850-tdep.c: Fix comment for v850_scan_prologue. Remove extra
6473 frame info. Use frame_info's saved_regs instead of matching member
6474 in extra_frame_info throughout.
6475 (v850_frame_init_saved_regs): New function.
6476 (v850_init_extra_frame_info): Move most functionality into
6477 v850_frame_init_saved_regs().
6478 * config/v850/tm-v850.h (EXTRA_FRAME_INFO): Remove definition.
6479 (v850_frame_find_saved_regs): Remove declaration.
6480 (FRAME_FIND_SAVED_REGS): Remove definition.
6481 (v850_frame_init_saved_regs): Add declaration.
6482 (FRAME_INIT_SAVED_REGS): Add definition.
6483
6484 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
6485
6486 * v850-tdep.c: Begin multi-arch'ing v850.
6487 (v850_target_architecture_hook): Remove function.
6488 (v850_gdbarch_init): New function. Add code previously in
6489 v850_target_architecture_hook().
6490 (_initialize_v850_tdep): Don't set target_architecture_hook.
6491 Call register_gdbarch_init() instead.
6492
6493 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
6494
6495 * gdbtypes.h (struct cplus_struct_type): Remove args field.
6496 * hpread.c (hpread_read_struct_type): Remove assignments to args.
6497 (fixup_class_method_type): Likewise.
6498
6499 2002-05-15 Jim Blandy <jimb@redhat.com>
6500
6501 Add macro structures to GDB's symbol tables. Nobody puts anything
6502 in them yet.
6503 * symtab.h (struct symtab): New member: `macro_table'.
6504 * buildsym.h (pending_macros): New global variable.
6505 * buildsym.c: #include "macrotab.h".
6506 (buildsym_init): Initialize `pending_macros'.
6507 (end_symtab): If we found macro information while reading a CU's
6508 debugging info, do build a symtab structure for it. Make the
6509 symtab point to the macro information, and clear the
6510 `pending_macros' pointer which held it while we were reading the
6511 debug info.
6512 (really_free_pendings): Free any pending macro table.
6513 * objfiles.h (struct objfile): New member: `macro_cache'.
6514 * objfiles.c (allocate_objfile): Set allocate and free functions
6515 for the macro cache's objstack.
6516 (free_objfile): Empty the macro cache's obstack.
6517 * symfile.c (reread_symbols): Empty the macro cache's obstack, and
6518 set new allocate and free functions for it.
6519 * solib-sunos.c (allocate_rt_common_objfile): Set allocate and
6520 free functions for the macro cache's objstack. (Why is this
6521 function building its own objfile?)
6522 * symmisc.c (print_objfile_statistics): Print statistics on the
6523 macro bcache.
6524 * Makefile.in: Note that buildsym.o depends on macrotab.h.
6525
6526 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
6527
6528 * config/arm/nm-nbsd.h: Use <> for include of config/nm-nbsd.h.
6529 (REGISTER_U_ADDR): Delete definition.
6530 (arm_register_u_addr): Delete declaration.
6531
6532 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
6533
6534 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Renamed from JB_PC.
6535 (ARM_LINUX_JB_ELEMENT_SIZE): Likewise.
6536
6537 2002-05-14 Andrew Cagney <ac131313@redhat.com>
6538
6539 * regcache.c (register_valid): Revise comments refering to "Not
6540 available" and "unavailable".
6541 * frame.c (frame_register_read): Ditto.
6542 * findvar.c (value_of_register): Ditto.
6543
6544 2002-05-15 Andrew Cagney <cagney@redhat.com>
6545
6546 * Makefile.in (remote_sim_h): Replace remote-sim_h.
6547 (remote-sim.o): Update dependencies.
6548 (d10v-tdep.o): Specify dependencies.
6549 (sim_d10v_h): Define.
6550
6551 2002-05-14 Jim Blandy <jimb@redhat.com>
6552
6553 * macroexp.c (init_buffer, gather_arguments, expand): Use NULL, not 0.
6554 * macrotab.c (macro_lookup_inclusion, find_definition,
6555 new_macro_table): Same.
6556
6557 * macroexp.c (currently_rescanning, expand): Use `strcmp () == 0',
6558 not `! strcmp ()'. This is a dubious improvement.
6559 * macrotab.c (macro_lookup_inclusion, find_definition): Same.
6560
6561 * macrotab.c (macro_lookup_inclusion): Initialize `best_depth',
6562 although it's not necessary, to avoid a warning.
6563
6564 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
6565
6566 * gdbtypes.h: Update accessor macros to use TYPE_MAIN_TYPE.
6567 (TYPE_CONST, TYPE_VOLATILE, TYPE_CODE_SPACE, TYPE_DATA_SPACE): Use
6568 TYPE_INSTANCE_FLAGS.
6569 (struct main_type): New.
6570 (struct type): Move most members to struct main_type. Change
6571 cv_type and as_type to new type_chain member. Add instance_flags.
6572 (TYPE_MAIN_TYPE, TYPE_CHAIN, TYPE_INSTANCE_FLAGS): New macros.
6573 (TYPE_CV_TYPE, TYPE_AS_TYPE): Remove.
6574 (finish_cv_type): Remove prototype.
6575 * gdbtypes.c (alloc_type): Update comment. Allocate TYPE_MAIN_TYPE.
6576 Set TYPE_CHAIN.
6577 (alloc_type_instance): New function.
6578 (smash_type): New function.
6579 (make_pointer_type, make_reference_type, make_function_type)
6580 (smash_to_member_type, smash_to_method_type): Call smash_type.
6581 (make_qualified_type): New function.
6582 (make_type_with_address_space): Call make_qualified_type.
6583 (make_cv_type): Likewise.
6584 (finish_cv_type): Remove unnecessary function.
6585 (replace_type): Update comment. Copy TYPE_MAIN_TYPE.
6586 (recursive_dump_type): Dump TYPE_CHAIN and TYPE_INSTANCE_FLAGS;
6587 remove TYPE_CV_TYPE and TYPE_AS_TYPE.
6588 * c-typeprint.c (c_type_print_modifier): Use TYPE_INSTANCE_FLAGS.
6589 * dwarf2read.c (read_structure_scope): Don't call finish_cv_type.
6590 * hpread.c (hpread_read_struct_type): Likewise.
6591 * stabsread.c (read_struct_type): Likewise.
6592
6593 2002-05-14 Elena Zannoni <ezannoni@redhat.com>
6594
6595 * configure.tgt: Add a catch all sh* target, for cases like
6596 sh[2,3,4]-elf and sh-hms.
6597
6598 2002-05-14 Keith Seitz <keiths@redhat.com>
6599
6600 * event-loop.c (create_file_handler): Don't do anything but
6601 update data when we are given a fd which we are already
6602 monitoring.
6603
6604 2002-05-14 Michal Ludvig <mludvig@suse.cz>
6605
6606 * dwarf2cfi.c (context_cpy): Copy registers correctly.
6607 (update_context): Use __func__ in warnings.
6608
6609 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
6610
6611 * ser-tcp.c: Include <netinet/udp.h>. Rename tcp_open
6612 and tcp_close to net_open and net_close.
6613 (net_open): Accept "udp:" and "tcp:" specifications. Connect
6614 using UDP if requested. Don't try to disable Nagle on UDP
6615 sockets.
6616 * remote.c (remote_serial_open): New function. Warn about UDP.
6617 (remote_open_1, remote_async_open_1, remote_cisco_open): Call it.
6618
6619 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
6620
6621 * MAINTAINERS: List sh-elf as buildable with ,-Werror.
6622
6623 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
6624
6625 * configure.tgt: Remove sh-hms target.
6626 * MAINTAINERS: Don't list sh-hms as a separate target.
6627
6628 2002-05-13 Jim Blandy <jimb@redhat.com>
6629
6630 Add first preprocessor macro-expansion files.
6631 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
6632 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
6633 (splay_tree_h, macroexp_h, macrotab_h): New variable.
6634 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
6635 (COMMON_OBS): Add macrotab.o, macroexp.o.
6636 (macroexp.o, macrotab.o): New rules.
6637
6638 2002-05-13 Andrew Cagney <ac131313@redhat.com>
6639
6640 * config/m88k/tm-m88k.h: Update copyright.
6641 (m88k_target_write_pc): Declare
6642 (TARGET_WRITE_PC): Redefine using m88k_target_write_pc.
6643 (M88K_NNPC_REGNUM): Rename NNPC_REGNUM.
6644 (SHIFT_INST_REGS): Update definition.
6645 * m88k-tdep.c (m88k_target_write_pc): New function. Implement
6646 using old definition of TARGET_WRITE_PC.
6647 * regcache.c (generic_target_write_pc): Delete code handling
6648 NNPC_REGNUM.
6649 * gdbarch.sh (NNPC_REGNUM): Delete.
6650 * gdbarch.h, gdbarch.c: Regenerate.
6651
6652 2002-05-13 Richard Earnshaw <rearnsha@arm.com>
6653
6654 * builtin-regs.c (value_of_builtin_reg): Correctly calculate the
6655 builtin reg number.
6656
6657 2002-05-13 Daniel Jacobowitz <drow@mvista.com>
6658
6659 * ax-gdb.c (gen_sign_extend, gen_fetch, gen_usual_unary)
6660 (gen_cast, gen_scale, gen_add, gen_sub, gen_binop, gen_deref)
6661 (gen_address_of, gen_struct_ref, gen_repeat): Use type
6662 access macros.
6663 * c-typeprint.c (cp_type_print_method_args): Likewise.
6664 (c_type_print_args): Likewise.
6665 * d10v-tdep.c (d10v_push_arguments): Likewise.
6666 (d10v_extract_return_value): Likewise.
6667 * expprint.c (print_subexp): Likewise.
6668 * gdbtypes.c (lookup_primitive_typename): Likewise.
6669 (lookup_template_type, add_mangled_type, print_arg_types): Likewise.
6670 * gdbtypes.h (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB)
6671 (TYPE_TARGET_STUB, TYPE_STATIC, TYPE_CONST, TYPE_VOLATILE)
6672 (TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_CODE_SPACE, TYPE_VARARGS)
6673 (TYPE_VECTOR): Likewise.
6674 * hpread.c (hpread_read_struct_type)
6675 (fix_static_member_physnames, fixup_class_method_type)
6676 (hpread_type_lookup): Likewise.
6677 * mdebugread.c (parse_symbol, parse_type): Likewise.
6678 * p-lang.c (is_pascal_string_type): Likewise.
6679 * valops.c (hand_function_call): Likewise.
6680 * x86-64-tdep.c (classify_argument): Likewise.
6681
6682 * hpread.c (hpread_read_function_type)
6683 (hpread_read_doc_function_type): Call replace_type.
6684 * dstread.c (create_new_type): Delete.
6685 (decode_dst_structure, process_dst_function): Call alloc_type.
6686 Use type access macros.
6687
6688 2002-05-12 Mark Kettenis <kettenis@gnu.org>
6689
6690 * i387-tdep.c (i387_supply_fxsave): Skip the SSE registers if
6691 the're not supported by the current architecture.
6692 (i387_fill_fxsave): Likewise.
6693
6694 2002-05-12 Fred Fish <fnf@redhat.com>
6695
6696 * symfile.c (default_symfile_offsets): Arrange for uninitialized
6697 sect_index_xxx members to index the first slot in section_offsets
6698 if all of the section_offsets are zero.
6699
6700 2002-05-12 Mark Kettenis <kettenis@gnu.org>
6701
6702 * configure.tgt (sparc-*openbsd): Remove entry accidentially
6703 checked in with last change.
6704
6705 2002-05-12 Mark Kettenis <kettenis@gnu.org>
6706
6707 * configure.tgt (i[3456]86-*-unixware*, i[3456]86-*-unixware2*):
6708 Remove targets. These are canonicalized to i386-*-sysv4.2uw by
6709 config.sub.
6710
6711 2002-05-12 Daniel Jacobowitz <drow@mvista.com>
6712
6713 * Makefile.in: Update dependencies.
6714
6715 2002-05-11 Andrew Cagney <ac131313@redhat.com>
6716
6717 * language.c (local_hex_string_custom): Simplify. Do not depend
6718 on PRINTF_HAS_LONG_LONG or CC_HAS_LONG_LONG.
6719
6720 * memattr.c (mem_info_command): Replace calls to
6721 longest_local_hex_string and longest_local_hex_string_custom.
6722 * buildsym.c (make_blockvector): Ditto.
6723 * solib.c (info_sharedlibrary_command): Ditto.
6724 * tracepoint.c (tracepoints_info): Ditto.
6725 * symtab.c (print_msymbol_info): Ditto.
6726
6727 * language.c (local_hex_string): Delete.
6728 (local_hex_string_custom): Delete.
6729 (longest_local_hex_string): Rename to local_hex_string.
6730 (longest_local_hex_string_custom): Rename to
6731 local_hex_string_custom.
6732 * language.h (local_hex_string): Change parameter type to LONGEST.
6733 (local_hex_string_custom): Ditto.
6734 (longest_local_hex_string): Delete declaration.
6735 (longest_local_hex_string_custom): Ditto.
6736
6737 * solib.c: Update copyright.
6738 * memattr.c: Update copyright.
6739
6740 2002-05-11 Andrew Cagney <ac131313@redhat.com>
6741
6742 * arch-utils.h (legacy_register_to_value): Declare.
6743 (legacy_value_to_register): Declare.
6744 (legacy_convert_register_p): Declare.
6745 * arch-utils.c (legacy_register_to_value): New function.
6746 (legacy_value_to_register): New function.
6747 (legacy_convert_register_p): New function.
6748
6749 * gdbarch.sh (REGISTER_TO_VALUE): Define.
6750 (VALUE_TO_REGISTER): Define.
6751 (CONVERT_REGISTER_P): Define.
6752 * gdbarch.h, gdbarch.c: Regenerate.
6753
6754 * valops.c (value_assign): Use CONVERT_REGISTER_P and
6755 VALUE_TO_REGISTER.
6756 * findvar.c (value_from_register): Use REGISTER_TO_VALUE and
6757 CONVERT_REGISTER_P.
6758
6759 2005-05-11 Daniel Jacobowitz <drow@mvista.com>
6760 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
6761
6762 * Makefile.in: Update dependencies for valops.c.
6763 * valops.c: Include "gdb_assert.h".
6764 (typecmp): Skip THIS parameter to methods.
6765 (find_method_list): Remove static_memfuncp argument,
6766 update callers. Check for stub methods.
6767 (find_value_oload_method_list): Don't set *static_memfuncp.
6768 (find_overload_match): Don't check for stub methods. Assert
6769 that methods are not stubbed. Handle static methods.
6770 (value_find_oload_method_list): Remove static_memfuncp argument.
6771 * gdbtypes.c (check_stub_method): Do not add THIS pointer
6772 to the argument list for static stub methods.
6773 * value.h (value_find_oload_method_list): Update prototype.
6774
6775 2002-05-11 Andrew Cagney <ac131313@redhat.com>
6776
6777 * arch-utils.h (generic_register_size): Declare.
6778 (generic_register_raw_size, generic_register_virtual_size): Delete
6779 declarations.
6780 * arch-utils.c (generic_register_raw_size): Delete.
6781 (generic_register_size): New function.
6782 (generic_register_virtual_size): Delete.
6783
6784 * gdbarch.sh (REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE): Make
6785 default generic_register_size.
6786 * gdbarch.h, gdbarch.c: Re-generate.
6787
6788 * d10v-tdep.c (d10v_gdbarch_init): Use generic_register_size for
6789 register_virtual_size.
6790 * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
6791 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
6792
6793 2002-05-11 Andrew Cagney <ac131313@redhat.com>
6794
6795 * gdbarch.sh (gdbarch_data): Add gdbarch parameter.
6796 * gdbarch.h, gdbarch.c: Regenerate.
6797 * gnu-v3-abi.c: Update copyright.
6798 (vtable_address_point_offset): Update.
6799 (gnuv3_rtti_type): Update.
6800 (gnuv3_baseclass_offset): Update.
6801 * solib-svr4.c (svr4_fetch_link_map_offsets): Update.
6802 (init_fetch_link_map_offsets): Update.
6803 * remote.c (get_remote_state): Update.
6804
6805 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
6806
6807 * TODO: Remove value_headof/value_from_vtable_info comment.
6808 * printcmd.c (print_command_1): Don't call value_from_vtable_info.
6809 * values.c (value_headof, value_from_vtable_info): Delete.
6810 * value.h (value_from_vtable_info): Delete prototype.
6811
6812 2002-05-11 Andrew Cagney <ac131313@redhat.com>
6813
6814 * Makefile.in: Replace gdb_assert.h with $(gdb_assert_h),
6815 gdb_string.h with $(gdb_string_h) and gdb_regex.h with
6816 $(gdb_regex_h).
6817 (gdb_assert_h): Define.
6818 (gdb_wait_h): Define.
6819 (gdb_regex_h): Define.
6820
6821 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
6822
6823 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
6824 * linespec.c (find_methods): Handle GCC 3.x template constructors.
6825
6826 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6827
6828 * nbsd-tdep.c: Fix comment.
6829
6830 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6831
6832 * Makefile.in (ALLDEPFILES): Add nbsd-tdep.c.
6833 (alphanbsd-tdep.o): Add nbsd-tdep.h to dependency list.
6834 (nbsd-tdep.o): New dependency list.
6835 * alphanbsd-tdep.c: Don't include solib-svr4.h. Include
6836 nbsd-tdep.h.
6837 (alphanbsd_solib_svr4_fetch_link_map_offsets): Remove.
6838 (alphanbsd_init_abi): Use nbsd_lp64_solib_svr4_fetch_link_map_offsets.
6839 * nbsd-tdep.c: New file.
6840 * nbsd-tdep.h: New file.
6841 * shnbsd-tdep.c: Don't include solib-svr4.h. Include
6842 nbsd-tdep.h.
6843 (shnbsd_solib_svr4_fetch_link_map_offsets): Remove.
6844 (shnbsd_init_abi): Use nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
6845 * config/alpha/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
6846 * config/sh/nbsd.mt (TDEPFILES): Ditto.
6847
6848 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6849
6850 * config/alpha/nbsd.mh (NATDEPFILES): Remove corelow.o.
6851 * config/alpha/nbsd.mt (TDEPFILES): Add corelow.o.
6852 * config/i386/nbsd.mh (NATDEPFILES): Remove corelow.o.
6853 * config/i386/nbsd.mt (TDEPFILES): Add corelow.o.
6854 * config/i386/nbsdelf.mh (NATDEPFILES): Remove corelow.o.
6855 * config/i386/nbsdelf.mt (TDEPFILES): Add corelow.o.
6856
6857 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6858
6859 * config/i386/nbsd.mh (NATDEPFILES): Use line continuations.
6860 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
6861 * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
6862 * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
6863 * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
6864 * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
6865 * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
6866
6867 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6868
6869 * i386nbsd-nat.c: Delete file. Move fetch_core_registers and
6870 fetch_elfcore_registers to...
6871 * i386nbsd-tdep.c: ...here.
6872 (i386nbsd_use_struct_convention): Rename to...
6873 (i386nbsd_aout_use_struct_convention): ...this.
6874 (i386nbsd_supply_reg): New function.
6875 (i386nbsd_fill_reg): New function.
6876 (fetch_core_registers): Use i386nbsd_supply_reg.
6877 (fetch_elfcore_registers): Likewise.
6878 (_initialize_i386nbsd_tdep): New function.
6879 * config/i386/nbsd.mh (NATDEPFILES): Remove i386nbsd-nat.o.
6880 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
6881 * config/i386/nbsdelf.mt (TDEPFILES): Add i386nbsd-tdep.o.
6882 * config/i386/tm-nbsd.h (i386nbsd_use_struct_convention): Rename to...
6883 (i386nbsd_aout_use_struct_convention): ...this.
6884
6885 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6886
6887 * shnbsd-nat.c (fetch_inferior_registers): Use shnbsd_supply_reg.
6888 (store_inferior_registers): Use shnbsd_fill_reg.
6889 * shnbsd-tdep.c (sh_nbsd_supply_registers,
6890 sh_nbsd_supply_register): Collapse into...
6891 (shnbsd_supply_reg): ...this.
6892 (sh_nbsd_fill_registers, sh_nbsd_fill_register): Collapse into...
6893 (shnbsd_fill_reg): ...this.
6894 (sh_nbsd_solib_svr4_fetch_link_map_offsets): Rename to...
6895 (shnbsd_solib_svr4_fetch_link_map_offsets): ...this.
6896 (fetch_core_registers): Use shnbsd_supply_reg.
6897 (fetch_elfcore_registers): Use shnbsd_supply_reg.
6898 (sh_nbsd_core_fns): Rename to...
6899 (shnbsd_core_fns): ...this.
6900 (sh_nbsd_elfcore_fns): Rename to...
6901 (shnbsd_elfcore_fns): ...this.
6902 (sh_nbsd_init_abi): Rename to...
6903 (shnbsd_init_abi): ...this.
6904 (_initialize_sh_nbsd_tdep): Rename to...
6905 (_initialize_shnbsd_tdep): ...this.
6906 * shnbsd-tdep.h (sh_nbsd_supply_registers,
6907 sh_nbsd_supply_register, sh_nbsd_fill_registers,
6908 sh_nbsd_fill_register): Remove prototypes.
6909 (shnbsd_supply_reg, shnbsd_fill_reg): Add prototypes.
6910
6911 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6912
6913 * Makefile.in (ALLDEPFILES): Remove i387-nat.c.
6914 (i387-nat.o): Delete dependency list.
6915 (go32-nat.o): Change i387-nat.h to i387-tdep.h.
6916 (x86-64-linux-nat.o): Likewise.
6917 * i387-nat.c: Delete file, moving contents to...
6918 * i387-tdep.c: ...here.
6919 * i387-nat.h: Rename...
6920 * i387-tdep.h: ...to this.
6921 * go32-nat.c: Include i387-tdep.h instead of i387-nat.h.
6922 * i386-linux-nat.c: Likewise.
6923 * i386bsd-nat.c: Likewise.
6924 * i386gnu-nat.c: Likewise.
6925 * i386nbsd-nat.c: Likewise.
6926 * i386v4-nat.c: Likewise.
6927 * x86-64-linux-nat.c: Likewise.
6928 * config/i386/fbsd.mh (NATDEPFILES): Remove i387-nat.o.
6929 * config/i386/go32.mh (NATDEPFILES): Likewise.
6930 * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
6931 * config/i386/i386sol2.mh (NATDEPFILES): Likewise.
6932 * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
6933 * config/i386/linux.mh (NATDEPFILES): Likewise.
6934 * config/i386/nbsd.mh (NATDEPFILES): Likewise.
6935 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
6936 * config/i386/obsd.mh (NATDEPFILES): Likewise.
6937 * config/i386/x86-64linux.mh (NATDEPFILES): Likewise.
6938
6939 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6940
6941 * Makefile.in (ALLDEPFILES): Remove alphanbsd-nat.c.
6942 (alphanbsd-nat.o): Remove dependency list.
6943 (alphanbsd-tdep.o): Add $(regcache_h) to dependency list.
6944 * alphanbsd-nat.c: Delete. Contents moved to...
6945 * alphanbsd-tdep.c: ...here.
6946 (_initialize_alphanbsd_tdep): Register core functions.
6947 * config/alpha/nbsd.mh (NATDEPFILES): Remove alphanbsd-nat.o.
6948
6949 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6950
6951 * Makefile.in (ALLDEPFILES): Add alphabsd-tdep.c.
6952 (alphabsd-nat.o): Depend on alphabsd-tdep.h.
6953 (alphanbsd-nat.o): Likewise.
6954 (alphabsd-tdep.o): New dependency list.
6955 * alphabsd-nat.c (supply_gregset): Use alphabsd_supply_reg.
6956 (fill_gregset): Use alphabsd_fill_reg.
6957 (supply_fpregset): Use alphabsd_supply_fpreg.
6958 (fill_fpregset): Use alphabsd_fill_fpreg.
6959 (fetch_inferior_registers): Use struct reg and struct fpreg
6960 rather than gregset_t and fpregset_t. Use alphabsd_supply_reg
6961 and alphabsd_supply_fpreg.
6962 (store_inferior_registers): Use struct reg and struct fpreg
6963 rather than gregset_t and fpregset_t. Use alphabsd_fill_reg
6964 and alphabsd_fill_fpreg.
6965 * alphabsd-tdep.c: New file.
6966 * alphabsd-tdep.h: New file.
6967 * alphanbsd-nat.c (fetch_core_registers): Use alphabsd_supply_fpreg.
6968 (fetch_elfcore_registers): Use alphabsd_supply_reg and
6969 alphabsd_supply_fpreg.
6970 * config/alpha/fbsd.mt (TDEPFILES): Add alphabsd-tdep.o.
6971 * config/alpha/nbsd.mt (TDEPFILES): Likewise.
6972
6973 2002-05-11 Eric Christopher <echristo@redhat.com>
6974
6975 * mips-tdep.c (mips_double_register_type): Fix thinko.
6976 (mips_single_register_type): Ditto.
6977 * MAINTAINERS: Add self.
6978
6979 2002-05-11 Mark Kettenis <kettenis@gnu.org>
6980
6981 * i387-nat.c (i387_supply_register, i387_fill_fsave,
6982 i387_supply_fxsave, i387_fill_fxsave): Rewrite in order to do the
6983 right thing on architectures with different endianness and/or
6984 integer sizes.
6985
6986 2002-05-10 Jason Thorpe <thorpej@wasabisystems.com>
6987
6988 From Christian Limpach <chris@Pin.LU>
6989 * configure.in: Change sed expression which comments out
6990 NATDEPFILES to also comment out continuation lines.
6991 * configure: Regenerate.
6992
6993 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
6994
6995 * sh-tdep.c: Clean up code erroneously reintroduced by previous
6996 big patch.
6997
6998 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
6999
7000 * sh-tdep.c: Include correct file.
7001
7002 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
7003
7004 New support for sh64-elf (sh5) target.
7005
7006 * configure.tgt: For sh64-elf target, default to sh-elf.
7007
7008 * config/sh/tm-sh.h (enum sh-abi): Possible ABI's.
7009 (struct gdbarch_tdep): Add new fields for new registers and ABI
7010 info.
7011
7012 * sh-tdep.c: Include elf-bfd.h, elf/sh.h, gdb/sim-sh.h.
7013 (NUM_PSEUDO_REGS_SH_MEDIA, NUM_PSEUDO_REGS_SH_COMPACT,
7014 MSYMBOL_IS_SPECIAL, IS_ISA32_ADDR, MAKE_ISA32_ADDR,
7015 UNMAKE_ISA32_ADDR, IS_PTABSL_R18, IS_STS_R0, IS_STS_PR,
7016 IS_MOV_TO_R15, IS_MOV_R14, IS_STQ_R18_R14, IS_STQ_R18_R15,
7017 IS_STL_R18_R15, IS_STQ_R14_R15, IS_STL_R14_R15, IS_ADDIL_SP_MEDIA,
7018 IS_ADDI_SP_MEDIA, IS_ADDL_SP_FP_MEDIA, IS_ADD_SP_FP_MEDIA,
7019 IS_MOV_SP_FP_MEDIA, IS_MOV_R0, IS_MOVL_R0, IS_ADD_SP_R0,
7020 IS_MOV_R14_R0, IS_MEDIA_IND_ARG_MOV, IS_MEDIA_ARG_MOV,
7021 IS_MEDIA_MOV_TO_R14, IS_COMPACT_IND_ARG_MOV, IS_COMPACT_ARG_MOV,
7022 IS_COMPACT_MOV_TO_R14, IS_JSR_R0, IS_NOP): New macros.
7023 (sh_sh64_register_name, sh64_elf_make_msymbol_special,
7024 pc_is_isa32, sh_sh64_breakpoint_from_pc, look_for_args_moves,
7025 sh64_skip_prologue_hard_way, sh64_use_struct_convention,
7026 gdb_print_insn_sh64, translate_insn_rn, sh64_frame_chain,
7027 sh64_get_saved_pr, fpp_reg_base_num, is_media_pseudo,
7028 sh64_get_gdb_regnum, sh64_media_reg_base_num,
7029 sh64_compact_reg_base_num, translate_rn_to_arch_reg_num,
7030 sign_extend, sh64_nofp_frame_init_saved_regs,
7031 sh64_init_extra_frame_info, sh64_get_saved_register,
7032 sh64_extract_struct_value_address, sh64_pop_frame,
7033 sh64_push_arguments, sh64_extract_return_value,
7034 sh64_store_return_value, sh64_show_media_regs,
7035 sh64_show_compact_regs, sh64_show_regs, sh_sh64_register_byte,
7036 sh_sh64_register_raw_size, sh_sh64_register_virtual_size,
7037 sh_sh64_register_virtual_type,
7038 sh_sh64_register_convert_to_virtual,
7039 sh_sh64_register_convert_to_raw, sh64_pseudo_register_read,
7040 sh64_register_read, sh64_pseudo_register_write,
7041 sh64_register_write, do_fv_c_register_info, do_dr_c_register_info,
7042 do_r_c_register_info, do_fpp_register_info, do_cr_c_register_info,
7043 sh64_do_pseudo_register, sh_compact_do_registers_info,
7044 sh64_do_registers_info, sh_gdbarch_init): New functions.
7045
7046 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
7047
7048 * sh-tdep.c (sh_breakpoint_from_pc): Add 'const' to return type.
7049
7050 2002-05-10 Daniel Jacobowitz <drow@mvista.com>
7051
7052 * linespec.c (decode_line_1): Check for a double quote after
7053 a filename correctly.
7054
7055 2002-05-10 Jim Blandy <jimb@redhat.com>
7056
7057 Properly track the size of the current objfile's .debug_line section.
7058 * dwarf2read.c (struct dwarf2_pinfo): New member: dwarf_line_size.
7059 (DWARF_LINE_SIZE): New macro.
7060 (dwarf2_build_psymtabs_hard): Record the line section's size in
7061 the partial symbol table.
7062 (psymtab_to_symtab_1): Restore dwarf_line_size from the partial
7063 symbol table.
7064
7065 2002-05-10 Petr Sorfa <petrs@caldera.com>
7066
7067 * ia64-tdep.c: Handle breakpoints on L instruction type
7068 in MLX instruction bundle by moving the breakpoint to
7069 the third slot (X instruction type) as L holds only data.
7070
7071 2002-05-10 Kevin Buettner <kevinb@redhat.com>
7072
7073 * dbxread.c (discarding_local_symbols_complaint): New complaint.
7074 (process_one_symbol): Complain about discarding local symbols
7075 due to a misplaced N_LBRAC entry.
7076
7077 2002-05-09 Elena Zannoni <ezannoni@redhat.com>
7078
7079 From Daniel Berlin <dan@cgsoftware.com>
7080 * linespec.c (find_toplevel_char): '<' and '>' also increase and
7081 decrease the depth we are at, in the case of templates.
7082
7083 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
7084
7085 * mips-tdep.c (mips_float_register_type): New function.
7086 (mips_double_register_type): New function.
7087 (mips_print_register): Use them.
7088 (do_fp_register_row): Likewise.
7089
7090 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
7091
7092 * signals/signals.c (signals): Remove conditional compilation around
7093 Mach-specific signals. Move them to after TARGET_SIGNAL_DEFAULT.
7094 (target_signal_from_name): Loop until TARGET_SIGNAL_LAST.
7095
7096 2002-05-09 Michael Snyder <msnyder@redhat.com>
7097
7098 * remote-rdp.c (remote_rdp_can_run): Remove.
7099
7100 2002-05-09 Tom Tromey <tromey@redhat.com>
7101
7102 * jv-valprint.c (java_val_print): Handle `char' as a special case
7103 of TYPE_CODE_INT.
7104
7105 2002-05-09 Michael Snyder <msnyder@redhat.com>
7106
7107 * arm-tdep.c (arm_scan_prologue): Accept strb r(0123),[r11,#-nn],
7108 strh r(0123),[r11,#-nn], str r(0123),[r11,#-nn], as well as
7109 strb r(0123),[sp,#nn], strh r(0123),[sp,#nn] and
7110 str r(0123),[sp,#nn].
7111 (arm_skip_prologue): Ditto. Also make disassembly
7112 order-independent by placing it in a loop.
7113
7114 2002-05-06 Michael Snyder <msnyder@redhat.com>
7115
7116 * stabsread.c (read_type): Add recognition for new attribute:
7117 "@V;" means that an array type is actually a vector.
7118 This is analogous to the vector flag that's been added to dwarf2.
7119
7120 2002-05-09 Mark Kettenis <kettenis@gnu.org>
7121
7122 * i386-tdep.h (i386_abi): New enum.
7123 (struct gdbarch_tdep): Replace os_ident member with abi.
7124 (i386_gdbarch_register_os_abi): New prototype.
7125 * i386-tdep.c (i386_abi_names): New array.
7126 (process_note_abi_tag_sections): Removed.
7127 (process_note_sections): New function.
7128 (i386_elf_abi_from_note, i386_elf_abi): New functions.
7129 (struct i386_abi_handler): New struct.
7130 (i386_abi_handler_list): New variable.
7131 (i386_gdbarch_register_os_abi): New function.
7132 (i386_gdbarch_init): Adapt for the changes given above.
7133
7134 2002-05-08 Daniel Jacobowitz <drow@mvista.com>
7135
7136 * gregset.h: Say "GNU/Linux".
7137
7138 2002-05-08 Elena Zannoni <ezannoni@redhat.com>
7139
7140 * gdbtypes.c : Add new builtin type for 64 bit vectors.
7141 (build_gdbtypes): Build builtin_type_v2_float.
7142 (_initialize_gdbtypes): Register new builtin type.
7143
7144 2002-05-08 Andrew Cagney <ac131313@redhat.com>
7145
7146 * gdbarch.sh (init_gdbarch_swap): Do not clear the swap section.
7147 (clear_gdbarch_swap): New function.
7148 (initialize_non_multiarch): Call.
7149 (gdbarch_update_p): Before calling init(), swap out and clear the
7150 existing architecture.
7151 * gdbarch.c: Regenerate.
7152
7153 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
7154
7155 * config/djgpp/fnchange.lst: Add alphanbsd-nat.c and
7156 alphanbsd-tdep.c.
7157
7158 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
7159
7160 * sh-nbsd-nat.c: Rename to...
7161 * shnbsd-nat.c: ...this.
7162 * sh-nbsd-tdep.c: Rename to...
7163 * shnbsd-tdep.c: ...this.
7164 * sh-nbsd-tdep.h: Rename to...
7165 * shnbsd-tdep.h: ...this.
7166 * config/sh/nbsd.mh: Use shnbsd-nat.o.
7167 * config/sh/nbsd.mt: Use shnbsd-tdep.o.
7168
7169 2002-05-08 Richard Earnshaw <rearnsha@arm.com>
7170
7171 * remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
7172 concatenation for command help messages.
7173
7174 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
7175
7176 * NEWS: Note new sh*-*-netbsdelf* configuration.
7177 * configure.host: Set gdb_host_cpu to sh for all sh*.
7178 (sh*-*-netbsdelf*): New host.
7179 * configure.tgt: Set gdb_target_cpu to sh for all sh*.
7180 (sh*-*-netbsdelf*): New target.
7181 * sh-nbsd-nat.c: New file.
7182 * sh-nbsd-tdep.c: New file.
7183 * sh-nbsd-tdep.h: New file.
7184 * config/sh/nbsd.mh: New file.
7185 * config/sh/nbsd.mt: New file.
7186 * config/sh/nm-nbsd.h: New file.
7187 * config/sh/tm-nbsd.h: New file.
7188
7189 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
7190
7191 * sh-tdep.c (sh_osabi_names): Declare.
7192 (process_note_abi_tag_sections): New function.
7193 (get_elfosabi): Ditto.
7194 (sh_gdbarch_register_os_abi): Ditto.
7195 (sh_dump_tdep): Ditto.
7196 _initialize_sh_tdep): Use gdbarch_register to register
7197 sh_gdbarch_init and sh_dump_tdep.
7198 * config/sh/tm-sh.h (sh_osabi): Declare.
7199 (gdbarch_tdep): Add sh_osabi and osabi_name members.
7200
7201 2002-05-07 Andrew Cagney <ac131313@redhat.com>
7202
7203 * arm-tdep.c (arm_skip_prologue): Handle generic dummy frames.
7204 (thumb_scan_prologue): Ditto.
7205 (arm_find_callers_reg): Ditto.
7206 (arm_frame_chain): Ditto.
7207 (arm_init_extra_frame_info): Ditto.
7208 (arm_frame_saved_pc): Ditto.
7209 (arm_pop_frame): Ditto.
7210 (arm_push_return_address): New function.
7211 (arm_gdbarch_init): Initialize use_generic_dummy_frames,
7212 call_dummy_location, call_dummy_breakpoint_offset_p,
7213 call_dummy_breakpoint_offset, call_dummy_p,
7214 call_dummy_stack_adjust_p, call_dummy_words,
7215 sizeof_call_dummy_words, call_dummy_start_offset,
7216 call_dummy_length, fix_call_dummy, pc_in_call_dummy,
7217 call_dummy_address, push_return_address and push_dummy_frame for
7218 generic dummy frames.
7219
7220 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
7221
7222 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Fix error in
7223 size computation for alloca.
7224 (sh_fp_frame_init_saved_regs): Likewise.
7225
7226 2002-05-07 Richard Earnshaw <rearnsha@arm.com>
7227
7228 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE): Define.
7229 (ARM_MAX_REGISTER_VIRTUAL_SIZE): Define.
7230 * arm-tdep.c (arm_store_return_value): Use them.
7231 Use FP_REGISTER_RAW_SIZE when setting the FPA return value.
7232 * remote-rdp.c (remote_rdp_fetch_register): Use
7233 ARM_MAX_REGISTER_RAW_SIZE.
7234 (remote_rdp_store_register): Likewise.
7235
7236 2002-05-07 Michal Ludvig <mludvig@suse.cz>
7237
7238 * dwarf2cfi.c: Code cleanup, removed unused variables,
7239 added default labels to switch {} statements.
7240 * x86-64-tdep.c: Ditto.
7241 * x86-64-linux-nat.c: Ditto.
7242
7243 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
7244
7245 * solib.h: Protect against multiple inclusion.
7246
7247 2002-05-06 Jim Blandy <jimb@redhat.com>
7248
7249 Add first preprocessor macro-expansion files.
7250 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
7251 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
7252 (splay_tree_h, macroexp_h, macrotab_h): New variable.
7253 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
7254 (COMMON_OBS): Add macrotab.o, macroexp.o.
7255 (macroexp.o, macrotab.o): New rules.
7256
7257 Separate the job of reading the line number info statement program
7258 header (...expialidocious) out into its own function.
7259 * dwarf2read.c (struct line_head, struct filenames, struct
7260 directories): Replace with...
7261 (struct line_header): New structure, containing the full
7262 contents of the statement program header, including the
7263 include directory and file name tables.
7264 (read_file_scope): If we have line number info, instead of just
7265 calling dwarf_decode_lines to do all the work, call
7266 dwarf_decode_line_header first to get a `struct line_header'
7267 containing the data in the statement program header, and then
7268 pass that to dwarf_decode_lines, which will pick up where that
7269 left off. Be sure to clean up the `struct line_header' object.
7270 (dwarf_decode_line_header, free_line_header, add_include_dir,
7271 add_file_name): New functions.
7272 (dwarf_decode_lines): Move all the code to read the statement
7273 program header into dwarf_decode_line_header. Take the line
7274 header it built as the first argument, instead of the offset to
7275 the compilation unit's line number info. Use the new `struct
7276 line_header' type instead of the old structures. No need to do
7277 cleanups here now, since we don't allocate anything.
7278 (dwarf2_statement_list_fits_in_line_number_section,
7279 dwarf2_line_header_too_long): New complaints.
7280
7281 2002-05-06 Elena Zannoni <ezannoni@redhat.com>
7282
7283 * gdbtypes.c (init_vector_type): New function.
7284 (build_builtin_type_vec128): Simplify the representation of SIMD
7285 registers.
7286 (build_gdbtypes): Initialize new builtin vector types.
7287 (_initialize_gdbtypes): Register new vector types with gdbarch.
7288 (builtin_type_v4_float, builtin_type_v4_int32,
7289 builtin_type_v8_int16, builtin_type_v16_int8,
7290 builtin_type_v2_int32, builtin_type_v4_int16,
7291 builtin_type_v8_int8): New (renamed) SIMD types.
7292
7293 2002-05-06 Mark Kettenis <kettenis@gnu.org>
7294
7295 * i387-nat.c (i387_fill_fsave): Use regcache_collect.
7296 (i387_fill_fxsave): Likewise.
7297
7298 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
7299
7300 * alpha-tdep.c (alpha_extract_return_value): Don't use
7301 non-constant array size in prototype.
7302
7303 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7304
7305 From Brian Taylor <briant at model dot com>:
7306 * ui-out.c (ui_out_field_core_addr): Use the function
7307 longest_local_hex_string_custom'to format addresses > 32 bits
7308 wide.
7309
7310 * ui-out.c (ui_out_field_core_addr): Update comment.
7311
7312 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7313
7314 * stack.c (select_and_print_frame): Make static. Delete the
7315 parameter `level'.
7316 (func_command): Update call.
7317 (select_frame_command): Delete code computing the frame level.
7318 * frame.h (select_and_print_frame): Delete declaration.
7319
7320 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7321
7322 * sparc-tdep.c (sparc_get_saved_register): Comment why
7323 get_prev_frame call is safe.
7324
7325 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7326
7327 * frame.h (select_frame): Delete level parameter.
7328 * stack.c (select_frame): Update. Use frame_relative_level to
7329 obtain the frame's level.
7330 (select_and_print_frame): Update call.
7331 (select_frame_command): Ditto.
7332 (up_silently_base): Ditto.
7333 (down_silently_base): Ditto.
7334 * ocd.c (ocd_start_remote): Ditto.
7335 * remote-rdp.c (remote_rdp_open): Ditto.
7336 * remote-mips.c (mips_initialize): Ditto.
7337 (common_open): Ditto.
7338 * remote-e7000.c (e7000_start_remote): Ditto.
7339 * m3-nat.c (select_thread): Ditto.
7340 * hppa-tdep.c (child_get_current_exception_event): Ditto.
7341 (child_get_current_exception_event): Ditto.
7342 * varobj.c (varobj_create): Ditto.
7343 (varobj_update): Ditto.
7344 (c_value_of_root): Ditto.
7345 * tracepoint.c (finish_tfind_command): Ditto.
7346 * corelow.c (core_open): Ditto.
7347 * arch-utils.c (generic_prepare_to_proceed): Ditto.
7348 * thread.c (info_threads_command): Ditto.
7349 (switch_to_thread): Ditto.
7350 * infrun.c (normal_stop): Ditto.
7351 (restore_selected_frame): Ditto.
7352 (restore_inferior_status): Ditto.
7353 * breakpoint.c (insert_breakpoints): Ditto.
7354 (watchpoint_check): Ditto.
7355 (bpstat_stop_status): Ditto.
7356 (do_enable_breakpoint): Ditto.
7357 * blockframe.c (flush_cached_frames): Ditto.
7358 (reinit_frame_cache): Ditto.
7359
7360 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7361
7362 * MAINTAINERS (Host/Native): Add Jason Thorpe as NetBSD
7363 maintainer.
7364
7365 2002-05-04 Jim Blandy <jimb@redhat.com>
7366
7367 * gdbtypes.c (replace_type): Doc fix.
7368
7369 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7370
7371 * valprint.c (strcat_longest): Delete commented out function.
7372 Update copyright.
7373
7374 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7375
7376 * MAINTAINERS: Mark a29k as deleted.
7377 * NEWS: Mention that a29k was removed. Add OBSOLETE section.
7378 Move new configurations to the top.
7379 * configure.tgt: Remove a29k.
7380 * config/a29k/tm-vx29k.h: Delete.
7381 * config/a29k/vx29k.mt: Delete.
7382 * config/a29k/tm-a29k.h: Delete.
7383 * config/a29k/a29k-udi.mt: Delete.
7384 * config/a29k/a29k.mt: Delete.
7385 * a29k-tdep.c: Delete.
7386 * remote-udi.c: Delete.
7387 * remote-mm.c: Delete.
7388 * remote-eb.c: Delete.
7389 * remote-adapt.c: Delete.
7390 * Makefile.in: Remove obsolete code.
7391 * config/s390/s390x.mt: Ditto.
7392 * config/s390/s390.mt: Ditto.
7393 * config/sparc/sparclynx.mh: Ditto.
7394 * config/sparc/linux.mh: Ditto.
7395 * config/pa/hppaosf.mh: Ditto.
7396 * config/pa/hppabsd.mh: Ditto.
7397 * config/ns32k/nbsd.mt: Ditto.
7398 * config/mips/vr5000.mt: Ditto.
7399 * config/m68k/sun3os4.mh: Ditto.
7400 * config/m68k/nbsd.mt: Ditto.
7401 * config/m68k/m68klynx.mh: Ditto.
7402 * config/m32r/m32r.mt: Ditto.
7403 * config/i386/x86-64linux.mt: Ditto.
7404 * config/i386/nbsdelf.mt: Ditto.
7405 * config/i386/nbsd.mt: Ditto.
7406 * config/i386/i386lynx.mh: Ditto.
7407
7408 2002-05-04 Andrew Cagney <ac131313@redhat.com>
7409
7410 * target.c (debug_print_register): New function. Handle oversize
7411 registers.
7412 (debug_to_fetch_registers): Call.
7413 (debug_to_store_registers): Call.
7414
7415 2002-05-03 Jim Blandy <jimb@redhat.com>
7416
7417 * stabsread.c (cleanup_undefined_types): Use replace_type, not memcpy.
7418 (read_type): Doc fix.
7419 * gdbtypes.c (replace_type): Doc fix.
7420
7421 * stabsread.c (multiply_defined_struct): New complaint.
7422 (read_struct_type): If the type we were passed isn't empty, or
7423 incomplete, don't read the new struct type into it; complain,
7424 and return the original type unchanged. Take a new `type_code'
7425 argument, which is the type code for the new type.
7426 (read_type): Rather than storing the type's type code here, pass
7427 it as an argument to read_struct_type, and let that take care of
7428 storing it. That way, we don't overwrite the original type code,
7429 so read_struct_type can use it to decide whether we're overwriting
7430 something we shouldn't.
7431 (complain_about_struct_wipeout): New function.
7432
7433 2002-05-03 Andrew Cagney <ac131313@redhat.com>
7434
7435 * gdbarch.sh: Assert that gdbarch is non-NULL.
7436 * gdbarch.c: Regenerate.
7437
7438 2002-05-03 Jason Merrill <jason@redhat.com>
7439
7440 * gnu-v3-abi.c (gnuv3_rtti_type): If we get confused, just warn
7441 and return NULL.
7442
7443 2002-05-03 Michal Ludvig <mludvig@suse.cz>
7444
7445 * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map),
7446 (x86_64_dwarf2gdb_regno_map_length),
7447 (x86_64_dwarf2_reg_to_regnum): Added.
7448 (x86_64_gdbarch_init): Added registration of x86_64_dwarf2_reg_to_regnum.
7449 (x86_64_gdbarch_init): Renamed from i386_gdbarch_init.
7450 (_initialize_x86_64_tdep): Synced with the change above.
7451 (x86_64_skip_prologue): Reformulated message.
7452
7453 2002-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
7454
7455 * f-exp.y: Also use new prev_lexptr variable
7456 to improve error reporting. Based on Michael Snyder
7457 2002-04-24 dated patch to c-exp.y.
7458 * jv-exp.y: Likewise.
7459 * m2-exp.y: Likewise.
7460
7461 2002-05-02 Elena Zannoni <ezannoni@redhat.com>
7462
7463 * valops.c (value_arg_coerce): Don't coerce arrays to pointers if
7464 we are dealing with vectors.
7465
7466 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
7467
7468 * config/m68k/tm-nbsd.h: Obvious fix,
7469 correct machine name.
7470
7471 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
7472
7473 * p-typeprint.c (pascal_type_print_base): Add support
7474 for TYPE_CODE_STRING and TYPE_CODE_BITSTRING.
7475
7476 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
7477
7478 * p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
7479 for fondamental pascal 'char' type.
7480
7481 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
7482
7483 * p-lang.h (is_pascal_string_type): Declaration changed,
7484 new sixth argument of type char ** added.
7485 * p-lang.c (is_pascal_string_type): Implementation
7486 changed. Args length_pos, length_size, string_pos, char_size
7487 can now be NULL. New argument arrayname set to the field
7488 name of the char array. Return value set to char array
7489 field index plus one.
7490 * p-valprint.c (pascal_val_print): Adapt to new declaration of
7491 is_pascal_string_type function.
7492
7493 2002-05-02 Andrew Cagney <cagney@redhat.com>
7494
7495 * gdbarch.sh (gdbarch_update_p): Revert 2002-05-02 Andrew Cagney
7496 <cagney@redhat.com> change.
7497 * gdbarch.c: Regenerate.
7498
7499 2002-05-02 Andrew Cagney <cagney@redhat.com>
7500
7501 * gdbarch.sh (gdbarch_update_p): Swap out the old architecture
7502 before probing for a new one. Detect errorenous gdbarch_init
7503 functions.
7504 * gdbarch.c: Regenerate.
7505
7506 2002-05-01 Andrew Cagney <cagney@redhat.com>
7507
7508 * config/mn10200/tm-mn10200.h: Include "symfile.h" and "symtab.h".
7509 * config/mcore/tm-mcore.h: Ditto. Update copyright.
7510 * config/v850/tm-v850.h: Ditto. Update copyright.
7511
7512 2002-04-30 Andrew Cagney <ac131313@redhat.com>
7513
7514 * cris-tdep.c (cris_gdbarch_init): Use arches instead of
7515 current_gdbarch.
7516
7517 2002-04-30 Michael Snyder <msnyder@redhat.com>
7518
7519 * arm-tdep.c: Whitespace clean-ups.
7520 (arm_skip_prologue): Fix thinko; two lines
7521 should have been removed as part of 4/24 change.
7522
7523 2002-04-30 Kevin Buettner <kevinb@redhat.com>
7524
7525 * rs6000-tdep.c: Added comment describing how fpscr register
7526 numbers were chosen.
7527
7528 2002-04-30 Michael Snyder <msnyder@redhat.com>
7529
7530 * gnu-nat.c (gnu_find_memory_regions): Fix merge botch.
7531
7532 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
7533
7534 * hpread.c (DNTT_TYPE_VECTOR): Rename from TYPE_VECTOR.
7535 (DNTT_TYPE_VECTOR_LENGTH): Rename from TYPE_VECTOR_LENGTH.
7536 (hpread_symfile_init, hpread_lookup_type): Substitute throughout.
7537
7538 2002-04-29 Kevin Buettner <kevinb@redhat.com>
7539
7540 From Louis Hamilton <hamilton@redhat.com>:
7541 * rs6000-tdep.c (coff/xcoff.h, libxcoff.h): Include.
7542 * xcoffread.c (coff/xcoff.h, libxcoff.h): Likewise.
7543 * rs6000-tdep.c (rs6000_gdbarch_init): Use bfd_xcoff_is_xcoff64(),
7544 not bfd-private xcoff data, to determine wordsize.
7545 * xcoffread.c (read_xcoff_xymtab, read_symbol_lineno): Likewise.
7546
7547 2002-04-29 Andrew Cagney <ac131313@redhat.com>
7548
7549 GDB 5.2 released from 5.2 branch.
7550
7551 2002-04-29 Michal Ludvig <mludvig@suse.cz>
7552
7553 * x86-64-linux-nat.c (fill_gregset): Explicit cast to avoid warning.
7554 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
7555 (x86_64_register_info_table): Added comments with register numbers.
7556
7557 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
7558
7559 * rs6000-tdep.c (rs6000_extract_return_value,
7560 rs6000_store_return_value): Handle returning vectors.
7561 (rs6000_gdbarch_init): Use
7562 ppc_sysv_abi_broken_use_struct_convention for native sysv cases.
7563 * ppc-linux-tdep.c (ppc_sysv_abi_broken_use_struct_convention):
7564 New function.
7565 (ppc_sysv_abi_use_struct_convention): Deal with functions returning
7566 vectors.
7567 (ppc_sysv_abi_push_arguments): Handle vector parameters.
7568 * ppc-tdep.h (ppc_sysv_abi_broken_use_struct_convention): Export.
7569
7570 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
7571
7572 * hpread.c (hpread_psymtab_to_symtab_1,
7573 hpread_psymtab_to_symtab): Replace fprintf tab_to_s...)
7574 with fprintf_unfiltered (gdb_stderr,...).
7575
7576 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
7577
7578 * remote-array.c (printf_monitor, write_monitor,
7579 array_insert_breakpoint, array_remove_breakpoint ):
7580 Replace fprintf (stderr,...
7581 with fprintf_unfiltered (gdb_stderr,....
7582 * remote-es.c: Likewise.
7583 * remote-os9k.c: Likewise.
7584 * remote-st.c: Likewise.
7585
7586 2002-04-28 Andreas Schwab <schwab@suse.de>
7587
7588 * config/s390/s390.mh (NATDEPFILES): Remove solib.o, add
7589 linux-proc.o and gcore.o.
7590
7591 2002-04-26 Michal Ludvig <mludvig@suse.cz>
7592
7593 * x86-64-tdep.c (x86_64_skip_prologue): Print note when debugging
7594 code without frame pointers.
7595
7596 2002-04-26 Andrew Cagney <ac131313@redhat.com>
7597
7598 * sparc-tdep.c (sparc_gdbarch_init): Add comment explaining why
7599 ON_STACK is needed.
7600
7601 2002-04-26 Ben Elliston <bje@redhat.com>
7602
7603 * target.c (do_xfer_memory): Correct reference to the new option
7604 "trust-readonly-sections".
7605
7606 2002-04-26 Elena Zannoni <ezannoni@redhat.com>
7607
7608 * gdbtypes.h (TYPE_FLAG_VECTOR, TYPE_VECTOR): Define.
7609 * gdbtypes.c (recursive_dump_type): Output the vector flag.
7610 * dwarf2read.c (dwarf_attr_name): Handle new attribute for
7611 vectors.
7612 (read_array_type): Record the fact that this array type is really a
7613 vector (i.e. are passed in by value).
7614
7615 2002-04-26 Jason Thorpe <thorpej@wasabisystems.com>
7616
7617 * alpha-tdep.h (gdbarch_tdep): Add sigcontext_addr member.
7618 * alpha-tdep.c (alpha_sigcontext_addr): New function.
7619 (alpha_find_saved_regs): Use alpha_sigcontext_addr.
7620 (alpha_gdbarch_init): Initialize tdep->sigcontext_addr.
7621 * alpha-linux-tdep.c: Include frame.h.
7622 (alpha_linux_sigcontext_addr): New function.
7623 (alpha_linux_init_abi): Set tdep->sigcontext_addr to
7624 alpha_linux_sigcontext_addr.
7625 * alpha-osf1-tdep.c: Include gdbcore.h.
7626 (alpha_osf1_sigcontext_addr): New function.
7627 (alpha_osf1_init_abi): Set tdep->sigcontext_addr to
7628 alpha_osf1_sigcontext_addr.
7629 * config/alpha/tm-alpha.h (SIGCONTEXT_ADDR): Remove.
7630 * config/alpha/tm-alphalinux.h (SIGCONTEXT_ADDR): Remove.
7631
7632 2002-04-26 Andrew Cagney <ac131313@redhat.com>
7633
7634 * stack.c (selected_frame_level):
7635 (select_frame): Do not set selected_frame_level.
7636 * frame.h (selected_frame_level): Delete declaration.
7637
7638 2002-04-26 Andrew Cagney <ac131313@redhat.com>
7639
7640 * rs6000-tdep.c (rs6000_gdbarch_init): Only set
7641 convert_from_func_ptr-addr when AIX / PowerOpen.
7642
7643 2002-04-25 Andrew Cagney <ac131313@redhat.com>
7644
7645 * valops.c (hand_function_call): Call
7646 generic_save_call_dummy_addr.
7647 * frame.h (generic_save_call_dummy_addr): Declare.
7648 * blockframe.c (struct dummy_frame): Add fields call_lo and
7649 call_hi.
7650 (generic_find_dummy_frame): Check for PC in range call_lo to
7651 call_hi instead of entry_point_address.
7652 (generic_pc_in_call_dummy): Search the dummy frames for a PC in
7653 the call_lo to call_hi range. Allow for DECR_PC_AFTER_BREAK.
7654 (generic_save_call_dummy_addr): New function.
7655
7656 2002-04-24 David S. Miller <davem@redhat.com>
7657
7658 * sparc-tdep.c (sparc_gdbarch_skip_prologue): Kill, duplicates
7659 sparc_skip_prologue.
7660 (sparc_skip_prologue): Kill frameless_p arg, and use line number
7661 information to find prologue when possible.
7662 (sparc_prologue_frameless_p): Call examine_prologue directly.
7663 (sparc_gdbarch_init): Update set_gdbarch_skip_prologue call.
7664 * config/sparc/tm-sparc.h (sparc_skip_prologue): Update for killed
7665 second argument.
7666 (SKIP_PROLOGUE): Likewise.
7667
7668 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
7669
7670 * alpha-tdep.c (alpha_skip_prologue_internal): Remove
7671 GDB_TARGET_HAS_SHARED_LIBS #ifdef and update comment to
7672 indicate that the condition it was testing is always true.
7673 * config/alpha/nm-linux.h (GDB_TARGET_HAS_SHARED_LIBS): Remove.
7674 * config/alpha/nm-nbsd.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
7675 * config/alpha/nm-osf.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
7676
7677 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
7678
7679 * alpha-tdep.h (gdbarch_tdep): Add jb_pc and jb_elt_size members.
7680 * alpha-linux-tdep.c (alpha_linux_init_abi): Initialize
7681 tdep->jb_pc and tdep->jb_elt_size.
7682 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Likewise.
7683 * alphafbsd-tdep.c (alphafbsd_init_abi): Likewise.
7684 * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
7685 * alpha-nat.c (get_longjmp_target): Remove.
7686 (JB_ELEMENT_SIZE): Ditto.
7687 (JB_PC): Ditto.
7688 * alpha-tdep.c (alpha_get_longjmp_target): New function.
7689 (alpha_gdbarch_init): Default tdep->jb_pc to -1. If the
7690 OS ABI sets jb_pc to a valid value, set gdbarch_get_longjmp_target
7691 to alpha_get_longjmp_target.
7692 (alpha_dump_tdep): Report tdep->jb_pc and tdep->jb_elt_size.
7693 * config/alpha/nm-linux.h (GET_LONGJMP_TARGET): Remove.
7694 * config/alpha/nm-osf.h (GET_LONGJMP_TARGET): Remove.
7695
7696 2002-04-25 Andrew Cagney <ac131313@redhat.com>
7697
7698 * README: Update to GDB 5.2.
7699
7700 2002-04-25 Andrew Cagney <ac131313@redhat.com>
7701
7702 * gdbarch.sh (LC_ALL): Set to `c'.
7703
7704 2002-04-25 Theodore A. Roth <troth@verinet.com>
7705
7706 * avr-tdep.c: Ran through gdb_indent.sh.
7707
7708 2002-04-25 Theodore A. Roth <troth@verinet.com>
7709
7710 * MAINTAINERS: Add myself as AVR maintainer.
7711 * NEWS: Note new target avr.
7712
7713 2002-04-25 Theodore A. Roth <troth@verinet.com>
7714
7715 * Makefile.in: Add support for AVR target.
7716 * configure.tgt: Add support for AVR target.
7717 * avr-tdep.c: New file
7718 * config/avr/avr.mt: New file.
7719
7720 2002-04-25 Theodore A. Roth <troth@verinet.com>
7721
7722 * MAINTAINERS: Add myself to write-after-approval.
7723
7724 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
7725
7726 * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,...
7727 with fprintf_unfiltered (gdb_stderr,....
7728
7729 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
7730
7731 Fix PR gdb/508.
7732 * symfile.c (add_filename_language): Fix wrong xrealloc size argument.
7733
7734 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
7735
7736 * p-exp.y: Also use new prev_lexptr variable
7737 to improve error reporting. Based on Michael Snyder
7738 2002-04-24 dated patch to c-exp.y.
7739
7740 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
7741
7742 * alpha-tdep.c (alpha_breakpoint_from_pc): New function.
7743 (alpha_gdbarch_init): Set gdbarch_breakpoint_from_pc to
7744 alpha_breakpoint_from_pc. Set gdbarch_function_start_offset
7745 to 0.
7746 * config/alpha/tm-alpha.h: Remove forward decls of struct type
7747 and struct value.
7748 (FUNCTION_START_OFFSET): Remove.
7749 (BREAKPOINT): Ditto.
7750
7751 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
7752
7753 * MAINTAINERS: Reflect that multi-arch is enabled for VAX.
7754 * NEWS: Ditto.
7755
7756 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
7757
7758 * alpha-linux-tdep.c (alpha_linux_pc_in_sigtramp): New function.
7759 (alpha_linux_init_abi): Set gdbarch_pc_in_sigtramp to
7760 alpha_linux_pc_in_sigtramp.
7761 * alpha-osf1-tdep.c (alpha_osf1_pc_in_sigtramp): New function.
7762 (alpha_osf1_init_abi): Set gdbarch_pc_in_sigtramp to
7763 alpha_osf1_pc_in_sigtramp.
7764 * alpha-tdep.c (alpha_osf_in_sigtramp): Remove.
7765 * alphafbsd-tdep.c (alphafbsd_pc_in_sigtramp): New function.
7766 (alphafbsd_init_abi): Set gdbarch_pc_in_sigtramp to
7767 alphafbsd_pc_in_sigtramp.
7768 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): New function.
7769 (alphanbsd_init_abi): Set gdbarch_pc_in_sigtramp to
7770 alphanbsd_pc_in_sigtramp.
7771 * config/alpha/tm-alpha.h (IN_SIGTRAMP): Remove.
7772 * config/alpha/tm-alphalinux.h (IN_SIGTRAMP): Remove.
7773
7774 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
7775
7776 * config/alpha/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
7777
7778 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
7779
7780 * Makefile.in (ALLDEPFILES): Add alphanbsd-nat.c and
7781 alphanbsd-tdep.c.
7782 (alphanbsd-nat.o): New dependency list.
7783 (alphanbsd-tdep.o): Ditto.
7784 * NEWS: Note new native NetBSD/alpha configuration.
7785 * alphanbsd-nat.c: New file.
7786 * alphanbsd-tdep.c: Ditto.
7787 * configure.host (alpha*-*-netbsd*): New host.
7788 * configure.tgt (alpha*-*-netbsd*): New target.
7789 * config/alpha/nbsd.mh: New file.
7790 * config/alpha/nbsd.mt: Ditto.
7791 * config/alpha/nm-nbsd.h: Ditto.
7792 * config/alpha/tm-nbsd.h: Ditto.
7793
7794 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
7795
7796 * Makefile.in (ALLDEPFILES): Add alpha-osf1-tdep.c.
7797 (alpha-osf1-tdep.o): New dependency list.
7798 * alpha-tdep.h (gdbarch_tdep): Add dynamic_sigtramp_offset
7799 and skip_sigtramp_frame members.
7800 * alpha-linux-tdep.c: Include gdbcore.h.
7801 (alpha_linux_sigtramp_offset): Change return type to LONGEST.
7802 (alpha_linux_init_abi): Initialize tdep->dynamic_sigtramp_offset.
7803 * alpha-osf1-tdep.c: New file.
7804 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Moved to
7805 alpha-osf1-dep.c.
7806 (alpha_frame_past_sigtramp_frame): New function.
7807 (alpha_dynamic_sigtramp_offset): Ditto.
7808 (alpha_proc_desc_is_dyn_sigtramp): Ditto.
7809 (alpha_set_proc_desc_is_dyn_sigtramp): Ditto.
7810 (ALPHA_PROC_SIGTRAMP_MAGIC): Define.
7811 (push_sigtramp_desc): Use alpha_set_proc_desc_is_dyn_sigtramp.
7812 (after_prologue): Use alpha_proc_desc_is_dyn_sigtramp.
7813 (find_proc_desc): Use alpha_dynamic_sigtramp_offset.
7814 (alpha_frame_chain): Use alpha_frame_past_sigtramp_frame.
7815 (alpha_init_extra_frame_info): Use alpha_proc_desc_is_dyn_sigtramp.
7816 (alpha_pop_frame): Use alpha_proc_desc_is_dyn_sigtramp.
7817 (alpha_gdbarch_init): Initialize tdep->dynamic_sigtramp_offset
7818 and tdep->skip_sigtramp_frame. Set gdbarch_skip_trampoline_code
7819 to find_solib_trampoline_target.
7820 * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-osf1-tdep.o.
7821 * config/alpha/tm-alpha.h: Remove inclusion of regcache.h.
7822 (SKIP_TRAMPOLINE_CODE): Remove.
7823 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7824 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7825 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
7826 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
7827 * config/alpha/tm-alphalinux.h (PROC_DESC_IS_DYN_SIGTRAMP): Remove.
7828 (PROC_SIGTRAMP_MAGIC): Ditto.
7829 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7830 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7831 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7832 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
7833 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
7834
7835 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
7836
7837 * NEWS: Note that Alpha targets are now multi-arch.
7838
7839 2002-04-24 Michael Snyder <msnyder@redhat.com>
7840
7841 * parser-defs.h (prev_lexptr): New external variable.
7842 * parse.c (parse_exp_1): Set prev_lexptr to null before
7843 calling the language-specific parser.
7844 * c-exp.y (yylex): Set prev_lexptr to start of current token.
7845 (yyerror): Use prev_lexptr in error reporting.
7846
7847 2002-04-24 Daniel Jacobowitz <drow@mvista.com>
7848
7849 * config/i386/tm-linux.h: Define FILL_FPXREGSET.
7850 * gregset.h: If FILL_FPXREGSET is defined, provide
7851 gdb_fpxregset_t, supply_fpxregset, and fill_fpxregset.
7852 * linux-proc.c (linux_do_thread_registers): If FILL_FPXREGSET
7853 is defined, call fill_fpxregset.
7854
7855 2002-04-24 Roland McGrath <roland@frob.com>
7856
7857 * config/i386/i386gnu.mh (NATDEPFILES): Add core-regset.o here.
7858 * i386gnu-nat.c [HAVE_SYS_PROCFS_H]
7859 (supply_gregset, supply_fpregset): New functions.
7860
7861 * gnu-nat.c (gnu_find_memory_regions): New function.
7862 (init_gnu_ops): Set `to_find_memory_regions' hook to that.
7863 (gnu_xfer_memory): Add a cast.
7864
7865 2002-04-24 Michael Snyder <msnyder@redhat.com>
7866
7867 * arm-tdep.c (arm_scan_prologue): Move "mov ip, sp" into the
7868 loop. Add handling for "str lr, [sp, #-4]!" and for saves
7869 of argument regs ("str r(0123), [r11, #-nn"]).
7870 (arm_skip_prologue): Better handling for frameless functions.
7871 Treat "mov ip, sp" as optional. Recognize "str lr, [sp, #-4]".
7872 (arm_skip_prologue): Recognize str r(0123), [r11, #-nn].
7873
7874 Wed Apr 24 14:22:21 2002 Andrew Cagney <cagney@redhat.com>
7875
7876 * arm-tdep.c (arm_gdbarch_init): Add comment that NUM_REGS nor
7877 NUM_PSEUDO_REGS can be used.
7878
7879 2002-04-24 Andrew Cagney <ac131313@redhat.com>
7880
7881 * arch-utils.h: Update copyright.
7882
7883 * gdbarch.sh (PC_IN_SIGTRAMP): Add.
7884 * gdbarch.h, gdbarch.c: Re-generate.
7885
7886 * inferior.h (IN_SIGTRAMP): Delete definition.
7887 * arch-utils.c (legacy_pc_in_sigtramp): New function.
7888 * arch-utils.h (legacy_pc_in_sigtramp): Declare.
7889
7890 * mips-tdep.c (mips_init_extra_frame_info): Use PC_IN_SIGTRAMP.
7891 (mips_dump_tdep): Do not print value of IN_SIGTRAMP.
7892 * hppa-tdep.c (pc_in_interrupt_handler): Use PC_IN_SIGTRAMP.
7893 (find_proc_framesize): Ditto.
7894 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Ditto.
7895 (alpha_init_extra_frame_info): Ditto.
7896 * infrun.c (handle_inferior_event): Ditto.
7897 (handle_inferior_event): Ditto.
7898 (check_sigtramp2): Ditto.
7899 * blockframe.c (create_new_frame): Ditto.
7900 (get_prev_frame): Ditto.
7901 * ppc-linux-tdep.c: Update comments.
7902 * i386-linux-tdep.c: Update comments.
7903 * breakpoint.c (bpstat_what): Update comment.
7904
7905 2002-04-24 David S. Miller <davem@redhat.com>
7906
7907 * i960-tdep.c (register_in_window_p): New function.
7908 (i960_find_saved_register): Use it instead of
7909 REGISTER_IN_WINDOW_P.
7910 * config/i960/tm-i960.h (REGISTER_IN_WINDOW): Delete.
7911
7912 * symtab.h (find_stab_function_addr): Kill extern.
7913 * minsyms.c (find_stab_function_addr): Remove from here...
7914 * dbxread.c: ... to here, and mark it static.
7915
7916 2002-04-20 David S. Miller <davem@redhat.com>
7917
7918 * sparc-tdep.c (sparc_pop_frame): Only need to allocate
7919 SPARC_INTREG_SIZE * 16 bytes for reg_temp.
7920
7921 2002-04-21 David S. Miller <davem@redhat.com>
7922
7923 * remote-vxsparc.c (vx_read_register): Fix typo, we want
7924 REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
7925 (vx_write_register): Likewise.
7926
7927 2002-04-23 J. Brobecker <brobecker@gnat.com>
7928
7929 * source.c (is_regular_file): New function.
7930 (openp): Check wether file to open is a regular file
7931 to avoid opening directories.
7932
7933 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7934
7935 * findvar.c (extract_signed_integer): Cast printf argument
7936 to suppress format warning.
7937 (extract_unsigned_integer): Likewise.
7938 * infcmd.c (registers_info): Likewise.
7939 * top.c (get_prompt_1): Likewise.
7940 * valops.c (value_assign): Likewise.
7941 * valprint.c (print_decimal): Likewise.
7942
7943 2002-04-22 H.J. Lu (hjl@gnu.org)
7944
7945 * c-exp.y (typebase): Support
7946
7947 [long|long long|short] [signed|unsigned] [int|]
7948
7949 and
7950
7951 signed [long|long long|short] int
7952
7953 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7954
7955 * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
7956 and vax-tdep.h.
7957 * vax-tdep.h: New file.
7958 * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
7959 Make several routines static.
7960 (vax_get_saved_register): New function.
7961 (vax_gdbarch_init): New function.
7962 (_initialize_vax_tdep): Register vax_gdbarch_init.
7963 * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
7964 Remove macros now under the control of gdbarch.
7965
7966 2002-04-22 Michael Snyder <msnyder@redhat.com>
7967
7968 * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
7969 Some whitespace and coding standards tweaks.
7970
7971 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7972
7973 * vax-tdep.c: Include regcache.h.
7974 (vax_call_dummy_words): New.
7975 (sizeof_vax_call_dummy_words): New.
7976 (vax_fix_call_dummy): New function.
7977 (vax_saved_pc_after_call): Ditto.
7978 * config/vax/tm-vax.h: Don't include regcache.h.
7979 (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
7980 (CALL_DUMMY): Remove.
7981 (CALL_DUMMY_WORDS): Define.
7982 (SIZEOF_CALL_DUMMY_WORDS): Define.
7983 (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
7984
7985 2002-04-18 Michael Snyder <msnyder@redhat.com>
7986
7987 * arm-tdep.h: Change regnum defines to enums for ease of debugging.
7988
7989 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7990
7991 * vax-tdep.c (vax_frame_chain): New function.
7992 (vax_push_dummy_frame): Ditto.
7993 (vax_pop_frame): Ditto.
7994 * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
7995 (FRAMELESS_FUNCTION_INVOCATION): Use
7996 generic_frameless_function_invocation_not.
7997 (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
7998 (POP_FRAME): Use vax_pop_frame.
7999
8000 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8001
8002 * vax-tdep.c (vax_store_struct_return): New function.
8003 (vax_extract_return_value): Ditto.
8004 (vax_store_return_value): Ditto.
8005 (vax_extract_struct_value_address): Ditto.
8006 * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
8007 vax_store_struct_return.
8008 (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
8009 (STORE_RETURN_VALUE): Use vax_store_return_value.
8010 (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
8011
8012 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8013
8014 * vax-tdep.c (vax_frame_saved_pc): New function.
8015 (vax_frame_args_address_correct): Ditto.
8016 (vax_frame_args_address): Ditto.
8017 (vax_frame_locals_address): Ditto.
8018 (vax_frame_num_args): Move code to be in proximity to
8019 other frame-related functions.
8020 * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
8021 (FRAME_SAVED_PC): Use vax_frame_saved_pc.
8022 (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
8023 (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
8024 (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
8025
8026 2002-04-22 H.J. Lu (hjl@gnu.org)
8027
8028 * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
8029 includedir.
8030
8031 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8032
8033 * vax-tdep.c (vax_frame_init_saved_regs): New function.
8034 * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
8035 (FRAME_INIT_SAVED_REGS): New macro.
8036
8037 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8038
8039 * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
8040
8041 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8042
8043 * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
8044 where needed.
8045 (fetch_osf_core_registers): Likewise.
8046 (supply_gregset): Likewise.
8047
8048 2002-04-22 J. Brobecker <brobecker@gnat.com>
8049
8050 * symfile.h (get_section_index): Define.
8051 * symfile.c (get_section_index): New function.
8052 * mdebugread.c (SC_IS_SBSS): New macro.
8053 (SC_IS_BSS): Return true for the scBss storage class only, as
8054 the scSBss storage class refers to the .sbss section.
8055 (parse_partial_symbols): Discard the symbols which associated
8056 section does not exist.
8057 Make sure to use the .sbss section index for symbols which
8058 storage class is scBss, rather than using the .bss section index.
8059
8060 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
8061
8062 * vax-tdep.c: Update copyright years.
8063 (vax_register_name): New function.
8064 (vax_register_byte): Ditto.
8065 (vax_register_raw_size): Ditto.
8066 (vax_register_virtual_size): Ditto.
8067 (vax_register_virtual_type): Ditto.
8068 * config/vax/tm-vax.h: Update copyright years.
8069 (REGISTER_NAMES): Remove.
8070 (REGISTER_NAME): Define.
8071 (REGISTER_BYTE): Use vax_register_byte.
8072 (REGISTER_RAW_SIZE): Use vax_register_raw_size.
8073 (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
8074 (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
8075
8076 2002-04-21 Andrew Cagney <ac131313@redhat.com>
8077
8078 * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
8079 declaration
8080 * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
8081
8082 2002-04-21 David S. Miller <davem@redhat.com>
8083
8084 * arch-utils.c (generic_prologue_frameless_p): Kill
8085 SKIP_PROLOGUE_FRAMELESS_P code.
8086 * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
8087 references.
8088 (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
8089 * arc-tdep.c (arc_prologue_frameless_p): Implement.
8090 * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
8091 references.
8092 (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
8093 * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
8094 (sparc_gdbarch_init): Pass it to
8095 set_gdbarch_prologue_frameless_p.
8096
8097 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8098
8099 * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
8100 (alphabsd-nat.o): New dependency list.
8101
8102 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8103
8104 * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
8105 alphafbsd-tdep.c.
8106 (alpha-linux-tdep.o): New dependency list.
8107 (alphafbsd-tdep.o): Likewise.
8108
8109 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8110
8111 * alpha-linux-tdep.c: New file. Move alpha_linux_sigtramp_offset
8112 to here...
8113 * alpha-tdep.c: ...from here.
8114 * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
8115
8116 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8117
8118 * config/alpha/tm-alpha.h: Move alpha_software_single_step
8119 prototype from here...
8120 * alpha-tdep.h: ...to here.
8121
8122 2002-04-21 Andrew Cagney <ac131313@redhat.com>
8123
8124 * frame.h (selected_frame_level): Document as deprecated.
8125 (frame_relative_level): Declare.
8126 * stack.c (frame_relative_level): New function.
8127 (selected_frame_level): Document as deprecated.
8128 (select_frame): Do not set the selected_frame_level.
8129
8130 * stack.c (frame_info, record_selected_frame): Update.
8131 (frame_command, current_frame_command): Update.
8132 (up_silently_base, up_command, down_silently_base): Update.
8133 (down_command): Update.
8134 * inflow.c (kill_command): Update.
8135 * tracepoint.c (finish_tfind_command): Update.
8136 * corelow.c (core_open): Update.
8137 * thread.c (info_threads_command): Update.
8138 (do_captured_thread_select): Update.
8139 * infcmd.c (finish_command): Update.
8140 * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
8141
8142 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8143
8144 * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
8145
8146 2002-04-21 Andrew Cagney <ac131313@redhat.com>
8147
8148 * arm-tdep.c (arm_breakpoint_from_pc): Make static. Make return
8149 type const.
8150
8151 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8152
8153 * alphafbsd-tdep.c: Update copyright years. Include
8154 alpha-tdep.h.
8155 (alphafbsd_use_struct_convention): Make static.
8156 (alphafbsd_init_abi): New function.
8157 (_initialize_alphafbsd_tdep): New function.
8158 * config/alpha/tm-fbsd.h: Update copyright years.
8159 (USE_STRUCT_CONVENTION): Remove.
8160
8161 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8162
8163 * alpha-tdep.c (alpha_abi_handler): New structure to describe
8164 an Alpha ABI variant.
8165 (alpha_abi_handler_list): Declare.
8166 (alpha_gdbarch_register_os_abi): New function.
8167 (alpha_gdbarch_init): Give registered ABI variant handlers a
8168 chance to tweak the gdbarch once we have set up defaults.
8169 * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
8170
8171 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8172
8173 * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
8174 to standard_coerce_float_to_double.
8175 * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
8176
8177 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8178
8179 * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
8180 * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
8181 from gdbarch_tdep rather than a constant.
8182 (alpha_gdbarch_init): Initialize tdep->vm_min_address to
8183 the default text address for all Alpha Unix ABIs.
8184 (alpha_dump_tdep): Report the value of tdep->vm_min_address.
8185 * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
8186
8187 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
8188
8189 * alpha-tdep.h: New file. Includes several Alpha target constants
8190 taken from...
8191 * config/alpha/tm-alpha.h: ...here. Remove macros that we now
8192 let gdbarch deal with.
8193 (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
8194 * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
8195 to dependency list.
8196 * alpha-nat.c: Include alpha-tdep.h. Update for adjusted
8197 Alpha target register names.
8198 * alphabsd-nat.c: Likewise.
8199 * alpha-tdep.c: Include alpha-tdep.h. Update for adjusted
8200 Alpha target register names. Make serveral routines static.
8201 (alpha_get_saved_register): New function.
8202 (alpha_abi_names): New.
8203 (process_note_abi_tag_sections): New function.
8204 (get_elfosabi): New function.
8205 (alpha_gdbarch_init): New function.
8206 (alpha_dump_tdep): New function.
8207 (_initialize_alpha_tdep): Register alpha_gdbarch_init.
8208
8209 2002-04-21 Andrew Cagney <ac131313@redhat.com>
8210
8211 * frame.c (find_saved_register): Delete #ifdef
8212 HAVE_REGISTER_WINDOWS code.
8213 * config/sparc/tm-sparc.h: Update comments.
8214 * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
8215
8216 2002-04-21 Andrew Cagney <ac131313@redhat.com>
8217
8218 * i960-tdep.c (i960_find_saved_register): New function.
8219 (i960_get_saved_register): New function.
8220 * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
8221 (i960_get_saved_register): Declare.
8222 * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
8223
8224 2002-04-20 David S. Miller <davem@redhat.com>
8225
8226 * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
8227
8228 2002-04-20 Andrew Cagney <ac131313@redhat.com>
8229
8230 * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
8231 instead of NUM_PSEUDO_REGS.
8232
8233 2002-04-20 David S. Miller <davem@redhat.com>
8234
8235 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
8236 GDB_MULTI_ARCH_PARTIAL
8237 * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
8238 define, let tm-sp64.h do it.
8239
8240 2002-04-20 Jason Thorpe <thorpej@wasabisystems.com>
8241
8242 * frame.c (find_saved_register): Avoid a NULL pointer
8243 dereference and actually walk the frame list.
8244
8245 2002-04-20 Andrew Cagney <ac131313@redhat.com>
8246
8247 * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
8248 sorted in most most-recent-used order. Document.
8249 * gdbarch.h, gdbarch.c: Regenerate.
8250
8251 2002-04-19 Andrew Cagney <ac131313@redhat.com>
8252
8253 * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
8254 instead of ->prev.
8255 * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
8256 * s390-tdep.c (s390_frame_chain): Do not use ->prev.
8257 * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
8258 instead of ->prev.
8259
8260 2002-04-19 Elena Zannoni <ezannoni@redhat.com>
8261
8262 Fix PR gdb/471.
8263 * gdbtypes.c (init_simd_type): Rewrite using new functions.
8264 (build_builtin_type_vec128): Ditto.
8265 (append_composite_type_field): Fix calculation of type length in
8266 union case.
8267
8268 2002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
8269
8270 * config/djgpp/README: Update.
8271
8272 * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
8273 compiler warnings.
8274
8275 2002-04-19 Jason Thorpe <thorpej@wasabisystems.com>
8276
8277 * alpha-tdep.c (setup_arbitrary_frame): Rename...
8278 (alpha_setup_arbitrary_frame): ...to this.
8279 * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
8280 for alpha_setup_arbitrary_frame.
8281
8282 2002-04-18 Andrew Cagney <cagney@redhat.com>
8283
8284 * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
8285 * gdbarch.h, gdbarch.c: Regenerate.
8286
8287 * defs.h (breakpoint_from_pc_fn): Delete type definition.
8288 * target.h (memory_breakpoint_from_pc): Update declaration.
8289 * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
8290
8291 * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
8292 * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
8293 * mem-break.c (memory_breakpoint_from_pc): Ditto.
8294 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
8295 * s390-tdep.c (s390_breakpoint_from_pc): Ditto
8296 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
8297 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
8298 * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
8299 * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
8300 * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
8301 * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
8302 * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
8303
8304 * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
8305 const pointer.
8306 * monitor.c (monitor_insert_breakpoint): Ditto.
8307 * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
8308
8309 * config/mcore/tm-mcore.h: Update copyright.
8310 * mem-break.c: Ditto.
8311 * xstormy16-tdep.c: Ditto.
8312
8313 2002-04-18 Pierre Muller <muller@ics.u-strasbg.fr>
8314
8315 * p-exp.y: Add precedence rule for '^' token.
8316 This removes the shift/reduce conflicts.
8317 Remove the comment concerning these shift/reduce conflicts.
8318
8319 2002-04-18 Elena Zannoni <ezannoni@redhat.com>
8320
8321 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
8322 (registers_powerpc_nofp): New register set for processors
8323 without floating point unit.
8324
8325 2002-04-18 David S. Miller <davem@redhat.com>
8326
8327 * MAINTAINERS: Add myself to write-after-approval.
8328
8329 2002-04-17 Michael Snyder <msnyder@redhat.com>
8330
8331 * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
8332
8333 2002-04-17 Andrew Cagney <ac131313@redhat.com>
8334
8335 * rs6000-tdep.c (frame_initial_stack_address): Use
8336 frame_register_read to read the alloca_reg.
8337
8338 2002-04-17 Andrew Cagney <ac131313@redhat.com>
8339
8340 * frame.c (find_saved_register): Find saved registers in the next
8341 not prev frame.
8342 Fix PR gdb/365.
8343
8344 2002-04-17 Andrew Cagney <ac131313@redhat.com>
8345
8346 * gdbarch.sh (LANG): Set to ``c''.
8347
8348 2002-04-15 Andrew Cagney <ac131313@redhat.com>
8349
8350 * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
8351
8352 2002-04-15 Andrew Cagney <ac131313@redhat.com>
8353
8354 * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
8355 Update copyright.
8356
8357 * hpread.c (hpread_get_lntt): Add declaration.
8358 Also fix PR gdb/391.
8359
8360 2002-04-14 Andrew Cagney <ac131313@redhat.com>
8361
8362 * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
8363 * aclocal.m4, configure: Re-generate.
8364 Fix PR gdb/391.
8365
8366 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
8367
8368 * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
8369 instead of tm_print_insn.
8370
8371 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
8372
8373 * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
8374
8375 2002-04-14 Andrew Cagney <ac131313@redhat.com>
8376
8377 * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
8378 * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
8379 (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
8380
8381 2002-04-12 Don Howard <dhoward@redhat.com>
8382
8383 * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
8384 max_user_call_depth.
8385 (init_cmd_lists): Initialize the new value;
8386 * cli/cli-script.c (execute_user_command): Limit the call depth of
8387 user defined commands. This avoids a core-dump when user commands
8388 are infinitly recursive.
8389
8390 2002-04-12 Kevin Buettner <kevinb@redhat.com>
8391
8392 * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
8393 * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
8394 from tdep struct instead of DEFAULT_LR_SAVE.
8395 (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
8396 * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
8397 * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
8398
8399 2002-04-12 Michael Snyder <msnyder@redhat.com>
8400
8401 * Remote.c: Spelling fix.
8402 * gcore.c (default_derive_heap_segment): Use bfd_section_name.
8403 If no symbol found for "sbrk", try "_sbrk".
8404 (make_output_phdrs): Use bfd_section_name.
8405 (gcore_copy_callback): Use bfd_section_name.
8406 * eval.c: Indentation fix-ups.
8407 * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
8408 in case it gets applied to an address that is already
8409 in the instruction space.
8410 * cli/cli-decode.c (help_list): Allow long lines to wrap.
8411 * symfile.c: Fix indentation, long lines.
8412 * source.c: White space fix-up.
8413
8414 2002-04-12 Andrew Cagney <cagney@redhat.com>
8415
8416 * defs.h (read_relative_register_raw_bytes): Delete declaration.
8417 * frame.c (frame_register_read): New function. Return non-zero on
8418 success.
8419 (read_relative_register_raw_bytes_for_frame): Delete.
8420 (read_relative_register_raw_bytes): Delete.
8421 * frame.h (frame_register_read): Declare.
8422 * d30v-tdep.c: Update Copyright. Use frame_register_read.
8423 * sh-tdep.c: Ditto.
8424 * infcmd.c (do_registers_info): Ditto.
8425 * hppa-tdep.c: Ditto.
8426 * rs6000-tdep.c: Ditto.
8427 * h8500-tdep.c: Ditto.
8428 * mips-tdep.c: Ditto.
8429 * h8300-tdep.c: Ditto.
8430 * z8k-tdep.c: Ditto.
8431
8432 2002-04-12 Kevin Buettner <kevinb@redhat.com>
8433
8434 From Jimi X <jimix@watson.ibm.com>:
8435 * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
8436 64-bit SysV ABI.
8437
8438 2002-04-12 Kevin Buettner <kevinb@redhat.com>
8439
8440 From Jimi X <jimix@watson.ibm.com>:
8441 * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
8442 bfd info.
8443
8444 2002-04-12 Kevin Buettner <kevinb@redhat.com>
8445
8446 From Jimi X <jimix@watson.ibm.com>:
8447 * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
8448 register sets for these processor variants.
8449
8450 2002-04-11 Daniel Jacobowitz <drow@mvista.com>
8451
8452 * regformats/reg-ppc.dat: Support FPSCR.
8453
8454 2002-04-11 Kevin Buettner <kevinb@redhat.com>
8455
8456 * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
8457 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
8458 Add fpscr as an invalid/unfetchable register.
8459 * ppc-linux-nat.c (ppc_register_u_addr, store_register)
8460 (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
8461 (fill_fpregset): Add support for register fpscr.
8462 (fetch_ppc_registers, store_ppc_registers, supply_gregset)
8463 (fill_gregset): Account for the fact that register ``mq'' might
8464 not exist.
8465 * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
8466 (registers_power): Add fpscr to register set at slot 71.
8467 (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
8468 exist on most PPC architectures. Initialize ppc_fpscr_regnum.
8469
8470 2002-04-11 Michael Snyder <msnyder@redhat.com>
8471
8472 * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
8473 * configure: Regenerate.
8474 * config.in: Regenerate.
8475 * acconfig.h: Add define for _SYSCALL32.
8476 * core-sol2.c: Remove #define _SYSCALL32.
8477 * solib-legacy.c: Remove #define _SYSCALL32.
8478
8479 2002-04-10 Andrew Cagney <ac131313@redhat.com>
8480
8481 * stack.c (select_frame): Cleanup internal error message, do not
8482 use %p.
8483
8484 2002-04-10 Andrew Cagney <ac131313@redhat.com>
8485
8486 * stack.c (select_frame): Check that selected_frame and the
8487 specified level are as expected.
8488 * blockframe.c (get_prev_frame): Set the `level' from next_frame.
8489 Update copyright.
8490 * frame.h (struct frame_info): Add field `level'. Update
8491 copyright.
8492 Work-in-progress PR gdb/464.
8493
8494 2002-04-10 Andrew Cagney <ac131313@redhat.com>
8495
8496 * maint.c (maint_print_section_info): Rename print_section_info.
8497 (print_bfd_section_info, print_objfile_section_info): Update.
8498 * inferior.h (struct gdbarch): Add opaque declaration.
8499 * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
8500 * gdbarch.h: Regenerate.
8501
8502 2002-04-10 Michal Ludvig <mludvig@suse.cz>
8503
8504 * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
8505 (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
8506 (kernel_u_size): Added.
8507 * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
8508 (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
8509
8510 2002-04-04 Jim Ingham <jingham@apple.com>
8511
8512 * valarith.c (find_size_for_pointer_math): New function, either returns
8513 the size for a pointer's target, returns 1 for void *, or errors for
8514 incomplete types.
8515 (value_add, value_sub): use find_size_for_pointer_math.
8516
8517 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
8518
8519 * linux-low.c (linux_look_up_symbols): New hook.
8520 (linux_target_ops): Add linux_look_up_symbols.
8521 * remote-utils.c (decode_address): New function.
8522 (look_up_one_symbol): New function.
8523 * server.c (handle_query): Call target look_up_symbols hook.
8524 * server.h (look_up_one_symbol): Add prototype.
8525 * target.h (struct target_ops): Add look_up_symbols hook.
8526
8527 2002-04-09 Andrew Cagney <ac131313@redhat.com>
8528
8529 * frame.c (read_relative_register_raw_bytes_for_frame): Do not
8530 override FP_REGNUM with frame->fp. Update copyright.
8531 * parse.c (num_std_regs, std_regs): Delete.
8532 (target_map_name_to_register): Do not search std_regs. Update
8533 function description.
8534 * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
8535 declarations. Update copyright.
8536 Fix PR gdb/251.
8537
8538 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
8539
8540 * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
8541 after the last symbol in a block.
8542
8543 2002-04-09 Pierre Muller <muller@ics.u-strasbg.fr>
8544
8545 * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
8546 is non zero as a found symbol.
8547
8548 2002-04-08 Andrew Cagney <ac131313@redhat.com>
8549
8550 * findvar.c: Include "builtin-regs.h".
8551 (value_of_register): Call value_of_builtin_reg when applicable.
8552 * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
8553 (target_map_name_to_register): Call
8554 builtin_reg_map_name_to_regnum.
8555 * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
8556 (COMMON_OBS): Add builtin-regs.o and std-regs.o.
8557 (builtin_regs_h): Define.
8558 (builtin-regs.o): New target.
8559 (findvar.o): Add $(builtin_regs_h).
8560 * builtin-regs.c, builtin-regs.h: New files.
8561 * std-regs.c: New file.
8562 Partial fix for PR gdb/251.
8563
8564 2002-04-08 Kevin Buettner <kevinb@redhat.com>
8565
8566 * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
8567 it's no longer required.
8568
8569 2002-04-08 Andrew Cagney <ac131313@redhat.com>
8570
8571 * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
8572
8573 2002-04-08 Kevin Buettner <kevinb@redhat.com>
8574
8575 From Jimi X <jimix@watson.ibm.com>:
8576 * rs6000-tdep.c (rs6000_software_single_step): Use
8577 rs6000_breakpoint_from_pc() to fetch breakpoint instruction
8578 and size. Use target_insert_breakpoint() and
8579 target_remove_breakpoint() to insert and remove breakpoints
8580 instead of explicit memory reads and writes.
8581
8582 2002-04-08 Kevin Buettner <kevinb@redhat.com>
8583
8584 * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
8585 * rs6000-tdep.c (rs6000_push_arguments): Eliminate
8586 ELF_OBJECT_FORMAT ifdef.
8587
8588 2002-04-08 Kevin Buettner <kevinb@redhat.com>
8589
8590 From Jimi X <jimix@watson.ibm.com>:
8591 * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
8592
8593 2002-04-08 Kevin Buettner <kevinb@redhat.com>
8594
8595 From Jimi X <jimix@watson.ibm.com>:
8596 * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
8597 definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
8598
8599 2002-04-07 Mark Kettenis <kettenis@gnu.org>
8600
8601 * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
8602 s/asprintf/xasprintf/.
8603 (fbsd_make_corefile_notes): s/strdup/xstrdup/.
8604
8605 2002-04-07 Andrew Cagney <ac131313@redhat.com>
8606
8607 I believe Jeff Law denies responsability for this one:
8608 * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
8609 * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
8610 * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
8611 Work-around for PR gdb/366.
8612
8613 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
8614
8615 * remote-e7000.c (write_small, e7000_read_inferior_memory,
8616 e7000_read_inferior_memory_large, e7000_insert_breakpoint,
8617 e7000_remove_breakpoint): Use paddr_nz() to print addresses.
8618
8619 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
8620
8621 * sh-tdep.c (sh_fp_frame_init_saved_regs,
8622 sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
8623 information.
8624
8625 2002-04-07 Andrew Cagney <ac131313@redhat.com>
8626
8627 * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
8628 maintainer.
8629
8630 2002-04-07 Andrew Cagney <ac131313@redhat.com>
8631
8632 * README (Reporting Bugs in GDB): Document the bug web page as the
8633 prefered way of submitting bugs.
8634 Fix PR gdb/402.
8635
8636 2002-04-06 Andrew Cagney <ac131313@redhat.com>
8637
8638 * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
8639 -1. Update comment.
8640 * gdbarch.h, gdbarch.c: Re-generate.
8641
8642 2002-04-07 Andreas Schwab <schwab@suse.de>
8643
8644 * m68klinux-nat.c (fill_fpregset): Properly pass address of
8645 buffer to regcache_collect.
8646
8647 2002-04-06 Andrew Cagney <ac131313@redhat.com>
8648
8649 * gdbarch.sh (PS_REGNUM): Add. Document. Default to -1.
8650 * gdbarch.c, gdbarch.h: Re-generate.
8651
8652 2002-04-06 Andrew Cagney <ac131313@redhat.com>
8653
8654 * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
8655 declaration. Fix -Werror.
8656
8657 2002-04-05 Daniel Jacobowitz <drow@mvista.com>
8658
8659 * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
8660 * gdbarch.c: Regenerate.
8661
8662 2002-04-05 Michael Snyder <msnyder@redhat.com>
8663
8664 * breakpoint.c (clear_command): Rewrite middle section to
8665 combine two loops with identical control conditions.
8666 Add a cleanup to eliminate a memory leak.
8667 * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
8668
8669 2002-04-05 H.J. Lu (hjl@gnu.org)
8670
8671 * solib-svr4.c (bkpt_names): Add "__start".
8672
8673 2002-04-04 Andrew Cagney <ac131313@redhat.com>
8674
8675 * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
8676 as test for 64 bit target.
8677
8678 2002-04-05 Andrew Cagney <ac131313@redhat.com>
8679
8680 * h8500-tdep.c (h8500_write_fp): Delete function.
8681 * dwarf2cfi.c (cfi_write_fp): Document as not used.
8682 * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
8683 * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
8684 * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
8685 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
8686 * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
8687 (s390_write_fp):
8688 * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
8689 * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
8690 * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
8691 (d10v_write_fp): Delete function.
8692 * inferior.h (write_fp, generic_target_write_fp): Delete
8693 declarations.
8694 * regcache.c (generic_target_write_fp): Delete function.
8695 (write_fp): Delete function.
8696 * gdbarch.sh (TARGET_WRITE_FP): Delete.
8697 * gdbarch.h, gdbarch.c: Regenerate.
8698 * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
8699 * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
8700 (sparc64_write_fp): Delete declaration.
8701 * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
8702 (h8500_write_fp): Delete declaration.
8703
8704 2002-04-04 Andrew Cagney <ac131313@redhat.com>
8705
8706 * sparc-tdep.c (sparc64_write_fp): Delete.
8707 (sparc_push_dummy_frame): Replace write_fp call with code to store
8708 the FP directly.
8709 (sparc_gdbarch_init): Do not initialize write_fp.
8710
8711 2002-04-05 Kevin Buettner <kevinb@redhat.com>
8712
8713 * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
8714 clause.
8715
8716 2002-03-29 Jim Blandy <jimb@redhat.com>
8717
8718 * stack.c (get_selected_block): Add new argument `addr_in_block',
8719 used to return the exact code address we used to select the block,
8720 not just the block.
8721 * blockframe.c (get_frame_block, get_current_block): Same.
8722 * frame.h (get_frame_block, get_current_block,
8723 get_selected_block): Update declarations.
8724 * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
8725 linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
8726
8727 2002-04-05 Michael Snyder <msnyder@redhat.com>
8728
8729 * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
8730 warning message.
8731
8732 2002-04-05 J. Brobecker <brobecker@gnat.com>
8733
8734 * utils.c (xfullpath): New function.
8735 * defs.h (xfullpath): Add declaration.
8736 * source.c (openp): Use xfullpath in place of gdb_realpath to
8737 avoid resolving the basename part of filenames when the
8738 associated file is a symbolic link. This fixes a potential
8739 inconsistency between the filenames known to GDB and the
8740 filenames it prints in the annotations.
8741 * symtab.c (lookup_symtab): Use the new xfullpath function, in order
8742 to be able to match a filename with either the real filename, or
8743 the name of any symbolic link to this file.
8744 (lookup_partial_symtab): Ditto.
8745
8746 2002-04-04 Michael Snyder <msnyder@redhat.com>
8747
8748 * breakpoint.c: Add support for hardware breakpoints in overlays.
8749 (overlay_events_enabled): New state variable.
8750 (insert_breakpoints): Use overlay_events_enabled to decide
8751 whether to attempt to set a breakpoint at the overlay load addr.
8752 Handle bp_hardware_breakpoint as well as bp_breakpoint.
8753 (remove_breakpoint): Use overlay_events_enabled to decide
8754 whether breakpoints need to be removed from overlay load addr.
8755 Handle bp_hardware_breakpoint as well as bp_breakpoint.
8756 (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
8757 (create_overlay_event_breakpoint, enable_overlay_breakpoints,
8758 disable_overlay_breakpoints): Update overlay_events_enabled.
8759
8760 2002-04-04 Daniel Jacobowitz <drow@mvista.com>
8761
8762 * dwarf2read.c (struct function_range): New.
8763 (cu_first_fn, cu_last_fn, cu_cached_fn): New.
8764 (check_cu_functions): New.
8765 (read_file_scope): Initialize global function lists.
8766 Call dwarf_decode_line after processing children.
8767 (read_func_scope): Add to global function list.
8768 (dwarf_decode_lines): Call check_cu_functions everywhere
8769 record_line is called. Call record_line with a linenumber
8770 of 0 to mark sequence ends.
8771
8772 2002-04-04 Michal Ludvig <mludvig@suse.cz>
8773
8774 * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
8775 change sync with glibc.
8776
8777 2002-04-03 Jim Blandy <jimb@redhat.com>
8778
8779 * configure.in: Call AC_C_INLINE.
8780 * configure: Regenerated.
8781
8782 2002-04-01 Daniel Jacobowitz <drow@mvista.com>
8783
8784 * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
8785 and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
8786
8787 2002-03-31 Mark Kettenis <kettenis@gnu.org>
8788
8789 * NEWS: Mention gcore support on FreeBSD/i386.
8790
8791 * fbsd-proc.c: New file.
8792 * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
8793 * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
8794
8795 * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
8796 while statement.
8797
8798 2002-03-29 Jim Blandy <jimb@redhat.com>
8799
8800 * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
8801 unescaped newlines in string literals, but newer ones don't. So
8802 escape them.
8803
8804 2002-03-26 Michael Snyder <msnyder@redhat.com>
8805 Andrew Cagney <cagney@redhat.com>
8806
8807 * cli/cli-dump.c: New file. Dump memory to file,
8808 restore file to memory.
8809 * cli/cli-dump.h: New file.
8810 * Makefile.in: Add rules, dependencies for cli-dump.o.
8811 * NEWS: Mention new commands.
8812
8813 2002-03-28 Michael Snyder <msnyder@redhat.com>
8814
8815 * symfile.c (symbol_file_add): Move test for null symbols to later.
8816
8817 2002-03-27 Andrew Cagney <ac131313@redhat.com>
8818
8819 From veksler at il.ibm.com:
8820 * utils.c (gdb_realpath): If canonicalize_file_name fails, return
8821 the xstrduped original path.
8822 Fix PR gdb/417.
8823
8824 2002-03-27 Michael Snyder <msnyder@redhat.com>
8825
8826 * breakpoint.c (_initialize_breakpoint): Clean up help string.
8827 * infcmd.c (_initialize_infcmd): Ditto.
8828 * language.c (_initialize_language): Ditto.
8829 * symfile.c (_initialize_symfile): Ditto.
8830 * top.c (_init_main): Ditto.
8831 * cli/cli-cmds.c (init_cli_cmds): Ditto.
8832
8833 2002-03-27 Elena Zannoni <ezannoni@redhat.com>
8834
8835 * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
8836 vector registers handling.
8837 (skip_prologue): Handle new AltiVec instructions. Fill in new
8838 fields of frame data.
8839 (frame_get_saved_regs): Fill in information for AltiVec registers.
8840
8841 2002-03-27 Jim Blandy <jimb@redhat.com>
8842
8843 * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
8844 a function; leave this macro here to invoke that function.
8845 (symbol_init_mangled_name): Declaration for that function.
8846 * symtab.c (symbol_init_mangled_name): New function.
8847
8848 2002-03-27 Andrew Cagney <ac131313@redhat.com>
8849
8850 * valarith.c: Replace strerror with safe_strerror.
8851 * tracepoint.c: Ditto.
8852 * lin-lwp.c: Ditto.
8853 * go32-nat.c: Ditto.
8854 * inflow.c: Ditto.
8855 * gnu-nat.c: Ditto.
8856
8857 2002-03-27 Andreas Schwab <schwab@suse.de>
8858
8859 * event-top.c (command_line_handler): Remove useless if.
8860
8861 2002-03-27 Andreas Jaeger <aj@suse.de>
8862
8863 * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
8864 comment.
8865
8866 2002-03-27 Michal Ludvig <mludvig@suse.cz>
8867
8868 * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
8869 (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
8870 * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
8871 (x86_64_linux_dr_get_status, supply_gregset),
8872 (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
8873 * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
8874 (x86_64_register_info_table): Add.
8875 (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
8876 (x86_64_register_raw_size, x86_64_register_virtual_type),
8877 (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
8878 general x86_64_register_info_table.
8879 (i386_gdbarch_init): gdbarch_register_bytes is now set
8880 dynamicaly during initialization.
8881 * regformats/reg-x86-64.dat: Synced with changes to registers above.
8882 * gdbserver/linux-x86-64-low.c: Ditto.
8883
8884 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
8885
8886 * gdbserver/server.c (main): Call target_signal_to_host_p
8887 and target_signal_to_host on signals received from the remote.
8888 * gdbserver/remote-utils.c (prepare_resume_reply): Call
8889 target_signal_from_host on signals sent to the remote.
8890 * gdbserver/server.h: Add prototypes. Include "gdb/signals.h".
8891 * gdbserver/Makefile.in: Add signals.o. Add -I${INCLUDE_DIR}.
8892
8893 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
8894
8895 * signals/signals.c: Include "server.h" in gdbserver build.
8896 (target_signal_from_name): Don't use STREQ.
8897 (_initialize_signals): Likewise. Don't include function in
8898 gdbserver build.
8899
8900 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
8901
8902 * signals.c: Moved to...
8903 * signals/signals.c: Here.
8904 * Makefile (signals.o): Update.
8905
8906 2002-03-26 Jeff Law (law@redhat.com)
8907
8908 * somread.c (som_symtab_read): Remove some commented out code and
8909 updated related comments. Do not set the minimal symbol table to
8910 mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
8911 in a dynamic executable.
8912 * hppa-tdep.c (find_proc_framesize): Sanely handle the case
8913 where we are unable to find the minimal symbol for the given
8914 PC value.
8915
8916 2002-03-25 Jeff Law (law@redhat.com)
8917
8918 * linux-proc.c (read_mapping): Scan up to end of line for filename.
8919
8920 2002-03-25 Michal Ludvig <mludvig@suse.cz>
8921
8922 * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
8923
8924 2002-03-23 Andrew Cagney <ac131313@redhat.com>
8925
8926 * command.h: Update copyright.
8927 (struct cmd_list_element): Replace definition with opaque
8928 declaration.
8929 (enum cmd_types): Document that it will eventually be moved to
8930 cli/cli-decode.h
8931 (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
8932 (MALLOCED_REPLACEMENT): Delete macro.
8933 * Makefile.in (cli_decode_h): Add $(command_h).
8934 (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
8935 * top.c: Include "cli/cli-decode.h".
8936 * completer.c: Include "cli/cli-decode.h".
8937 * maint.c: Include "cli/cli-decode.h".
8938 * cli/cli-decode.h: Include "command.h".
8939 (enum command_class): Delete.
8940 (enum cmd_types): Comment out.
8941 (enum cmd_auto_boolean): Delete.
8942 (enum var_types): Delete.
8943
8944 2002-03-23 Andrew Cagney <ac131313@redhat.com>
8945
8946 * cli/cli-decode.c: Include "gdb_assert.h".
8947 (add_set_or_show_cmd): New static function.
8948 (add_set_cmd): Rewrite. Use add_set_or_show_cmd.
8949 (add_show_from_set): Rewrite. Use add_set_or_show_cmd. Don't copy
8950 all fields, such as func, from the set command.
8951
8952 2002-03-23 Andrew Cagney <ac131313@redhat.com>
8953
8954 * MAINTAINERS (sh-elf): Change warning flag to -w.
8955
8956 2002-03-23 Andrew Cagney <cagney@redhat.com>
8957
8958 * defs.h (error): Add printf format attribute.
8959 * thread-db.c (thread_from_lwp): Fix error format string.
8960 * stack.c (parse_frame_specification): Ditto.
8961 * cli/cli-decode.c (undef_cmd_error): Ditto.
8962 * scm-lang.c (scm_lookup_name): Ditto.
8963 * tracepoint.c (trace_error): Ditto.
8964 * remote-utils.c (usage): Ditto.
8965 * remote.c (compare_sections_command): Ditto.
8966 Fix PR gdb/328.
8967
8968 2002-03-22 Andrew Cagney <ac131313@redhat.com>
8969
8970 * gdbtypes.c (append_composite_type_field): New function.
8971 (init_composite_type): New function.
8972 * gdbtypes.h (append_composite_type_field): Declare.
8973 (init_composite_type): Ditto.
8974
8975 2002-03-22 Elena Zannoni <ezannoni@redhat.com>
8976
8977 * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
8978 function.
8979 * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
8980 * rs6000-tdep.c (rs6000_gdbarch_init): Use different
8981 structure returning convention for SYSV ABI case, but not
8982 for GNU/Linux, FreeBSD, or NetBSD.
8983
8984 2002-03-22 Daniel Jacobowitz <drow@mvista.com>
8985
8986 * symtab.h (lookup_block_symbol): Add mangled_name argument
8987 to prototype.
8988
8989 * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
8990 with new mangled_name argument.
8991 * linespec.c (decode_line_1): Likewise.
8992 * valops (value_of_this): Likewise.
8993 * symtab.c (lookup_transparent_type): Likewise.
8994 (lookup_symbol_aux): Likewise. Accept new mangled_name argument.
8995 (lookup_symbol): If we are given a mangled name, pass it down
8996 to lookup_symbol_aux.
8997 (lookup_block_symbol): If we are given a mangled name to check
8998 against, only return symbols which match it.
8999
9000 2002-03-22 Christopher Faylor <cgf@redhat.com>
9001
9002 * win32-nat.c (child_create_inferior): Check for proper shell to use
9003 here, in case the user changes it on the fly.
9004 (_initialize_inftarg): Remove shell path considerations.
9005
9006 2002-03-21 Elena Zannoni <ezannoni@redhat.com>
9007
9008 * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
9009 for gdbarch_max_register_raw_size and max_register_virtual_size.
9010 Adjust copyright year.
9011
9012 2002-03-21 Daniel Jacobowitz <drow@mvista.com>
9013
9014 * dbxread.c (process_one_symbol): Extend the first N_SLINE
9015 in a function to cover the entire beginning of the function
9016 as well if it does not already.
9017
9018 2002-03-21 Tom Rix <trix@redhat.com>
9019
9020 * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
9021 (rs6000_ptrace64): Renamed from ptrace64.
9022
9023 2002-03-20 Martin M. Hunt <hunt@redhat.com>
9024
9025 * gdbserver/remote-utils.c (remote_open): Don't call
9026 getprotobyname, we're all using TCP here so just use
9027 IPPROTO_TCP.
9028 * gdbserver/gdbreplay.c (remote_open): Ditto.
9029
9030 2002-03-20 Martin M. Hunt <hunt@redhat.com>
9031
9032 * regcache.c (_initialize_regcache): No need to call
9033 build_regcache() at this time; it gets called whenever
9034 the gdbarch changes.
9035
9036 2002-03-20 David O'Brien <obrien@FreeBSD.org>
9037
9038 * sparc-nat.c: Include sys/param.h where possible.
9039
9040 2002-03-20 Daniel Jacobowitz <drow@mvista.com>
9041
9042 Fix PR gdb/422.
9043 * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
9044 FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
9045 * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
9046 complex types.
9047 * stabsread.c (rs6000_builtin_type): Likewise.
9048 (read_sun_floating_type): Likewise.
9049
9050 2002-03-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9051
9052 * stabsread.c (read_member_functions): Remove skip code for duplicate
9053 constructor/destructor methods. Use standard parsing for these
9054 methods and just do not chain them to the list of methods after
9055 parsing.
9056
9057 2002-03-19 Alexandre Oliva <aoliva@redhat.com>
9058
9059 * coffread.c: Remove redundant static declarations. Replace
9060 occurrences of `PTR' with `void *'.
9061 * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
9062 * top.h (quit_cover): Likewise.
9063 * defs.h (catch_errors): Likewise.
9064
9065 2002-03-18 Andrew Cagney <ac131313@redhat.com>
9066
9067 * defs.h (XMALLOC): Define.
9068 * gdb-events.sh (XMALLOC): Delete macro.
9069 * gdb-events.c, gdb-events.h: Regenerate.
9070 * gdbarch.sh (XMALLOC): Delete macro.
9071 * gdbarch.c: Regenerate.
9072 * serial.c (XMALLOC): Delete macro.
9073 * ui-file.c (XMALLOC): Ditto.
9074 * ser-unix.h (XMALLOC): Ditto.
9075 * sh-tdep.c (XMALLOC): Ditto.
9076 * ui-out.c (XMALLOC): Ditto.
9077 * utils.c (XMALLOC): Ditto.
9078 * i386-tdep.c (XMALLOC): Ditto.
9079 * gdb-events.c (XMALLOC): Ditto.
9080 * d10v-tdep.c (XMALLOC): Ditto.
9081 * cli-out.c (XMALLOC): Ditto.
9082
9083 * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
9084 * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
9085 * ui-file.c, ui-out.c: Ditto.
9086
9087 2002-03-18 Andrew Cagney <ac131313@redhat.com>
9088
9089 * command.h (struct cmd_list_element): Add field context.
9090 (set_cmd_context, get_cmd_context): Declare.
9091 * cli/cli-decode.h: Ditto.
9092 * cli/cli-decode.c (get_cmd_context): New function.
9093 (set_cmd_context): New function.
9094 (add_cmd): Initialize context.
9095 Part of fixing PR gdb/145 and PR gdb/146.
9096
9097 2002-03-17 Andrew Cagney <ac131313@redhat.com>
9098
9099 * cli/cli-decode.c (cmd_type): New function.
9100 * command.h (cmd_type): Declare.
9101 * infrun.c (set_schedlock_func): Call function cmd_type.
9102 * kod.c (kod_set_os): Call cmd_type.
9103 * cris-tdep.c (cris_version_update): Use function cmd_type.
9104 (cris_mode_update, cris_abi_update): Ditto.
9105
9106 * command.h: (execute_cmd_post_hook): Declare.
9107 (execute_cmd_pre_hook): Declare.
9108 * cli/cli-script.c (clear_hook_in_cleanup): New function.
9109 (execute_cmd_post_hook, execute_cmd_pre_hook): New
9110 functions. Execute pre/post hook while ensuring that afterwords
9111 hook_in is cleared.
9112 * top.c (execute_command): Use execute_cmd_post_hook, and
9113 execute_cmd_pre_hook to execute pre/post commands.
9114 * infrun.c (normal_stop): Pass stop_command and not pre_hook to
9115 hook_stop_stub.
9116 (hook_stop_stub): Call execute_cmd_pre_hook.
9117
9118 2002-03-17 Andrew Cagney <ac131313@redhat.com>
9119
9120 * kod.c (kod_set_os): Revert previous change. Is called by ``info
9121 set'' and this leads to a core dump. Move xstrdup of
9122 operating_system to after check that it is not NULL.
9123
9124 2002-03-17 Andrew Cagney <ac131313@redhat.com>
9125
9126 * kod.c (kod_set_os): Remove unnecessary check that
9127 ``command->type'' is set_cmd.
9128
9129 * valprint.c (set_input_radix): Use input_radix.
9130 (set_output_radix): Use output_radix.
9131 (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
9132 isn't reverted.
9133
9134 2002-03-16 Andrew Cagney <ac131313@redhat.com>
9135
9136 * value.h (struct value): Delete field ``substring_addr''. Change
9137 aligner fields to force_doublest_align, force_longest_align,
9138 force_core_addr_align and force_pointer_aligh.
9139
9140 * value.h (struct value): Fix typo in above change.
9141
9142 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9143
9144 * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
9145 to fix internal_error from ``maintenance print architecture''.
9146
9147 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9148
9149 * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
9150 for gcc versions after gcc-2.8.1.
9151
9152 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9153
9154 * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
9155 for method resolution. Restore adjustment of ``this'' pointer after
9156 calling value_struct_elt, which was accidentally removed during the
9157 HP merge.
9158
9159 2002-03-15 Andrew Cagney <ac131313@redhat.com>
9160
9161 * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
9162 value_of_register.
9163 * findvar.c (value_of_register): Add ``frame'' parameter. Pass to
9164 get_saved_register.
9165 * value.h (value_of_register): Update.
9166
9167 2002-03-14 Richard Henderson <rth@redhat.com>
9168
9169 * configure.in: Detect declaration for canonicalize_file_name.
9170 * utils.c (canonicalize_file_name): Declare, if needed.
9171 (gdb_realpath): Prefer realpath if available and usable.
9172 * config.in, configure: Rebuild.
9173
9174 2002-03-14 Richard Henderson <rth@redhat.com>
9175
9176 * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
9177 a constant array bound.
9178
9179 * MAINTAINERS: Add myself to write-after-approval.
9180
9181 2002-03-14 Michael Snyder <msnyder@redhat.com>
9182
9183 * symfile.c (syms_from_objfile): Return immediately if no syms.
9184 (symbol_file_add): Return immediately if no syms.
9185 (find_sym_fns): Return immediately if no syms.
9186
9187 2002-03-13 Michal Ludvig <mludvig@suse.cz>
9188
9189 * gdbserver/remote-util.c (remote_open): Print remote-side's
9190 IP address when remote debugging over the network.
9191
9192 2002-03-12 David O'Brien <obrien@FreeBSD.org>
9193
9194 * config/sparc/fbsd.mh: Fix copyright.
9195 * config/sparc/fbsd.mt: Likewise.
9196
9197 2002-03-11 Richard Earnshaw <rearnsha@arm.com>
9198
9199 * MAINTAINERS: Fix typo in name of gdb warnings option.
9200 (x86-64): Fix formating so that this can be parsed by awk.
9201
9202 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
9203
9204 * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
9205 * defs.h: Include "gdb/signals.h".
9206 (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
9207
9208 2002-03-10 Michal Ludvig <mludvig@suse.cz>
9209
9210 * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
9211 * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
9212 from x86-64-tdep.h
9213
9214 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
9215 Don Howard <dhoward@redhat.com>
9216
9217 * mips-tdep.c (ST0_FR): Define.
9218 (mips2_fp_compat): New function, temporarily disabled.
9219 (mips_read_fp_register_single): New function.
9220 (mips_read_fp_register_double): New function.
9221 (mips_print_register): Use them.
9222 (do_fp_register_row): Likewise.
9223
9224 2002-03-09 Andrew Cagney <ac131313@redhat.com>
9225
9226 * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
9227 approval''.
9228
9229 2002-03-08 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9230
9231 * stabsread.c (read_member_functions): Fix is_stub test for
9232 static member functions, improve comment.
9233
9234 2002-03-07 Richard Earnshaw <rearnsha@arm.com>
9235
9236 * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
9237 (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
9238 (_initialize_remote_rdi): Use add_set_boolean_cmd to register
9239 commands that set boolean values.
9240 (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
9241 (arm_rdi_resume): Always initialize PC.
9242 (arm_rdi_open): Don't use rslt as a boolean.
9243 (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
9244 (arm_rdi_fetch_registers, arm_rdi_store_registers)
9245 (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
9246 (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
9247
9248 2002-03-06 Alexandre Oliva <aoliva@redhat.com>
9249
9250 * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
9251 * configure: Rebuilt.
9252
9253 2002-03-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
9254
9255 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
9256 (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
9257
9258 2002-03-06 Andrew Cagney <ac131313@redhat.com>
9259
9260 * cli/cli-decode.c (set_cmd_completer): New function.
9261 * command.h (set_cmd_completer): Declare.
9262 * cli/cli-decode.h (set_cmd_completer): Ditto.
9263
9264 * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
9265 * cli/cli-cmds.c (init_cli_cmds): Ditto.
9266 * win32-nat.c (_initialize_inftarg): Ditto.
9267 * remote-rdi.c (_initialize_remote_rdi): Ditto.
9268 * proc-api.c (_initialize_proc_api): Ditto.
9269 * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
9270 * source.c (_initialize_source): Ditto.
9271 * exec.c (_initialize_exec): Ditto.
9272 * solib.c (_initialize_solib): Ditto.
9273 * top.c (init_main): Ditto.
9274 * tracepoint.c (_initialize_tracepoint): Ditto.
9275 * symfile.c (_initialize_symfile): Ditto.
9276 * printcmd.c (_initialize_printcmd): Ditto.
9277 * infcmd.c (_initialize_infcmd): Ditto.
9278 * corefile.c (_initialize_core): Ditto.
9279
9280 2002-03-05 Andrew Cagney <ac131313@redhat.com>
9281
9282 * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
9283
9284 2002-03-05 Andrew Cagney <ac131313@redhat.com>
9285
9286 * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
9287
9288 2002-03-05 Andrew Cagney <ac131313@redhat.com>
9289
9290 * NEWS: Update headings, 5.2 has branched.
9291
9292 2002-03-04 Daniel Jacobowitz <drow@mvista.com>
9293
9294 * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
9295 (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
9296 (register_addr, REGISTER_RAW_SIZE): Likewise.
9297 (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
9298 * gdbserver/linux-x86-64-low.c: Remove extra #endif.
9299
9300 2002-03-03 Michal Ludvig <mludvig@suse.cz>
9301
9302 * MAINTAINERS (x86-64): Add myself.
9303 * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
9304 changed value_ptr -> struct value *
9305
9306 2002-03-01 David O'Brien <obrien@FreeBSD.org>
9307
9308 * configure.host (sparc64-*-freebsd): Add.
9309 * configure.tgt: Likewise.
9310 * config/sparc/fbsd.mh: New file.
9311 * config/sparc/fbsd.mt: Likewise.
9312 * config/sparc/nm-fbsd.h: Likewise.
9313 * config/sparc/tm-fbsd.h: Likewise.
9314
9315 2002-03-01 Daniel Jacobowitz <drow@mvista.com>
9316
9317 * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
9318 regformats/reg-s390x.dat.
9319
9320 2002-03-01 Andrew Cagney <ac131313@redhat.com>
9321
9322 * utils.c: Add FIXME explaining true/false problem.
9323
9324 2002-02-28 Andrew Cagney <ac131313@redhat.com>
9325
9326 * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
9327
9328 2002-02-28 Michael Chastain <mec@shout.net>
9329
9330 * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
9331
9332 2002-02-28 Daniel Jacobowitz <drow@mvista.com>
9333
9334 * gdbserver/linux-s390-low.c: New file.
9335 * regformats/reg-s390.dat: New file.
9336 * regformats/reg-s390x.dat: New file.
9337 * gdbserver/configure.srv: Add S/390.
9338 * gdbserver/Makefile.in: Add S/390.
9339 * configure.tgt: Enable gdbserver for S/390.
9340
9341 2002-02-28 Eli Zaretskii <eliz@is.elta.co.il>
9342
9343 * go32-nat.c (_initialize_go32_nat): Don't use periods in the
9344 first line of the doc string for "info dos", except at the end of
9345 the sentence, since the short help stops at the first period.
9346
9347 2002-02-28 Jason Merrill <jason@redhat.com>
9348
9349 * dwarf2read.c (dwarf_cfi_name): Add new codes.
9350
9351 2002-02-27 Fred Fish <fnf@redhat.com>
9352
9353 * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
9354 comment (dumy -> dummy).
9355
9356 2002-02-27 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9357
9358 * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
9359
9360 2002-02-27 Rodney Brown <rbrown64@csc.com.au>
9361
9362 * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
9363
9364 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
9365
9366 * gdbserver/acconfig.h: New file.
9367 * gdbserver/i387-fp.c: New file.
9368 * gdbserver/i387-fp.h: New file.
9369 * gdbserver/linux-x86-64.c: New file.
9370 * regformats/reg-x86-64.dat: New file.
9371 * configure.tgt: Add x86_64-*-linux* gdbserver support.
9372 * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
9373 * gdbserver/configure.in: Add support for regsets.
9374 * gdbserver/config.in: Regenerate.
9375 * gdbserver/configure: Regenerate.
9376 * gdbserver/Makefile.in: Likewise. Add $(linux_low_h).
9377 * gdbserver/linux-low.h: New file.
9378 * gdbserver/linux-low.c: Include "linux-low.h". Add support
9379 for regsets.
9380 * gdbserver/linux-arm-low.c: Include "linux-low.h".
9381 * gdbserver/linux-ia64-low.c: Include "linux-low.h".
9382 * gdbserver/linux-m68k-low.c: Include "linux-low.h".
9383 * gdbserver/linux-mips-low.c: Include "linux-low.h".
9384 * gdbserver/linux-ppc-low.c: Include "linux-low.h".
9385 * gdbserver/linux-sh-low.c: Include "linux-low.h".
9386 * gdbserver/linux-i386-low.c: Include "linux-low.h". Include
9387 "i387-fp.h". Add PTRACE_GETREGS and friends.
9388 * gdbserver/regcache.c (supply_register): New function.
9389 (supply_register_by_name): New function.
9390 (collect_register): New function.
9391 (collect_register_by_name): New function.
9392
9393 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
9394
9395 * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
9396 (config.status): Add configure.srv dependency.
9397 (server_h): Add config.h dependency.
9398
9399 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
9400
9401 * regformats/reg-i386-linux.dat: New file, with $orig_eax.
9402 * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
9403 * gdbserver/configure.srv: Change i386-*-linux* to use
9404 reg-i386-linux.o.
9405
9406 2002-02-26 Andrew Cagney <ac131313@redhat.com>
9407
9408 * x86-64-tdep.c: Re-indent. Update copyright date.
9409
9410 2002-02-26 Andrew Cagney <ac131313@redhat.com>
9411
9412 From Michal Ludvig <mludvig@suse.cz>:
9413 * x86-64-tdep.c (value.h): Delete.
9414 (gdb_assert.h): Include.
9415 (x86_64_register_convert_to_virtual,
9416 x86_64_register_convert_to_raw ): Add check which lets only
9417 floating-point values to be converted.
9418 (value_push): Delete.
9419 (x86_64_push_arguments): Order of arguments pushed on stack fixed.
9420 (i386_gdbarch_init): Number of register_bytes fixed.
9421
9422 2002-02-26 Andrew Cagney <ac131313@redhat.com>
9423
9424 * MAINTAINERS: Add x86-64 target.
9425
9426 2002-02-26 Andrew Cagney <ac131313@redhat.com>
9427
9428 * memattr.c (mem_command): Eliminate ``true'' and ``false''.
9429 * osfsolib.c (solib_map_sections): Ditto.
9430 * irix5-nat.c (solib_map_sections): Ditto.
9431 * corelow.c (gdb_check_format): Ditto.
9432 * symfile.c (symfile_bfd_open): Ditto.
9433 * solib.c (solib_map_sections): Ditto.
9434 Fix PR gdb/354.
9435
9436 2002-02-26 Andrew Cagney <ac131313@redhat.com>
9437
9438 * remote.c (_initialize_remote): By default, disable ``e'' and
9439 ``E'' step out-of-range packets.
9440
9441 2002-02-26 Andreas Schwab <schwab@suse.de>
9442
9443 * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
9444 m68k_linux_frame_saved_pc.
9445 (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
9446 in_sigtramp.
9447 (SIGCONTEXT_PC_OFFSET): Remove.
9448 * m68klinux-nat.c (m68k_linux_frame_saved_pc,
9449 m68k_linux_sigtramp_saved_pc): New functions.
9450 (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
9451 (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
9452 (UCONTEXT_PC_OFFSET): Define.
9453 (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
9454 non-RT and RT signal trampolines.
9455
9456 2002-02-26 Richard Earnshaw <rearnsha@arm.com>
9457
9458 * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
9459 (TARGET_NBPG, STACK_END_ADDR): Delete
9460 (VARIABLES_INSIDE_BLOCK): Delete.
9461
9462 2002-02-25 Andrew Cagney <ac131313@redhat.com>
9463
9464 * utils.c (perror_with_name): Make string parameter constant.
9465 (print_sys_errmsg): Ditto.
9466 (query): Ditto.
9467 * defs.h (perror_with_name): Update.
9468 (print_sys_errmsg): Update.
9469 (query): Update.
9470
9471 2002-02-25 Daniel Jacobowitz <drow@mvista.com>
9472
9473 From Eliot Dresselhaus <eliot@ayrnetworks.com>:
9474 * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
9475
9476 2002-02-25 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9477
9478 * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
9479 if it already matches the current architecture from the exec file.
9480 Include arch-utils.h for gdbarch_info_init prototype.
9481 * Makefile.in (rs6000-nat.o): Update dependencies.
9482
9483 2002-02-25 Eli Zaretskii <eliz@is.elta.co.il>
9484
9485 * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
9486 list of exported variables.
9487
9488 2002-02-24 Daniel Jacobowitz <drow@mvista.com>
9489
9490 * gdbserver/configure.srv: New file.
9491 * gdbserver/configure.in: Use configure.srv instead
9492 of the host/target makefile fragments. Set GDBSERVER_DEPFILES
9493 from it.
9494 * gdbserver/configure: Regenerated.
9495 * gdbserver/terminal.h: New file.
9496 * gdbserver/Makefile.in: Update for configure changes. Remove
9497 more unneeded include paths.
9498
9499 2002-02-24 Andrew Cagney <ac131313@redhat.com>
9500
9501 From wiz at danbala:
9502 * config/sparc/tm-sp64.h: Fix grammar and typos.
9503 Fix PR gdb/287.
9504
9505 2002-02-24 Andrew Cagney <ac131313@redhat.com>
9506
9507 * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
9508 with either ``GNU/Linux'' or ``Linux kernel''. Update copyright.
9509 * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
9510 * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
9511 * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
9512 * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
9513 * s390-tdep.c: Ditto.
9514 * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
9515 * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
9516 * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
9517 * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
9518 * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
9519 * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
9520 * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
9521 * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
9522 * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
9523 * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
9524 Fix PR gdb/378.
9525
9526 2002-02-23 Andrew Cagney <ac131313@redhat.com>
9527
9528 * lin-thread.c: Delete file.
9529 * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
9530 to gdb_proc_service.h.
9531 * configure: Re-generate.
9532
9533 * ocd.c (ocd_open): Do not try to open the "ocd" device.
9534 * serial.c (serial_open): Delete check for "ocd".
9535 Fix PR gdb/349.
9536
9537 * Makefile.in (linux-thread.o): Delete target.
9538 * linux-thread.c: Delete file.
9539
9540 * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c. Tweak other
9541 renamed SH files to be consistent.
9542
9543 * symtab.c (sort_search_symbols): Use xfree.
9544
9545 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
9546
9547 * arm-linux-tdep.c (arm_linux_init_abi): Register
9548 IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
9549 * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
9550 definition with undef, since we don't want the sysvr4 definition.
9551 (SKIP_TRAMPOLINE_CODE): Likewise.
9552
9553 2002-02-23 Andrew Cagney <ac131313@redhat.com>
9554
9555 From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
9556
9557 * configure.in: (AC_CHECK_FUNCS) Added test for
9558 canonicalize_file_name Regenerated.
9559 * config.in, configure: Regenerated.
9560 * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
9561 defined use canonicalize_file_name.
9562
9563 2002-02-23 Michael Chastain <mec@shout.net>
9564
9565 * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
9566
9567 2002-02-23 Andrew Cagney <ac131313@redhat.com>
9568
9569 * README: Remove references to cygnus.com.
9570 * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
9571 dot com'' form. Remove references to cygnus.com and sourceware.
9572
9573 2002-02-23 Andrew Cagney <ac131313@redhat.com>
9574
9575 From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
9576 * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
9577 1003.1-2001 no longer allows "head -1".
9578 * gdb/Makefile.in (version.c): Likewise.
9579 * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
9580 * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
9581 equivalent. POSIX 1003.1-2001 no longer allows "diff -c3".
9582
9583 2002-02-23 Andrew Cagney <ac131313@redhat.com>
9584
9585 * cli/cli-decode.c (cmd_cfunc_eq): New function.
9586 * command.h (cmd_cfunc_eq): Declare.
9587 * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
9588
9589 * cli/cli-cmds.h (is_complete_command): Change parameter to a
9590 ``struct cmd_list_element *''.
9591 * cli/cli-cmds.c (is_complete_command): Update. Use
9592 cmd_cfunc_eq.
9593 * top.c (execute_command): Pass the command to
9594 is_complete_command.
9595 * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
9596
9597 2002-02-23 Andrew Cagney <ac131313@redhat.com>
9598
9599 From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
9600 * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
9601 architecture defines.
9602 * s390-tdep.c (s390_gdbarch_init): Likewise.
9603
9604 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
9605
9606 * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
9607 (arm_linux_push_arguments): Likewise.
9608 (arm_linux_init_abi): Register them. Also register linux-specific
9609 call_dummy_words.
9610 (find_minsym_and_objfile): Use strcmp, not STREQ.
9611 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
9612 (arm_linux_call_dummy_words): Delete declaration.
9613 (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
9614 (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
9615 declarations.
9616 (LOWEST_PC): Delete.
9617
9618 2002-02-23 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9619
9620 * maint.c (print_section_info): Do not prepend `0x' to filepos
9621 output, it will be handled by local_hex_string_custom.
9622
9623 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
9624
9625 * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
9626 (store_newfpe_double, store_newfpe_extended, store_fpregister)
9627 (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
9628
9629 2002-02-22 Jim Blandy <jimb@redhat.com>
9630
9631 Indicate that the bcache functions don't change the strings
9632 they're passed.
9633 * bcache.h (bcache, hash): Add `const' keywords to declarations.
9634 * bcache.c (bcache, hash): Add `const' keywords to definitions.
9635
9636 2002-02-22 Pierre Muller <muller@ics.u-strasbg.fr>
9637
9638 * win32-nat.c (child_create_inferior): Fix create flags setting bug.
9639
9640 2002-02-21 Christopher Faylor <cgf@redhat.com>
9641
9642 * win32-nat.c (register_loaded_dll): Just use raw name when we can't
9643 find the complete path to a loaded DLL.
9644
9645 2002-02-21 Fred Fish <fnf@redhat.com>
9646
9647 * dbxread.c (process_one_symbol): When finding an N_FUN symbol
9648 that marks the end of the range of a function, enter a line number
9649 entry that has a line number of zero and a PC offset that matches
9650 the end of the function. This starts a range of PC's for which no
9651 line number information is known.
9652 * symtab.c (find_pc_sect_line): If our best fit is in a range of
9653 PC's for which no line number info is found (line number is zero)
9654 then we didn't find any valid line information.
9655 * symtab.h: Document use of zero line number entry.
9656
9657 2002-02-21 Elena Zannoni <ezannoni@redhat.com>
9658
9659 * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
9660 (have_ptrace_getvrregs): Define for run time checks.
9661 (gdb_vrregset_t): New type for Altivec register handling.
9662 (fetch_register, store_register): Fetch/store altivec register
9663 when needed.
9664 (fetch_altivec_register, store_altivec_register): New functions.
9665 (supply_vrregset, fill_vrregset): New functions.
9666 (fetch_altivec_registers, store_altivec_registers): New functions.
9667 (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
9668 registers as well.
9669
9670 2002-02-21 Jiri Smid <smid@suse.cz>
9671
9672 * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
9673
9674 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
9675
9676 * Makefile.in (armnbsd-nat.o): Update dependencies.
9677 * armnbsd-nat.c (supply_gregset): New function. Common code to
9678 supply the integer register set.
9679 (supply_fparegset): New function. Similar for FPA registers.
9680 (fetch_regs, fetch_fp_regs): Use them.
9681 (fetch_core_registers): Likewise.
9682 (fetch_elfcore_registers): New function.
9683 (arm_netbsd_elfcore_fns): New core-file type specification.
9684 (_initialize_arm_netbsd_nat): Register it.
9685
9686 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
9687
9688 * armnbsd-nat.c: Include gdbcore.h.
9689 (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
9690 (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
9691 'void' to declaration, to shut up ARI.
9692 (fetch_core_registers): Make static. Rewrite using supply_register.
9693 (arm_netbsd_core_fns): New core-file type specification.
9694 (_initialize_arm_netbsd_nat): New function.
9695
9696 2002-02-21 Christopher Faylor <cgf@redhat.com>
9697
9698 * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
9699 value.
9700
9701 2002-02-20 Christopher Faylor <cgf@redhat.com>
9702
9703 * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
9704 fails.
9705
9706 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
9707
9708 * jv-exp.y (parse_number): Change type of implicit longs
9709 to builtin_type_uint64.
9710
9711 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
9712
9713 * gdbserver/linux-low.c (mywait): Change argument to waitpid
9714 to be an integer instead of a `union wait'.
9715
9716 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
9717
9718 * mips-linux-nat.c: Call the operating system GNU/Linux.
9719 * mips-linux-tdep.c: Likewise.
9720 * mips-tdep.c: Likewise.
9721
9722 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
9723
9724 Fix PR gdb/265.
9725 * jv-exp.y (parse_number): Handle 64-bit integers.
9726
9727 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
9728
9729 * gdbserver/configure.in: Remove AM_PROC_CC_STDC. Change
9730 AC_STDC_HEADERS to AC_HEADER_STDC.
9731 * gdbserver/configure: Regenerated.
9732
9733 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
9734
9735 * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
9736 is defined.
9737 * sparc-tdep.c (get_longjmp_target): Likewise.
9738
9739 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
9740
9741 * News: Add news about ARM and Multi-arch. Mention the new target
9742 arm*-*-netbsd*.
9743
9744 2002-02-19 Jim Blandy <jimb@redhat.com>
9745
9746 * stabsread.c (error_type_complaint): Improve error message.
9747
9748 2002-02-19 Daniel Jacobowitz <drow@mvista.com>
9749
9750 * gdbserver/README: Update documentation.
9751 * gdbserver/configure.in: Update configury to match documentation.
9752 * gdbserver/Makefile.in: Likewise.
9753 * gdbserver/configure: Regenerated.
9754 * gdbserver/aclocal.m4: New file, generated by aclocal.
9755 * gdbserver/config.in: New file, generated by autoheader.
9756
9757 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
9758
9759 * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
9760 armnbsd-nat.c.
9761
9762 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
9763
9764 * arm-tdep.h (enum arm_float_model): New enum.
9765 (struct gdbarch_tdep): Add fp_model.
9766 * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep. Defer setting
9767 up floating-point conversions until we know the floating-point model
9768 in use by the inferior. Don't complain about being unable to
9769 determine the ABI of the inferior when we don't have one.
9770 (arm_extract_return_value): Support different floating-point models.
9771 (arm_store_return_value): Likewise.
9772 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
9773 ARM_FLOAT_SOFT.
9774 (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
9775
9776 2002-02-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9777
9778 * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
9779 of ``current_gdbarch''.
9780
9781 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
9782
9783 * armnbsd-nat.c : ANSIfy all function declarations.
9784 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
9785 (fetch_inferior_registers): Re-implement in terms of above.
9786 (store_register, store_regs, store_fp_register, store_fp_regs): New.
9787 (store_inferior_registers): Re-implement in terms of above.
9788
9789 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
9790
9791 * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
9792 kernel.
9793 * arm-linux-tdep.c: Likewise.
9794 * config/arm/tm-linux.h: Likewise.
9795
9796 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
9797
9798 * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
9799 * config/arm/nbsd.mt (TM_FILE): Delete.
9800 * config/arm/tm-nbsd.h: Delete.
9801
9802 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
9803
9804 * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
9805 Initialize CALL_DUMMY_LENGTH.
9806
9807 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
9808
9809 * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
9810 function.
9811 (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
9812 * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
9813 defines one thing and that is incorrect for this port.
9814 (IN_SOLIB_CALL_TRAMPOLINE): Delete.
9815
9816 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
9817
9818 * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
9819
9820 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
9821
9822 * win32-nat.c (display_selector): New function. Displays information
9823 about the information returned by GetThreadSelectorEntry API function.
9824 (display_selectors): New function. Displays the infomation of
9825 the selector given as argument, or of CS, DS ans FS selectors
9826 if no argument is given.
9827 ( _initialize_inftarg): Add "w32" as info prefix command.
9828 Add "info w32 selector" as command calling display_selectors.
9829
9830 2002-02-19 Pierre Muller <muller@ics.u-strasbg.fr>
9831
9832 * i386-tdep.c (get_longjmp_target): Fix compilation failure
9833 by setting dummy values to JB_PC and JB_ELEMENT_SIZE
9834 if not defined.
9835
9836 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
9837
9838 * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
9839
9840 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
9841
9842 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
9843 (arm_fix_call_dummy): Call it.
9844 (arm_call_dummy_breakpoint_offset): Delete.
9845 (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
9846 * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
9847
9848 2002-02-18 Andrew Cagney <ac131313@redhat.com>
9849
9850 * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
9851 Default to func_frame_chain_valid.
9852 * gdbarch.h, gdbarch.c: Re-generate.
9853 * frame.h (FRAME_CHAIN_VALID): Delete definition.
9854
9855 2002-02-18 Elena Zannoni <ezannoni@redhat.com>
9856
9857 * ppc-linux-nat.c: Update copyright.
9858 (fetch_register, store_register): Add tid parameter, don't compute
9859 tid here.
9860 (fetch_ppc_registers, store_ppc_registers): Add tid
9861 parameter. Pass it along to callees.
9862 (fetch_inferior_registers, store_inferior_registers): Compute tid
9863 here, and pass it to calleed functions.
9864 (fill_gregset, supply_fpregset): Clean up formatting.
9865
9866 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
9867
9868 * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
9869 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
9870
9871 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
9872
9873 * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
9874 * gdbarch.c gdbarch.h: Regenerate.
9875 * breakpoint.c (create_longjmp_breakpoint): Always compile this
9876 function.
9877 (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
9878 * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
9879 (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
9880
9881 * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
9882 * arm-tdep.c (arm_get_longjmp_target): New function.
9883 (arm_gdbarch_init): Initialize jb_pc to -1. If ABI handler changes
9884 this to a positive value register arm_get_longjmp_target as the
9885 longjmp handler.
9886 * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
9887 (arm_linux_init_abi): Set up longjmp description in tdep.
9888 * armnbsd-nat.c (get_longjmp_target): Delete.
9889 * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
9890 description in tdep.
9891 * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
9892 (get_longjmp_target): Delete declaration.
9893 (GET_LONGJMP_TARGET): Delete.
9894 * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
9895 (GET_LONGJMP_TARGET): Delete.
9896
9897 2002-02-17 Kevin Buettner <kevinb@redhat.com>
9898
9899 From Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
9900 * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
9901 of ``current_gdbarch''.
9902
9903 2002-02-17 Tom Tromey <tromey@redhat.com>
9904
9905 * cli/cli-cmds.c (compare_strings): New function.
9906 (complete_command): Only print each unique item once.
9907 * completer.h (complete_line): Declare.
9908 * completer.c (complete_line): New function.
9909 (line_completion_function): Use it.
9910
9911 2002-02-16 Andrew Cagney <ac131313@redhat.com>
9912
9913 * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
9914 * gdbarch.h, gdbarch.c: Re-generate.
9915
9916 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
9917
9918 * valarith.c (value_x_unop): Fix decrement; support post-decrement.
9919
9920 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
9921
9922 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
9923 * valops.c (value_arg_coerce): Don't take the address of a reference
9924 to convert an argument to a reference.
9925
9926 2002-02-15 Christopher Faylor <cgf@redhat.com>
9927
9928 * win32-nat.c (get_image_name): New function.
9929 (handle_load_dll): Use get_image_name function.
9930 (get_child_debug_event): Avoid registering debug events until possibly
9931 execed process is started.
9932 (child_create_inferior): Allow invocation via shell so that command
9933 line redirection, etc. works ok.
9934 (_initialize_inftarg): Add new command: "set shell" to control whether
9935 a shell is used to start a process.
9936
9937 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
9938
9939 * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
9940 instead of find_register_by_number.
9941 (cannot_store_register): Likewise.
9942
9943 2002-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
9944
9945 * dwarf2read.c: Replace fprintf (stderr, ...) by
9946 fprintf_unfiltered (gdb_stderr, ...).
9947
9948 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
9949
9950 * gdbserver/gdbserver.1: Document --attach.
9951
9952 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
9953
9954 * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
9955 descriptions.
9956 * arm-tdep.c (arm_default_arm_le_breakpoint)
9957 (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
9958 (arm_default_thumb_be_breakpoint): New. Initialize them from
9959 traditional breakpoint defines.
9960 (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
9961 (arm_gdbarch_init): Initialize new breakpoint variables.
9962 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
9963 (arm_linux_init_abi): Initialize linux-specific breakpoint.
9964 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
9965 (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
9966 code out to ...
9967 (arm_netbsd_init_abi_common): ... here; new function.
9968 * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
9969 (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
9970 * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
9971 * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
9972
9973 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
9974
9975 * arm-tdep.h (enum arm_abi): New enum.
9976 (struct gdbarch_tdep): New structure.
9977 (LOWEST_PC): Provide a default.
9978 (arm_gdbarch_register_os_abi): Declare new function.
9979 * arm-tdep.c (arm_abi_names): New array.
9980 (process_note_abi_tag_sections): New function.
9981 (get_elfosabi): New function.
9982 (arm_gdbarch_register_os_abi): New function.
9983 (arm_gdbarch_init): Try to determine the ABI of the inferior. If
9984 support for that ABI has been built in, then call the appropriate
9985 configuration routine. Use gdbarch_num_regs() to get the number
9986 of registers.
9987 (arm_dump_tdep): New function.
9988 (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
9989 place-holder functions.
9990 (_initialize_arm_tdep): Register them.
9991 * config/arm/tm-arm.h (LOWEST_PC): Delete.
9992
9993 * armnbsd-tdep.c: New file.
9994 * Makefile.in (armnbsd-tdep.o): Add dependencies.
9995 * config/arm/nbsd.mt (TDEPFILES): Add it.
9996 * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
9997
9998 * armnbsd-nat.c: Include regcache.h.
9999 * Makefile.in (armnbsd-nat.o): Update dependency list.
10000
10001 * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
10002
10003 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
10004
10005 * gdbserver/Makefile.in: Fix typos in target rules.
10006
10007 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
10008
10009 Fix part of PR gdb/267.
10010 * linespec.c (find_methods): Handle constructors specially for now.
10011
10012 2002-02-14 Corinna Vinschen <vinschen@redhat.com>
10013
10014 * arm-tdep.c (arm_push_arguments): Eliminate special float type
10015 handling.
10016 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
10017 standard_coerce_float_to_double().
10018
10019 2002-02-14 Christopher Faylor <cgf@redhat.com>
10020
10021 * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
10022 GDBINIT_FILENAME.
10023
10024 2002-02-14 Elena Zannoni <ezannoni@redhat.com>
10025
10026 * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
10027 find_variant_by_name, because it confuses the multiarch
10028 framework. Return NULL if there isn't an architecture with the
10029 user supplied name, instead of forcing a different one without
10030 recording the change with the multiarch machinery.
10031 (find_variant_by_name): Delete.
10032
10033 2002-02-14 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10034
10035 * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
10036 i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
10037
10038 2002-02-13 Martin M. Hunt <hunt@redhat.com>
10039
10040 * stack.c (print_frame_info_base): When calling
10041 print_frame_info_listing_hook, set current_source_symtab.
10042
10043 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
10044
10045 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
10046 and remove unused $(INCLUDE_DIR).
10047 Add regcache.c to OBS.
10048 Add generated register protocol files to clean target.
10049 Update dependencies for new objects, obsolete old target code.
10050
10051 * gdbserver/linux-low.c: Remove all platform-specific code to
10052 new files. Remove various dead code. Update to use regcache
10053 functionality.
10054 * gdbserver/remote-utils.c (fromhex): Add return statement
10055 to quiet warning.
10056 (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
10057 constant.
10058 (input_interrupt): Add integer parameter to match prototype
10059 of a signal handler.
10060 (outreg): Use register_data ().
10061 (prepare_resume_reply): Use gdbserver_expedite_regs.
10062 * gdbserver/server.c (main): Dynamically allocate own_buf because
10063 PBUFSIZ is no longer constant. Use registers_to_string () and
10064 registers_from_string ().
10065 * gdbserver/server.h: No longer include "defs.h". Add prototypes
10066 for error (), fatal (), and warning (). Update definition of
10067 PBUFSIZ to use regcache functionality. Add include guard.
10068 * gdbserver/utils.c (fatal): Add missing ``const''.
10069 (warning): New function.
10070
10071 * regformats/regdat.sh: Include "regcache.h" in generated files.
10072 Provide init_registers () function.
10073 * regformats/regdef.h: Add prototype for set_register_cache ().
10074 Add include guard.
10075
10076 * gdbserver/linux-arm-low.c: New file.
10077 * gdbserver/linux-i386-low.c: New file.
10078 * gdbserver/linux-ia64-low.c: New file.
10079 * gdbserver/linux-m68k-low.c: New file.
10080 * gdbserver/linux-mips-low.c: New file.
10081 * gdbserver/linux-ppc-low.c: New file.
10082 * gdbserver/linux-sh-low.c: New file.
10083
10084 * gdbserver/regcache.c: New file.
10085 * gdbserver/regcache.h: New file.
10086
10087 * gdbserver/low-linux.c: Removed obsolete file.
10088
10089 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
10090
10091 * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
10092 * config/i386/linux.mt: Likewise.
10093 * config/ia64/linux.mt: Likewise.
10094 * config/m68k/linux.mh: Likewise.
10095 * config/powerpc/linux.mh: Likewise.
10096 * config/mips/linux.mt: Likewise.
10097
10098 * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
10099
10100 * config/i386/i386lynx.mh: Mark gdbserver variables
10101 as (currently) obsolete for this target.
10102 * config/i386/nbsd.mt: Likewise.
10103 * config/i386/nbsdelf.mt: Likewise.
10104 * config/m32r/m32r.mt: Likewise.
10105 * config/m68k/m68klynx.mh: Likewise.
10106 * config/m68k/nbsd.mt: Likewise.
10107 * config/m68k/sun3os4.mh: Likewise.
10108 * config/mips/vr5000.mt: Likewise.
10109 * config/ns32k/nbsd.mt: Likewise.
10110 * config/pa/hppabsd.mh: Likewise.
10111 * config/pa/hppaosf.mh: Likewise.
10112 * config/powerpc/nbsd.mt: Likewise.
10113 * config/rs6000/rs6000lynx.mh: Likewise.
10114 * config/s390/s390.mt: Likewise.
10115 * config/s390/s390x.mt: Likewise.
10116 * config/sparc/sparclynx.mh: Likewise.
10117 * config/sparc/sun4os4.mh: Likewise.
10118 * config/i386/x86-64linux.mt: Likewise.
10119 * config/sparc/linux.mh: Likewise.
10120
10121 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
10122
10123 * configure.tgt: Configure gdbserver only for known working
10124 targets. Set ${build_gdbserver} instead of modifying ${configdirs}.
10125 * configure.in: Check ${build_gdbserver}. Put gdbserver/ into
10126 SUBDIRS if it is configured. Update comment for ${nativefile}.
10127 * configure: Regenerated.
10128
10129 2002-02-13 Michael Snyder <msnyder@redhat.com>
10130
10131 * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
10132
10133 * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
10134 (default_gcore_mach): Just return 0, work around a problem in bfd.
10135 (default_gcore_target): OK to return NULL if exec_bfd is null.
10136 (make_mem_sec): Use a cast, avoid a warning.
10137
10138 * procfs.c (find_memory_regions_callback): Use a cast instead of
10139 calling host_pointer_to_address (which complains if
10140 sizeof (host pointer) != sizeof (target pointer)).
10141 (procfs_make_note_section): Avoid overflow in psargs string.
10142
10143 * procfs.c (procfs_make_note_section): Make the default
10144 implementation return an error.
10145
10146 2002-02-13 Rodney Brown <rbrown64@csc.com.au>
10147
10148 * procfs.c (procfs_make_note_section): Provide a default definition
10149 (for alpha-dec-osf4.0f). Fix typos.
10150
10151 2002-02-13 Elena Zannoni <ezannoni@redhat.com>
10152
10153 * linux-proc.c: Add include of regcache.h.
10154 * Makefile.in (linux-proc.o): Add dependency on regcache.h.
10155
10156 2002-02-13 Andrew Cagney <ac131313@redhat.com>
10157
10158 From 2002-01-18 Greg McGary <greg@mcgary.org>:
10159 * memattr.c (create_mem_region): Disallow useless empty region.
10160 Regions are half-open intervals, so allow [A..B) [B..C) as
10161 non-overlapping.
10162
10163 2002-02-13 Michael Chastain <mec@shout.net>
10164
10165 * defs.h: Kill CONST_PTR.
10166 * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
10167 * c-lang.c (c_builtin_types): Likewise.
10168 * ch-lang.c (ch_builtin_types): Likewise.
10169 * f-lang.c (f_builtin_types): Likewise.
10170 * language.c (unknown_builtin_types): Likewise.
10171 * m2-lang.c (m2_builtin_types): Likewise.
10172 * p-lang.c (pascal_builtin_types): Likewise.
10173 * scm-lang.c (c_builtin_types): Likewise.
10174
10175 2002-02-13 Keith Seitz <keiths@redhat.com>
10176
10177 * arm-tdep.h (arm_get_next_pc): Add declaration.
10178
10179 2002-02-13 Richard Earnshaw <rearnsha@arm.com>
10180
10181 * arm-tdep.c (arm_use_struct_convention): Make static. Move to be
10182 with other related struct-returning functions.
10183 (arm_extract_struct_value_address): New function.
10184 (arm_gdbarch_init): Initialize the above in multi-arch vector. Also
10185 initialize float_format, double_format and long_double_format as
10186 appropriate to the endianness of the target.
10187 * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
10188 (arm_use_struct_convention): Delete declaration.
10189 (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
10190
10191 2002-02-13 Keith Seitz <keiths@redhat.com>
10192
10193 * defs.h (core_addr_to_string_nz): New function.
10194
10195 2002-02-13 Mark Kettenis <kettenis@gnu.org>
10196
10197 Apply missing bits of 2002-01-15 patch.
10198 * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
10199 (fill_fpregset): Use i387_fill_fsave.
10200
10201 2002-02-12 Keith Seitz <keiths@redhat.com>
10202
10203 * utils.c (core_addr_to_string): Use phex instead of phex_nz.
10204 (core_addr_to_string_nz): New function.
10205
10206 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
10207
10208 * arm-linux-nat.c: Really include arm-tdep.h.
10209 * config/arm/tm-linux.h (struct type, struct value): Declare.
10210
10211 2002-02-11 Michael Snyder <msnyder@redhat.com>
10212
10213 * procfs.c: Include elf-bfd.h (for elfcore_write functions).
10214 (gcore section): Ifdef for Solaris and Unixware only.
10215 (procfs_do_thread_registers): Unixware needs one lwpstatus
10216 per thread (not one prstatus or pstatus).
10217 (procfs_make_note_section): Iterate only over kernel threads (lwps),
10218 not over all gdb threads. For unixware, call elfcore_write_pstatus
10219 once before iterating over threads.
10220
10221 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
10222
10223 * arm-tdep.h: New file.
10224 * arm-tdep.c: Include arm-tdep.h.
10225 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
10226 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
10227 (arm_print_float_info, arm_register_type, convert_to_extended)
10228 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
10229 (arm_extract_return_value, arm_register_name): Make static.
10230 (arm_software_single_step): Similarly. Fix types in declaration.
10231 (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
10232 (arm_store_return_value, arm_store_struct_return): New functions.
10233 (arm_gdbarch_init): Register the above functions. Also register
10234 call_dummy_start_offset, sizeof_call_dummy_words,
10235 function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
10236 sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
10237 max_register_virtual_size, register_size. Set up
10238 prologue_cache.saved_regs here, rather than ...
10239 (_initialize_arm_tdep): ... here.
10240 * config/arm/tm-arm.h (struct type, struct value): Delete forward
10241 declarations.
10242 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
10243 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
10244 (arm_print_float_info, arm_register_type, convert_to_extended)
10245 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
10246 (arm_extract_return_value, arm_register_name): Delete declarations.
10247 (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
10248 (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
10249 (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
10250 (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
10251 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
10252 (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
10253 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
10254 (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
10255 (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
10256 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
10257 (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
10258 (arm_get_next_pc): No-longer static -- these are needed by the RDI
10259 interface.
10260 * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
10261 * remote-rdi.c remote-rdp.c: Likewise.
10262 * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
10263 (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
10264 * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
10265 definition.
10266
10267 * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
10268 (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
10269 (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
10270 from non-ARM_ prefixed definitions.
10271 * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
10272 all uses of above.
10273 * remote-rdi.c remote-rdp.c: Likewise.
10274 * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
10275
10276 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
10277
10278 * arm-tdep.c (arm_frameless_function_invocation)
10279 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
10280 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
10281 (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
10282 (arm_pop_frame, arm_get_next_pc): Make static.
10283 (arm_gdbarch_init): Register above in gdbarch structure.
10284 (arm_read_fp): Renamed from arm_target_read_fp.
10285 (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
10286 * config/arm/tm-arm.h (arm_frameless_function_invocation)
10287 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
10288 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
10289 (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
10290 (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
10291 (arm_pc_is_thumb_dummy): Delete declarations.
10292 (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
10293 (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
10294 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
10295 (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
10296
10297 2002-02-10 Daniel Jacobowitz <drow@mvista.com>
10298
10299 * symtab.c (compare_search_syms): New function.
10300 (sort_search_symbols): New function.
10301 (search_symbols): Sort symbols after searching rather than
10302 before.
10303
10304 2002-02-10 Andrew Cagney <ac131313@redhat.com>
10305
10306 * NEWS: Linux -> GNU/Linux.
10307
10308 2002-02-10 Andrew Cagney <ac131313@redhat.com>
10309
10310 * gdbarch.sh: For for level one methods, disallow a definition
10311 when partially multi-arched. Add comments explaining rationale.
10312 * gdbarch.h: Re-generate.
10313
10314 2002-02-10 Andrew Cagney <ac131313@redhat.com>
10315
10316 * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
10317 multi-arch partial.
10318
10319 2002-02-10 Andrew Cagney <ac131313@redhat.com>
10320
10321 * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL. Exit on bad
10322 field. Use diff -u.
10323 * gdbarch.c: Re-generate.
10324
10325 2002-02-10 Andrew Cagney <ac131313@redhat.com>
10326
10327 * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
10328 * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
10329 partial.
10330
10331 2002-02-10 Andrew Cagney <ac131313@redhat.com>
10332
10333 * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
10334 multi-arch partial.
10335 (PUSH_ARGUMENTS): Switch to using predefault.
10336 * gdbarch.c: Regenerate.
10337
10338 2002-02-10 Andrew Cagney <ac131313@redhat.com>
10339
10340 * valops.c (PUSH_ARGUMENTS): Delete definition.
10341 * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
10342 partial. Default to default_push_arguments.
10343 * gdbarch.h, gdbarch.c: Regenerate.
10344
10345 2002-02-09 Andrew Cagney <ac131313@redhat.com>
10346
10347 * defs.h (throw_exception): Rename return_to_top_level. Update
10348 comments.
10349 * utils.c (error_stream, internal_verror, quit): Ditto.
10350 * top.c (throw_exception, catcher): Ditto.
10351 * sparclet-rom.c (sparclet_load): Ditto.
10352 * remote.c (interrupt_query, minitelnet): Ditto.
10353 * remote-sds.c (interrupt_query): Ditto.
10354 * remote-mips.c (mips_error, mips_kill): Ditto.
10355 * ocd.c (interrupt_query): Ditto.
10356 * monitor.c (monitor_interrupt_query): Ditto.
10357 * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
10358 * target.h: Update comment.
10359
10360 * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
10361
10362 2002-02-09 Andrew Cagney <ac131313@redhat.com>
10363
10364 * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
10365 default_double_format.
10366 * gdbarch.h, gdbarch.c: Re-generate.
10367 * findvar.c (floatformat_unknown): Delete variable definition.
10368 * doublest.h (floatformat_unknown): Delete variable declaration.
10369
10370 2002-02-09 Jim Blandy <jimb@redhat.com>
10371
10372 * stabsread.c (read_type): Add code to parse Sun's syntax for
10373 prototyped function types.
10374
10375 2002-02-09 Andrew Cagney <ac131313@redhat.com>
10376
10377 * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
10378 (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
10379
10380 2002-02-09 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10381
10382 * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
10383 _initialize_solib. Fixes name clash with solib.c:_initialize_solib,
10384 now _initialize_xcoffsolib gets called again and overrides the
10385 commands from solib.c in a native configuration.
10386
10387 2002-02-09 Mark Kettenis <kettenis@gnu.org>
10388
10389 * doublest.c (store_typed_floating): Don't try to return a value.
10390 Fixes PR gdb/290.
10391
10392 2002-02-08 Jim Blandy <jimb@redhat.com>
10393
10394 * c-typeprint.c (c_type_print_varspec_suffix): If a function type
10395 is prototyped and has no arguments, print its argument list as
10396 `(void)'.
10397
10398 2002-02-08 Chris Demetriou <cgd@broadcom.com>
10399
10400 * MAINTAINERS (write-after-approval): Add myself.
10401 (paper-trail): I've escaped!
10402
10403 2002-02-08 Christopher Faylor <cgf@redhat.com>
10404
10405 * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
10406 changes.
10407 (_initialize_check_for_gdb_ini): Ditto.
10408
10409 2002-02-08 Martin M. Hunt <hunt@redhat.com>
10410
10411 * win32-nat.c (cygwin_pid_to_str): Fix typo.
10412 xaprintf -> xasprintf.
10413
10414 2002-02-08 Pierre Muller <muller@ics.u-strasbg.fr>
10415
10416 * win32-nat.c: Remove use of printf and sprintf functions.
10417
10418 2002-02-08 Richard Earnshaw <rearnsha@arm.com>
10419
10420 * arm-tdep.c (arm_frame_chain_valid): Make static.
10421 (arm_push_arguments): Likewise.
10422 (arm_gdbarch_init): New function.
10423 (_initialize_arm_tdep): Call it.
10424 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
10425 (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
10426 (FRAME_CHAIN_VALID): Delete.
10427 (arm_frame_chain_valid): Delete declaration.
10428 (PUSH_ARGUMENTS): Delete.
10429 (arm_push_arguments): Delete declaration.
10430 (CALL_DUMMY_P): Delete.
10431
10432 2002-02-08 Andrew Cagney <ac131313@redhat.com>
10433 Corinna Vinschen <vinschen@redhat.com>
10434
10435 * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
10436 on builtin float types.
10437
10438 2002-02-08 Daniel Jacobowitz <drow@mvista.com>
10439
10440 * utils.c: Include <curses.h> before "bfd.h".
10441 * tui/tui-hooks.c: Likewise.
10442 * tui/tui.c: Likewise.
10443 * tui/tuiCommand.c: Likewise.
10444 * tui/tuiData.c: Likewise.
10445 * tui/tuiDataWin.c: Likewise.
10446 * tui/tuiDisassem.c: Likewise.
10447 * tui/tuiGeneralWin.c: Likewise.
10448 * tui/tuiIO.c: Likewise.
10449 * tui/tuiLayout.c: Likewise.
10450 * tui/tuiRegs.c: Likewise.
10451 * tui/tuiSource.c: Likewise.
10452 * tui/tuiSourceWin.c: Likewise.
10453 * tui/tuiStack.c: Likewise.
10454 * tui/tuiWin.c: Likewise.
10455
10456 2002-02-07 Elena Zannoni <ezannoni@redhat.com>
10457
10458 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
10459 to include space for pseudoregs as well. Update loops accordingly.
10460 (sh_fp_frame_init_saved_regs): Ditto.
10461 (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
10462
10463 2002-02-07 Andrew Cagney <ac131313@redhat.com>
10464
10465 * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
10466 Add Richard Earnshaw to Arm maintainers.
10467
10468 2002-02-07 Andrew Cagney <ac131313@redhat.com>
10469
10470 * defs.h (warning_begin): Delete declaration.
10471
10472 * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
10473 Delete macro.
10474
10475 2002-02-07 Michael Snyder <msnyder@redhat.com>
10476
10477 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
10478 Logic bug, remove misplaced else.
10479
10480 2002-02-07 Klee Dienes <klee@apple.com>
10481
10482 * fork-inferior.c (fork_inferior): Add '!' to the list of
10483 characters that need to be quoted when building a string for the
10484 shell. Quote '!' specifically with a backslash, since CSH chokes
10485 when trying to evaluate "str!str".
10486
10487 2002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
10488
10489 * rdi-share/host.h: Only provide a typedef for bool if it is not
10490 defined.
10491
10492 2002-02-04 Michael Snyder <msnyder@redhat.com>
10493
10494 * breakpoint.h (enum bptype): Add new overlay event bp type.
10495 (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
10496
10497 * breakpoint.c (create_internal_breakpoint): New function.
10498 (internal_breakpoint_number): Moved into create_internal_breakpoint.
10499 (create_longjmp_breakpoint): Use create_internal_breakpoint.
10500 (create_thread_event_breakpoint): Ditto.
10501 (create_solib_event_breakpoint): Ditto.
10502 (create_overlay_event_breakpoint): New function.
10503 (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
10504 (update_breakpoints_after_exec): Delete and re-initialize
10505 overlay event breakpoints after an exec. Add FIXME comment
10506 about longjmp breakpoint.
10507 (print_it_typical): Ignore overlay event breakpoints.
10508 (print_one_breakpoint): Ditto.
10509 (mention): Ditto.
10510 (bpstat_what): Do not stop for overlay event breakpoints.
10511 (delete_breakpoint): Don't delete overlay event breakpoints.
10512 (breakpoint_re_set_one): Delete the overlay event breakpoint.
10513 (breakpoint_re_set): Re-create overlay event breakpoint.
10514
10515 * symfile.c (overlay_auto_command): Enable overlay breakpoints.
10516 (overlay_manual_command): Disable overlay breakpoints.
10517 (overlay_off_command): Disable overlay breakpoints.
10518
10519 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
10520
10521 * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
10522 (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
10523 to here from config/tm-arm.h.
10524 (coff_sym_is_thumb): Make static.
10525 (arm_elf_make_msymbol_special): New function.
10526 (arm_coff_make_msymbol_special): New function.
10527 * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
10528 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
10529 (coff_sym_is_thumb): Delete declaration.
10530 (arm_elf_make_msymbol_special): Declare.
10531 (arm_coff_make_msymbol_special): Declare.
10532 (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
10533 (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
10534
10535 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
10536
10537 * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
10538
10539 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
10540
10541 * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
10542 * gdbarch.c gdbarch.h: Regenerate.
10543 * arch-utils.c (default_print_float_info): New function.
10544 * arch-utils.h (default_print_float_info): Prototype it.
10545 * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
10546 * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
10547 (PRINT_FLOAT_INFO): Document it.
10548
10549 * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
10550 * config/arm/tm-arm.h (FLOAT_INFO): Delete.
10551 (PRINT_FLOAT_INFO): Define.
10552
10553 2002-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
10554
10555 * win32-nat.c (_initialize_check_for_gdb_ini):
10556 Add typecast to sprintf argument to suppress a warning.
10557
10558 2002-02-05 Pierre Muller <muller@ics.u-strasbg.fr>
10559
10560 * win32-nat.c (last_sig): Changed type of variable to target_signal,
10561 to allow easier handling of pass state.
10562 (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
10563 that gives exception name and address.
10564 (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
10565 and set last_sig value to ourstatus->value.sig. Some missing
10566 exceptions added.
10567 (child_continue): Correctly report continue_status.
10568 (get_child_debug_event,do_initial_child_stuff): Set last_sig to
10569 TARGET_SIGNAL_0 (new default value).
10570 (child_resume): consider sig argument passed to decide if
10571 the exception should be passed to debuggee or not.
10572
10573 2002-02-05 Michael Snyder <msnyder@redhat.com>
10574
10575 * regcache.c (fetch_register): Call target_fetch_register
10576 only if we don't call FETCH_PSEUDO_REGISTER.
10577 (store_register): Call target_store_register only if we
10578 don't call STORE_PSEUDO_REGISTER.
10579
10580 2002-02-05 Elena Zannoni <ezannoni@redhat.com>
10581
10582 * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
10583 ELF_MAKE_MSYMBOL_SPECIAL.
10584 * gdbarch.c, gdbarch.h: Regenerate.
10585 * arch-utils.c (default_make_msymbol_special): New function.
10586 * arch-utils.h (default_make_msymbol_special): Export.
10587 * elfread.c (elf_symtab_read): Compile use of
10588 ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
10589 multiarched.
10590 * coffread.c (coff_symtab_read): Ditto, for
10591 COFF_MAKE_MSYMBOL_SPECIAL.
10592
10593 2002-02-05 Jim Blandy <jimb@redhat.com>
10594
10595 * solib-svr4.c (svr4_truncate_ptr): New function.
10596 (svr4_relocate_section_addresses): Do the address arithmetic with
10597 the appropriate truncation for target addresses, even when
10598 CORE_ADDR is larger than a target address.
10599
10600 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
10601
10602 * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
10603 to (int *).
10604
10605 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
10606
10607 * gdbserver/linux-low.c (kill_inferior): Remove commented out
10608 code.
10609
10610 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
10611
10612 * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
10613
10614 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
10615
10616 * gdbserver/linux-low.c: Remove unused include files.
10617
10618 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
10619
10620 * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
10621 (read_inferior_memory): Use it.
10622 (write_inferior_memory): Likewise.
10623
10624 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
10625
10626 * gdbserver/linux-low.c (create_inferior): Call strerror instead of
10627 grubbing through sys_errlist.
10628
10629 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
10630
10631 * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
10632
10633 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
10634 * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
10635
10636 2002-02-04 Andrew Cagney <ac131313@redhat.com>
10637
10638 * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
10639 (do_sfunc, set_cmd_sfunc): New functions.
10640
10641 * command.h (struct cmd_list_element): Add field func.
10642 * cli/cli-decode.h (struct cmd_list_element): Ditto.
10643 * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
10644 * cli/cli-decode.h: Ditto.
10645
10646 * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
10647 (help_all, help_cmd_list): Ditto.
10648 (find_cmd, complete_on_cmdlist): Ditto.
10649 * top.c (execute_command): Ditto.
10650
10651 * cli/cli-setshow.c (do_setshow_command): Call func instead of
10652 function.sfunc.
10653
10654 * infcmd.c (notice_args_read): Fix function signature.
10655
10656 * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
10657 * cli/cli-decode.c (add_set_cmd): Ditto.
10658 * utils.c (initialize_utils): Ditto.
10659 * maint.c (_initialize_maint_cmds): Ditto.
10660 * infrun.c (_initialize_infrun): Ditto.
10661 * demangle.c (_initialize_demangler): Ditto.
10662 * remote.c (add_packet_config_cmd): Ditto.
10663 * mips-tdep.c (_initialize_mips_tdep): Ditto.
10664 * cris-tdep.c (_initialize_cris_tdep): Ditto.
10665 * proc-api.c (_initialize_proc_api): Ditto.
10666 * kod.c (_initialize_kod): Ditto.
10667 * valprint.c (_initialize_valprint): Ditto.
10668 * top.c (init_main): Ditto.
10669 * infcmd.c (_initialize_infcmd): Ditto.
10670 * corefile.c (_initialize_core): Ditto.
10671 * arm-tdep.c (_initialize_arm_tdep): Ditto.
10672 * arch-utils.c (initialize_current_architecture): Ditto.
10673 (_initialize_gdbarch_utils): Ditto.
10674 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
10675
10676 * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
10677 * wince.c (_initialize_inftarg): Ditto.
10678 * symfile.c (_initialize_symfile): Ditto.
10679 * mips-tdep.c (_initialize_mips_tdep): Ditto.
10680 * language.c (_initialize_language): Ditto.
10681 * arc-tdep.c (_initialize_arc_tdep): Ditto.
10682
10683 2002-02-04 Michael Snyder <msnyder@redhat.com>
10684
10685 * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
10686
10687 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
10688
10689 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
10690 Add rules for building the register data files.
10691
10692 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
10693
10694 * regformats/regdat.sh: Add braces to the definition of
10695 expedite_regs_${arch}.
10696
10697 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
10698
10699 * regformats/regdef.h (struct reg): Add comment describing the
10700 requirements for offset and size fields.
10701
10702 2002-02-04 Andreas Schwab <schwab@suse.de>
10703
10704 * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
10705 * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
10706
10707 2002-02-04 Richard Earnshaw <rearnsha@arm.com>
10708
10709 * gdbarch.sh (copyright): Update years in generated header.
10710 (SMASH_TEXT_ADDRESS): Add rule.
10711 * gdbarch.h, gdbarch.c: Re-generate.
10712 * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
10713 * dbxread.c: Likewise.
10714 * dwarfread.c: Likewise.
10715 * elfread.c: Likewise.
10716 * somread.c: Likewise.
10717
10718 * arm-tdep.c (arm_smash_text_address): New function.
10719 * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
10720
10721 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
10722
10723 Add support for hardware watchpoints on win32 native.
10724 * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
10725 CONTEXT_DEBUG_REGISTERS.
10726 (dr variable): New variable. Static array containing a local copy
10727 of debug registers.
10728 (debug_registers_changed): New variable. Reflects when debug registers
10729 are changed and need to be written to inferior.
10730 (debug_registers_used): New variable. Reflects when any debug register
10731 was set, used when new threads are created.
10732 (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
10733 i386-nat code.
10734 (thread_rec): Set dr array if id is the thread of current_event .
10735 (child_continue, child_resume): Change the debug registers for all
10736 threads if debug_registers_changed.
10737 (child_add_thread): Change the debug registers if debug_registers_used.
10738 * config/i386/cygwin.mh: Add use of i386-nat.o file.
10739 Link nm.h to new nm-cygwin.h file.
10740 + config/i386/nm-cygwin.h: New file. Contains the macros used for use
10741 of hardware registers.
10742
10743 2002-02-03 Andrew Cagney <ac131313@redhat.com>
10744
10745 * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
10746 Restore behavour broken by 2002-01-20 Andrew Cagney
10747 <ac131313@redhat.com> IEEE_FLOAT removal.
10748
10749 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
10750
10751 * c-valprint.c (c_val_print): Pass a proper valaddr to
10752 cp_print_class_method.
10753 * valops.c (search_struct_method): If there is only one method
10754 and args is NULL, return that method.
10755
10756 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
10757
10758 * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
10759 accessing tag_name directly.
10760
10761 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
10762
10763 * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
10764 of accessing tag_name directly.
10765
10766 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
10767
10768 PR gdb/280
10769 * gdbtypes.c (replace_type): New function.
10770 * gdbtypes.h (replace_type): Add prototype.
10771 * stabsread.c (read_type): Use replace_type.
10772
10773 2002-02-03 Richard Earnshaw <rearnsha@arm.com>
10774
10775 * Makefile.in (memattr.o): Add missing dependencies rule.
10776
10777 2002-02-03 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10778
10779 * breakpoint.c (break_at_finish_command): Really export.
10780 (break_at_finish_at_depth_command): Ditto.
10781 (tbreak_at_finish_command): Ditto.
10782 * hppa-tdep.c: Include completer.h.
10783 * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
10784 (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
10785
10786 2002-02-01 Andrew Cagney <ac131313@redhat.com>
10787
10788 * utils.c (do_write): New function.
10789 (error_stream): Rewrite combining the code from error_begin and
10790 verror.
10791 (verror): Rewrite using error_stream.
10792 (error_begin): Delete function.
10793
10794 2002-02-01 Andrew Cagney <ac131313@redhat.com>
10795
10796 * utils.c (error_begin): Make static.
10797 * defs.h (error_begin): Delete declaration.
10798
10799 * linespec.c (cplusplus_error): Replace cplusplus_hint.
10800 (decode_line_1): Use cplusplus_error instead of error_begin,
10801 cplusplus_hint and return_to_top_level.
10802 * coffread.c (coff_symfile_read): Use error instead of error_begin
10803 and return_to_top_level.
10804 * infrun.c (default_skip_permanent_breakpoint): Ditto.
10805
10806 2002-02-01 Andrew Cagney <ac131313@redhat.com>
10807
10808 * language.h (type_error, range_error): Make string parameter
10809 constant.
10810 * language.c (warning_pre_print): Delete extern declaration.
10811 * dwarfread.c (warning_pre_print): Ditto.
10812 * language.c (type_error, range_error): Rewrite to use verror and
10813 vwarning instead of warning_begin.
10814
10815 2002-02-01 Michael Snyder <msnyder@redhat.com>
10816
10817 * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
10818 (set_ignore_count): Move misplaced comment back where it belongs.
10819
10820 2002-02-01 Andrew Cagney <ac131313@redhat.com>
10821
10822 * command.h (NO_FUNCTION): Delete macro.
10823 * cli/cli-decode.h (NO_FUNCTION): Ditto.
10824 * top.c (execute_command): Replace NO_FUNCTION with NULL.
10825 * tracepoint.c (_initialize_tracepoint): Ditto.
10826 * cli/cli-decode.c (add_set_cmd): Ditto.
10827 * cli/cli-cmds.c (init_cli_cmds): Ditto.
10828
10829 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
10830
10831 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
10832 Update ``this'' pointer when calling virtual functions.
10833
10834 2002-02-01 Michael Snyder <msnyder@redhat.com>
10835
10836 * breakpoint.c (create_temp_exception_breakpoint): Delete.
10837 * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
10838
10839 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
10840
10841 * regformats/reg-arm.dat: New file.
10842 * regformats/reg-i386.dat: New file.
10843 * regformats/reg-ia64.dat: New file.
10844 * regformats/reg-m68k.dat: New file.
10845 * regformats/reg-mips.dat: New file.
10846 * regformats/reg-ppc.dat: New file.
10847 * regformats/reg-sh.dat: New file.
10848 * regformats/regdef.h: New file.
10849 * regformats/regdat.sh: New file.
10850
10851 2002-02-01 Richard Earnshaw <reanrsha@arm.com>
10852
10853 * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
10854 (arm_frame_args_address, arm_frame_locals_address): New functions.
10855 (arm_frame_num_args): New function.
10856 * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
10857 (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
10858 (FRMA_NUM_ARGS): Call arm_frame_num_args.
10859
10860 2002-01-31 Michael Snyder <msnyder@redhat.com>
10861
10862 * breakpoint.c (break_at_finish_command): Export.
10863 (break_at_finish_at_depth_command): Export.
10864 (tbreak_at_finish_command): Export.
10865 (_initialize_breakpoint): Delete "xbreak" and "txbreak" commands.
10866 * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
10867 "txbreak" commands, which are HPPA specific.
10868
10869 * printcmd.c (disassemble_command): Remove an ancient
10870 artifact of an old merge.
10871
10872 * symfile.h (enum overlay_debugging_state):
10873 Define enum constant values for overlay mode.
10874 * symfile.c (overlay_debugging): Use enums instead of literals.
10875 (overlay_is_mapped, overlay_auto_command,
10876 overlay_manual_command): Ditto.
10877
10878 * breakpoint.c (insert_breakpoints, remove_breakpoint,
10879 breakpoint_here_p, breakpoint_inserted_here_p,
10880 breakpoint_thread_match, bpstat_stop_status,
10881 describe_other_breakpoints, check_duplicates, clear_command):
10882 Coding standard fixes.
10883
10884 * target.c (target_xfer_memory): Add spaces, coding standard.
10885 (do_xfer_memory): Add missing line to trust-readonly
10886 code: check bfd SEC_READONLY flag for section.
10887
10888 2002-01-31 Andrew Cagney <ac131313@redhat.com>
10889
10890 * PROBLEMS: Fix typo, 5.1->5.1.1.
10891
10892 2002-01-30 Daniel Jacobowitz <drow@mvista.com>
10893
10894 * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
10895 data symbols, since we search based on textlow and texthigh.
10896 (find_pc_sect_symtab): Likewise.
10897
10898 2002-01-30 Andrew Cagney <ac131313@redhat.com>
10899
10900 * defs.h (vwarning): Declare.
10901 * utils.c (vwarning): New function.
10902 (warning): Call vwarning.
10903 (warning_begin): Delete function.
10904
10905 * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
10906 the warning message.
10907 * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
10908 warning_begin.
10909
10910 2002-01-30 Michael Snyder <msnyder@redhat.com>
10911
10912 * NEWS: Mention "set trust-readonly-sections" command.
10913 Mention generate-core-file command.
10914
10915 2002-01-15 Michael Snyder <msnyder@redhat.com>
10916
10917 * target.c: New command, "set trust-readonly-sections on".
10918 (do_xfer_memory): Honor the suggestion to trust readonly sections
10919 by reading them from the object file instead of from the target.
10920 (initialize_targets): Register command "set trust-readonly-sections".
10921
10922 2002-01-29 Andrew Cagney <ac131313@redhat.com>
10923
10924 * parse.c (target_map_name_to_register): Simplify, search regs and
10925 pseudo-regs using a single loop.
10926
10927 2002-01-30 Andrew Cagney <ac131313@redhat.com>
10928
10929 * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
10930
10931 2002-01-15 Rodney Brown <rbrown64@csc.com.au>
10932
10933 * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
10934 * config/i386/i386v42mp.mh: Add i387-nat.o .
10935 * i386v4-nat.c: Include i387-nat.h.
10936 (supply_fpregset): Use i387_supply_fsave.
10937 (fill_fpregset): Use i387_fill_fsave.
10938
10939 2002-01-30 Richard Earnshaw <rearnsha@arm.com>
10940
10941 * arm-tdep.c (arm_call_dummy_words): Define.
10942 * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
10943 * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
10944 (CALL_DUMMY_WORDS): Define.
10945 (arm_call_dummy_words): Declare.
10946 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
10947 (arm_linux_call_dummy_words): Declare.
10948
10949 2002-01-30 Andreas Schwab <schwab@suse.de>
10950
10951 * m68klinux-nat.c: Fix last change to use regcache_collect
10952 instead of referencing registers[] directly.
10953
10954 2002-01-29 Andrew Cagney <ac131313@redhat.com>
10955
10956 * parse.c (target_map_name_to_register): Delete code wrapped in
10957 #ifdef REGISTER_NAME_ALIAS_HOOK.
10958
10959 2002-01-28 Michael Snyder <msnyder@redhat.com>
10960
10961 * regcache.c (legacy_read_register_gen): Need to be able to
10962 read pseudo-register as well as real register.
10963 (legacy_write_register_gen): Ditto.
10964
10965 2002-01-28 Andrew Cagney <ac131313@redhat.com>
10966
10967 * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
10968 * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
10969 * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
10970 * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
10971 * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
10972 * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
10973 * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
10974 * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
10975 * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
10976 * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
10977 * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
10978 * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
10979 * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
10980 * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
10981 * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
10982 * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
10983 * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
10984 * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
10985 * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
10986 * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
10987
10988 2002-01-28 Andrew Cagney <ac131313@redhat.com>
10989
10990 * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
10991 (target_byte_order): Initialize to BFD_ENDIAN_BIG.
10992 (initialize_current_architecture): Update target_byte_order using
10993 information from BFD.
10994 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
10995 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
10996
10997 2002-01-28 Andrew Cagney <ac131313@redhat.com>
10998
10999 * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
11000 * vax-tdep.c (INVALID_FLOAT): To here. Document why it is broken.
11001
11002 * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
11003 #ifdef INVALID_FLOAT.
11004 * infcmd.c (do_registers_info): Ditto.
11005 * values.c (unpack_double): Ditto. Add comment.
11006
11007 * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
11008 already commented out.
11009
11010 2002-01-26 Andreas Schwab <schwab@suse.de>
11011
11012 * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
11013 * m68klinux-nat.c: Update ptrace interface for fetching/storing
11014 registers and add support for PTRACE_GETREGS.
11015
11016 2002-01-24 Andrew Cagney <ac131313@redhat.com>
11017
11018 GDB 5.1.1 released from 5.1 branch.
11019 * NEWS: Add 5.1.1 news.
11020 * README: Sync with 5.1 branch.
11021
11022 2002-01-23 Fred Fish <fnf@redhat.com>
11023
11024 * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
11025 stabstring on initial malloc. Reallocing will copy it for us,
11026 if necessary.
11027
11028 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
11029
11030 * Makefile.in (hpread_h): Delete.
11031 (HFILES_NO_SRCDIR): Remove hpread.h.
11032 (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
11033 (hpread.o): Update dependencies.
11034 (hp-psymtab-read.o, hp-symtab-read.o): Remove.
11035
11036 * hp-psymtab-read.c: Remove file.
11037 * hp-symtab-read.c: Remove file.
11038 * hpread.h: Remove file.
11039
11040 * hpread.c: Merge all contents of hp-psymtab-read.c,
11041 hp-symtab-read.c and hpread.h into this file, as it was prior to
11042 January 1999.
11043
11044 * config/pa/hpux11w.mh, config/pa/hpux11.mh,
11045 config/pa/hpux1020.mh, config/pa/hppaosf.mh,
11046 config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
11047 Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
11048
11049 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
11050
11051 * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
11052 fill_gregset): Call gdbarch_tdep() just once, assign result to
11053 variable and use that, instead of calling the function several
11054 times.
11055
11056 2002-01-24 Alexandre Oliva <aoliva@redhat.com>
11057
11058 * configure.host: Accept sparcv9 as alias for sparc64.
11059 * configure.tgt: Likewise.
11060
11061 2002-01-22 Kevin Buettner <kevinb@redhat.com>
11062
11063 * solib-aix5.c (build_so_list_from_mapfile)
11064 (aix5_relocate_main_executable): Fix xcalloc() calls so order of
11065 arguments is not reversed.
11066 * solib-sunos.c (sunos_relocate_main_executable): Likewise.
11067 * solib-svr4.c (svr4_relocate_main_executable): Likewise.
11068
11069 2002-01-22 Elena Zannoni <ezannoni@redhat.com>
11070
11071 * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
11072 modified version of obsolete sh_fetch_pseudo_register.
11073 (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
11074 (sh4_register_read): New function.
11075 (sh_pseudo_register_write): New function. Renamed and modified
11076 version of obsolete sh_store_pseudo_register.
11077 (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
11078 (sh4_register_write): New function.
11079 (sh_gdbarch_init): Remove setting of gdbarch function
11080 fetch_pseudo_register and store_pseudo_register. Remove setting of
11081 register_convert_to_raw, register_convert_to_virtual,
11082 register_convertible.
11083 (sh_sh4_register_convertible): Delete. No longer needed. All is
11084 taken care by architecture specific functions
11085 register_read/register_write.
11086 (sh_sh4_register_convert_to_virtual): Make static.
11087 (sh_sh4_register_convert_to_raw): Ditto.
11088
11089 2002-01-22 Andrew Cagney <ac131313@redhat.com>
11090
11091 * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
11092 (floatformat_is_nan, floatformat_mantissa): Ditto.
11093
11094 * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
11095 for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
11096 builtin_type_ieee_double_little,
11097 builtin_type_ieee_double_littlebyte_bigword,
11098 builtin_type_m68881_ext, builtin_type_i960_ext,
11099 builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
11100 builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
11101 builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
11102 builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
11103
11104 2002-01-22 Corinna Vinschen <vinschen@redhat.com>
11105
11106 * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
11107 parameter. Set frameless flag if it exists and depended of
11108 whether the scanned function is frameless or not.
11109 (xstormy16_skip_prologue): If function is frameless, return
11110 result of xstormy16_scan_prologue().
11111 (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
11112 call.
11113
11114 2002-01-21 Elena Zannoni <ezannoni@redhat.com>
11115
11116 * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
11117 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
11118 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
11119 sh_sh4_register_byte, sh_sh4_register_raw_size,
11120 sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
11121 sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
11122 sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
11123 sh_store_pseudo_register, sh_do_pseudo_register): Call
11124 gdbarch_tdep() just once, assign result to variable and use that,
11125 instead of calling the function several times.
11126
11127 2002-01-20 Mark Kettenis <kettenis@gnu.org>
11128
11129 * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
11130 macros instead of LAST_FPU_CTRL_REGNUM.
11131 (store_register): Likewise.
11132
11133 2002-01-21 Jim Blandy <jimb@redhat.com>
11134
11135 * infcmd.c (run_command): Check that the `exec' target layer's BFD
11136 is up-to-date before running the program, not just when a program
11137 exits.
11138
11139 2002-01-21 Fred Fish <fnf@redhat.com>
11140
11141 * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
11142 when we have found all instructions we are looking for.
11143
11144 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
11145
11146 * arm-tdep.c (arm_register_name): New function.
11147 (arm_registers_names): Make static.
11148 * config/arm/tm-arm.h (arm_register_names): Delete declaration.
11149 (arm_register_name): Declare.
11150 (REGISTER_NAME): Use it.
11151
11152 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
11153 Kevin Buettner <kevinb@redhat.com>
11154
11155 Convert arm targets to new FRAME interface.
11156 * arm-tdep.c (struct frame_extra_info): Remove fsr.
11157 (arm_frame_find_save_regs): Delete.
11158 (arm_frame_init_saved_regs): New.
11159 (arm_init_extra_frame_info): Alloacte saved_regs as required.
11160 Allocate extra_info as required. Convert all uses of fsr.regs
11161 to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
11162 to use extra_info.
11163 (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
11164 (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
11165 (check_prologue_cache, save_prologue_cache): Likewise.
11166 (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
11167 * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
11168 (FRAME_FIND_SAVED_REGS): Delete.
11169 (arm_frame_find_saved_regs): Delete prototype.
11170 (arm_frame_init_saved_regs): New prototype.
11171 (FRAME_INIT_SAVED_REGS): Define.
11172
11173 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11174
11175 * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
11176
11177 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11178
11179 From Jeff Law <law@redhat.com>:
11180 * infttrace.c: Include <sys/pstat.h>.
11181 (child_pid_to_exec_file): Revamp. Use pstat call to get the
11182 exec file if the ttrace equivalent fails.
11183
11184 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11185
11186 * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
11187 (closeLogFile): Ditto.
11188
11189 2002-01-20 Michael Chastain <mec@shout.net>
11190
11191 * top.c (print_gdb_version): Bump copyright year to 2002.
11192
11193 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11194
11195 * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
11196 Zannoni and Eli Zaretskii.
11197
11198 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
11199
11200 * buildsym.c: Update copyright years.
11201 * c-typeprint.c: Likewise.
11202 * dwarf2read.c: Likewise.
11203 * f-typeprint.c: Likewise.
11204 * gdbtypes.c: Likewise.
11205 * gdbtypes.h: Likewise.
11206 * hp-symtab-read.c: Likewise.
11207 * hpread.c: Likewise.
11208 * mdebugread.c: Likewise.
11209 * p-typeprint.c: Likewise.
11210
11211 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11212
11213 * remote-sim.c (gdbsim_open): Simplify code testing the macro
11214 TARGET_BYTE_ORDER_SELECTABLE_P. Assume the target is always
11215 byte-order selectable.
11216 * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
11217 * arch-utils.c: Ditto.
11218 (set_endian): Ditto.
11219 (set_endian_from_file): Ditto.
11220 * gdbserver/low-sim.c (create_inferior): Ditto.
11221 * gdbarch.sh: Ditto.
11222 * gdbarch.h: Re-generate.
11223 * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
11224 * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
11225 * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
11226 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
11227 * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
11228 * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
11229 * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
11230 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
11231 macro definition.
11232 * config/mips/tm-wince.h: Remove #undef of macro
11233 TARGET_BYTE_ORDER_SELECTABLE.
11234 * config/sh/tm-wince.h: Ditto.
11235
11236 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
11237
11238 * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
11239 member function fields. Add accessor macro
11240 TYPE_FN_FIELD_ARTIFICIAL.
11241 * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
11242 * c-typeprint.c (c_type_print_base): Skip artificial member
11243 functions.
11244
11245 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
11246
11247 * f-typeprint.c: Delete unused function f_type_print_args.
11248 * p-typeprint.c: Delete unused function pascal_type_print_args.
11249
11250 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
11251
11252 * gdbtypes.h (struct type): Fix whitespace. Remove obsolete
11253 comment. Add ``artificial'' to ``union field_location''.
11254
11255 * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
11256
11257 * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
11258 * mdebugread.c (parse_symbol): Likewise.
11259 * stabsread.c (define_symbol): Likewise.
11260 * hp-symtab-read.c (hpread_function_type): Likewise, instead of
11261 initializing TYPE_FIELD_BITPOS to n (obsolete).
11262 (hpread_doc_function_type): Likewise.
11263 * hpread.c (hpread_function_type): Likewise.
11264
11265 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11266
11267 * configure.in (host_makefile_frag): Only require a host makefile
11268 fragment when a native build.
11269 * configure: Re-generate.
11270
11271 2002-01-20 Andrew Cagney <ac131313@redhat.com>
11272
11273 * doublest.h (floatformat_from_type): Declare.
11274 * doublest.c (floatformat_from_type): New function.
11275 (convert_typed_floating): Use.
11276
11277 * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
11278 call to function floatformat_from_type.
11279
11280 * gdbarch.sh (IEEE_FLOAT): Delete.
11281 * gdbarch.h, gdbarch.c: Re-generate.
11282 * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
11283 * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
11284 * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
11285 * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
11286 * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
11287 * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
11288 * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
11289 * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
11290 * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
11291 * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
11292 * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
11293 * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
11294
11295 * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
11296 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
11297 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
11298 * sh-tdep.c (sh_gdbarch_init): Ditto.
11299 * mips-tdep.c (mips_gdbarch_init): Ditto.
11300 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
11301 * cris-tdep.c (cris_gdbarch_init): Ditto.
11302
11303 2002-01-20 Jiri Smid <smid@suse.cz>
11304
11305 * configure.host, configure.tgt: Support x86-64.
11306 * NEWS: Note new target x86-64.
11307
11308 * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
11309 * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
11310 * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
11311 * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
11312 x86-64-linux-nat.o): Fix dependencies.
11313
11314 2002-01-19 Andrew Cagney <ac131313@redhat.com>
11315
11316 * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
11317 * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
11318 * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
11319 * config/sparc/xm-sun4os4.h: Delete file.
11320 * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
11321
11322 2002-01-19 Andrew Cagney <ac131313@redhat.com>
11323
11324 * config/sparc/sparclynx.mh (XM_FILE): Delete.
11325 * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
11326 * config/m68k/m68klynx.mh (XM_FILE): Delete.
11327 * config/i386/i386lynx.mh (XM_FILE): Delete.
11328 * config/rs6000/xm-rs6000ly.h: Delete file.
11329 * config/sparc/xm-sparclynx.h: Delete file.
11330 * config/m68k/xm-m68klynx.h: Delete file.
11331 * config/i386/xm-i386lynx.h: Delete file.
11332 * config/xm-lynx.h: Delete file.
11333 * config/djgpp/fnchange.lst: Update.
11334
11335 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
11336
11337 * alpha-tdep.c (alpha_register_byte): New function.
11338 (alpha_register_raw_size): Ditto.
11339 (alpha_register_virtual_size): Ditto.
11340 (alpha_skip_prologue_internal): Renamed from
11341 alpha_skip_prologue.
11342 (alpha_skip_prologue): New version that calls
11343 alpha_skip_prologue_internal.
11344 (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
11345 * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
11346 second argument from alpha_skip_prologue.
11347 (REGISTER_BYTE): Use alpha_register_byte.
11348 (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
11349 (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
11350 (FRAMELESS_FUNCTION_INVOCATION): Use
11351 generic_frameless_function_invocation_not.
11352 (FRAME_NUM_ARGS): Use frame_num_args_unknown.
11353 (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
11354
11355 2002-01-19 Andrew Cagney <ac131313@redhat.com>
11356
11357 * config/mips/xm-news-mips.h: Delete file.
11358 * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
11359
11360 * config/m88k/xm-m88k.h: Delete file.
11361 * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
11362 * config/m88k/xm-delta88v4.h: Ditto.
11363 * config/m88k/xm-delta88.h: Ditto.
11364
11365 * config/alpha/xm-fbsd.h: Delete file.
11366 * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
11367
11368 * config/sparc/xm-sparc.h: Delete file.
11369 * Makefile.in (xm-sun4os4.h): Delete dependency.
11370 * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
11371 * config/sparc/xm-sun4os4.h: Ditto.
11372 * config/sparc/xm-linux.h: Ditto.
11373
11374 * config/i386/xm-windows.h: Delete file.
11375
11376 2002-01-19 Andrew Cagney <ac131313@redhat.com>
11377
11378 * utils.c: Include <sys/param.h> for MAXPATHLEN.
11379 (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
11380
11381 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
11382
11383 * alpha-tdep.c (alpha_call_dummy_words): New.
11384 * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
11385 (CALL_DUMMY_P): Define.
11386 (CALL_DUMMY_WORDS): Define.
11387 (SIZEOF_CALL_DUMMY_WORDS): Define.
11388
11389 2002-01-19 Per Bothner <per@bothner.com>
11390
11391 * gnu-v3-abi.c (gnuv3_rtti_type): Guard that vtable_symbol_name
11392 isn't NULL, which can happen with some gcj-3.x-produced code.
11393
11394 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
11395
11396 * alpha-tdep.c (alpha_register_virtual_type): New function.
11397 (alpha_init_frame_pc_first): Ditto.
11398 (alpha_fix_call_dummy): Ditto.
11399 (alpha_store_struct_return): Ditto.
11400 (alpha_extract_struct_value_address): Ditto.
11401 * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
11402 alpha_register_virtual_type.
11403 (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
11404 (EXTRACT_STRUCT_VALUE_ADDRESS): Use
11405 alpha_extract_struct_value_address.
11406 (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
11407 (INIT_FRAME_PC): Use init_frame_pc_noop.
11408 (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
11409
11410 2002-01-19 Mark Kettenis <kettenis@gnu.org>
11411
11412 * i386gnu-nat.c: Include "i386-tdep.h".
11413 (fetch_fpregs): Simplify code dealing with uninitialized floating
11414 point states such that it doesn't require FP7_REGNUM.
11415
11416 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11417
11418 * alpha-tdep.c (frame_extra_info): New.
11419 (alpha_find_saved_regs): Make static. Use
11420 frame->extra_info.
11421 (alpha_frame_init_saved_regs): New function.
11422 (alpha_frame_saved_pc): Use frame->extra_info.
11423 (temp_saved_regs): Don't declare as struct frame_saved_regs.
11424 (heuristic_proc_desc): Adjust for temp_saved_regs changes.
11425 (init_extra_frame_info): Rename to...
11426 (alpha_init_extra_frame_info): ...this. Use frame->extra_info.
11427 (alpha_print_extra_frame_info): New function.
11428 (alpha_frame_locals_address): Ditto.
11429 (alpha_frame_args_address): Ditto.
11430 (alpha_pop_frame): Use frame->extra_info.
11431 * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
11432 alpha_frame_args_address.
11433 (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
11434 (alpha_find_saved_regs): Remove prototype.
11435 (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
11436 (EXTRA_FRAME_INFO): Remove.
11437 (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
11438 (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
11439
11440 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11441
11442 * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
11443 (alpha_cannot_fetch_register): Ditto.
11444 (alpha_cannot_store_register): Ditto.
11445 (alpha_register_convertible): Ditto.
11446 (alpha_use_struct_convention): Ditto.
11447 * config/alpha/tm-alpha.h: Update copyright years.
11448 (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
11449 (INNER_THAN): Use core_addr_lessthan.
11450 (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
11451 (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
11452 (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
11453 (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
11454 (FRAME_CHAIN): Remove unnecessary cast.
11455
11456 2002-01-18 Andrew Cagney <ac131313@redhat.com>
11457
11458 * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
11459 obsolete.
11460
11461 2002-01-18 Andrew Cagney <ac131313@redhat.com>
11462
11463 * infptrace.c: Remove ATTRIBUTE_UNUSED. Update copyright.
11464 * monitor.c, remote-array.c, remote-bug.c: Ditto.
11465 * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
11466 * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
11467 * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
11468 * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
11469 * x86-64-linux-nat.c: Ditto.
11470
11471 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11472
11473 * alpha-tdep.c (alpha_register_name): New function.
11474 * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
11475 (REGISTER_NAME): Define.
11476
11477 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11478
11479 * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
11480
11481 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11482
11483 * alpha-tdep.c: Update copyright years.
11484 (alpha_next_pc): New function.
11485 (alpha_software_single_step): Ditto.
11486 * config/alpha/tm-alpha.h: Add prototype for
11487 alpha_software_single_step.
11488
11489 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
11490
11491 * alphabsd-nat.c: Update copyright years.
11492 (fill_gregset): Use regcache_collect.
11493 (fill_fpregset): Likewise.
11494 (fetch_inferior_registers): Only fetch integer registers
11495 if requested to do so.
11496 (store_inferior_registers): Only store integer registers
11497 if requested to do so.
11498
11499 2002-01-17 Andrew Cagney <ac131313@redhat.com>
11500
11501 * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
11502 * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
11503 * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
11504 * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
11505 * config/alpha/fbsd.mh (XDEPFILES): Delete.
11506 * config/arm/linux.mh (XDEPFILES): Delete.
11507 * config/arm/nbsd.mh (XDEPFILES): Delete.
11508 * config/i386/i386dgux.mh (XDEPFILES): Delete.
11509 * config/i386/i386sol2.mh (XDEPFILES): Delete.
11510 * config/i386/i386m3.mh (XDEPFILES): Delete.
11511 (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
11512 * config/i386/i386gnu.mh (XDEPFILES): Delete.
11513 * config/i386/fbsd.mh (XDEPFILES): Delete.
11514 * config/i386/i386bsd.mh (XDEPFILES): Delete.
11515 * config/i386/i386sco5.mh (XDEPFILES): Delete.
11516 * config/i386/i386v4.mh (XDEPFILES): Delete.
11517 * config/i386/i386v42mp.mh (XDEPFILES): Delete.
11518 * config/i386/i386sco4.mh (XDEPFILES): Delete.
11519 * config/i386/i386aix.mh (XDEPFILES): Delete.
11520 * config/i386/go32.mh (XDEPFILES): Delete.
11521 * config/i386/cygwin.mh (XDEPFILES): Delete.
11522 * config/i386/i386lynx.mh (XDEPFILES): Delete.
11523 * config/i386/i386mach.mh (XDEPFILES): Delete.
11524 * config/i386/i386v32.mh (XDEPFILES): Delete.
11525 * config/i386/linux.mh (XDEPFILES): Delete.
11526 * config/i386/nbsdelf.mh (XDEPFILES): Delete.
11527 * config/i386/ncr3000.mh (XDEPFILES): Delete.
11528 * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
11529 * config/i386/i386sco.mh (XDEPFILES): Delete.
11530 * config/i386/i386v.mh (XDEPFILES): Delete.
11531 * config/i386/nbsd.mh (XDEPFILES): Delete.
11532 * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
11533 * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
11534 * config/i386/symmetry.mh (XDEPFILES): Delete.
11535 * config/i386/obsd.mh (XDEPFILES): Delete.
11536 * config/i386/x86-64linux.mh (XDEPFILES): Delete.
11537 * config/ia64/linux.mh (XDEPFILES): Delete.
11538 * config/ia64/aix.mh (XDEPFILES): Delete.
11539 * config/m68k/apollo68b.mh (XDEPFILES): Delete.
11540 * config/m68k/dpx2.mh (XDEPFILES): Delete.
11541 * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
11542 * config/m68k/apollo68v.mh (XDEPFILES): Delete.
11543 * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
11544 * config/m68k/linux.mh (XDEPFILES): Delete.
11545 * config/m68k/m68klynx.mh (XDEPFILES): Delete.
11546 * config/m68k/m68kv4.mh (XDEPFILES): Delete.
11547 * config/m68k/nbsd.mh (XDEPFILES): Delete.
11548 * config/m68k/sun2os3.mh (XDEPFILES): Delete.
11549 * config/m68k/sun2os4.mh (XDEPFILES): Delete.
11550 * config/m68k/sun3os3.mh (XDEPFILES): Delete.
11551 * config/m68k/sun3os4.mh (XDEPFILES): Delete.
11552 * config/m88k/delta88.mh (XDEPFILES): Delete.
11553 * config/m88k/delta88v4.mh (XDEPFILES): Delete.
11554 * config/m88k/m88k.mh (XDEPFILES): Delete.
11555 * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
11556 * config/mips/linux.mh (XDEPFILES): Delete.
11557 * config/mips/irix6.mh (XDEPFILES): Delete.
11558 * config/mips/irix5.mh (XDEPFILES): Delete.
11559 * config/mips/irix4.mh (XDEPFILES): Delete.
11560 * config/mips/irix3.mh (XDEPFILES): Delete.
11561 * config/mips/decstation.mh (XDEPFILES): Delete.
11562 * config/mips/mipsm3.mh (XDEPFILES): Delete.
11563 (NATDEPFILES): Move core-aout.o to here.
11564 * config/ns32k/nbsd.mh (XDEPFILES): Delete.
11565 * config/pa/hpux1020.mh (XDEPFILES): Delete.
11566 * config/pa/hppabsd.mh (XDEPFILES): Delete.
11567 * config/pa/hppahpux.mh (XDEPFILES): Delete.
11568 * config/pa/hpux11w.mh (XDEPFILES): Delete.
11569 * config/pa/hppaosf.mh (XDEPFILES): Delete.
11570 * config/pa/hpux11.mh (XDEPFILES): Delete.
11571 * config/powerpc/aix.mh (XDEPFILES): Delete.
11572 * config/powerpc/nbsd.mh (XDEPFILES): Delete.
11573 * config/powerpc/linux.mh (XDEPFILES): Delete.
11574 * config/romp/rtbsd.mh: Rename XDEPFILES.
11575 * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
11576 * config/rs6000/aix4.mh (XDEPFILES): Delete.
11577 * config/rs6000/rs6000.mh (XDEPFILES): Delete.
11578 * config/s390/s390.mh (XDEPFILES): Delete.
11579 * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
11580 * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
11581 * config/sparc/sun4os4.mh (XDEPFILES): Delete.
11582 * config/sparc/sparclynx.mh (XDEPFILES): Delete.
11583 * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
11584 * config/sparc/nbsd.mh (XDEPFILES): Delete.
11585 * config/sparc/linux.mh (XDEPFILES): Delete.
11586 * config/vax/vaxult.mh (XDEPFILES): Delete.
11587 * config/vax/vaxult2.mh (XDEPFILES): Delete.
11588 * Makefile.in (DEPFILES): Remove XDEPFILES.
11589
11590 2002-01-17 Andrew Cagney <ac131313@redhat.com>
11591
11592 * utils.c (internal_verror): Fix comments, default is yes not no.
11593 Update queries to match. Default to quit and dump core.
11594
11595 2002-01-17 Andrew Cagney <ac131313@redhat.com>
11596
11597 * breakpoint.c: Update assuming #if UI_OUT is always true. Update
11598 copyright.
11599 * defs.h, event-top.c, gdbcmd.h: Ditto.
11600 * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
11601 * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
11602 * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
11603 * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
11604 * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
11605 * mi/mi-main.c:Ditto.
11606
11607 * stack.c, symfile.c: Update copyright.
11608
11609 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
11610
11611 * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
11612 gdbserver/low-nbsd.c, gdbserver/low-sim.c,
11613 gdbserver/low-sparc.c, gdbserver/low-sun3.c,
11614 gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
11615
11616 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
11617
11618 * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
11619 * gdbserver/low-lynx.c (myattach): Likewise.
11620 * gdbserver/low-nbsd.c (myattach): Likewise.
11621 * gdbserver/low-sim.c (myattach): Likewise.
11622 * gdbserver/low-sparc.c (myattach): Likewise.
11623 * gdbserver/low-sun3.c (myattach): Likewise.
11624
11625 * gdbserver/low-linux.c (myattach): New function.
11626
11627 * gdbserver/server.c (attach_inferior): New function.
11628 (main): Handle "--attach".
11629
11630 2002-01-16 Andrew Cagney <ac131313@redhat.com>
11631
11632 * MAINTAINERS (language support): Daniel Jacobwitz is C++
11633 maintainer.
11634
11635 2002-01-15 Daniel Jacobowitz <drow@mvista.com>
11636
11637 * c-typeprint.c (is_type_conversion_operator): Add additional
11638 check for non-conversion operators.
11639
11640 2002-01-15 Michael Snyder <msnyder@redhat.com>
11641
11642 * linux-proc.c: Add "info proc" command, a la procfs.c.
11643 (read_mapping): New function, abstract and re-use code.
11644 (linux_find_memory_regions): Use new func read_mapping.
11645 (linux_info_proc_cmd): New function, implement "info proc".
11646 (_initialize_linux_proc): Add new command "info proc".
11647
11648 2002-01-15 Michael Snyder <msnyder@redhat.com>
11649
11650 * symfile.c (generic_load): Use bfd_map_over_sections method
11651 instead of manipulating bfd structure members directly.
11652 (add_section_size_callback): New function, bfd sections callback
11653 used by generic_load.
11654 (load_sections_callback): New function, bfd sections callback
11655 used by generic_load.
11656
11657 2002-01-15 Elena Zannoni <ezannoni@redhat.com>
11658
11659 [Based on work by Jim Blandy]
11660 * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
11661 (builtin_type_vec128): Export.
11662 * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
11663 types.
11664 (builtin_type_vec128): New builtin type for 128 bit vector
11665 registers.
11666 (build_gdbtypes): Initialize builtin_type_v16qi and
11667 builtin_type_v8hi. Create the vec128 register builtin type
11668 structure.
11669 (build_builtin_type_vec128): New function.
11670 (_initialize_gdbtypes): Register builtin_type_v16qi and
11671 builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
11672 * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
11673 AltiVec register to new builtin type.
11674
11675 2001-01-15 Daniel Jacobowitz <drow@mvista.com>
11676
11677 * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
11678 to make_cv_type.
11679
11680 2002-01-14 Andrew Cagney <ac131313@redhat.com>
11681
11682 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
11683 CLEAN_UP_REGISTER_VALUE.
11684 * regcache.c (supply_register): Update only call.
11685
11686 2002-01-14 Andrew Cagney <ac131313@redhat.com>
11687
11688 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
11689 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
11690 a29k-*-vxworks* targets as obsolete.
11691
11692 2002-01-14 Michael Snyder <msnyder@redhat.com>
11693
11694 * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
11695 until we can resolve portability issues.
11696 * gregset.h: Remove references to fpxregs.
11697 * gcore.c (gcore_command): Initialize note_sec to NULL.
11698
11699 2002-01-13 Andrew Cagney <ac131313@redhat.com>
11700
11701 * signals.c (target_signal_to_name): Rewrite. Only use
11702 signals[].name when in bounds and non-NULL.
11703
11704 2002-01-13 Andrew Cagney <ac131313@redhat.com>
11705
11706 From Petr Ledvina <ledvinap@kae.zcu.cz>:
11707 * signals.c (target_signal_to_name): Verify that SIG is within the
11708 bounds of the signals array.
11709
11710 2002-01-13 Andrew Cagney <ac131313@redhat.com>
11711
11712 * MAINTAINERS: Remove arm-coff and arm-pe from target list.
11713
11714 2002-01-13 Keith Seitz <keiths@redhat.com>
11715
11716 * stack.c (print_frame_info_base): Print the frame's pc
11717 only if when print_frame_info_listing_hook is not defined.
11718
11719 2002-01-13 Keith Seitz <keiths@redhat.com>
11720
11721 * varobj.c (varobj_set_value): Make sure that there were no
11722 errors evaluating the object before attempting to set its
11723 value.
11724 value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
11725 so this offset adjustment is no longer necessary.
11726 (create_child): Don't set the error flag if the child is
11727 a CPLUS_FAKE_CHILD.
11728 (value_of_child): If value_fetch_lazy fails, return NULL
11729 so that callers will be notified that an error occurred.
11730 (c_value_of_variable): Delay check of variable's validity
11731 until later. We actually want all structs and unions to have
11732 the value "{...}".
11733 Do not return "???" for variables which could not be evaluated.
11734 This error condition must be returned to the caller so that it
11735 can get the error condition from gdb.
11736 (cplus_name_of_child): Adjust index for vptr before figuring
11737 out the name of the child.
11738 (cplus_value_of_child): If a child's (real) parent is not valid,
11739 don't even bother trying to give a value for it. Just return
11740 an error. Change all instances in this function.
11741 (cplus_type_of_child): If our parent is one of the "fake"
11742 parents, we need to get at the type of the real parent, and
11743 derive the child's true type using this information.
11744
11745 2002-01-13 Andrew Cagney <ac131313@redhat.com>
11746
11747 From 2002-01-09 John Marshall <johnm@falch.net>:
11748 * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
11749 sources.redhat.com, and tweak some related URLs which had
11750 suffered from linkrot.
11751
11752 2002-01-13 Andrew Cagney <ac131313@redhat.com>
11753
11754 From Jeff law:
11755 * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
11756 structures passed in registers.
11757
11758 2002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
11759
11760 * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
11761 white space which prevented compilation. Reported by DSK
11762 <dsk@student.unsw.edu.au>.
11763
11764 2002-01-11 Michael Snyder <msnyder@redhat.com>
11765
11766 * symfile.c (build_section_addr_info_from_section_tab):
11767 Use bfd access method instead of manipulating bfd directly.
11768 (syms_from_objfile): Ditto.
11769 (simple_overlay_update_1): Ditto.
11770 (simple_overlay_update): Ditto.
11771 (generic_load): Ditto.
11772 (overlay_unmapped_address): FIXME comment, bfd access methods.
11773 (sections_overlap): FIXME comment, bfd access methods.
11774 (pc_in_mapped_range): FIXME comment, bfd access methods.
11775 (pc_in_unmapped_range): FIXME comment, bfd access methods.
11776 (section_is_mapped): FIXME comment, bfd access methods.
11777 (section_is_overlay): FIXME comment, bfd access methods.
11778
11779 * symfile.c (generic_load): Whitespace and long line cleanups.
11780 Remove duplicate variable, change several local variables to
11781 more appropriate data types.
11782 (print_transfer_performance): Use %lu instead of %ld for ulongs.
11783
11784 2002-01-12 Andrew Cagney <ac131313@redhat.com>
11785
11786 From Peter Schauer:
11787 * language.c (longest_local_hex_string_custom): Use phex_nz to
11788 convert NUM to a hex string.
11789
11790 2002-01-12 Elena Zannoni <ezannoni@redhat.com>
11791
11792 * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
11793 the function.
11794 Update Copyright year.
11795
11796 2002-01-12 Andrew Cagney <ac131313@redhat.com>
11797
11798 * language.c (longest_raw_hex_string): Delete unused function.
11799
11800 2002-01-11 Petr Sorfa <petrs@caldera.com>
11801
11802 * MAINTAINERS (write-after-approval): Add myself.
11803 * dwarf2read.c (read_tag_string_type): Handling of
11804 DW_AT_byte_size.
11805 (read_tag_string_type): FORTRAN fix to prevent propagation of
11806 first string size.
11807 (set_cu_language): Handling of DW_LANG_Fortran95
11808
11809 2002-01-11 Richard Earnshaw <rearnsha@arm.com>
11810
11811 * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
11812 GETPID(inferior_ptid).
11813 (store_inferior_registers): Likewise.
11814
11815 2002-01-10 Jason Merrill <jason@redhat.com>
11816
11817 * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
11818 Fix DW_OP_minus.
11819
11820 2002-01-10 Andrew Cagney <ac131313@redhat.com>
11821
11822 * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
11823 and bfd/elf32-sh-nbsd.c.
11824
11825 2002-01-10 Michael Snyder <msnyder@redhat.com>
11826
11827 * NEWS: Mention --pid and corefile/proc-id behavior change.
11828
11829 * Makefile.in: Add rules for gcore.o and linux-proc.o.
11830 * gcore.c: Include cli/cli-decode.h instead of command.h.
11831
11832 * main.c (captured_main): Add new command line option "--pid".
11833 If the second command line argument (following the symbol-file)
11834 begins with a digit, try to attach to it before trying to open
11835 it as a corefile.
11836 (print_gdb_help): Document the "--pid" argument.
11837
11838 2002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
11839
11840 * completer.c (command_completer): New function.
11841
11842 * completer.h <command_completer>: Add prototype.
11843
11844 * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
11845 completer for the "help" command.
11846
11847 2002-01-09 Jason Merrill <jason@redhat.com>
11848
11849 * c-typeprint.c (is_type_conversion_operator): Fix thinko.
11850
11851 2002-01-09 Michael Snyder <msnyder@redhat.com>
11852
11853 * i386-linux-nat.c (fill_fpxregset): Make global.
11854 (store_fpxregset): Ditto.
11855
11856 * gregset.h (gdb_fpxregset_t): Define.
11857 (supply_fpxregset): Prototype.
11858 (fill_fpxregset): Prototype.
11859
11860 * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
11861
11862 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
11863
11864 * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
11865 * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
11866 * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
11867
11868 2002-01-09 Andrew Cagney <ac131313@redhat.com>
11869
11870 * MAINTAINERS: Update target maintainer rules so that any
11871 Maintainer can approve a tested patch for a maintenance-only
11872 target.
11873
11874 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
11875
11876 * MAINTAINERS (write-after-approval): Add myself.
11877
11878 * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
11879 IN_SIGTRAMP.
11880
11881 2002-01-08 Michael Snyder <msnyder@redhat.com>
11882
11883 * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
11884 real name of the executable, rather than the /proc name.
11885
11886 2002-01-03 Michael Snyder <msnyder@redhat.com>
11887
11888 Implement a "generate-core-file" command in gdb, save target state.
11889 * gcore.c: New file. Implement new command 'generate-core-file'.
11890 Save a corefile image of the current state of the inferior.
11891 * linux-proc.c: Add linux-specific code for saving corefiles.
11892 * target.h (struct target_ops): Add new target vectors for saving
11893 corefiles; to_find_memory_regions and to_make_corefile_notes.
11894 (target_find_memory_regions): New macro.
11895 (target_make_corefile_notes): New macro.
11896 * target.c (update_current_target): Inherit new target methods.
11897 (dummy_find_memory_regions): New place-holder method.
11898 (dummy_make_corefile_notes): New place-holder method.
11899 (init_dummy_target): Initialize new dummy target vectors.
11900 * exec.c (exec_set_find_memory_regions): New function.
11901 Allow the exec_ops vector for memory regions to be taken over.
11902 (exec_make_note_section): New function, target vector method.
11903 * defs.h (exec_set_find_memory_regions): Export prototype.
11904 * procfs.c (proc_find_memory_regions): New function, corefile method.
11905 (procfs_make_note_section): New function, corefile method.
11906 (init_procfs_ops): Set new target vector pointers.
11907 (find_memory_regions_callback): New function.
11908 (procfs_do_thread_registers): New function.
11909 (procfs_corefile_thread_callback): New function.
11910 * sol-thread.c (sol_find_memory_regions): New function.
11911 (sol_make_note_section): New function.
11912 (init_sol_thread_ops): Initialize new target vectors.
11913 * inftarg.c (inftarg_set_find_memory_regions): New function.
11914 Allow to_find_memory_regions vector to be taken over.
11915 (inftarg_set_make_corefile_notes): New function.
11916 Allow to_make_corefile_notes vector to be taken over.
11917 * thread-db.c (thread_db_new_objfile): Don't activate thread-db
11918 interface layer if not target_has_execution (may be a corefile).
11919 * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
11920 * config/sparc/sun4sol2.mh: Ditto.
11921 * config/alpha/alpha-linux.mh: Ditto.
11922 * config/arm/linux.mh: Ditto.
11923 * config/i386/x86-64linux.mh: Ditto.
11924 * config/ia64/linux.mh: Ditto.
11925 * config/m68k/linux.mh: Ditto.
11926 * config/mips/linux.mh: Ditto.
11927 * config/powerpc/linux.mh: Ditto.
11928 * config/sparc/linux.mh: Ditto.
11929
11930 2002-01-07 Michael Snyder <msnyder@redhat.com>
11931
11932 * arm-linux-nat.c: Remove references to regcache.c internal data
11933 (registers[] and register_valid[]).
11934
11935 2002-01-07 Michael Snyder <msnyder@redhat.com>
11936
11937 * linux-proc.c: New file. Implement child_pid_to_exec_file,
11938 so that attaching to a pid will automatically read the process's
11939 symbol file and shlibs.
11940 * Makefile.in: Add rule for linux-proc.o.
11941 * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
11942 * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
11943 * config/arm/linux.mh: Ditto.
11944 * config/i386/linux.mh: Ditto.
11945 * config/i386/x86-64linux.mh: Ditto.
11946 * config/ia64/linux.mh: Ditto.
11947 * config/m68k/linux.mh: Ditto.
11948 * config/mips/linux.mh: Ditto.
11949 * config/powerpc/linux.mh: Ditto.
11950 * config/sparc/linux.mh: Ditto.
11951
11952 2002-01-06 Pierre Muller <muller@ics.u-strasbg.fr>
11953
11954 * win32-nat.c: Add i386-tdep.h dependency.
11955
11956 2002-01-07 Michael Snyder <msnyder@redhat.com>
11957
11958 * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
11959 instead of bfd_get_arch_size. Don't bail out just because
11960 there's no exec_bfd.
11961
11962 * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
11963 * p-valprint.c (pascal_object_print_value): Ditto.
11964 * somread.c (som_symtab_read): Ditto.
11965 * symfile.c (simple_free_overlay_region_table): Ditto.
11966 * valops.c (value_assign): Ditto.
11967
11968 * tracepoint.c (tracepoint_save_command): From Klee Dienes --
11969 use tilde_expand and strerror for opening save-tracepoints file.
11970
11971 * thread-db.c (thread_db_new_objfile): Indendation fix.
11972
11973 * infptrace.c (GDB_MAX_ALLOCA): New define.
11974 (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
11975 size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
11976 can be overridden with whatever value is appropriate to the host).
11977 * infttrace.c (child_xfer_memory): Add FIXME warning about use of
11978 alloca to allocate potentially large buffer.
11979 * rs6000-nat.c (child_xfer_memory): Ditto.
11980 * symm-nat.c (child_xfer_memory): Ditto.
11981 * x86-64-linux-nat.c (child_xfer_memory): Ditto.
11982
11983 2002-01-07 Jackie Smith Cashion <jsmith@redhat.com>
11984
11985 From Nick Clifton <nickc@redhat.com>
11986 * d10v-tdep.c: Set STACK_START to 0x200bffe.
11987
11988 2002-01-07 Michael Snyder <msnyder@redhat.com>
11989
11990 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
11991 Don't use exec_bfd if it's NULL.
11992
11993 2002-01-06 Mark Kettenis <kettenis@gnu.org>
11994
11995 * valops.c (value_arg_coerce): Fix formatting.
11996
11997 2002-01-06 Andrew Cagney <ac131313@redhat.com>
11998
11999 * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
12000 * gnu-nat.c: Ditto.
12001
12002 2002-01-06 Andrew Cagney <ac131313@redhat.com>
12003
12004 * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
12005 arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
12006 i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
12007 ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
12008 z8k-coff have not been multi-arched. Update z8k-coff build
12009 status.
12010
12011 2002-01-06 Andrew Cagney <ac131313@redhat.com>
12012
12013 * MAINTAINERS: Mark a29k target as obsolete.
12014 * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
12015 (remote-mm.o, remote-udi.o): Obsolete. Remove references in
12016 comments.
12017 * NEWS: Note that a29k targets are obsolete.
12018 * a29k-tdep.c: Mark as obsolete.
12019 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
12020 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
12021 a29k-*-vxworks* targets as obsolete.
12022 * remote-adapt.c: Obsolete.
12023 * remote-eb.c: Obsolete.
12024 * remote-mm.c: Obsolete.
12025 * remote-udi.c: Obsolete.
12026 * config/a29k/a29k-udi.mt: Obsolete.
12027 * config/a29k/a29k.mt: Obsolete.
12028 * config/a29k/tm-a29k.h: Obsolete.
12029 * config/a29k/tm-vx29k.h: Obsolete.
12030 * config/a29k/vx29k.mt: Obsolete.
12031
12032 2002-01-05 Andrew Cagney <ac131313@redhat.com>
12033
12034 * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
12035 with BFD_ENDIAN_BIG.
12036
12037 2002-01-05 Andrew Cagney <ac131313@redhat.com>
12038
12039 * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
12040 * configure, config.in: Re-generate.
12041 * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
12042 * defs.h: Do not include <endian.h>.
12043
12044 2002-01-05 Jason Thorpe <thorpej@wasabisystems.com>
12045
12046 * acconfig.h (HAVE_PT_GETXMMREGS): New.
12047 * config.in: Regenerate.
12048 * configure.in: Update copyright years.
12049 Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
12050 * configure: Regenerate.
12051 * i386bsd-nat.c: Update copyright years.
12052 (fill_gregset): Use regcache_collect.
12053 (fetch_inferior_registers): Only fetch integer registers
12054 if requested to do so. Add support for XMM registers
12055 using PT_GETXMMREGS.
12056 (store_inferior_registers): Only store integer registers
12057 if requested to do so. Add support for XMM registers
12058 using PT_SETXMMREGS.
12059 * i386nbsd-nat.c (fetch_inferior_registers): Remove.
12060 (store_inferior_registers): Remove.
12061 (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
12062 (fetch_elfcore_registers): New function.
12063 (i386nbsd_elfcore_fns): New.
12064 (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
12065 * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
12066 i386bsd-nat.o.
12067 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
12068 * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
12069 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
12070 * config/i386/tm-nbsd.h: Update copyright years.
12071 (HAVE_SSE_REGS): Define.
12072 (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
12073 (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
12074 (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
12075 (SIGCONTEXT_PC_OFFSET): Remove.
12076 (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
12077
12078 2002-01-05 Andrew Cagney <ac131313@redhat.com>
12079
12080 * configure.tgt: Remove powerpc-*-macos* target.
12081 * config/m68k/xm-mpw.h: Delete file.
12082 * config/xm-mpw.h: Delete file.
12083 * ser-mac.c: Delete file.
12084 * mpw-make.sed: Delete file.
12085 * mpw-config.in: Delete file.
12086 * mac-xdep.c: Delete file.
12087 * mac-gdb.r: Delete file.
12088 * mac-defs.h: Delete file.
12089 * mac-nat.c: Delete file.
12090 * config/powerpc/macos.mh: Delete file.
12091 * config/powerpc/macos.mt: Delete file.
12092 * config/powerpc/nm-macos.h: Delete file.
12093 * config/powerpc/tm-macos.h: Delete file.
12094 * source.c (openp, open_source_file): Remove obsolete code.
12095 * top.c (gdb_readline): Ditto.
12096 * utils.c (query): Ditto.
12097 * event-top.c (display_gdb_prompt): Ditto.
12098 * Makefile.in (ser-mac.o): Delete obsolete target.
12099 * NEWS: Update.
12100
12101 2002-01-04 Andrew Cagney <ac131313@redhat.com>
12102
12103 * defs.h (BIG_ENDIAN): Delete macro definition.
12104 * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
12105 coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
12106 findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
12107 printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
12108 remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
12109 stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
12110 config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
12111 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
12112 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
12113 config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
12114 config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
12115 config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
12116 mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
12117 * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
12118 * gdbarch.c: Re-generate.
12119
12120 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
12121
12122 * thread-db.c (thread_db_new_objfile): Do not enable thread_db
12123 for core files.
12124
12125 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
12126
12127 * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
12128
12129 2002-01-04 Andrew Cagney <ac131313@redhat.com>
12130
12131 * value.h (value_ptr): Delete typedef.
12132
12133 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
12134
12135 * i386nbsd-nat.c: Update copyright years.
12136 Include i386-tdep.h.
12137
12138 2002-01-04 Elena Zannoni <ezannoni@redhat.com>
12139
12140 * stabsread.c: Update copyright years.
12141
12142 From Debashis Mahata <debashis.mahata@wipro.com>:
12143 (read_struct_fields): Deal with Sun C compiler erroneous stab
12144 output for structs and unions.
12145 Fix PR gdb/269.
12146
12147 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
12148
12149 * p-valprint.c: Include "cp-abi.h" for baseclass_offset
12150 prototype.
12151
12152 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
12153
12154 * cp-abi.c: Fix whitespace.
12155 (baseclass_offset): New wrapper function.
12156 * cp-abi.h (baseclass_offset): Add prototype.
12157 (struct cp_abi_ops): Add baseclass_offset pointer.
12158
12159 * valops.c (vb_match): Move to...
12160 * gnu-v2-abi.c (vb_match): here.
12161 * valops.c (baseclass_offset): Move to...
12162 * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
12163
12164 * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
12165
12166 * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
12167 * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
12168 * hpacc-abi.c (init_hpacc_ops): Likewise.
12169
12170 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
12171
12172 * valops.c (find_overload_match): Accept obj as a
12173 reference parameter. Update it before returning.
12174 * value.h (find_overload_match): Update prototype.
12175 * eval.c (evaluate_subexp_standard): Pass object to
12176 find_overload_match by reference.
12177
12178 2002-01-03 Andrew Cagney <ac131313@redhat.com>
12179
12180 * valarith.c: Replace value_ptr with struct value pointer. Remove
12181 register attribute from value declarations.
12182 * valops.c: Ditto.
12183 * value.h: Ditto.
12184 * scm-lang.c (scm_lookup_name): Ditto.
12185
12186 2002-01-03 Michael Snyder <msnyder@redhat.com>
12187
12188 Abstract the functionality of iterating over mapped memory
12189 regions into a general purpose iterator function.
12190 * procfs.c (iterate_over_mappings): New function, general purpose
12191 iterator for memory sections.
12192 (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
12193 (solib_mappings_callback): New function, callback for above.
12194 (info_proc_mappings): Reimpliment using iterate_over_mappings.
12195 (info_mappings_callback): New function, callback for above.
12196
12197 * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
12198
12199 2002-01-01 Mark Kettenis <kettenis@gnu.org>
12200
12201 * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
12202 * i386-tdep.c: Include "elf-bfd.h".
12203 (process_note_abi_tag_sections): New function.
12204 (i386_gdbarch_init): Add code to recognize various OS/ABI
12205 combinations.
12206
12207 * maint.c (_initialize_maint_cmds): Add missing \ in
12208 string-literal.
12209
12210 For older changes see ChangeLog-2001
12211 \f
12212 Local Variables:
12213 mode: change-log
12214 left-margin: 8
12215 fill-column: 74
12216 version-control: never
12217 End: