f3cd1c4ebaf7f2e4f2111c3e70595f6e21fcfc6d
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2002-09-19 Joel Brobecker <brobecker@gnat.com>
2
3 * ada-exp.y: Add missing semicolons to end rules. Fixes a
4 bison 1.35 warning.
5
6 2002-09-19 Richard Earnshaw <rearnsha@arm.com>
7
8 * gdb_mbuild.sh: New file.
9
10 2002-09-19 Andrew Cagney <ac131313@redhat.com>
11
12 * objc-exp.y, objc-lang.h, objc-lang.c: Fix copyright notice.
13
14 2002-09-18 Andrew Cagney <ac131313@redhat.com>
15
16 * breakpoint.c, c-exp.y, defs.h, elfread.c, expression.h,
17 jv-exp.y, language.c, language.h, p-exp.y, parse.c, parser-defs.h,
18 printcmd.c, source.c, stabsread.c, symfile.c, symtab.h, utils.c,
19 valops.c, value.h: Revert previous change.
20
21 2002-09-18 Michael Snyder <msnyder@redhat.com>
22
23 Preliminary support for Objective-C:
24 * defs.h (language_objc): New enum value.
25 (puts_filtered_tabular): Declaration only, exported from utils.c.
26 (skip_quoted): Delete, declared in completer.h.
27 * c-exp.y: Include completer.h.
28 * p-exp.y: Ditto.
29 * jv-exp.y: Ditto.
30 * expression.h (OP_MSGCALL, OP_SELECTOR, OP_SELF, OP_NSSTRING):
31 New operator enum values.
32 * language.h (CAST_IS_CONVERSION): Test for language_objc.
33 * language.c (binop_result_type): Handle language_objc case.
34 (integral_type, character_type, string_type, boolean_type,
35 structured_type, binop_type_check): Ditto.
36 * symtab.h (SYMBOL_OBJC_DEMANGLED_NAME): Define.
37 (struct objc_specific): Add to general_symbol_info.
38 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Add objc initialization.
39 (SYMBOL_DEMANGLED_NAME): Handle objc case.
40 * parser-defs.h (struct objc_class_str): New struct type.
41 (start_msglist, end_msglist, add_msglist): Declaration only,
42 exported from objc-lang.c.
43 * value.h (value_of_local, value_nsstring,
44 call_function_by_hand_expecting_type): Exported from valops.c.
45 * valops.c (find_function_addr): Export.
46 (call_function_by_hand_expecting_type): New function.
47 (value_of_local): New function.
48 * symfile.c (init_filename_language_table): Add ".m" extension
49 for Objective-C.
50 * utils.c (puts_filtered_tabular): New function.
51 (fprintf_symbol_filtered): Add objc demangling support (disabled).
52 (set/show demangle): Extend help-string to refer to ObjC.
53 * elfread.c (elf_symtab_read): Skip Objective-C special symbols.
54 * stabsread.c (symbol_reference_defined): Objective-C symbols
55 may contain colons: make allowances when scanning stabs strings
56 for colons.
57 (objc_find_colon): New function.
58 * printcmd.c (address_info): If language == objc then print
59 "self" instead of "this".
60 * parse.c (length_of_subexp): Handle new operators OP_MSGCALL,
61 OP_NSSTRING, and OP_SELF.
62 (prefixify_subexp): Ditto.
63 * source.c (print_source_lines): Mention objc in comment.
64 * breakpoint.c (parse_breakpoint_sals): Recognize Objective-C
65 method names.
66
67 2002-09-18 Andrew Cagney <ac131313@redhat.com>
68
69 * complaints.h: Update copyright.
70 (struct complaints): Declare.
71 (struct complaint): Make `message' constant.
72 (internal_complaint): Declare.
73 (complaint): Declare.
74 (complaint_root): Delete declaration.
75 (symfile_complaints): Delete declaration.
76 (struct complaints): Add opaque declaration.
77 (clear_complaints): Add a complaints parameter.
78 * complaints.c: Update copyright.
79 (enum complaint_series): Define.
80 (complaint_root): Delete.
81 (struct complaints): Define.
82 (complaint_sentinel, symfile_complaint_book): New variables.
83 (symfile_explanations, symfile_complaints): New variables.
84 New variables.
85 (get_complaints): New function.
86 (vcomplaint): New function.
87 (complaint): New function.
88 (internal_complaint): New function.
89 (complain): Call vcomplain with symfile_complaint.
90 (clear_complaints): Rewrite.
91 (_initialize_complaints): Use add_setshow_command.
92 * Makefile.in (complaints.o): Update dependencies.
93 * symfile.c (syms_from_objfile): Add symfile_complaints parameter
94 to call to clear_complaints.
95 (new_symfile_objfile, reread_symbols): Ditto.
96 (oldsyms_complaint): Delete.
97 (empty_symtab_complaint, unknown_option_complaint): Delete.
98 (free_named_symtabs): Use complaint instead of complain.
99
100 2002-09-18 Michael Snyder <msnyder@redhat.com>
101
102 Contributed by Apple Computer, Inc. Merged with current sources
103 by Adam Fedor <fedor@doc.com> [cagney].
104
105 * objc-lang.c: First clean-up round: comments, indentation.
106 * objc-lang.h: Ditto.
107 * objc-lang.y: Ditto.
108
109 2002-09-18 Andrew Cagney <ac131313@redhat.com>
110
111 * maint.c (maintenance_internal_error): Print the parameter as the
112 error message.
113 (maintenance_internal_warning): New function.
114 (_initialize_maint_cmds): Add command `maint internal-warning'.
115
116 * defs.h (internal_warning, internal_vwarning): Declare.
117 * utils.c (struct internal_problem): Define.
118 (internal_vproblem): New function.
119 (internal_warning): New function.
120 (internal_vwarning): New function.
121 (internal_warning_problem, internal_error_problem): New variables.
122 (internal_verror): Just call internal_vproblem.
123
124 2002-09-18 Michael Snyder <msnyder@redhat.com>
125
126 * objc-lang.c: New file, support for Objective-C.
127 Preliminary check-in, not yet integrated into gdb.
128 * objc-lang.h: New file.
129 * objc-exp.y: New file.
130
131 2002-09-18 Andrew Cagney <ac131313@redhat.com>
132
133 * infrun.c (signal_stop_update): Convert definition to ISO C.
134 (signal_print_update): Ditto.
135 (signal_pass_update): Ditto.
136 * inflow.c (terminal_save_ours): Ditto.
137
138 * h8300-tdep.c (h8300_gdbarch_init): Use C instead of C++
139 comments.
140
141 * config/djgpp/fnchange.lst: Handle name clashes between
142 bfd/coff-tic30.c, bfd/coff-tic4x.c, bfd/coff-tic54x.c and
143 bfd/coff-tic80.c.
144
145 * i386-linux-tdep.h: Fix tipo.
146
147 2002-09-18 Adam Fedor <fedor@gnu.org>
148
149 * MAINTAINERS: Add myself to the Write After Approval list.
150
151 2002-09-18 Jim Blandy <jimb@redhat.com>
152
153 * dbxread.c, mdebugread.c: Revert my change of 2001-10-23. Moving
154 texthigh and textlow to reader-specific structs caused
155 objfile_relocate to miss them. This is fixable, but the work that
156 the change was supposed to prepare GDB for never got done anyway.
157
158 2002-09-18 David Carlton <carlton@math.stanford.edu>
159
160 * MAINTAINERS: Alphabetize Write After Approval list.
161
162 2002-09-18 Daniel Jacobowitz <drow@mvista.com>
163
164 Fix PR gdb/709
165 * values.c (value_static_field): Call read_var_value.
166
167 2002-09-18 Andrew Cagney <ac131313@redhat.com>
168
169 * valops.c (hand_function_call): Align the initial stack pointer
170 and STRUCT_ADDR using frame_align. When STRUCT_RETURN and
171 FRAME_ALIGN_P, use STRUCT_ADDR to obtain the called function's
172 return value.
173 * mips-tdep.c (mips_frame_align): New function.
174 (mips_gdbarch_init): Set frame_align.
175 * gdbarch.sh (FRAME_ALIGN): New method.
176 * gdbarch.h, gdbarch.c: Re-generate.
177
178 2002-09-18 Michal Ludvig <mludvig@suse.cz>
179
180 * x86-64-linux-nat.c (x86_64_regmap): Added CS and SS
181 registers.
182
183 2002-09-17 Andrew Cagney <ac131313@redhat.com>
184
185 * NEWS: Mention that MIPS $fp behavior changed.
186 * mipsnbsd-tdep.c (mipsnbsd_cannot_fetch_register): Delete
187 reference to FP_REGNUM.
188 (mipsnbsd_cannot_store_register): Ditto.
189 * mips-linux-nat.c: Update copyright.
190 (mips_linux_cannot_fetch_register): Delete reference to FP_REGNUM.
191 (mips_linux_cannot_store_register): Ditto.
192 * mips-linux-tdep.c (supply_gregset): Ditto. Update copyright.
193 * config/mips/tm-mips.h: Update copyright.
194 (FP_REGNUM): Delete macro.
195 (MIPS_REGISTER_NAMES): Replace "fp" with "".
196 * config/mips/tm-irix6.h (FP_REGNUM): Delete macro.
197 * mips-tdep.c (mips_gdbarch_init): Set read_fp to mips_read_sp.
198 (mips_r3041_reg_names, mips_r3051_reg_names)
199 (mips_r3081_reg_names): Replace "fp" with "".
200 Fix PR gdb/480.
201
202 2002-09-17 Theodore A. Roth <troth@verinet.com>
203
204 * gdb/avr-tdep.c(avr_scan_prologue): Fix bad call to
205 generic_read_register_dummy() (PR gdb/703).
206 (avr_push_return_address): #if 0 out unused vars.
207 (avr_gdbarch_init): Enable use of avr_push_return_address().
208
209 2002-09-17 Michael Snyder <msnyder@redhat.com>
210
211 * m32r-stub.c (restore_and_return): Postpone restoring of PSW.
212 RTE will take care of it.
213
214 2002-09-17 Andrew Cagney <ac131313@redhat.com>
215
216 * arch-utils.c (legacy_virtual_frame_pointer): If FP_REGNUM is
217 invalid, return SP_REGNUM.
218
219 2002-09-17 Michael Snyder <msnyder@redhat.com>
220
221 * mips-tdep.c (mips_pop_frame): Read saved values of floating
222 point registers without sign extension.
223
224 2002-09-17 Andrew Cagney <cagney@redhat.com>
225
226 * blockframe.c (deprecated_read_register_dummy): Rename
227 generic_read_register_dummy.
228 * frame.c (frame_unwind_signed_register): New function.
229 (frame_unwind_unsigned_register): New function.
230 * frame.h (frame_unwind_signed_register): Declare.
231 (frame_unwind_unsigned_register): Declare.
232 (deprecated_read_register_dummy): Rename
233 generic_read_register_dummy.
234
235 * h8300-tdep.c (h8300_frame_chain): Update.
236 (h8300_frame_saved_pc): Update.
237 * xstormy16-tdep.c (xstormy16_frame_saved_pc): Update.
238 * rs6000-tdep.c (rs6000_frame_saved_pc): Update.
239 * s390-tdep.c (s390_frame_saved_pc_nofix): Update.
240 (s390_frame_chain): Update.
241 * v850-tdep.c (v850_find_callers_reg): Update.
242 (v850_frame_saved_pc): Update.
243 * m32r-tdep.c (m32r_init_extra_frame_info): Update.
244 (m32r_find_callers_reg): Update.
245 (m32r_frame_saved_pc): Update.
246 * sh-tdep.c (sh_find_callers_reg): Update.
247 (sh64_get_saved_pr): Update.
248 (sh_init_extra_frame_info): Update.
249 (sh_init_extra_frame_info): Update.
250 (sh64_init_extra_frame_info): Update.
251 (sh64_init_extra_frame_info): Update.
252 * mcore-tdep.c (mcore_find_callers_reg): Update.
253 (mcore_frame_saved_pc): Update.
254 (mcore_init_extra_frame_info): Update.
255 * i386-tdep.c (i386_frame_saved_pc): Update.
256 * ia64-tdep.c (ia64_frame_saved_pc): Update.
257 (ia64_init_extra_frame_info): Update.
258 (ia64_init_extra_frame_info): Update.
259 * d10v-tdep.c (d10v_frame_saved_pc): Update.
260 * cris-tdep.c (cris_init_extra_frame_info): Update.
261 * avr-tdep.c (avr_frame_chain): Update.
262 (avr_init_extra_frame_info): Update.
263 (avr_frame_saved_pc): Update.
264 * arm-tdep.c (arm_find_callers_reg): Update.
265 (arm_init_extra_frame_info): Update.
266 (arm_frame_saved_pc): Update.
267
268 2002-09-17 Tom Tromey <tromey@redhat.com>
269
270 * c-lang.c (c_emit_char): Don't treat \0 specially unless quoter
271 is "'".
272
273 2002-09-17 Corinna Vinschen <vinschen@redhat.com>
274
275 * MAINTAINERS: Remove "non multi-arched" text from h8300.
276 * h8300-tdep.c (h8300_next_prologue_insn) Renamed from
277 NEXT_PROLOGUE_INSN.
278 (h8300_examine_prologue): Call h8300_next_prologue_insn instead of
279 NEXT_PROLOGUE_INSN.
280
281 2002-09-16 Joel Brobecker <brobecker@gnat.com>
282
283 * osfsolib.c: Remove file, replaced by solib-osf.c.
284 * Makefile.in: Remove compilation rules for osfsolib.c.
285
286 2002-09-16 David Carlton <carlton@math.stanford.edu>
287
288 * cp-valprint.c (cp_print_class_method): Correct args to
289 check_stub_method_group.
290
291 2002-09-16 Corinna Vinschen <vinschen@redhat.com>
292
293 * h8300-tdep.c: Multiarch. Drop `set machine' command in favor of
294 `set architecture'. Unify naming convention of functions.
295 (h8300_skip_prologue): Improve prologue analysis.
296 (h8300_push_arguments): Rewritten to more closely match GCC's
297 bizarre argument-passing behavior, along with the comment describing
298 said behavior.
299 * remote-hms.c (hms_regnames): Don't use NUM_REGS in definition.
300 * config/h8300/tm-h8300.h: Multiarch. Just keep stuff needed by
301 sim, remote-e7000.c, remote-hms.c and remote.c
302
303 2002-09-15 Mark Kettenis <kettenis@gnu.org>
304
305 * i386-tdep.c (gdb_print_insn_i386): Removed.
306 (i386_print_insn): New function.
307 (i386_gdbarch_init): Set print_insn to i386_print_insns.
308 (_initialize_i386_tdep): Don't initialize tm_print_insn and
309 tm_print_insn_info.
310
311 2002-09-14 Mark Kettenis <kettenis@gnu.org>
312
313 * gdbtypes.c (check_stub_method_group): Initialize found_stub to
314 zero.
315
316 2002-09-14 Corinna Vinschen <vinschen@redhat.com>
317
318 * arch-utils.c (legacy_pc_in_sigtramp): Move preprocessor expression
319 for IN_SIGTRAMP to here. Use IN_SIGTRAMP only if it's defined.
320 Guard usage of SIGTRAMP_START() by using SIGTRAMP_START_P.
321
322 2002-09-13 Christopher Faylor <cgf@redhat.com>
323
324 * win32-nat.c (child_create_inferior): Honor 'tty' command.
325
326 2002-09-13 Daniel Jacobowitz <drow@mvista.com>
327
328 * gdbtypes.c (check_stub_method): Make static.
329 (check_stub_method_group): New function.
330 * gdbtypes.h: Update prototypes.
331 * cp-support.c: New file.
332 * cp-support.h: New file.
333
334 * stabsread.c: Include "cp-abi.h" and "cp-support.h".
335 (update_method_name_from_physname): New function.
336 (read_member_functions): Correct method names for operators
337 and v3 constructors/destructors. Separate v2 constructors and
338 destructors.
339 * Makefile.in (stabsread.o): Update dependencies.
340 (SFILES): Add cp-support.c.
341 (COMMON_OBS): Add cp-support.o.
342 (cp_support_h, cp-support.o): Add.
343
344 * cp-valprint.c (cp_print_class_method): Call
345 check_stub_method_group instead of check_stub_method. Remove
346 extraneous QUITs.
347 * p-valprint.c (pascal_object_print_class_method): Likewise.
348 * valops.c (search_struct_method): Likewise.
349 (find_method_list, value_struct_elt_for_reference): Likewise.
350
351 2002-09-13 Andrew Cagney <cagney@redhat.com>
352
353 * gdbarch.sh (SIGTRAMP_END): Change to a predicate function.
354 * gdbarch.h, gdbarch.c: Regenerate.
355
356 2002-09-13 Andrew Cagney <ac131313@redhat.com>
357
358 * frame.c (find_saved_register): Delete function.
359 * frame.h (find_saved_register): Delete declaration.
360 Fix PR gdb/631.
361
362 Fri Sep 13 14:59:55 2002 Andrew Cagney <cagney@redhat.com>
363
364 * mips-tdep.c (read_next_frame_reg): Re-hack using
365 frame_register_unwind.
366
367 Fri Sep 13 07:42:09 2002 Andrew Cagney <cagney@redhat.com>
368
369 * mips-tdep.c (mips_get_saved_register): Re-hack using
370 frame_register_unwind.
371
372 2002-09-12 Joel Brobecker <brobecker@gnat.com>
373
374 * gdbarch.sh (NAME_OF_MALLOC): New variable in the architecture
375 vector. Will be useful for Interix.
376 * gdbarch.h, gdbarch.c: Regenerate.
377
378 * valops.c (value_allocate_space_in_inferior): Replace hard-coded
379 name of the malloc function by NAME_OF_MALLOC.
380
381 2002-09-12 Joel Brobecker <brobecker@gnat.com>
382
383 * value.h (find_function_in_inferior): Add const keyword to
384 one of the parameters. Allows us to invoke this function with
385 a const char *.
386 * valops.c (find_function_in_inferior): Likewise.
387
388 2002-09-12 Joel Brobecker <brobecker@gnat.com>
389
390 * exec.c (xfer_memory): Fix compilation warning with old versions
391 of GCC.
392 * tracepoint.c (trace_find_tracepoint_command): Likewise.
393
394 2002-09-12 David Carlton <carlton@math.stanford.edu>
395
396 * symtab.h: Run through gdb_indent.h.
397 Add 2002 to Copyright year list.
398
399 2002-09-12 Alan Modra <amodra@bigpond.net.au>
400
401 * x86-64-tdep.c (_initialize_x86_64_tdep): Don't use hard-coded
402 mach constants.
403 * MAINTAINERS: Add myself to write after approval list.
404
405 2002-09-11 J. Brobecker <brobecker@gnat.com>
406
407 * osabi.c (gdb_osabi_name): Add entry for GDB_OSABI_INTERIX.
408
409 2002-09-11 J. Brobecker <brobecker@gnat.com>
410
411 * osabi.h (gdb_osabi): Add new GDB_OSABI_INTERIX enum value for
412 Interix.
413
414 2002-06-05 Paul N. Hilfinger <hilfingr@otisco.mckusick.com>
415
416 * procfs.c (do_detach): Clear current signal, not just fault.
417 Corrects problem with breakpoint trap signal leaking to detached
418 process on Tru64.
419
420 2002-09-10 Michael Snyder <msnyder@redhat.com>
421
422 * buildsym.c (finish_block): Protect against null pointer.
423
424 2002-09-10 Andrew Cagney <cagney@redhat.com>
425
426 * infcmd.c (default_print_registers_info): Send all output to
427 ``file'' instead of ``gdb_stdout''.
428
429 2002-09-10 Michael Snyder <msnyder@redhat.com>
430
431 * mips-tdep.c (mips_extract_struct_value_address): Make val a
432 LONGEST, and use signed register read (addresses are sign-
433 extended for mips).
434
435 2002-09-10 Stephane Carrez <stcarrez@nerim.fr>
436
437 * event-loop.c (gdb_do_one_event): Make public.
438 * event-loop.h (gdb_do_one_event): Declare.
439
440 2002-09-10 Jeff Law <law@redhat.com>
441
442 * infttrace.c (child_resume): Simplify and rework to avoid
443 TT_PROC_CONTINUE.
444
445 2002-09-09 Fred Fish <fnf@intrinsity.com>
446
447 * printcmd.c (print_scalar_formatted): "len" is the number of
448 target bytes, NOT the number of target bits.
449
450 2002-09-09 Elena Zannoni <ezannoni@redhat.com>
451
452 From: Emmanuel Thome' <thome@lix.polytechnique.fr>
453 * top.c (init_main): Set rl_terminal_name.
454
455 2002-09-08 Aidan Skinner <aidan@velvet.net>
456
457 * ada-lang.c (ada_array_bound, ada_type_match,
458 _initialize_ada_language): Fix K&R definitions.
459 * ada-tasks.c (get_current_task): Fix K&R definitions.
460 * ada-valprint.c (adjust_type_signedness): Fix K&R definitions.
461
462 2002-09-07 Christopher Faylor <cgf@redhat.com>
463
464 * MAINTAINERS: Remove CE from list of maintainership responsibilities.
465 Add XP.
466
467 2002-09-06 Mark Kettenis <kettenis@gnu.org>
468
469 * i386-tdep.c (i386_register_virtual_type,
470 i386_register_convertible, i386_register_convert_to_virtual,
471 i386_register_comvert_to_raw): Use FP_REGNUM_P and SSE_REGNUM_P
472 instead of IS_FP_REGNUM and IS_SSE_REGNUM.
473 (i386_gdbarch_init): Fix comment. Add comments on calls that set
474 sp_regnum, fp_regnum, pc_regnum, ps_regnum and fp0_regnum.
475 Don't set push_arguments twice.
476
477 * i386bsd-tdep.c (i386bsd_init_abi): Set sigtramp_start and
478 sigtramp_end to i386bsd_sigtramp_start and i386bsd_sigtramp_end.
479 * i386nbsd-tdep.c (i386nbsd_init_abi): Set sigtramp_start and
480 sigtramp_end to NULL.
481 * config/i386/tm-fbsd.h (SIGTRAMP_START, SIGTRAMP_END): Remove
482 defines.
483 (i386bsd_sigtramp_start, i386_sigtramp_end): Remove prototypes.
484
485 * i386nbsd-tdep.c (i386nbsd_pc_in_sigtramp): Remove spurious
486 whitespace.
487
488 * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): New methods.
489 * gdbarch.h, gdbarch.c: Re-generate.
490 * blockframe.c (find_pc_sect_partial_function): Convert to use
491 SIGTRAMP_START_P predicate.
492
493 2002-09-05 Michael Snyder <msnyder@redhat.com>
494
495 * arm-tdep.c (arm_init_extra_frame_info): Distinguish between
496 generic_dummy_frame method and old method. Also distinguish
497 between ARM_FP_REGNUM and THUMB_FP_REGNUM.
498 (arm_extract_return_value): Use new regcache method.
499
500 * mips-tdep.c (mips_n32n64_push_arguments): Remove alignment
501 adjustment that doesn't conform to the ABI.
502 (mips_extract_struct_value_address): Retrieve V0_REGNUM from
503 saved regcache, not from current regcache.
504
505 2002-09-05 Andrew Cagney <ac131313@redhat.com>
506
507 * NEWS: Update for 5.3. Add new section ``Changes since 5.3''.
508 * README: Update.
509
510 2002-09-04 Jason Thorpe <thorpej@wasabisystems.com>
511
512 * arm-tdep.c (arm_addr_bits_remove): Don't check for Thumb mode
513 if arm_apcs_32 is false.
514
515 2002-09-04 Andrew Cagney <ac131313@redhat.com>
516
517 GDB 5.3 branch created.
518
519 2002-09-03 Theodore A. Roth <troth@verinet.com>
520
521 * gdb/avr-tdep.c (avr_gdbarch_init): Use
522 generic_unwind_get_saved_register.
523
524 2002-09-03 David Carlton <carlton@math.stanford.edu>
525
526 * dwarf2read.c (dwarf2_add_member_fn): Add the 'type'
527 argument (PR gdb/653). Update call to smash_to_method_type.
528 (read_structure_scope): Update call to dwarf2_add_member_fn.
529
530 2002-09-03 Michal Ludvig <mludvig@suse.cz>
531
532 * x86-64-linux-tdep.c: Include gdb_string.h
533 * x86-64-linux-nat.c: Ditto.
534
535 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
536
537 * ada-exp.y (yyname, yyrule): Remap global variables that appear
538 when YYDEBUG is set to 1.
539 * c-exp.y: Likewise.
540 * f-exp.y: Likewise.
541 * jv-exp.y: Likewise.
542 * m2-exp.y: Likewise.
543 * p-exp.y: Likewise.
544
545 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
546
547 * Makefile.in (i386nbsd-tdep.o): Add $(solib_svr4_h) to
548 dependency list.
549 * i386nbsd-tdep.c (i386nbsdelf_init_abi): Set
550 solib_svr4_fetch_link_map_offsets to
551 nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
552 * config/i386/nbsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
553 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
554 * config/i386/nbsdelf.mh (NATDEPFILES): Remove solib.o,
555 solib-svr4.o, and solib-legacy.o.
556 * config/i386/tm-nbsd.h: Include solib.h.
557
558 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
559
560 * configure.tgt (i[3456]86-*-netbsdelf*): Merge with...
561 (i[3456]86-*-netbsd*): ...this. Set gdb_target to nbsd.
562 (i[3456]86-*-openbsd*): Make this a separate entry. Add a
563 comment noting that this needs its own target configuration.
564 * config/i386/nbsd.mt: New file.
565 * config/i386/nbsdaout.mt: Remove.
566 * config/i386/nbsdelf.mt: Ditto.
567 * config/i386/tm-nbsdaout.h: Ditto.
568
569 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
570
571 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): New function.
572 (i386nbsd_pc_in_sigtramp): Rewrite to use i386nbsd_sigtramp_offset.
573 (i386nbsd_init_abi): Don't initialize tdep->sigtramp_start or
574 tdep->sigtramp_end.
575 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end): Remove.
576 * config/i386/tm-nbsd.h (SIGTRAMP_START, SIGTRAMP_END)
577 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove.
578
579 2002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
580
581 * Makefile.in (i386nbsd-tdep.o): Add $(arch_utils_h),
582 $(i386_tdep_h), and $(nbsd_tdep_h) to dependency list.
583 * i386-tdep.h (i386bsd_init_abi): New prototype.
584 * i386bsd-tdep.c (i386bsd_init_abi): Remove "static" from
585 function declaration.
586 (_initialize_i386bsd_tdep): Don't register OS ABI handlers
587 for NetBSD-a.out or NetBSD-ELF.
588 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end)
589 (i386nbsd_sc_pc_offset, i386nbsd_sc_sp_offset)
590 (i386nbsd_init_abi, i386nbsdelf_init_abi): Move to...
591 * i386nbsd-tdep.c: ...here. Include arch-utils.h, i386-tdep.h,
592 and nbsd-tdep.h.
593 (i386nbsd_pc_in_sigtramp): New function.
594 (i386nbsd_init_abi): Set gdbarch_pc_in_sigtramp to
595 i386nbsd_pc_in_sigtramp.
596 (_initialize_i386nbsd_tdep): Register i386nbsd_init_abi
597 and i386nbsdelf_init_abi OS ABI handlers.
598 * config/i386/nbsdaout.mt (TDEPFILES): Add nbsd-tdep.o.
599 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
600
601 2002-09-02 Mark Kettenis <kettenis@gnu.org>
602
603 * i386-linux-nat.c (dummy_sse_values): Only try to fill in the SSE
604 registers if the target really has them.
605
606 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
607
608 * Makefile.in (mipsnbsd-tdep.o): Use $(nbsd_tdep_h) rather
609 than nbsd-tdep.h.
610
611 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
612
613 * Makefile.in (alphanbsd-tdep.o): Add $(frame_h) to dependency
614 list.
615 * alphanbsd-tdep.c (alphanbsd_sigcontext_addr)
616 (alphanbsd_skip_sigtramp_frame): New functions.
617 (alphanbsd_init_abi): Set tdep->skip_sigtramp_frame to
618 alphanbsd_skip_sigtramp_frame. Set tdep->sigcontext_addr
619 to alphanbsd_sigcontext_addr.
620
621 2002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
622
623 * Makefile.in (mipsnbsd-tdep.o): Add nbsd-tdep.h to dependency
624 list.
625 (nbsd-tdep.o): Add $(gdb_string_h) to dependency list.
626 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): Use
627 nbsd_pc_in_sigtramp.
628 * mipsnbsd-tdep.c: Include nbsd-tdep.h.
629 (mipsnbsd_pc_in_sigtramp): Use nbsd_pc_in_sigtramp.
630 * nbsd-tdep.c: Include gdb_string.h.
631 (nbsd_pc_in_sigtramp): New function.
632 * nbsd-tdep.h (nbsd_pc_in_sigtramp): New prototype.
633 * ppcnbsd-tdep.c (ppcnbsd_pc_in_sigtramp): New function.
634 (ppcnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
635 ppcnbsd_pc_in_sigtramp.
636 * shnbsd-tdep.c (shnbsd_pc_in_sigtramp): New function.
637 (shnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
638 shnbsd_pc_in_sigtramp.
639 * sparcnbsd-tdep.c (sparcnbsd_init_abi_elf): Set
640 gdbarch_pc_in_sigtramp to nbsd_pc_in_sigtramp.
641 * config/mips/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
642
643 2002-08-30 Pierre Muller <muller@ics.u-strasbg.fr>
644
645 * breakpoint.c (breakpoint_init_inferior): Reset the val field of
646 watchpoints to NULL.
647 (insert_breakpoints): set val field of watchpoints if NULL.
648
649
650 2002-08-29 Jim Blandy <jimb@redhat.com>
651
652 * symtab.c (lookup_symbol_aux): In the cases where we find a
653 minimal symbol of an appropriate name and use its address to
654 select a symtab to read and search, use `name' (as passed to us)
655 as the demangled name when searching the symtab's global and
656 static blocks, not the minsym's name.
657
658 2002-08-29 Keith Seitz <keiths@redhat.com>
659
660 * stack.c (print_frame_info_base): Always set current_source_symtab
661 and current_source_line.
662
663 2002-08-29 Donn Terry <donnte@microsoft.com>
664
665 * proc-api.c (rw_table): Fix typo in #ifdef PCSHOLD (missing S).
666
667 2002-08-28 Keith Seitz <keiths@redhat.com>
668
669 * stack.c (select_frame): Add FIXME concerning selected-frame
670 events.
671 (select_frame_command): Send selected-frame-level-changed
672 event notification, but only if the level actually changed.
673 (up_silently_base): Add selected-frame-level-changed event
674 notification.
675 (down_silently_base): Likewise.
676
677 2002-08-28 Andrew Cagney <ac131313@redhat.com>
678
679 * Makefile.in: Update dependencies for all gdb/*.c files.
680
681 2002-08-27 Tom Tromey <tromey@redhat.com>
682
683 * Makefile.in (osabi.o, i387-tdep.o, i386-linux-nat.o, lin-lwp.o,
684 ax-gdb.o, signals.o, jv-valprint.o, c-valprint.o, cp-abi.o):
685 Update dependencies.
686 * i387-tdep.c: Include gdb_string.h.
687 * osabi.c: Likewise.
688 * i386-linux-nat.c: Likewise.
689 * lin-lwp.c: Likewise.
690 * ax-gdb.c: Likewise.
691 * signals/signals.c: Likewise.
692 * jv-valprint.c: Likewise.
693 * p-lang.c: Likewise.
694 * c-valprint.c: Likewise.
695 * cp-abi.c: Likewise.
696
697 2002-08-27 Elena Zannoni <ezannoni@redhat.com>
698
699 * cli/cli-script.h (copy_command_lines): Export.
700 * breakpoint.c: Include cli/cli-script.h.
701 * Makefile.in (breakpoint.o): Update dependencies.
702
703 2002-08-26 Michael Snyder <msnyder@redhat.com>
704
705 * breakpoint.c (insert_breakpoints): Protect all references
706 to 'process_warning'. Shorten long lines.
707
708 2002-08-26 Joel Brobecker <brobecker@gnat.com>
709
710 * cli/cli-script.c (copy_command_lines): New function.
711 * defs.h (copy_command_lines): Export.
712 * testsuite/gdb.base/commands.exp: New tests for commands
713 attached to a temporary breakpoint, and for commands that
714 delete the breakpoint they are attached to.
715
716 2002-08-26 Michael Snyder <msnyder@redhat.com>
717
718 * breakpoint.c (bpstat_stop_status): Instead of copying the
719 pointer to the breakpoint commands struct, make a new copy
720 of the struct and point to that.
721 (bpstat_clear): Free the commands struct.
722 (bpstat_clear_actions): Free the commands struct.
723 (bpstat_do_actions): Free the command actions. Also execute
724 the local cleanups, instead of deleting them.
725 (delete_breakpoint): Leave the commands field of the bpstat
726 chain alone -- it will be freed later.
727
728 2002-08-26 Kevin Buettner <kevinb@redhat.com>
729
730 * rs6000-tdep.c (altivec_register_p): Restore function inadvertently
731 deleted in 2002-08-20 commit. This function is still used by
732 ppc-linux-nat.c.
733
734 2002-08-26 Keith Seitz <keiths@redhat.com>
735
736 * gdb-events.sh: Add selected-frame-level-changed event.
737 * gdb-events.c: Regenerated.
738 * gdb-events.h: Regenerated.
739
740 2002-08-26 Stephane Carrez <stcarrez@nerim.fr>
741
742 Fix PR gdb/393:
743 * inflow.c (terminal_save_ours): New function to save terminal
744 settings.
745 * inferior.h (terminal_save_ours): Declare.
746 * target.c (debug_to_terminal_save_ours): New function.
747 (cleanup_target): Defaults to_terminal_save_ours.
748 (update_current_target): Inherit to_terminal_save_ours.
749 (setup_target_debug): Set to_terminal_save_ours.
750 * target.h (target_terminal_save_ours): New to save terminal settings.
751 (target_ops): New member to_terminal_save_ours.
752 * gnu-nat.c (init_gnu_ops): Set to_terminal_save_ours.
753 * hpux-thread.c (init_hpux_thread_ops): Likewise.
754 * inftarg.c (init_child_ops): Likewise.
755 * m3-nat.c (init_m3_ops): Likewise.
756 * procfs.c (init_procfs_ops): Likewise.
757 * wince.c (init_child_ops): Likewise.
758 * win32-nat.c (init_child_ops): Likewise.
759 * sol-thread.c (init_sol_thread_ops): Likewise.
760
761 2002-08-26 Mark Kettenis <kettenis@gnu.org>
762
763 * i386-tdep.c (i386_store_return_value): Undeprecate. Convert to
764 use regcache_* functions.
765 (i386_gdbarch_init): Set store_return_value instead of
766 deprecated_store_return_value.
767
768 * regcache.c (regcache_raw_write_signed,
769 regcache_raw_write_unsigned): New functions.
770 * regcache.h (regcache_raw_write_signed,
771 regcache_raw_write_unsigned): New prototypes.
772
773 2002-08-25 Andrew Cagney <ac131313@redhat.com>
774
775 * Makefile.in (c-exp.tab.o, jv-exp.tab.o, f-exp.tab.o)
776 (m2-exp.tab.o, p-exp.tab.o, ada-exp.tab.o): Move to before the
777 source file dependencies. Cleanup corresponding generator rules.
778
779 2002-08-25 Andrew Cagney <ac131313@redhat.com>
780
781 * regcache.h (register_offset_hack): Declare.
782 (regcache_cooked_read_using_offset_hack): Declare.
783 (regcache_cooked_write_using_offset_hack): Declare.
784
785 * regcache.c (register_offset_hack): New function.
786 (regcache_cooked_read_using_offset_hack): New function.
787 (regcache_cooked_write_using_offset_hack): New function.
788 (regcache_dump): Check that the registers, according to their
789 offset, are packed hard against each other.
790 (cooked_xfer_using_offset_hack): New function.
791
792 2002-08-25 Andrew Cagney <ac131313@redhat.com>
793
794 * regcache.c (struct regcache_descr): Add field register_type.
795 (init_legacy_regcache_descr): Pass a pre-allocated regcache_descr
796 in as a parameter
797 (init_regcache_descr): Initialize register_type. Pass the descr
798 to init_legacy_regcache_descr. Use register_type instead of
799 REGISTER_VIRTUAL_TYPE.
800 (register_type): New function.
801 (regcache_dump): Replace REGISTER_VIRTUAL_TYPE with register_type.
802 * regcache.h (register_type): Declare.
803
804 2002-08-25 Andrew Cagney <ac131313@redhat.com>
805
806 * rs6000-tdep.c (rs6000_gdbarch_init): Set store_struct_return
807 instead of deprecated_store_return_value. Fix fallout from
808 2002-08-23 Andrew Cagney <cagney@redhat.com>.
809
810 2002-08-25 Andrew Cagney <ac131313@redhat.com>
811
812 * regcache.c (max_register_size): New function.
813 (init_legacy_regcache_descr): Ensure that max_register_size is
814 large enough for REGISTER_VIRTUAL_SIZE.
815 * regcache.h (max_register_size): Declare.
816
817 2002-08-24 Andrew Cagney <ac131313@redhat.com>
818
819 * rs6000-tdep.c (rs6000_gdbarch_init): Use deprecated version of
820 store_return_value.
821 (e500_extract_return_value): Change type of valbuf pointer to
822 void.
823
824 2002-08-24 Mark Kettenis <kettenis@gnu.org>
825
826 * PROBLEMS: Clarify problems with FreeBSD's compiler and suggest
827 workaround.
828
829 * valprint.c (print_longest) [CC_HAS_LONG_LONG &&
830 PRINTF_HAS_LONG_LONG]: Cast val_long to (long long) or (unsigned
831 long long) to prevent compiler warning on 64-bit systems.
832
833 2002-08-23 Andrew Cagney <cagney@redhat.com>
834
835 * gdbarch.sh (STORE_RETURN_VALUE): Add regcache parameter.
836 (DEPRECATED_STORE_RETURN_VALUE): New method.
837 (EXTRACT_RETURN_VALUE): Make buffer parameter a void pointer.
838 * gdbarch.h, gdbarch.c: Re-generate.
839
840 * values.c (set_return_value): Pass current_regcache to
841 STORE_RETURN_VALUE.
842 * arch-utils.h (legacy_store_return_value): Declare.
843 * arch-utils.c (legacy_store_return_value): New function.
844 (legacy_extract_return_value): Update parameters.
845
846 * config/pa/tm-hppa.h (DEPRECATED_STORE_RETURN_VALUE): Rename
847 STORE_RETURN_VALUE.
848 * config/pa/tm-hppa64.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
849 * config/sparc/tm-sparc.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
850 * config/z8k/tm-z8k.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
851 * config/sparc/tm-sparclet.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
852 * config/mn10200/tm-mn10200.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
853 * config/m68k/tm-linux.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
854 * config/m68k/tm-delta68.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
855 * config/m32r/tm-m32r.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
856 * config/h8500/tm-h8500.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
857 * config/h8300/tm-h8300.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
858
859 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
860 * i386-tdep.c (i386_extract_return_value): Update.
861 * arch-utils.c (legacy_extract_return_value): Update.
862 * frv-tdep.c (frv_gdbarch_init): Update.
863 * cris-tdep.c (cris_gdbarch_init): Update.
864 * d10v-tdep.c (d10v_gdbarch_init): Update.
865 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
866 * m68k-tdep.c (m68k_gdbarch_init): Update.
867 * mcore-tdep.c (mcore_gdbarch_init): Update.
868 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
869 * s390-tdep.c (s390_gdbarch_init): Update.
870 * sparc-tdep.c (sparc_gdbarch_init): Update.
871 * sh-tdep.c (sh_gdbarch_init): Update.
872 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
873 * v850-tdep.c (v850_gdbarch_init): Update.
874 * avr-tdep.c (avr_gdbarch_init): Update.
875 * ia64-tdep.c (ia64_gdbarch_init): Update.
876 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
877 * vax-tdep.c (vax_gdbarch_init): Update.
878 * alpha-tdep.c (alpha_gdbarch_init): Update.
879 * arm-tdep.c (arm_gdbarch_init): Update.
880 * mips-tdep.c (mips_gdbarch_init): Update.
881 * i386-tdep.c (i386_gdbarch_init): Update.
882
883 2002-08-23 Andrew Cagney <ac131313@redhat.com>
884
885 * config/djgpp/fnchange.lst: Add entries for bfd/elf32-ppcqnx.c,
886 bfd/elf32-ppc.c, bfd/elf32-sh.c and bfd/elf32-shqnx.c.
887
888 2002-08-24 Mark Kettenis <kettenis@gnu.org>
889
890 * PROBLEMS: Refer to GDB 5.3 instead of 5.2. Mention FreeBSD
891 problems.
892
893 2002-08-23 Joel Brobecker <brobecker@gnat.com>
894
895 * infrun.c (handle_inferior_event): Move a comment outside of a
896 function call, in order to avoid indent reformatting this part
897 of the code in an unreadable way.
898
899 2002-08-23 Grace Sainsbury <graces@redhat.com>
900
901 * infrun.c (normal_stop, proceed): Remove call to print_sys_errmsg
902 when breakpoints fail. Move general breakpoint error messages to
903 insert_breakpoints.
904 * breakpoint.c (insert_breakpoints): Change warnings when
905 breakpoints are nto inserted to specify the type. Remove call to
906 memory_error when hardware breakpoints can't be inserted. Remove
907 multiple calls to warning so all messages are sent to the user at
908 once.
909 (delete_breakpoints): Make insert error messsages more explicit.
910
911 2002-08-23 Daniel Jacobowitz <drow@mvista.com>
912
913 * ChangeLog: Move gdbserver entries after GDB 5.2 to
914 gdbserver/ChangeLog.
915
916 2002-08-23 Mark Kettenis <kettenis@gnu.org>
917
918 * i386-tdep.c: Include "objfiles.h".
919 (i386_svr4_init_abi): Set in_solib_call_trampoline and
920 skip_trampoline_code.
921 * config/i386/tm-i386v4.h: Don't include "config/tm-sysv4.h".
922 (CPLUS_MARKER): Define to '.'.
923
924 * linux-proc.c (struct linux_corefile_thread_data): Add num_notes
925 member.
926 (linux_corefile_thread_callback): Increase args->num_notes.
927 (linux_make_note_section): Initialize thread_args.num_notes, and
928 use it to determine whether notes for any threads were created.
929
930 2002-08-23 Donn Terry <donnte@microsoft.com>
931
932 * proc-api.c (rw_table): Do not include a row for PCDSTOP if the
933 corresponding macro is not defined. Likewise for PCNICE, PCSHOLD
934 and PCUNKILL.
935 (write_with_trace): Conditionalize out the switch branch handling
936 PCSHOLD if the corresponding macro is not defined. Likewise for
937 PRSABORT and PRSTOP.
938 This change will be needed by the Interix port.
939
940 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
941
942 * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): use
943 write_register wherever possible instead of manipulating the
944 register bytes directly.
945 Assign VALUE_CONTENTS to a variable and use that.
946 The GPR numbers are now dependent on the architecture.
947
948 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
949
950 * rs6000-tdep.c (struct rs6000_framedata): Add saved_ev and
951 ev_offset fields.
952 (skip_prologue): Add support for BookE/e500 instructions.
953 (e500_extract_return_value): New function.
954 (frame_get_saved_regs): Add support for saving ev registers and
955 pseudo gpr's.
956 (e500_store_return_value): New function.
957 (rs6000_gdbarch_init): Move up default intializations of
958 deprecated_extract_return_value and store_return_value. Overwrite
959 init of store_return_value with e500 specific version.
960 Set extract_return_value for e500.
961
962 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
963
964 * blockframe.c (generic_call_dummy_register_unwind): Use
965 regcache_cooked_read to catch cases in which the variable is
966 stored in a pseudo register.
967
968 2002-08-22 Andrew Cagney <cagney@redhat.com>
969
970 * NEWS: Mention that the i960 has been made obsolete.
971 * Makefile.in (SFILES): Delete remote-nrom.c, remote-nindy.c and
972 i960-tdep.c
973 (remote-nrom.o): Obsolete target.
974 (remote-nindy.o, i960-tdep.o): Ditto.
975 * remote-nrom.c: Make file obsolete.
976 * remote-nindy.c, remote-vx960.c: Ditto.
977 * config/i960/vxworks960.mt, config/i960/nindy960.mt: Ditto.
978 * config/i960/mon960.mt, config/i960/tm-i960.h: Ditto.
979 * config/i960/tm-vx960.h, config/i960/tm-nindy960.h: Ditto.
980 * config/i960/tm-mon960.h, i960-tdep.c: Ditto.
981 * configure.tgt: Make i960-*-bout*, i960-nindy-coff*,
982 i960-*-coff*, i960-nindy-elf*, i960-*-elf*, i960-*-nindy* and
983 i960-*-vxworks* obsolete.
984 * MAINTAINERS: Note that the i960 is obsolete.
985
986 2002-08-21 Corinna Vinschen <vinschen@redhat.com
987
988 * aix-thread.c (aix_thread_detach): Disable thread debugging on
989 detach to allow reinitialization.
990
991 2002-08-22 Andrew Cagney <ac131313@redhat.com>
992
993 * MAINTAINERS: Change the s390 target to s390-linux-gnu (second
994 attempt).
995
996 2002-08-22 Jim Blandy <jimb@redhat.com>
997
998 * coffread.c (coff_symfile_read): Don't try to read the line
999 number table from disk if the image file doesn't have a symbol
1000 table; we'll never actually look at the info anyway, and Windows
1001 ships DLL's with bogus file offsets for the line number data.
1002
1003 2002-08-21 Elena Zannoni <ezannoni@redhat.com>
1004
1005 * rs6000-tdep.c (rs6000_gdbarch_init): Figure out whether we have
1006 an e500 executable.
1007
1008 2002-08-21 Michael Snyder <msnyder@redhat.com>
1009
1010 * mips-tdep.c (MSYMBOL_IS_SPECIAL): Replace macro with function.
1011 (MSYMBOL_SIZE): Replace macro with function.
1012 (DEFAULT_MIPS_TYPE): Delete unused macro.
1013 * config/mips/tm-mips.h (DEFAULT_MIPS_TYPE): Delete unused macro.
1014 * config/mips/tm-embed.h (DEFAULT_MIPS_TYPE): Delete unused macro.
1015
1016 2002-08-21 Jim Blandy <jimb@redhat.com>
1017
1018 * valops.c (value_cast): Simplify and correct logic for doing a
1019 static cast from a pointer to a base class to a pointer to a
1020 derived class.
1021
1022 2002-08-21 Andrew Cagney <ac131313@redhat.com>
1023
1024 * infcmd.c (default_print_registers_info): Replace
1025 do_registers_info.
1026 (registers_info): Use gdbarch_print_registers_info instead of
1027 DO_REGISTERS_INFO.
1028 * inferior.h (default_print_registers_info): Replace
1029 do_registers_info.
1030 * gdbarch.sh (PRINT_REGISTERS_INFO): New method.
1031 (DO_REGISTERS_INFO): Change to a predicate function.
1032 * gdbarch.h, gdbarch.c: Regenerate.
1033
1034 2002-08-21 Keith Seitz <keiths@redhat.com>
1035
1036 * gdb-events.sh: Add target-changed event.
1037 * gdb-events.c: Regenerated.
1038 * gdb-events.c: Regenerated.
1039 * valops.c (value_assign): Add target-changed event notification
1040 to inlval_register, lval_memory, and lval_reg_frame_relative.
1041
1042 2002-08-21 Joel Brobecker <brobecker@gnat.com>
1043
1044 * NEWS: Add an entry regarding the improvement of the next/step
1045 operation on Alpha Tru64 multi-processor machines.
1046
1047 2002-08-21 Andrew Cagney <ac131313@redhat.com>
1048
1049 * Makefile.in: Update dependencies for mi/ cli/ and tui/
1050 directores.
1051 * Makefile.in: Update all _h macro definitions.
1052 * Makefile.in (install-gdbtk): Move to install section.
1053 (rdi-share/libangsd.a): Move to end of file.
1054
1055 2002-08-19 Andrew Cagney <ac131313@redhat.com>
1056
1057 * frame.c (frame_register_unwind): When a register, set addrp to
1058 the register's byte.
1059
1060 2002-08-20 Michael Snyder <msnyder@redhat.com>
1061
1062 * mips-tdep.c (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): These are only
1063 used locally, so move them from the target machine header to here.
1064 (mips_set_processor_type, mips_register_name, mips32_next_pc,
1065 mips16_next_pc, cached_proc_desc, mips_set_processor_type):
1066 Make static.
1067 * config/mips/tm-mips.h (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Delete.
1068
1069 2002-08-20 Andrew Cagney <cagney@redhat.com>
1070
1071 * NEWS: Mention that the Apollo line was made obsolete.
1072 * configure.tgt: Make m68*-apollo*-bsd*, m68*-hp-bsd*, and
1073 m68*-hp-hpux* obsolete.
1074 * configure.host: Make m68*-apollo*-sysv*, m68*-apollo*-bsd*,
1075 m68*-hp-bsd* and m68*-hp-hpux* obsolete.
1076 * buildsym.c (make_blockvector): Make static.
1077 * buildsym.h (make_blockvector): Make extern declaration obsolete.
1078 * Makefile.in (HFILES_NO_SRCDIR): Remove dst.h
1079 (ALLDEPFILES): Remove dstread.c.
1080 (dstread.o): Obsolete make rule.
1081 * dstread.c: Makefile obsolete.
1082 * dst.h: Ditto.
1083 * config/m68k/hp300hpux.mt: Ditto.
1084 * config/m68k/hp300hpux.mh: Ditto.
1085 * config/m68k/hp300bsd.mt: Ditto.
1086 * config/m68k/hp300bsd.mh: Ditto.
1087 * config/m68k/apollo68b.mt: Ditto.
1088 * config/m68k/apollo68v.mh: Ditto.
1089 * config/m68k/apollo68b.mh: Ditto.
1090
1091 2002-08-20 Michael Snyder <msnyder@redhat.com>
1092
1093 * mips-tdep.c (mips_in_return_stub): Make static.
1094 (mips_gdbarch_init): Set in_solib_return_trampoline.
1095 * config/mips/tm-mips.h (IN_SOLIB_RETURN_TRAMPOLINE): Delete.
1096
1097 2002-08-20 Michael Snyder <msnyder@redhat.com>
1098
1099 * gdbarch.sh (IN_SOLIB_RETURN_TRAMPOLINE): Add.
1100 * gdbarch.c, gdbarch.h: Regenerate.
1101 * arch-utils.c, arch-utils.h (generic_in_solib_return_trampoline):
1102 Add.
1103 * infrun.c (IN_SOLIB_RETURN_TRAMPOLINE): Delete default definition.
1104
1105 2002-08-20 Michael Snyder <msnyder@redhat.com>
1106
1107 * mips-tdep.c (mips_skip_stub, mips_in_call_stub): Make static.
1108 (mips_gdbarch_init): Set skip_trampoline_code,
1109 in_solib_call_trampoline.
1110 * config/mips/tm-mips.h (REGISTER_NAME): Delete.
1111 (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE): Delete.
1112
1113 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
1114
1115 * ppc-tdep.h (struct gdbarch_tdep): Add ev registers.
1116
1117 * rs6000-tdep.c (rs6000_register_virtual_type): Return 64 bit
1118 vector type for ev registers.
1119 (e500_pseudo_register_read): New function.
1120 (e500_pseudo_register_write): New function.
1121 (e500_dwarf2_reg_to_regnum): New function.
1122 (PPC_UISA_NOFP_SPRS): New macro.
1123 (PPC_EV_REGS): New macro.
1124 (PPC_GPRS_PSEUDO_REGS): New macro.
1125 (registers_e500): New register set for e500.
1126 (variants): Add e500 variant.
1127 (rs6000_gdbarch_init): Move setting of pc, sp, fp regnums to
1128 before setting architectural dependent variations. Initialize ev
1129 registers numbers. Add case for e500 architecture. Set the
1130 number of pseudo registers.
1131
1132 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
1133
1134 * rs6000-tdep.c: Clean up comments.
1135
1136 2002-08-20 Andrew Cagney <cagney@redhat.com>
1137
1138 * h8300-tdep.c: Re-indent file.
1139
1140 2002-08-20 Jim Blandy <jimb@redhat.com>
1141
1142 * Makefile.in (LDFLAGS): Allow the configure script to establish a
1143 default for this.
1144
1145 2002-08-20 Keith Seitz <keiths@redhat.com>
1146
1147 * breakpoints.c (watch_command_1): Use internal breakpoint
1148 when setting a watchpoint_scope breakpoint.
1149
1150 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
1151
1152 * gdbtypes.c (build_builtin_type_vec64): Add name to type.
1153 (build_builtin_type_vec64i): Ditto.
1154 (build_builtin_type_vec128): Ditto.
1155 (build_builtin_type_vec128i): Ditto.
1156
1157 2002-08-19 Michael Snyder <msnyder@redhat.com>
1158
1159 * config/mips/tm-mips.h (ELF_MAKE_MSYMBOL_SPECIAL): Delete.
1160 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Change into functions.
1161 (FIX_CALL_DUMMY, PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME,
1162 POP_FRAME, INIT_EXTRA_FRAME_INFO): Delete.
1163 (CALL_DUMMY_START_OFFSET, CALL_DUMMY_BREAKPOINT_OFFSET,
1164 CALL_DUMMY_ADDRESS): Delete.
1165 * mips-tdep.c (mips_elf_make_msymbol_special, mips_msymbol_size,
1166 mips_msymbol_is_special, mips_fix_call_dummy): New functions.
1167 (mips_gdbarch_init): Set elf_make_msymbol_special, pop_frame,
1168 push_dummy_frame, fix_call_dummy, init_extra_frame_info,
1169 push_return_address.
1170 (mips_register_raw_size, mips_eabi_use_struct_convention,
1171 mips_n32n64_use_struct_convention, mips_o32_use_struct_convention,
1172 mips_o32_reg_struct_has_addr, mips_frame_saved_pc, mips_frame_chain,
1173 mips_init_extra_frame_info, mips_eabi_push_arguments,
1174 mips_n32n64_push_arguments, mips_push_return_address,
1175 mips_push_dummy_frame, mips_pop_frame, mips_skip_prologue,
1176 mips_breakpoint_from_pc, mips_call_dummy_address): Make static.
1177
1178 2002-08-19 Michael Snyder <msnyder@redhat.com>
1179
1180 * mips-tdep.c (mips_frame_num_args): New function.
1181 (mips_gdbarch_init): Set frame_chain, frameless_function_invocation,
1182 frame_saved_pc, frame_args_address, frame_locals_address,
1183 frame_num_args, and frame_args_skip.
1184 * config/mips/tm-mips.h (FRAME_CHAIN, FRAMELESS_FUNCTION_INVOCATION,
1185 FRAME_SAVED_PC, FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS,
1186 FRAME_NUM_ARGS, FRAME_ARGS_SKIP): Delete.
1187 * config/mips/tm-mipsv4.h (FRAME_CHAIN_VALID): Delete.
1188
1189 2002-08-20 Michael Snyder <msnyder@redhat.com>
1190
1191 * config/mips/tm-mips.h (STORE_STRUCT_RETURN): Delete.
1192 (EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
1193 * mips-tdep.c (mips_store_struct_return): New function.
1194 (mips_extract_struct_value_address): New function.
1195 (mips_gdbarch_init): Set store_struct_return and
1196 extract_struct_value_address.
1197
1198 2002-08-20 David Carlton <carlton@math.stanford.edu>
1199
1200 * dwarf2read.c (dwarf2_build_psymtabs): Check that
1201 dwarf_line_offset is nonzero before creating dwarf_line_buffer.
1202 (read_file_scope): Check that line_header is nonzero before
1203 decoding macro information.
1204
1205 2002-08-20 Mark Kettenis <kettenis@gnu.org>
1206
1207 * i386-tdep.h (FP_REGNUM_P): Change such that we don't incorrectly
1208 flag the general-purpose registers as floating-point on targets
1209 that don't support the floating-point registers.
1210
1211 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
1212
1213 * rs6000-tdep.c (altivec_register_p): Delete.
1214 (rs6000_do_altivec_registers): Delete.
1215 (rs6000_altivec_registers_info): Delete.
1216 (rs6000_do_registers_info): Delete.
1217 (_initialize_rs6000_tdep): Remove command 'info powerpc altivec'.
1218 (rs6000_gdbarch_init): Remove setting of do_registers_info.
1219
1220 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
1221
1222 * infcmd.c (do_registers_info): Print vector registers in hex
1223 format only.
1224 (print_vector_info): Check that printing registers
1225 makes sense.
1226 (print_float_info): Ditto.
1227
1228 2002-08-20 Andrew Cagney <ac131313@redhat.com>
1229
1230 * mips-tdep.c (mips_gdbarch_init): Update.
1231 (mips_o32_extract_return_value): Rewrite.
1232 (mips_o32_store_return_value): Rewrite.
1233 (mips_o32_xfer_return_value): New function.
1234 (mips_xfer_register): Tweak debug print message. Allow for
1235 buf_offset when dumping the value transfered.
1236
1237 2002-08-20 Andrew Cagney <ac131313@redhat.com>
1238
1239 * config/mips/tm-nbsd.h (MIPS_DEFAULT_ABI): Delete.
1240 * config/mips/tm-linux.h (MIPS_DEFAULT_ABI): Delete.
1241 * config/mips/tm-irix5.h (MIPS_DEFAULT_ABI): Delete.
1242 * config/mips/tm-irix6.h (MIPS_DEFAULT_ABI): Delete.
1243 * mips-tdep.c (mips_gdbarch_init) [MIPS_DEFAULT_ABI]: Delete code.
1244
1245 2002-08-14 Michael Snyder <msnyder@redhat.com>
1246
1247 * mips-tdep.c (mips_frame_chain): Check for call-dummy frames.
1248
1249 2002-08-19 Elena Zannoni <ezannoni@redhat.com>
1250
1251 * rs6000-tdep.c (struct reg): Add field to indicate a pseudo
1252 register.
1253 (P): New macro to define a register as a pseudo register.
1254 (R, R4, R8, R16, FR32, R64, R0): Updated.
1255 (struct variant): Add new fields for number of pseudo registers
1256 and number of total registers.
1257 (tot_num_registers): New macro replacing....
1258 (num_registers): ...deleted macro.
1259 (num_registers): New function.
1260 (num_pseudo_registers): New function.
1261 (variants): Update all variants to intialize new fields correctly.
1262 Postpone initialization of number of pseudo regs and real regs.
1263 (init_variants): New function.
1264 (rs6000_gdbarch_init): Initialize variants. Update calculation of
1265 registers offsets.
1266
1267 2002-08-19 David Carlton <carlton@math.stanford.edu>
1268
1269 * valops.c (search_struct_field): Change error message to treat
1270 return value of 0 from value_static_field as meaning that field is
1271 optimized out.
1272 (value_struct_elt_for_reference): Ditto.
1273 * values.c (value_static_field): Treat an unresolved location the
1274 same as a nonexistent symbol. Fix PR gdb/635.
1275 * gnu-v2-abi.c (gnuv2_value_rtti_type): Eliminate test for being
1276 enclosed. Fix PR gdb/574.
1277 * MAINTAINERS: Add self to Write After Approval list.
1278
1279 2002-08-19 Andrew Cagney <ac131313@redhat.com>
1280
1281 * mips-tdep.c (mips_xfer_register): New function.
1282 (mips_n32n64_extract_return_value): Rewrite.
1283 (mips_gdbarch_init): For N32 and N64, set extract_return_value
1284 instead of deprecated_extract_return_value.
1285
1286 2002-08-19 Elena Zannoni <ezannoni@redhat.com>
1287
1288 * rs6000-tdep.c (TDEP): Delete macro.
1289 (branch_dest): Replace use of TDEP macro with its body.
1290 (rs6000_pop_frame): Ditto.
1291 (rs6000_push_arguments): Ditto.
1292 (rs6000_skip_trampoline_code): Ditto.
1293 (rs6000_frame_saved_pc): Ditto.
1294 (rs6000_frame_chain): Ditto.
1295 (rs6000_register_name): Ditto.
1296 (rs6000_register_byte): Ditto.
1297 (rs6000_register_raw_size): Ditto.
1298 (rs6000_register_virtual_type): Ditto.
1299 (rs6000_register_convertible): Ditto.
1300 (rs6000_convert_from_func_ptr_addr): Ditto.
1301
1302 2002-08-19 Daniel Jacobowitz <drow@mvista.com>
1303
1304 * config/mips/tm-linux.h (REALTIME_LO, REALTIME_HI): Define
1305 conditionally.
1306 (JB_PC, JB_ELEMENT_SIZE): Rename to MIPS_LINUX_JB_PC and
1307 MIPS_LINUX_JB_ELEMENT_SIZE.
1308 * mips-linux-tdep.c (supply_gregset, fill_gregset): Use alloca
1309 for MAX_REGISTER_RAW_SIZE arrays.
1310 (mips_linux_get_longjmp_target): Use MIPS_LINUX_JB_PC and
1311 MIPS_LINUX_JB_ELEMENT_SIZE.
1312
1313 2002-08-19 Pierre Muller <muller@ics.u-strasbg.fr>
1314
1315 * i387-tdep.c (i387_print_float_info): Fix typo in comment.
1316
1317 2002-08-19 Aidan Skinner <aidan@velvet.net>
1318
1319 * Makefile.in (SFILES): Add ada-exp.y ada-lang.c ada-typeprint.c
1320 ada-valprint.c ada-tasks.c.
1321 (YYFILES): Add ada-exp.y.
1322 (ada-exp.tab.c ada-lex.c ada-lang.o): New target.
1323 (ada-tasks.o ada-typeprint.o ada-valprint.o): New target.
1324 (ada-exp.tab.o): New target.
1325
1326 2002-08-18 Andrew Cagney <ac131313@redhat.com>
1327
1328 * regcache.c (regcache_xfer_part): New function.
1329 (regcache_raw_read_part): New function.
1330 (regcache_raw_write_part): New function.
1331 (regcache_cooked_read_part): New function.
1332 (regcache_cooked_write_part): New function.
1333 * regcache.h (regcache_raw_read_part): Declare.
1334 (regcache_raw_write_part): Declare.
1335 (regcache_cooked_read_part): Declare.
1336 (regcache_cooked_write_part): Declare.
1337
1338 2002-08-18 Daniel Jacobowitz <drow@mvista.com>
1339
1340 * remote.c (remote_open_1): Add async_p.
1341 (remote_async_open_1): Delete.
1342 (open_remote_target): Delete.
1343 (remote_open, extended_remote_open): Update calls to remote_open_1.
1344 (remote_async_open, extended_remote_async_open): Call
1345 remote_open_1 instead of remote_async_open_1.
1346
1347 2002-08-19 Mark Kettenis <kettenis@gnu.org>
1348
1349 * blockframe.c: Fix a few coding standard violations.
1350
1351 2002-08-19 Mark Kettenis <kettenis@gnu.org>
1352
1353 * config/i386/nm-i386sco5.h (START_INFERIOR_TRAPS_EXPECTED): Moved
1354 here from ...
1355 * config/i386/tm-i386sco5.h: ... here. File removed.
1356 * config/i386/i386sco5.mt (TM_FILE): Set to tm-i386v4.h.
1357
1358 * config/i386/nm-i386v.h (START_INFERIOR_TRAPS_EXPECTED): New define.
1359 * config/i386/i386aout.mt (TDEPFILES): Add i387-tdep.o
1360 (TM_FILE): Set to tm-i386.h.
1361 * config/i386/i386v.mt (TM_FILE): Set to tm-i386.h.
1362 * config/i386/tm-i386v.h: Remove file.
1363 * config/i386/tm-ptx.h [!SEQUENT_PTX4]: Include "i386/tm-i386.h"
1364 instead of "i386/tm-i386v.h".
1365 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
1366 * config/i386/tm-symmetry: Include "i386/tm-i386.h" instead of
1367 "i386/tm-i386v.h".
1368 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
1369 * config/i386/tm-vxworks.h: Include "i386/tm-i386.h" instead of
1370 "i386/tm-i386.h".
1371
1372 2002-08-18 Mark Kettenis <kettenis@gnu.org>
1373
1374 * config/i386/nm-i386v.h: Add protection against
1375 multiple-inclusion.
1376 (i386_register_u_addr): Remove prototype.
1377 (register_u_addr): New prototype.
1378 (REGISTER_U_ADDR): Redefine accordingly.
1379 * i386v-nat.c: Improve several comments.
1380 (i386_register_u_addr): Change signature and rename to
1381 register_u_addr. Use FP_REGNUM_P. Rewrite slightly to get rid of
1382 ubase variable.
1383
1384 2002-08-18 Andrew Cagney <ac131313@redhat.com>
1385
1386 * config/mips/tm-mips.h (STORE_RETURN_VALUE): Delete macro.
1387 (DEPRECATED_EXTRACT_RETURN_VALUE): Delete macro.
1388 * mips-tdep.c (mips_gdbarch_init): Set store_return_value and
1389 deprecated_extract_return_value.
1390 (mips_o32_push_arguments, mips_o64_push_arguments): Clone and
1391 rename mips_o32o64_push_arguments.
1392 (mips_gdbarch_init): Update.
1393 (mips_extract_return_value): Delete.
1394 (mips_o32_extract_return_value): Clone mips_extract_return_value.
1395 (mips_o64_extract_return_value): Clone mips_extract_return_value.
1396 (mips_eabi_extract_return_value): Clone mips_extract_return_value.
1397 (mips_n32n64_extract_return_value): Clone
1398 mips_extract_return_value.
1399 (mips_store_return_value): Delete.
1400 (mips_o32_store_return_value): Clone mips_store_return_value.
1401 (mips_o64_store_return_value): Clone mips_store_return_value.
1402 (mips_eabi_store_return_value): Clone mips_store_return_value.
1403 (mips_n32n64_store_return_value): Clone mips_store_return_value.
1404
1405 2002-08-18 Aidan Skinner <aidan@velvet.net>
1406
1407 * ada-lang.c: Use gdb_string.h instead of <string.h>.
1408 * ada-typeprint.c: Use gdb_string.h instead of <string.h>.
1409
1410 2002-08-18 Aidan Skinner <aidan@velvet.net>
1411
1412 * ada-lang.c: Run through gdb_indent.sh.
1413 * ada-lang.h: Run through gdb_indent.sh.
1414 * ada-tasks.c: Run through gdb_indent.sh.
1415 * ada-typeprint.c: Run through gdb_indent.sh.
1416 * ada-valprint.c: Run through gdb_indent.sh.
1417
1418 2002-08-18 Andrew Cagney <ac131313@redhat.com>
1419
1420 * osabi.c (gdbarch_init_osabi): Don't complain about an unknown
1421 ABI.
1422
1423 2002-08-18 Mark Kettenis <kettenis@gnu.org>
1424
1425 * i386b-nat.c [FETCH_INFERIOR_REGISTERS]: Remove dead code.
1426
1427 * config/i386/nm-i386bsd.h (FLOAT_INFO): Remove redundant #undef.
1428 * i386b-nat.c [FLOAT_INFO]: Remove dead code.
1429
1430 * i386-tdep.c (i386_do_pop_frame, i386_store_return_value): Call
1431 write_register_gen instead of write_register_bytes.
1432
1433 * NEWS: Mention that the i[3456]-*mach3*, i[3456]-*-mach* and
1434 i[3456]-*-osf1mk* configurations have been made obsolete.
1435 * configure.host: Make i[3456]86-*-mach3*, i[3456]86-*mach* and
1436 i[3456]86-*-osf1mk* hosts obsolete.
1437 * confighure.tgt: Make i[3456]86-*-mach3*, i[3456]86-*-osf1mk*
1438 targets obsolete.
1439 * config/i386/i386mach.mh, config/i386/nm-i386mach.h,
1440 config/i386/xm-i386mach.h, config/i386/i386m3.mh,
1441 config/i386/i386m3.mt, config/i386/nm-m3.h,
1442 config/i386/tm-i386m3.h, config/i386/xm-i386m3.h,
1443 config/i386/i386mk.mh, config/i386/i386mk.mt,
1444 config/i386/tm-i386mk.h, config/i386/xm-i386mk.h: Make files
1445 obsolete.
1446 * i386mach-nat.c, i386m3-nat.c: Make files obsolete.
1447 * Makefile.in (ALLDEPFILES): Remove i386mach.c i386m3-nat.c
1448 (i386mach-nat.o, i386m3-nat.o):Make targets obsolete.
1449
1450 2002-08-18 Andrew Cagney <ac131313@redhat.com>
1451
1452 * config/pa/tm-hppa.h (hppa_store_return_value): Declare.
1453 (hppa_value_returned_from_stack): Declare.
1454 (hppa_extract_return_value): Declare.
1455 * config/pa/hppa.mt: New file.
1456 * configure.tgt: Recognize hppa*-*-*.
1457 * MAINTAINERS: Change HPPA target to hppa-elf. Still broken.
1458
1459 2002-08-18 Mark Kettenis <kettenis@gnu.org>
1460
1461 * i386-sol2-tdep.c (_initialize_i386_sol2_tdep): Fix typo in
1462 comment.
1463
1464 2002-08-17 Mark Kettenis <kettenis@gnu.org>
1465
1466 * top.c (gdb_rl_operate_and_get_next): Make sure
1467 operate-and-get-next functions correctly even when the history
1468 list is completely filled.
1469
1470 2002-08-18 Andrew Cagney <ac131313@redhat.com>
1471
1472 * MAINTAINERS (Target Instruction Set Architectures): Rename
1473 Target/Architectures. Replace vax-dec-vms5.5 with vax-netbsd.
1474 Replace s390-linux with s390-linux-gnu. Remove i386-aout,
1475 mcore-pe, mips64-elf, sparc64-elf. Remove i586-pc-msdosdjgpp,
1476 already listed under Host/Native.
1477
1478 * configure.tgt: Combine i[3456]86-*-coff*, i[3456]86-*-elf*,
1479 i[3456]86-*-pe*, and i[3456]86-*-aout* into i[3456]86-*-*. Add
1480 mips*-*-*.
1481
1482 2002-08-17 Andrew Cagney <ac131313@redhat.com>
1483
1484 * config/ia64/ia64.mt: New file.
1485 * config/alpha/alpha.mt: New file.
1486 * MAINTAINERS: Change the alpha target to alpha-elf and IA-64 to
1487 ia64-linux-gnu. Mention that ia64-elf is broken.
1488 * configure.tgt: Add alpha*-*-* and ia64*-*-* patterns.
1489
1490 2002-08-17 Mark Kettenis <kettenis@elgar.kettenis.dyndns.org>
1491
1492 * i386-tdep.c (i386_svr4_init_abi, i386_nw_init_abi): Use
1493 generic_func_frame_valid instead of func_frame_valid.
1494
1495 2002-08-16 Joel Brobecker <brobecker@gnat.com>
1496
1497 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Unfortunately,
1498 procfs appears to be broken when debugging on multi-processor
1499 machines. So enable software single stepping in order to avoid
1500 using the procfs interface to do next/step operations, using
1501 internal breakpoints instead.
1502
1503 * infrun.c (handle_inferior_event): Readjust the stop_pc by
1504 DECR_PC_AFTER_BREAK when hitting a single step breakpoint, to
1505 make this pc address equal to the value it would have if the
1506 system stepping capability was used. Also set a new flag used
1507 to ensure that we don't readjust the PC one more time later.
1508
1509 * breakpoint.c (bpstat_stop_status): Do not adjust the PC
1510 address by DECR_PC_AFTER_BREAK when software single step is
1511 in use for this architecture, as this has already been taken
1512 care of in handle_inferior_event().
1513
1514 2002-08-16 Joel Brobecker <brobecker@gnat.com>
1515
1516 * infrun.c (handle_inferior_event): Minor reformatting, to make
1517 a rather long condition expression easier to read.
1518
1519 2002-08-16 Andrew Cagney <ac131313@redhat.com>
1520
1521 * Makefile.in (gdbtk.o): Move to end of file.
1522 (gdbtk-bp.o, gdbtk-cmds.o): Ditto.
1523 (gdbtk-hooks.o, gdbtk-register.o): Ditto.
1524 (gdbtk-stack.o, gdbtk-varobj.o): Ditto.
1525 (gdbtk-wrapper.o, gdbres.o): Ditto.
1526
1527 2002-08-16 Andrew Cagney <ac131313@redhat.com>
1528
1529 * Makefile.in (copying.o): Separate out compile rule.
1530 (hpux-thread.o, procfs.o, signals.o): Ditto.
1531 (v850ice.o, z8k-tdep.o): Ditto.
1532 (tui-file.o): Move to TUI section.
1533 (xdr_ptrace.o, xdr_rdb.o, xdr_ld.o): Move to separate section.
1534 (nindy.o, Onindy.o, ttyflush.o): Move to separate section.
1535
1536 2002-08-16 Joel Brobecker <brobecker@gnat.com>
1537
1538 * i386-tdep.c (i386_pe_skip_trampoline_code): renamed from
1539 skip_trampoline_code, for better namespace-proofing.
1540
1541 * i386-tdep.h (i386_pe_skip_trampoline_code): Add declaration.
1542
1543 2002-08-16 Joel Brobecker <brobecker@gnat.com>
1544
1545 * config/i386/tm-cygwin.h: Remove some "#if 0"'ed macros.
1546
1547 2002-08-16 Joel Brobecker <brobecker@gnat.com>
1548
1549 * infrun.c (handle_inferior_event): When receiving a SIGTRAP
1550 signal, check whether we hit a breakpoint before checking for a
1551 single step breakpoint. Otherwise, GDB fails to notice that a
1552 breakpoint has been hit when stepping onto a breakpoint.
1553
1554 2002-08-16 Keith Seitz <keiths@redhat.com>
1555
1556 * gdb-events.sh (clear_gdb_event_hooks): New function.
1557 * gdb-events.c: Regenerate.
1558 * gdb-events.h: Regenerate.
1559
1560 2002-08-16 Andrew Cagney <ac131313@redhat.com>
1561
1562 * breakpoint.c (bpstat_stop_status): Rename not_a_breakpoint to
1563 not_a_sw_breakpoint.
1564 * breakpoint.h (bpstat_stop_status): Add parameter names.
1565
1566 2002-08-16 Grace Sainsbury <graces@redhat.com>
1567
1568 * remote.c (remote_insert_hw_breakpoint)
1569 (remote_remove_hw_breakpoint): Fix calculation of length field
1570 for Z-packet.
1571
1572 2002-08-15 Michael Snyder <msnyder@redhat.com>
1573
1574 * irix5-nat.c (supply_gregset): Allocate plenty-big buffer
1575 (32 bytes) instead of using MAX_REGISTER_RAW_SIZE.
1576 (supply_fpregset): Ditto.
1577
1578 * config/mips/tm-mips.h (REGISTER_CONVERT_TO_VIRTUAL,
1579 REGISTER_CONVERT_TO_RAW, REGISTER_CONVERTIBLE,
1580 MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE): Delete.
1581 (TARGET_READ_SP): Delete.
1582 (DO_REGISTERS_INFO): Delete.
1583 (FUNCTION_START_OFFSET, IN_SIGTRAMP, REGISTER_VIRTUAL_SIZE):
1584 Delete.
1585 (REGISTER_CONVERT_FROM_TYPE, REGISTER_CONVERT_TO_TYPE): Convert
1586 from macros to functions.
1587
1588 * mips-tdep.c (mips_gdbarch_init): Set the above in the gdbarch.
1589 (mips_register_convertible, mips_register_convert_to_virtual,
1590 mips_register_convert_to_raw): Make static.
1591 (mips_read_sp): New function.
1592 (mips_gdbarch_init): Set gdbarch read_sp to mips_read_sp.
1593 (mips_do_registers_info): Make static.
1594 (mips_gdbarch_init): Insert mips_do_registers_info into gdbarch.
1595 (in_sigtramp): Make static, rename to mips_pc_in_sigtramp.
1596 (mips_register_convert_from_type, mips_register_convert_to_type):
1597 New functions.
1598 (mips_gdbarch_init): Set up function_start_offset,
1599 register_virtual_size, pc_in_sigtramp.
1600
1601 2002-08-15 Andrew Cagney <ac131313@redhat.com>
1602
1603 * infcmd.c (vector_info): New function.
1604 (_initialize_infcmd): Add command "info vector".
1605 (print_vector_info): New function.
1606
1607 * gdbarch.sh (PRINT_VECTOR_INFO): New method
1608 * gdbarch.h, gdbarch.c: Regenerate.
1609
1610 2002-08-15 Andrew Cagney <ac131313@redhat.com>
1611
1612 * infcmd.c (do_registers_info): Rename parameter ``fpregs'' to
1613 ``print_all''. Only print vector registers when ``print_all''.
1614
1615 2002-08-15 Andrew Cagney <ac131313@redhat.com>
1616
1617 * i387-tdep.h (i387_print_float_info): Add `args' parameter.
1618 * i387-tdep.c (i387_print_float_info): Add `args' parameter.
1619
1620 * gdbarch.sh (PRINT_FLOAT_INFO): Change to a predicate method.
1621 Add `args' parameter.
1622 * gdbarch.h, gdbarch.c: Regenerate.
1623
1624 * arm-tdep.c (arm_print_float_info): Add the parameter `args'.
1625
1626 * infcmd.c (float_info): Call print_float_info.
1627 (print_float_info): New function. By default, print the
1628 floating-point registers.
1629
1630 * arch-utils.h (default_print_float_info): Delete declaration.
1631 * arch-utils.c (default_print_float_info): Delete function.
1632
1633 2002-08-16 Mark Kettenis <kettenis@gnu.org>
1634
1635 * config/i386/nm-i386v.h (FLOAT_INFO): Remove already commented
1636 out define.
1637
1638 * i387-tdep.c (i387_print_float_info): Add comment about ignoring
1639 FRAME.
1640
1641 * NEWS: Mention that the i[3456]-*-aix target has been made obsolete.
1642 * configure.host: Make i[3456]86-*-aix host obsolete.
1643 * configure.tgt: Make i[3456]86-*-aix target obsolete.
1644 * config/i386/i386aix.mh, config/i386/i386aix.mt,
1645 config/i386/nm-i386aix.h, condig/i386/tm-i386aix.h,
1646 config/i386/xm-i386aix.h: Make files obsolete.
1647 * i386aix-nat.c: Make file obsolete.
1648 * Makefile.in (ALLDEPFILES): Remove i386aix-nat.c.
1649 (i386aix-nat.o): Make target obsolete.
1650
1651 * config/i386/nm-gnu.h: Removed.
1652 * config/i386/nm-i386gnu.h: New file.
1653 (THREAD_STATE_FLAVOR, THREAD_STATE_SIZE,
1654 THREAD_STATE_SET_TRACED, THREAD_STATE_CLEAR_STATE, ATTACH_DETACH):
1655 Moved here from ...
1656 * config/i386/tm-i386gnu.h: ... here. Removed.
1657 * config/i386/xm-i386gnu.h: Removed.
1658 * config/i386/i386gnu.mh (XM_FILE): Set to xm-i386.h.
1659 (NAT_FILE): Set to nm-i386gnu.h.
1660 * config/i386/i386gnu.mt (TDEPFILES): Add i386gnu-tdep.o.
1661 * i386-tdep.c: New file.
1662 * Makefile.in (ALLDEPFILES): Add i386gnu-nat.c and i386gnu-tdep.c.
1663 (i386gnu-tdep.o): Specify dependencies.
1664
1665 2002-08-15 Mark Kettenis <kettenis@gnu.org>
1666
1667 * config/i386/tm-i386sco5.h: Include "i386/tm-i386v4.h" instead of
1668 "i386/tm-i386.h", "i386/tm-i386v.h" and "config/tm-sysv.h".
1669 Adjust a few comments to reflect reality a bit closer.
1670 (KERNEL_U_SIZE, TARGET_HAS_HARDWARE_WATCHPOINTS,
1671 TARGET_CAN_USE_HARDWARE_WATCHPOINT, HAVE_CONTINUEABLE_WATCHPOINT,
1672 HAVE_STEPPABLE_WATCHPOINT, STOPPED_BY_WATCHPOINT,
1673 target_insert_watchpoint, target_remove_watchpoint):
1674 Move defines to ...
1675 * config/i386/nm-i386sco5.h: ... here.
1676 (kernel_u_size): Add prototype. Improve a few comments and add
1677 protection against multiple inclusion.
1678
1679 * config/i386/nm-i386sco.h (FLOAT_INFO): Remove already commented
1680 out define.
1681
1682 * uw-thread.c (SP_ARG0): Define if not already defined.
1683 * config/i386/tm-i386.h (SO_ARG0): Remove define.
1684
1685 * config/i386/tm-i386v4.h (HAVE_I387_REGS): Remove define.
1686
1687 * config/i386/tm-i386.h: Don't include "regcache.h".
1688
1689 * i387-tdep.h (i387_print_float_info): New prototype.
1690 * i387-tdep.c (print_i387_value, print_i387_ext,
1691 print_i387_status_word, print_i387_control_word): Add `struct
1692 ui_file *' argument and use it for output.
1693 (i387_print_float_info): Renamed from i387_float_info. Add
1694 `struct gdbarch *' and `struct ui_file *' arguments and use the
1695 latter for output.
1696 * i386-tdep.c: Include "i387-tdep.h".
1697 (i386_gdbarch_init): Set print_float_info.
1698 * config/i386/tm-i386.h (i387_float_info): Remove prototype.
1699 (FLOAT_INFO): Remove define.
1700
1701 2002-08-13 Michael Snyder <msnyder@redhat.com>
1702
1703 * mips-tdep.c (mips_push_arguments): Rename to
1704 mips_eabi_push_arguments, and tune for EABI.
1705 (MIPS_REGS_HAVE_HOME_P): Delete.
1706 (struct gdbarch_tdep): Remove mips_regs_have_home_p field.
1707 (mips_gdbarch_init): Set gdbarch push_arguments for eabi.
1708 Delete references to mips_regs_have_home_p.
1709
1710 2002-08-14 Keith Seitz <keiths@redhat.com>
1711
1712 * Makefile.in (install-gdbtk): Create insight plugin directory.
1713 Install plugins.tcl file.
1714
1715 2002-08-14 Keith Seitz <keiths@redhat.com>
1716
1717 * configure.in: Move SUBDIRS to near top of the file so that
1718 --enable options may add things to it.
1719 If gdbtk is enabled, add gdbtk directory to SUBDIRS and configdirs.
1720 * configure: Regenerate.
1721
1722 2002-08-13 Michael Snyder <msnyder@redhat.com>
1723
1724 * mips-tdep.c (mips_o32o64_push_arguments): New function,
1725 cloned from mips_push_arguments, tuned for o32/o64 ABI.
1726 (mips_gdbarch_init): Set gdbarch_push_arguments to new func.
1727
1728 2002-08-13 Andrew Cagney <ac131313@redhat.com>
1729
1730 * vax-tdep.c (vax_get_saved_register): Delete function.
1731 (vax_gdbarch_init): Update.
1732 * ns32k-tdep.c (ns32k_get_saved_register): Delete function.
1733 (ns32k_gdbarch_init): Update.
1734 * alpha-tdep.c (alpha_get_saved_register): Delete function.
1735 (alpha_gdbarch_init): Update.
1736
1737 2002-08-13 Andrew Cagney <cagney@redhat.com>
1738
1739 * regcache.c (init_regcache_descr): Overallocate the
1740 raw_register_valid_p array including space for NUM_PSEUDO_REGS.
1741 (registers_changed): Replace NUM_REGS+NUM_PSEUDO_REGS with
1742 nr_raw_registers.
1743 (set_register_cached): Add range checking assertions. Use
1744 current_regcache.
1745
1746 2002-08-13 Mark Kettenis <kettenis@gnu.org>
1747
1748 * i386-tdep.c (i386_stab_reg_to_regnum): Return correct register
1749 numbers for MMX registers.
1750
1751 2002-08-13 Andrew Cagney <cagney@redhat.com>
1752
1753 * i386-tdep.c (i386_gdbarch_init): Use
1754 generic_unwind_get_saved_register.
1755
1756 2002-08-13 Kevin Buettner <kevinb@redhat.com>
1757
1758 * procfs.c (procfs_can_use_hw_breakpoint): New function.
1759 (init_procfs_ops): Define ``to_can_use_hw_breakpoint'' for procfs
1760 target vector.
1761 * config/mips/nm-irix5.h (TARGET_CAN_USE_HARDWARE_WATCHPOINT):
1762 Delete. Add comment regarding this now-deleted target method.
1763
1764 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
1765
1766 * m68hc11-tdep.c (M68HC12_NUM_PSEUDO_REGS): New define.
1767 (M68HC12_HARD_PC_REGNUM): Define specific PC for 68HC12 (pseudo reg).
1768 (m68hc11_pseudo_register_read): Compute the 68HC12 PC using the
1769 real PC and the page number (if it's within the memory bank window).
1770 (m68hc11_pseudo_register_write): Likewise when saving.
1771 (m68hc11_register_name): Name the virtual pc 'pc' and the real one ppc.
1772 (m68hc11_register_virtual_type): Return uint32 for virtual pc.
1773 (m68hc11_register_raw_size): And use 32-bit for it.
1774 (m68hc11_gdbarch_init): Use 32-bit address for 68HC12 if the
1775 16K memory bank is used by the prog; also use the virtual pc.
1776
1777 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
1778
1779 * m68hc11-tdep.c (m68hc11_elf_make_msymbol_special): New function.
1780 (m68hc11_gdbarch_init): Install it in gdbarch.
1781 (MSYMBOL_SET_RTC, MSYMBOL_SET_RTI): New to set symbol specific flags.
1782 (MSYMBOL_IS_RTC, MSYMBOL_IS_RTI): New to test these flags.
1783 (MSYMBOL_SIZE): New for documentation.
1784 (insn_return_kind): Enum to specify how a function returns.
1785 (frame_extra_info): Cleanup and record the return mode.
1786 (gdbarch_tdep, USE_PAGE_REGISTER): New to control the use of page
1787 register in address computation.
1788 (m68hc11_get_return_insn): New to obtain the return instruction used
1789 by the function.
1790 (m68hc11_frame_init_saved_regs): Take into account the return
1791 instruction used by the function for far and interrupt functions.
1792 (m68hc11_init_extra_frame_info): Take into account page register.
1793 (m68hc11_frame_args_address): Adjust according to the return mode.
1794 (show_regs): Print page register only when it's used.
1795
1796 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
1797
1798 * m68hc11-tdep.c (HARD_PAGE_REGNUM): Define for 68HC12 page register.
1799 (M68HC11_LAST_HARD_REG, m68hc11_register_names): Update.
1800 (m68hc11_register_virtual_type): Return a 8-bit type for 8-bit
1801 registers.
1802 (m68hc11_register_raw_size): Likewise.
1803
1804 2002-08-13 Andrew Cagney <cagney@redhat.com>
1805
1806 * i386-tdep.c (i386_register_name): Handle mmx registers.
1807 (mmx_regnum_p): New function.
1808 (i386_mmx_names): New array.
1809 (mmx_num_regs): New variable.
1810 (i386_pseudo_register_read): New function.
1811 (i386_pseudo_register_write): New function.
1812 (mmx_regnum_to_fp_regnum): New function. Code from Fernando Nasser.
1813
1814 * regcache.c (regcache_raw_read_unsigned): New function.
1815 (regcache_raw_read_signed): New function.
1816 * regcache.h (regcache_raw_read_unsigned): Declare.
1817 (regcache_raw_read_signed): Declare.
1818
1819 2002-08-13 Andrew Cagney <cagney@redhat.com>
1820
1821 * regcache.c (regcache_raw_read_as_address): Delete function.
1822 (regcache_cooked_read_signed): New function.
1823 (regcache_cooked_read_unsigned): New function.
1824 * regcache.h (regcache_cooked_read_signed): Declare.
1825 (regcache_cooked_read_unsigned): Declare.
1826 (regcache_raw_read_as_address): Delete declaration.
1827
1828 * blockframe.c (generic_read_register_dummy): Use
1829 regcache_cooked_read_unsigned.
1830 * i386-tdep.c (i386_extract_struct_value_address): Use
1831 regcache_cooked_read_unsigned.
1832
1833 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
1834
1835 * m68hc11-tdep.c (m68hc11_gdbarch_init): Set int, double and long
1836 double sizes according to ELF ABI flags.
1837 (gdbarch_tdep): Record elf_flags.
1838
1839 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
1840
1841 * m68hc11-tdep.c (M6812_OP_PSHX, M6812_OP_PSHY): New defines.
1842 (m6812_prolog): They can appear in 68HC12 function prologue.
1843 (m68hc11_frame_chain): Cleanup.
1844
1845 2002-08-12 Andrew Cagney <cagney@redhat.com>
1846
1847 * i386-tdep.h (i386_register_byte, i386_register_raw_size): Delete
1848 declarations.
1849 * i386-linux-tdep.c (i386_linux_register_byte): Delete function.
1850 (i386_linux_register_raw_size): Delete function.
1851 (i386_linux_init_abi): Update.
1852 * i386-tdep.c (i386_register_raw_size): Delete function.
1853 (i386_register_byte): Delete function.
1854 (i386_gdbarch_init): Update.
1855 (i386_register_size): Delete array.
1856 (i386_register_offset): Delete array.
1857
1858 * config/i386/tm-symmetry.h (REGISTER_BYTE): Delete macro.
1859 (REGISTER_RAW_SIZE): Delete macro.
1860 * config/i386/tm-ptx.h (REGISTER_RAW_SIZE): Delete macro.
1861 (REGISTER_BYTE): Delete macro.
1862
1863 2002-08-11 Aidan Skinner <aidan@velvet.net>
1864
1865 * ada-lang.c (ada_lookup_partial_symbol)
1866 (to_fixed_variant_branch_type) (find_line_in_linetable): Fix
1867 prototype names so that grep ^func works properly.
1868
1869 * ada-lang.c (ada_array_element_type)
1870 (ada_lookup_partial_symbol): Fix typos in parameter list.
1871
1872 * ada-valprint.c (val_print_packed_array_elements) (ada_val_print_1):
1873 Fix prototype names so that grep ^func works properly.
1874
1875 2002-08-10 Andrew Cagney <cagney@redhat.com>
1876 Elena Zannoni <ezannoni@redhat.com>
1877 Martin M. Hunt <hunt@redhat.com>
1878
1879 * gdbtypes.c (build_builtin_type_vec128): Set the vector bit.
1880 (build_builtin_type_vec128i): Set the vector bit.
1881 * gdbtypes.h (builtin_type_vec64, builtin_type_vec64i): Declare.
1882 * gdbtypes.c (builtin_type_vec64, builtin_type_vec64i): Define.
1883 (build_builtin_type_vec64): New function.
1884 (build_builtin_type_vec64i): New function.
1885 (build_gdbtypes): Initialize builtin_type_vec64 and
1886 builtin_type_vec64i.
1887
1888 2002-08-09 Andrew Cagney <cagney@redhat.com>
1889
1890 * regcache.c (regcache_dump): Compare the register offset
1891 with REGISTER_BYTE.
1892 * arch-utils.c (generic_register_byte): New function.
1893 * arch-utils.h (generic_register_byte): Declare.
1894 * gdbarch.sh (REGISTER_BYTE): Default to generic_register_byte.
1895 * gdbarch.h, gdbarch.c: Regenerate.
1896
1897 2002-08-09 Andrew Cagney <cagney@redhat.com>
1898
1899 * regcache.c: Include "gdbcmd.h"
1900 (_initialize_regcache): Add commands "maintenance print
1901 registers", "maintenance print raw-registers" and "maintenance
1902 print cooked-registers".
1903 (enum regcache_dump_what): Define.
1904 (dump_endian_bytes): New function.
1905 (regcache_dump): New function.
1906 (regcache_print): New function.
1907 (maintenance_print_registers): New function.
1908 (maintenance_print_raw_registers): New function.
1909 (maintenance_print_cooked_registers): New function.
1910 * Makefile.in (regcache.o): Update dependencies.
1911
1912 2002-08-09 Michael Snyder <msnyder@redhat.com>
1913
1914 * mips-tdep.c (ROUND_DOWN, ROUND_UP): Move to global scope.
1915 (mips_push_arguments): Correct some comments. Use paddr_nz
1916 for printing addresses in debug output. Replace static
1917 allocation using MAX_REGISTER_RAW_SIZE with alloca.
1918 (mips_n32n64_push_arguments): New function, cloned from
1919 mips_push_arguments and tuned for the n32/n64 ABI.
1920 (mips_push_register): Buffer needs dynamic allocation.
1921 (mips_print_register): Ditto.
1922 (do_gp_register_row): Ditto.
1923 (mips_store_return_value): Ditto.
1924 (mips_gdbarch_init): Set gdbarch_push_arguments per ABI.
1925
1926 2002-08-09 Don Howard <dhoward@redhat.com>
1927
1928 * memattr.c (mem_info_command): Print special case of upper bound
1929 as max CORE_ADDR + 1.
1930
1931 2002-08-08 Michael Snyder <msnyder@redhat.com>
1932
1933 * mips-tdep.c (mips_n32n64_use_struct_convention): N32 only
1934 returns structs by ref if they're too big to fit in two registers.
1935
1936 2002-08-09 Kevin Buettner <kevinb@redhat.com>
1937
1938 * mips-tdep.c (mips_init_extra_frame_info): Initialize SP_REGNUM's
1939 saved regs value.
1940 (read_next_frame_reg): Call FRAME_INIT_SAVED_REGS instead of
1941 mips_find_saved_regs().
1942 (mips_pop_frame): Likewise.
1943
1944 2002-08-09 Kevin Buettner <kevinb@redhat.com>
1945
1946 * blockframe.c (frame_saved_regs_register_unwind): Revise
1947 PC_IN_CALL_DUMMY assertion to only apply when generic dummy
1948 frames are in use.
1949
1950 2002-08-09 Grace Sainsbury <graces@redhat.com>
1951
1952 * remote.c: (remote_wait, remote_async_wait): Add check for awatch
1953 T-packets; the 'a' is not taken as a register number.
1954 (remote_check_watch_resources, remote_stopped_by_watchpoint)
1955 (remote_stopped_data_address): New functions; add to target
1956 vector.
1957 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Change
1958 prototypes to match other implementations of this
1959 function. replace integer argument with pointer -- the length
1960 field in the Z-packet is the length of what is pointed to or 1 if
1961 pointer is null. Add to target vector.
1962 (remote_insert_watchpoint, remote_remove_watchpoint): Add to
1963 target vector.
1964
1965 From Mark Salter:
1966 * remote.c (remote_wait): Add support to extract optional
1967 watchpoint information from T-packet. Ignore unrecognized
1968 optional info in T-packet.
1969 (remote_async_wait): Ditto.
1970
1971 2002-08-09 Corinna Vinschen <vinschen@redhat.com>
1972
1973 * cli/cli-dump.c: Change fopen modes to use binary open modes
1974 as defined in include/fopen-bin.h throughout.
1975
1976 2002-08-08 Michael Snyder <msnyder@redhat.com>
1977
1978 * mips-tdep.c: Minor whitespace and indentation clean-ups.
1979
1980 2002-08-08 Kevin Buettner <kevinb@redhat.com>
1981
1982 * doublest.c (store_floating): Avoid floatformat_from_doublest()
1983 assertion failure by returning early after a warning.
1984
1985 2002-08-08 Kevin Buettner <kevinb@redhat.com>
1986
1987 * mips-tdep.c (mips_find_saved_regs): Make static.
1988 (mips_frame_init_saved_regs): New function.
1989 (mips_gdbarch_init): Setup FRAME_INIT_SAVED_REGS method.
1990 * config/mips/tm-mips.h (FRAME_INIT_SAVED_REGS): Delete macro.
1991 (mips_find_saved_regs): Delete declaration.
1992
1993 2002-08-08 Grace Sainsbury <graces@redhat.com>
1994
1995 * remote.c (remote_wait, remote_async_wait): Change
1996 thread_num from int to ULONGEST.
1997 (unpack_varlen_hex): Change result parameter from
1998 int * to ULONGEST *.
1999
2000 2002-08-08 Andrew Cagney <ac131313@redhat.com>
2001
2002 * configure.tgt: Replace powerpc-*-sysv*, powerpc-*-elf*,
2003 powerpcle-*-eabi*, powerpcle-*-sysv* and powerpcle-*-elf* with
2004 powerpc*-*-*.
2005 * MAINTAINERS: Remove redundant rs6000-ibm-aix4.1 target.
2006
2007 2002-08-08 Andrew Cagney <cagney@redhat.com>
2008
2009 * gcore.c (override_derive_stack_segment): Delete variable.
2010 (preempt_derive_stack_segment): Delete function.
2011 (derive_stack_segment): Delete function.
2012 (default_derive_stack_segment): Renamed to derive_stack_segment.
2013 (override_derive_heap_segment): Delete variable.
2014 (preempt_derive_heap_segment): Delete function.
2015 (derive_heap_segment): Delete function.
2016 (default_derive_heap_segment): Rename to derive_heap_segment.
2017
2018 2002-08-06 Michael Snyder <msnyder@redhat.com>
2019
2020 * config/mips/tm-mips.h: Remove #define USE_STRUCT_CONVENTION.
2021 * mips-tdep.c (mips_EABI_use_struct_convention,
2022 mips_OABI_use_struct_convention, mips_NABI_use_struct_convention):
2023 New functions. (mips_use_struct_convention): Delete.
2024 (mips_gdbarch_init): set use_gdbarch_convention.
2025
2026 2002-08-06 Michael Snyder <msnyder@redhat.com>
2027
2028 * mips-tdep.c: gdbarch-ify reg_struct_has_addr.
2029 (mips_eabi_reg_struct_has_addr, mips_n32n64_reg_struct_has_addr,
2030 mips_o32_reg_struct_has_addr): New functions.
2031 (mips_gdbarch_init): Set gdbarch reg_struct_has_addr.
2032
2033 2002-08-07 Andrew Cagney <ac131313@redhat.com>
2034
2035 * regcache.c (pseudo_register): Delete function.
2036 (fetch_register): Delete function.
2037 (store_register): Delete function.
2038 (regcache_raw_read, legacy_read_register_gen): Use
2039 target_fetch_registers instead of fetch_register.
2040 (legacy_write_register_gen, regcache_raw_write): Use
2041 target_store_register instead of store_register.
2042 (write_register_bytes): Ditto.
2043
2044 * gdbarch.sh (FETCH_PSEUDO_REGISTER): Delete.
2045 (STORE_PSEUDO_REGISTER): Delete.
2046 * gdbarch.h, gdbarch.c: Regenerate.
2047
2048 2002-08-06 Corinna Vinschen <vinschen@redhat.com>
2049
2050 * cli/cli-dump.c (add_dump_command): Explicitely use "b" flag to
2051 write dump file binary.
2052
2053 2002-08-05 Michael Snyder <msnyder@redhat.com>
2054
2055 * mips-tdep.c (mips_find_saved_regs): Adjust stack according
2056 to MIPS_SAVED_REGSIZE, not GDB_TARGET_IS_MIPS64. Enhance comment.
2057 (mips_gdbarch_init): Set N32 target to be mips64.
2058
2059 2002-08-06 Kevin Buettner <kevinb@redhat.com>
2060
2061 * frame.c (find_saved_register): Break out of loop once saved
2062 register address is found. Don't mention sparc in loop comment
2063 anymore.
2064
2065 2002-08-06 Kevin Buettner <kevinb@redhat.com>
2066
2067 * mips-tdep.c (mips_gdbarch_init): For the N32 ABI, set
2068 mips_default_saved_regsize to 8.
2069
2070 2002-08-06 Andrew Cagney <ac131313@redhat.com>
2071
2072 * gcore.c: Do not include <sys/procfs.h>.
2073 * Makefile.in (gcore.o): Update dependencies.
2074
2075 2002-08-06 Andrew Cagney <cagney@redhat.com>
2076
2077 * configure.tgt: Make arc-*-* obsolete.
2078 * NEWS: Mention that arc-*-* has been identifed as obsolete.
2079 * MAINTAINERS: Make arc-elf obsolete.
2080 * arc-tdep.c: Make file obsolete.
2081 * config/arc/arc.mt: Ditto.
2082 * config/arc/tm-arc.h: Ditto.
2083
2084 2002-08-05 Theodore A. Roth <troth@verinet.com>
2085
2086 * avr-tdep.c (avr_skip_prologue): Fix to return the correct pc.
2087
2088 2002-08-05 Andrew Cagney <ac131313@redhat.com>
2089
2090 * mcore-tdep.c (mcore_gdbarch_init): Use
2091 generic_unwind_get_saved_register instead of
2092 generic_get_saved_register.
2093 * v850-tdep.c (v850_gdbarch_init): Ditto.
2094 * frv-tdep.c (frv_gdbarch_init): Ditto.
2095 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
2096 * s390-tdep.c (s390_gdbarch_init): Ditto.
2097 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
2098 * config/mn10200/tm-mn10200.h (GET_SAVED_REGISTER): Ditto.
2099 * config/h8300/tm-h8300.h (GET_SAVED_REGISTER): Ditto.
2100
2101 2002-08-05 Joel Brobecker <brobecker@gnat.com>
2102
2103 * objfiles.h: Add missing #include "symfile.h"
2104
2105 * Makefile.in (objfiles_h): Add dependency on symfile.h and dependents.
2106
2107 2002-08-04 Andrew Cagney <ac131313@redhat.com>
2108
2109 From 2002-08-01 david carlton <carlton@math.stanford.edu>:
2110 * hpread.c (hpread_read_struct_type): Deleted superfluous setting
2111 of FIELD_BITSIZE.
2112
2113 2002-08-04 Daniel Jacobowitz <drow@mvista.com>
2114
2115 * NEWS: Cleanup and nitpick.
2116
2117 2002-08-03 Andrew Cagney <ac131313@redhat.com>
2118
2119 * NEWS: Cleanup. Use *-linux*-gnu*. Only use `*' for headings.
2120
2121 2002-08-03 Andrew Cagney <ac131313@redhat.com>
2122
2123 * Makefile.in (gdbtk-bp.o): Update dependencies.
2124 (gdbtk-register.o): Ditto.
2125 (gdbtk-varobj.o): Ditto.
2126
2127 2002-08-03 Andrew Cagney <cagney@redhat.com>
2128
2129 * m68hc11-tdep.c (m68hc11_pseudo_register_read): Replace
2130 m68hc11_fetch_pseudo_register.
2131 (m68hc11_pseudo_register_write): Replace
2132 m68hc11_store_pseudo_register.
2133 (m68hc11_gdbarch_init): Update.
2134
2135 Fri Aug 2 15:53:50 2002 Andrew Cagney <cagney@redhat.com>
2136
2137 * gdbarch.sh: Include "gdb_string.h".
2138 * gdbarch.c: Regenerate.
2139
2140 * regcache.c: Include "gdb_string.h".
2141 * ax-general.c: Ditto.
2142 * varobj.c: Ditto.
2143 * std-regs.c: Ditto.
2144 * fbsd-proc.c: Ditto.
2145 * thread.c: Ditto.
2146
2147 * Makefile.in (regcache.o): Update dependencies.
2148 (thread.o, gdbarch.o): Ditto.
2149 (ax-general.o, gdbarch.o): Ditto.
2150 (varobj.o, std-regs.o): Ditto.
2151 (fbsd-proc.o): Specify dependencies.
2152
2153 2002-08-02 Andrew Cagney <cagney@redhat.com>
2154
2155 * regcache.c (regcache_cooked_read): Rename rawnum parameter to
2156 regnum.
2157 (regcache_cooked_write): Ditto.
2158
2159 2002-08-02 Andrew Cagney <ac131313@redhat.com>
2160
2161 * regcache.c (regcache_cooked_read): New function.
2162 (regcache_cooked_write): New function.
2163 (read_register_gen): Rewrite using regcache_cooked_read.
2164 (write_register_gen): Rewrite using regcache_cooked_write.
2165
2166 * regcache.h (regcache_cooked_read, regcache_cooked_write):
2167 Declare.
2168
2169 2002-08-02 Andrew Cagney <cagney@redhat.com>
2170
2171 * gdbarch.sh (pseudo_register_read, pseudo_register_write):
2172 Replace the architecture methods register_read and register_write.
2173 * gdbarch.h, gdbarch.c: Regenerate.
2174 * regcache.c (init_regcache_descr): Update.
2175 (read_register_gen): Update.
2176 (write_register_gen): Update.
2177 (supply_register): Update comment.
2178
2179 * sh-tdep.c (sh_gdbarch_init): Update.
2180 (sh_pseudo_register_read, sh64_pseudo_register_read): Add
2181 `regcache' and `gdbarch' parameters. Make `buffer' a void
2182 pointer. Update code.
2183 (sh_pseudo_register_write, sh64_pseudo_register_write): Add
2184 `regcache' and `gdbarch' parameters. Make `buffer' a constant
2185 void pointer. Update code.
2186 (sh64_register_write): Delete.
2187 (sh4_register_read): Delete.
2188 (sh64_register_read): Delete.
2189 (sh4_register_write): Delete.
2190 (sh_sh4_register_convert_to_raw): Make `from' parameter a constant
2191 void pointer, `to' parameter a void pointer.
2192 (sh_sh64_register_convert_to_raw): Ditto.
2193
2194 2002-08-01 Kevin Buettner <kevinb@redhat.com>
2195
2196 * mips-tdep.c (mips_register_virtual_type): Use architecture
2197 invariant return values.
2198
2199 2002-08-01 Andrew Cagney <cagney@redhat.com>
2200
2201 * linux-proc.c: Include "gdb_string.h".
2202 * Makefile.in (linux-proc.o): Update dependency list.
2203
2204 2002-08-01 Kevin Buettner <kevinb@redhat.com>
2205
2206 * mips-tdep.c (mips_gdbarch_init): Add comments. Fix typo in
2207 comment.
2208
2209 2002-08-01 Grace Sainsbury <graces@redhat.com>
2210
2211 * target.h: Add to_insert_hw_breakpoint, to_remove_hw_breakpoint,
2212 to_insert_watchpoint, to_remove_watchpoint,
2213 to_stopped_by_watchpoint, to_stopped_data_address,
2214 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint to
2215 target vecctor. Define their corresponding macros so they call
2216 them.
2217
2218 * target.c: Add default and debug versions of for
2219 to_insert_hw_breakpoint, to_remove_hw_breakpoint,
2220 to_insert_watchpoint, to_remove_watchpoint,
2221 to_stopped_by_watchpoint, to_stopped_data_address,
2222 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint.
2223
2224 2002-08-01 Kevin Buettner <kevinb@redhat.com>
2225
2226 * mips-tdep.c (mips_register_virtual_type): New function.
2227 (mips_gdbarch_init): Register mips_register_virtual_type()
2228 with gdbarch machinery.
2229 * config/mips/tm-irix6.h (mips/tm-bigmips64.h): Include
2230 this file instead of tm-bigmips.h.
2231 (MIPS_REGSIZE): Delete this macro.
2232 (REGISTER_VIRTUAL_TYPE): Delete macro. Undef macro so that
2233 multiarch version in mips-tdep.c will be found.
2234
2235 2002-08-01 Andrew Cagney <cagney@redhat.com>
2236
2237 * NEWS: Menion that CHILL has been made obsolete.
2238
2239 * gdbtypes.c (chill_varying_type): Make chill references obsolete.
2240 * stabsread.c (read_range_type): Ditto.
2241 * gdbtypes.h: Ditto.
2242 * language.c (binop_type_check): Ditto.
2243 (binop_result_type): Ditto.
2244 (integral_type): Ditto.
2245 (character_type): Ditto.
2246 (string_type): Ditto.
2247 (boolean_type): Ditto.
2248 (structured_type): Ditto.
2249 (lang_bool_type): Ditto.
2250 (binop_type_check): Ditto.
2251 * language.h (_LANG_chill): Ditto.
2252 * dwarfread.c (set_cu_language): Ditto.
2253 * dwarfread.c (CHILL_PRODUCER): Ditto.
2254 * dwarfread.c (handle_producer): Ditto.
2255 * expression.h (enum exp_opcode): Ditto.
2256 * eval.c: Ditto for comments.
2257 * typeprint.c (typedef_print) [_LANG_chill]: Ditto.
2258 * expprint.c (print_subexp): Ditto.
2259 (print_subexp): Ditto.
2260 * valops.c (value_cast): Ditto.
2261 (search_struct_field): Ditto.
2262 * value.h (COERCE_VARYING_ARRAY): Ditto.
2263 * symfile.c (init_filename_language_table): Ditto.
2264 (add_psymbol_with_dem_name_to_list): Ditto.
2265 * valarith.c (value_binop): Ditto.
2266 (value_neg): Ditto.
2267 * valops.c (value_slice): Ditto.
2268 * symtab.h (union language_specific): Ditto.
2269 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Ditto.
2270 (SYMBOL_DEMANGLED_NAME): Ditto.
2271 (SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
2272 * defs.h (enum language): Ditto.
2273 * symtab.c (got_symtab): Ditto.
2274 * utils.c (fprintf_symbol_filtered): Ditto.
2275
2276 * ch-typeprint.c: Make file obsolete.
2277 * ch-valprint.c: Make file obsolete.
2278 * ch-lang.h: Make file obsolete.
2279 * ch-exp.c: Make file obsolete.
2280 * ch-lang.c: Make file obsolete.
2281
2282 * Makefile.in (FLAGS_TO_PASS): Do not pass CHILL or CHILLFLAGS or
2283 CHILL_LIB.
2284 (TARGET_FLAGS_TO_PASS): Ditto.
2285 (CHILLFLAGS): Obsolete.
2286 (CHILL): Obsolete.
2287 (CHILL_FOR_TARGET): Obsolete.
2288 (CHILL_LIB): Obsolete.
2289 (SFILES): Remove ch-exp.c, ch-lang.c, ch-typeprint.c and
2290 ch-valprint.c.
2291 (HFILES_NO_SRCDIR): Remove ch-lang.h.
2292 (COMMON_OBS): Remove ch-valprint.o, ch-typeprint.o, ch-exp.o and
2293 ch-lang.o.
2294 (ch-exp.o, ch-lang.o, ch-typeprint.o, ch-valprint.o): Delete
2295 targets.
2296
2297 2002-07-31 Joel Brobecker <brobecker@gnat.com>
2298
2299 * dwarf2read.c (set_cu_language): Add handler for LANG_Ada95.
2300 This does not change anything at the moment, but will be helpful
2301 later when full Ada support is integrated.
2302
2303 2002-07-31 Kevin Buettner <kevinb@redhat.com>
2304
2305 * mips-tdep.c (_initialize_mips_tdep): Add "n64" to "set mips abi"
2306 help message.
2307
2308 2002-07-31 Kevin Buettner <kevinb@redhat.com>
2309
2310 * mips-tdep.c (mips_push_arguments): Fetch gdbarch_tdep struct
2311 and save it in a local variable. Use variable in later test.
2312
2313 2002-07-31 Kevin Buettner <kevinb@redhat.com>
2314
2315 * mips-tdep.c (mips_find_abi_section): Add N64 ABI recognition
2316 test. (Thanks to Daniel Jacobowitz.)
2317
2318 2002-07-31 Kevin Buettner <kevinb@redhat.com>
2319
2320 * mips-tdep.c (enum mips_abi): Add MIPS_ABI_N64.
2321 (mips_abi_strings): Add "n64".
2322 (mips_gdbarch_init): Add test for n64 abi. Add MIPS_ABI_N64 case.
2323
2324 2002-07-31 Kevin Buettner <kevinb@redhat.com>
2325
2326 * config/mips/tm-irix6.h (MIPS_REGSIZE): Define to be 8.
2327 (REGISTER_VIRTUAL_TYPE): Some registers are now 64 bits wide.
2328
2329 2002-07-31 Kevin Buettner <kevinb@redhat.com>
2330
2331 * utils.c (host_pointer_to_address, address_to_host_pointer):
2332 Use gdb_assert() instead of explicit call to internal_error().
2333
2334 2002-07-30 Kevin Buettner <kevinb@redhat.com>
2335
2336 * Makefile.in (rs6000-nat.o): Update dependencies.
2337
2338 From Nicholas Duffek:
2339 * Makefile.in (ALLDEPFILES): Add aix-thread.c.
2340 (aix-thread.o): New rule.
2341 * configure.host (gdb_host): Set to aix432 on AIX 4.3.2+.
2342 * config/powerpc/aix432.mh: New file.
2343
2344 2002-07-30 Daniel Jacobowitz <drow@mvista.com>
2345
2346 * ppc-linux-tdep.c (ELF_NGREG, ELF_NFPREG, ELF_NVRREG)
2347 (ELF_FPREGSET_SIZE, ELF_GREGSET_SIZE): New enums.
2348 (fetch_core_registers, ppc_linux_supply_gregset)
2349 (ppc_linux_supply_fpregset): New functions.
2350 (ppc_linux_regset_core_fns): New.
2351 (_initialize_ppc_linux_tdep): Call add_core_fns.
2352 * ppc-tdep.h: Add prototypes for ppc_linux_supply_fpregset
2353 and ppc_linux_supply_gregset.
2354 * ppc-linux-nat.c (supply_gregset): Call ppc_linux_supply_gregset.
2355 (supply_fpregset): Call ppc_linux_supply_fpregset.
2356 * config/powerpc/linux.mh (NATDEPFILES): Remove core-regset.o and
2357 corelow.o.
2358 * config/powerpc/linux.mt (TDEPFILES): Add corelow.o.
2359
2360 2002-07-30 Daniel Jacobowitz <drow@mvista.com>
2361
2362 * symtab.c (lookup_symbol): Demangle before lowercasing.
2363
2364 2002-07-30 Andrew Cagney <ac131313@redhat.com>
2365
2366 * symtab.h: Replace #include "gdb_obstack.h" with opaque
2367 declaration.
2368 * cli/cli-cmds.c, cli/cli-script.c: Include "gdb_string.h".
2369 * gnu-v3-abi.c, arc-tdep.c, cli/cli-decode.c: Ditto.
2370 * avr-tdep.c, mon960-rom.c, i960-tdep.c: Ditto.
2371 * arch-utils.c, cli/cli-setshow.c: Unconditionally include
2372 "gdb_string.h".
2373 * Makefile.in (cli-script.o, cli-cmds.o): Update dependencies.
2374 (gnu-v3-abi.o, cli-setshow.o, i960-tdep.o): Ditto.
2375 (cli-decode.o, mi-cmd-var.o, mi-cmd-disas.o): Ditto.
2376 (avr-tdep.o, mon960-rom.o): Ditto.
2377 (aout_stabs_gnu_h): Define.
2378 (symtab_h): Remove $(gdb_obstack_h).
2379
2380 2002-07-30 Jim Blandy <jimb@redhat.com>
2381
2382 Patch from David Carlton <carlton@math.stanford.edu>:
2383 * gdbinit.in: Move the `dir' commands that add GDB's own source
2384 directory to the search path to the end, so that the `gdb' source
2385 directory will be searched first.
2386
2387 2002-07-29 Andrew Cagney <ac131313@redhat.com>
2388
2389 * gdb_obstack.h: New file.
2390 * symtab.h: Include "gdb_obstack.h" instead of "obstack.h".
2391 (obstack_chunk_alloc, obstack_chunk_free): Delete macros.
2392 * objfiles.h: Include "gdb_obstack.h".
2393 * Makefile.in (gdb_obstack_h): Define.
2394 (symtab_h): Add $(gdb_obstack_h).
2395 (objfiles_h): Add $(gdb_obstack_h).
2396
2397 * objfiles.c: Include "gdb_obstack.h" instead of "obstack.h".
2398 * macrotab.c, cp-valprint.c, dbxread.c: Ditto.
2399 * ch-typeprint.c, ch-valprint.c, dstread.c: Ditto.
2400 * macroexp.c, p-typeprint.c, stabsread.c: Ditto.
2401 * symtab.c, f-typeprint.c, mdebugread.c: Ditto.
2402 * p-valprint.c, symmisc.c, typeprint.c: Ditto.
2403 * symfile.c, coffread.c, c-typeprint.c: Ditto.
2404 * buildsym.c, bcache.c, ada-typeprint.c: Ditto.
2405
2406 * Makefile.in (bcache.o): Update dependencies.
2407 (buildsym.o, c-typeprint.o, ch-typeprint.o): Ditto.
2408 (ch-valprint.o, coffread.o, cp-valprint.o): Ditto.
2409 (dbxread.o, dstread.o, f-typeprint.o): Ditto.
2410 (objfiles.o, p-typeprint.o, p-valprint.o): Ditto.
2411 (stabsread.o, symfile.o, symmisc.o): Ditto.
2412 (symtab.o, typeprint.o, macroexp.o): Ditto.
2413 (macrotab.o, mdebugread.o): Ditto.
2414 (f_lang_h, coff_sym_h, coff_symconst_h): Define.
2415 (coff_ecoff_h, aout_aout64_h): Define.
2416 (aout_stabs_gnu_h, libaout_h): Define.
2417
2418 2002-07-29 Andrew Cagney <cagney@redhat.com>
2419
2420 * regcache.c (struct regcache_descr): Rename nr_registers to
2421 nr_cooked_registers. Revise comments describing the structure
2422 member fields.
2423 (init_regcache_descr): Update.
2424 (init_legacy_regcache_descr): Update.
2425 (read_register_gen, write_register_gen): When a cooked register in
2426 the raw register range, directly access the value from the raw
2427 register cache.
2428
2429 2002-07-29 Andrew Cagney <ac131313@redhat.com>
2430
2431 * z8k-tdep.c: Do not include "obstack.h".
2432 * h8300-tdep.c, h8500-tdep.c: Ditto.
2433 * m68hc11-tdep.c, sh-tdep.c: Ditto.
2434 * valprint.c, v850-tdep.c: Ditto.
2435 * d10v-tdep.c, mn10300-tdep.c: Ditto.
2436 * mn10200-tdep.c: Ditto.
2437
2438 * Makefile.in (z8k-tdep.o): Update dependencies.
2439 (m68hc11-tdep.o, valprint.o): Ditto.
2440 (v850-tdep.o, d10v-tdep.o): Ditto.
2441 (mn10300-tdep.o, sparc-tdep.o): Ditto.
2442 (sh-tdep.o, h8500-tdep.o, h8300-tdep.o): Ditto.
2443 (m32r-tdep.o, mn10200-tdep.o): Specify dependencies.
2444 (sh_opc_h, gdb_sim_sh_h): Define.
2445 (elf_sh_h, elf_bfd_h): Define.
2446 (opcode_m68hc11_h): Define.
2447 (OPCODES_SRC, OPCODES_DIR): define.
2448 (OPCODES): Use $(OPCODES_DIR).
2449 (gdb_sim_d10v_h): Rename sim_d10v_h.
2450 (gdb_sim_arm_h): Rename sim_arm_h.
2451
2452 2002-07-26 Kevin Buettner <kevinb@redhat.com>
2453
2454 * utils.c (host_pointer_to_address, address_to_host_pointer):
2455 Change internal_error() message to indicate function responsible
2456 for the error.
2457
2458 2002-07-26 Kevin Buettner <kevinb@redhat.com>
2459
2460 * ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in
2461 calls to local_hex_string_custom().
2462
2463 2002-07-26 Kevin Buettner <kevinb@redhat.com>
2464
2465 * irix5-nat.c: Move IRIX shared library support from here...
2466 * solib-irix.c: ...to here. Revised substantially to work with
2467 generic solib framework.
2468
2469 * osabi.h (gdb_osabi): Add new enum constant GDB_OSABI_IRIX.
2470 * osabi.c (gdb_osabi_names): Add corresponding string for Irix.
2471 * mips-irix-tdep.c: New file.
2472
2473 * Makefile.in (ALLDEPFILES): Add mips-irix-tdep.c and solib-irix.c.
2474 (mips-irix-tdep.o, solib-irix.o): New rules.
2475 * config/mips/irix5.mt (TDEPFILES): Add mips-irix-tdep.o, solib.o,
2476 solib-irix.o.
2477 * config/mips/irix6.mt (TDEPFILES): Likewise.
2478 * config/mips/irix6.mh (NATDEPFILES): Remove solib.o.
2479
2480 2002-07-26 Kevin Buettner <kevinb@redhat.com>
2481
2482 * aix-thread.c (coff/internal.h, bfd/libcoff.h, pthread.h): Remove
2483 disabled (via ``#if 0'') includes.
2484
2485 2002-07-26 Kevin Buettner <kevinb@redhat.com>
2486
2487 * aix-thread.c (special_register_p, supply_sprs64, supply_sprs32)
2488 (fetch_regs_user_thread, fetch_regs_kernel_thread, fill_sprs64)
2489 (fill_sprs32, store_regs_user_thread, store_regs_kernel_thread):
2490 Add support for the fpscr register.
2491 * rs6000-nat.c (regmap, fetch_inferior_registers)
2492 (store_inferior_registers, fetch_core_registers): Likewise.
2493
2494 2002-07-26 Kevin Buettner <kevinb@redhat.com>
2495
2496 * rs6000-nat.c (language.h): Include.
2497 (special_regs): Delete this array.
2498 (regmap): New function.
2499 (fetch_register, store_register): Use regmap() to map gdb
2500 register numbers to ptrace register numbers. Also, use
2501 outputs from regmap() to make decisions regarding type of
2502 ptrace() call to make. In particular, don't compare against
2503 FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
2504 (fetch_inferior_registers, store_inferior_registers): Where
2505 possible, obtain register numbers from tdep struct. Don't
2506 refer to FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
2507 * config/rs6000/tm-rs6000.h (FIRST_UISA_SP_REGNUM)
2508 (LAST_UISA_SP_REGNUM): Delete.
2509
2510 2002-07-25 Kevin Buettner <kevinb@redhat.com>
2511
2512 * rs6000-nat.c (ppc-tdep.h): Include.
2513 (fetch_registers, store_register, fetch_core_registers): Don't
2514 access registers[] directly. Instead, use supply_register() or
2515 regcache_collect() as appropriate.
2516 (find_toc_address): Format hex address with local_hex_string().
2517
2518 2002-07-25 Andrew Cagney <ac131313@redhat.com>
2519
2520 * config/djgpp/fnchange.lst: Rename bfd/elf32-fr30.c and
2521 bfd/elf32-frv.c.
2522
2523 2002-07-24 Tom Tromey <tromey@redhat.com>
2524
2525 * jv-exp.y: Marked all strings with _().
2526 (ClassInstanceCreationExpression, ArrayCreationExpression): Use
2527 internal_error.
2528 (MethodInvocation, CastExpression, parse_number, yyerror,
2529 java_type_from_name, push_expression_name, yylex): Typo fixes.
2530
2531 2002-07-24 Daniel Jacobowitz <drow@mvista.com>
2532
2533 * ui-file.c (struct tee_file, tee_file_new, tee_file_delete)
2534 (tee_file_flush, tee_file_write, tee_file_fputs)
2535 (tee_file_isatty): New.
2536 * ui-file.h (tee_file_new): Add prototype.
2537
2538 2002-07-24 Aidan Skinner <aidan@velvet.net>
2539
2540 * ada-lang.c: Change k&r style function definitions to prototyped
2541 form.
2542 * ada-typeprint.c: Change k&r style function definitions to prototyped
2543 form.
2544 * ada-valprint.c: Change k&r style function definitions to prototyped
2545 form.
2546
2547 2002-07-24 Andrew Cagney <cagney@redhat.com>
2548
2549 * README: Remove reference to remote-bug.
2550 * Makefile.in (ALLDEPFILES): Remove m88k-nat.c, m88k-tdep.c and
2551 remote-bug.c.
2552 (m88k-nat.o): Delete rule.
2553 (m88k-tdep.o): Delete rule.
2554 (remote-bug.o): Delete rule.
2555 * MAINTAINERS: Mark as obsolete.
2556 * elfread.c (elf_symtab_read): Mention that m88k is obsolete.
2557 * m88k-tdep.c: Make file obsolete.
2558 * config/m88k/m88k.mh: Ditto.
2559 * config/m88k/delta88v4.mh: Ditto.
2560 * config/m88k/delta88v4.mt: Ditto.
2561 * config/m88k/delta88.mt: Ditto.
2562 * config/m88k/delta88.mh: Ditto.
2563 * remote-bug.c: Ditto.
2564 * config/m88k/tm-delta88.h: Ditto.
2565 * config/m88k/nm-delta88v4.h: Ditto.
2566 * config/m88k/xm-delta88.h: Ditto.
2567 * config/m88k/xm-dgux.h: Ditto.
2568 * config/m88k/tm-m88k.h: Ditto.
2569 * config/m88k/nm-m88k.h: Ditto.
2570 * config/m88k/tm-delta88v4.h: Ditto.
2571 * m88k-nat.c: Ditto.
2572 * cxux-nat.c: Ditto.
2573 * configure.host: Make m88*-motorola-sysv4*, m88*-motorola-sysv*
2574 and m88*-*-* obsolete.
2575 * configure.tgt: Make m88*-motorola-sysv4*, m88*-motorola-* and
2576 m88*-*-* obsolete.
2577
2578 2002-07-24 Andrew Cagney <cagney@redhat.com>
2579
2580 * findvar.c (extract_unsigned_integer): Make `addr' parameter
2581 constant. Same for local pointer variables.
2582 (extract_signed_integer): Ditto.
2583 * defs.h (extract_unsigned_integer): Update.
2584 (extract_signed_integer): Update.
2585
2586 2002-07-24 Andrew Cagney <cagney@redhat.com>
2587
2588 * regcache.c (regcache_raw_write): Change buf parameter to a
2589 constant void pointer.
2590 (regcache_raw_read): Change buf parameter to a void pointer.
2591 (legacy_write_register_gen): Change myaddr parameter a constant
2592 void pointer.
2593 (supply_register): Change val parameter to a const void pointer.
2594 * regcache.h (regcache_raw_write): Update declaration.
2595 (regcache_raw_read): Update declaration.
2596 (supply_register): Update declaration.
2597
2598 2002-07-24 Tom Tromey <tromey@redhat.com>
2599
2600 * defs.h (gdb_readline_wrapper): Declare.
2601 * utils.c (prompt_for_continue): Use gdb_readline_wrapper.
2602 * tracepoint.c (read_actions): Use gdb_readline_wrapper.
2603 * top.c (gdb_readline_wrapper): New function.
2604 (command_line_input): Use it.
2605
2606 2002-07-24 Andrew Cagney <cagney@redhat.com>
2607
2608 * regcache.h (regcache_raw_read, regcache_raw_write): Replace
2609 regcache_read and regcache_write.
2610 (regcache_raw_read_as_address): Replace regcache_read_as_address.
2611 * regcache.c: Update.
2612 * sh-tdep.c (sh64_push_arguments): Update comment.
2613 (sh_pseudo_register_read): Update.
2614 (sh_pseudo_register_write): Update.
2615 (sh4_register_read): Update.
2616 (sh4_register_write): Update.
2617 (sh64_pseudo_register_read): Update.
2618 (sh64_pseudo_register_write): Update.
2619 (sh64_register_read): Update.
2620 (sh64_register_write): Update.
2621 * i386-tdep.c (i386_extract_return_value): Update.
2622 (i386_extract_struct_value_address): Update.
2623 (i386_extract_return_value): Update.
2624 * blockframe.c (generic_read_register_dummy): Update.
2625 (generic_call_dummy_register_unwind): Update
2626 * infrun.c (write_inferior_status_register): Update.
2627
2628 2002-07-23 Jim Blandy <jimb@redhat.com>
2629
2630 * parser-defs.h (expression_context_pc): Make this extern.
2631 (Thanks to Michael Snyder.)
2632
2633 2002-07-23 Andrew Cagney <ac131313@redhat.com>
2634
2635 GDB 5.2.1 released from 5.2 branch.
2636 * NEWS: Mention changes in 5.2.1 including addition of AVR target.
2637 * README: Update to mention 5.2.1.
2638
2639 2002-07-23 Mark Salter <msalter@redhat.com>
2640
2641 * remote.c (remote_read_bytes): Fix check for error.
2642
2643 2002-07-22 Kevin Buettner <kevinb@redhat.com>
2644
2645 * aix-thread.c (language.h): Include.
2646 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
2647 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
2648 Print newlines at end of debug messages.
2649 (pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
2650 (pdc_write_data): Use local_hex_string() instead of %llx formats.
2651
2652 2002-07-22 Kevin Buettner <kevinb@redhat.com>
2653
2654 * aix-thread.c (ppc-tdep.h): Include.
2655 (special_register_p): New function.
2656 (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32)
2657 (store_regs_user_thread): Use register number information from
2658 gdbarch_tdep struct instead of hardcoded offsets relative to
2659 FIRST_UISA_SP_REGNUM.
2660 (fetch_regs_kernel_thread, store_regs_kernel_thread): Call
2661 special_register_p() instead of using FPLAST_REGNUM and
2662 LAST_UISA_SP_REGNUM as lower and upper bounds on the special
2663 register numbers. Also, don't assume that LAST_UISA_SP_REGNUM
2664 will be MQ's register number.
2665
2666 2002-07-22 Michael Snyder <msnyder@redhat.com>
2667
2668 * aix-thread.c (ops): Rename to aix_thread_ops.
2669 (base_ops): Rename to base_target.
2670 (ops_attach): Rename to aix_thread_attach.
2671 (ops_detach): Rename to aix_thread_detach.
2672 (ops_resume): Rename to aix_thread_detach.
2673 (ops_wait): Rename to aix_thread_wait.
2674 (ops_kill): Rename to aix_thread_kill.
2675 (init_ops): Rename to init_aix_thread_ops.
2676 (ops_fetch_register): Rename to aix_thread_fetch_register.
2677 (ops_store_register): Rename to aix_thread_store_register.
2678 (ops_mourn_inferior): Rename to aix_thread_mourn_inferior.
2679 (ops_thread_alive): Rename to aix_thread_thread_alive.
2680 (ops_extra_thread_info: Rename to aix_thread_extra_thread_info.
2681 (ops_pid_to_str): Rename to aix_thread_pid_to_str.
2682 (ops_xfer_memory): Rename to aix_thread_xfer_memory.
2683 (fetch_regs_lib): Rename to fetch_regs_user_thread.
2684 (fetch_regs_kern): Rename to fetch_regs_kernel_thread.
2685 (store_regs_lib): Rename to store_regs_user_thread.
2686 (store_regs_kern): Rename to store_regs_kernel_thread.
2687
2688 2002-07-22 Michael Snyder <msnyder@redhat.com>
2689
2690 * aix-thread.c (ops_prepare_to_store): Eliminate.
2691 (init_ops): Don't initialize ops.prepare_to_store.
2692 (store_regs_kern): Pre-fetch register buffers from child,
2693 because some registers may not be in the cache. Copy
2694 regs from register cache only if they are cached.
2695 (store_regs_lib): Copy regs from register cache only
2696 if they are cached.
2697 (fill_sprs32, (fill_sprs64, fill_fprs, fill_gprs32,
2698 fill_gprs64): Ditto.
2699
2700 2002-07-22 Kevin Buettner <kevinb@redhat.com>
2701
2702 * aix-thread.c (gdb_assert.h): Include.
2703 (fill_sprs64, fill_sprs32): Add selected asserts to make sure that
2704 register sizes (from register cache) match size of buffer holding
2705 register data.
2706 (fill_sprs32): Change parameter types to match those in the ptrace()
2707 buffer.
2708 (store_regs_lib): Likewise, but for 32-bit temporary variables.
2709 (ops_prepare_to_store): Rename loop variable ``i'' to ``regno''.
2710
2711 2002-07-22 Michael Snyder <msnyder@redhat.com>
2712
2713 * aix-thread.c (supply_sprs64): Cosmetic change.
2714 (supply_sprs32): Cosmetic change.
2715 (fill_gprs64, fill_gprs32, fill_fprs, fill_sprs32): New funcs.
2716 (fill_sprs64): Use regcache_collect instead of read_register.
2717 (store_regs_lib): Use regcache_collect instead of
2718 read_register. Use fill_sprs32 instead of fill_sprs64,
2719 if debugging a 32-bit architecture.
2720 (store_regs_kern): Use fill_gprs64 etc. to pull the values
2721 out of the register cache, instead of passing a pointer into
2722 the register cache directly to ptrace. Use regcache_collect
2723 insteaad of read_register.
2724 (ops_prepare_to_store): Use target_read_registers instead
2725 of read_register_bytes.
2726
2727 2002-07-20 Aidan Skinner <aidan@velvet.net>
2728
2729 * MAINTAINERS: Add self under write after approval.
2730
2731 2002-07-20 Aidan Skinner <aidan@velvet.net>
2732
2733 * ada-tasks.c: Change k&r style function definitions to prototyped
2734 form.
2735
2736 2002-07-19 Andrew Cagney <ac131313@redhat.com>
2737
2738 * Makefile.in (x86-64-tdep.o): Add $(objfiles_h).
2739 * x86-64-tdep.c: Include "objfiles.h".
2740 (x86_64_gdbarch_init): Set in_solib_call_trampoline to
2741 in_plt_section. From 2002-07-18 Michal Ludvig <mludvig@suse.cz>.
2742
2743 2002-07-17 Michal Ludvig <michal@suse.cz>
2744
2745 * dwarf2cfi.c (execute_stack_op): Complain on unknown DW_OP_ value.
2746 (update_context): Initialise cfa variable.
2747
2748 2002-07-17 Michael Snyder <msnyder@redhat.com>
2749
2750 * aix-thread.c: Shorten some long lines.
2751 Bring comments into line with code spec.
2752
2753 2002-07-18 Joel Brobecker <brobecker@gnat.com>
2754
2755 * infrun.c: Re-indent using gdb_indent.sh.
2756
2757 2002-07-18 Joel Brobecker <brobecker@gnat.com>
2758
2759 * infrun.c (handle_inferior_event): Remove unneeded extra brace.
2760 Leave the indentation temporarily untouched, to minimize the diffs.
2761
2762 2002-07-18 Elena Zannoni <ezannoni@redhat.com>
2763
2764 * stabsread.c: Make os9k sections of the code obsolete,
2765 for real this time.
2766 * stabsread.h: Make os9k sections of the code obsolete.
2767
2768 2002-07-18 Michal Ludvig <mludvig@suse.cz>
2769
2770 * linux-low.c (regsets_store_inferior_registers): Add free()
2771 at the end of a loop to prevent memory leak.
2772 * linux-x86-64-low.c (x86_64_regmap): Add CS, SS registers.
2773 (X86_64_NUM_GREGS): Count it from the size of x86_64_regmap.
2774 * config/sparc/tm-sp64linux.h: Make the rest of #endif
2775 line a comment.
2776 * Makefile.in (x86-64-linux-nat.o): Remove dependency on i387-tdep.h
2777
2778 2002-07-17 Jim Blandy <jimb@redhat.com>
2779
2780 * macrocmd.c (info_macro_command): Remove newline from error
2781 message.
2782
2783 2002-07-17 J"orn Rennecke <joern.rennecke@superh.com>
2784
2785 * sh-tdep.c (sh_dsp_register_sim_regno): New function.
2786 (sh_gdbarch_init): Use it for sh-dsp.
2787
2788 2002-07-16 Kevin Buettner <kevinb@redhat.com>
2789
2790 * dwarf2read.c (read_initial_length): Handle older, non-standard,
2791 64-bit DWARF2 format.
2792
2793 2002-07-16 Joel Brobecker <brobecker@gnat.com>
2794
2795 * proc-api.c: use HAVE_SYS_PROC_H macro to avoid including
2796 <sys/proc.h> when not available.
2797
2798 2002-07-16 Andrew Cagney <ac131313@redhat.com>
2799
2800 * NEWS: Mention that the i[34]86-*-os9k has been made obsolete.
2801 * stabsread.c: Make os9k sections of the code obsolete.
2802 * configure.tgt: Make i[3456]86-*-os9k target obsolete.
2803 * config/i386/i386os9k.mt: Make file obsolete.
2804 * Makefile.in (ALLDEPFILES): Remove remote-os9k.c.
2805 (COMMON_OBS): Remove os9kread.o
2806 (SFILES): Remove os9kread.c.
2807 (os9kread.o, remote-os9k.o): Make target obsolete.
2808 * remote-os9k.c: Make file obsolete.
2809 * os9kread.c: Make file obsolete.
2810 * Makefile.in
2811
2812 2002-07-16 Andrew Cagney <ac131313@redhat.com>
2813
2814 * NEWS: Mention that the FR30 has been made obsolete.
2815 * fr30-tdep.c: Make file obsolete.
2816 * config/fr30/tm-fr30.h: Ditto.
2817 * config/fr30/fr30.mt: Ditto.
2818 * configure.tgt: Make fr30-*-elf obsolete.
2819 * MAINTAINERS: Make fr30-elf obsolete.
2820
2821 2002-07-16 Pierre Muller <muller@ics.u-strasbg.fr>
2822
2823 * blockframe.c (get_pc_function_start): return 0 if the minimal symbol
2824 found is not inside a section.
2825
2826 2002-07-15 Kevin Buettner <kevinb@redhat.com>
2827
2828 * aix-thread.c (ptrace_check): Use safe_strerror() instead of
2829 strerror().
2830 (pdc_realloc): Use xrealloc() instead of realloc().
2831
2832 2002-07-15 Kevin Buettner <kevinb@redhat.com>
2833
2834 * aix-thread.c (PD_ERROR, CALL_BASE): Delete.
2835 (ops_resume, ops_wait, fetch_regs_lib, store_regs_lib)
2836 (ops_xfer_memory, ops_kill): Don't use PD_ERROR or CALL_BASE
2837 macros.
2838
2839 2002-07-15 Kevin Buettner <kevinb@redhat.com>
2840
2841 * aix-thread.c (ptrace_check): Eliminate goto.
2842 (sync_threadlists): Eliminate gotos. Also, fix array overrun
2843 problem.
2844
2845 2002-07-15 Kevin Buettner <kevinb@redhat.com>
2846
2847 * aix-thread.c (gdbcmd.h): Include.
2848 (DEBUG, DBG, DBG2, dbg): Eliminate.
2849 (debug_aix_thread): New static global.
2850 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
2851 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
2852 (fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
2853 invocations to DBG and DBG2 macros to test against
2854 ``debug_aix_thread'' and call fprintf_unfiltered().
2855 (_initialize_aix_thread): Add new command "set debug aix-thread".
2856
2857 2002-07-15 Andrew Cagney <ac131313@redhat.com>
2858
2859 From Gerhard Tonn <TON@de.ibm.com>:
2860 * s390-nat.c (fill_fpregset, fill_gregset): Use regcache_collect
2861 instead of supply_register.
2862
2863 2002-07-15 Andrew Cagney <ac131313@redhat.com>
2864
2865 * dwarf2cfi.c: Include "gdb_assert.h".
2866 (frame_state_for): Use gdb_assert to check that fde->cie_ptr is
2867 non-NULL.
2868 (update_context): Do not use __func__. Add missing ``break''.
2869 (update_context): Do not use __func__.
2870
2871 2002-07-15 Elena Zannoni <ezannoni@redhat.com>
2872
2873 * rs6000-tdep.c (rs6000_gdbarch_init): Remove variable print_insn
2874 and its setting. Set gdbarch instruction printing functions
2875 directly. For non-rs6000 case use new function
2876 gdb_print_insn_powerpc.
2877 (gdb_print_insn_powerpc): New function.
2878
2879 2002-07-13 Andrew Cagney <ac131313@redhat.com>
2880
2881 * NEWS: Mention that the d30v has been marked obsolete.
2882 * MAINTAINERS: Note that d30v / d30v-elf has been made obsolete.
2883 * configure.tgt: Mark d30v-*-* as obsolete.
2884 * d30v-tdep.c: Mark file as obsolete.
2885 * config/d30v/d30v.mt: Ditto.
2886 * config/d30v/tm-d30v.h: Ditto.
2887
2888 2002-07-13 Aidan Skinner <aidan@velvet.net>
2889
2890 * ada-tasks.c (add_task_entry): replace calls to
2891 malloc() with xmalloc
2892 * ada-tasks.c (init_task_list): replace calls to free with xfree()
2893
2894 * ada-lang.c (replace_operator_with_call, fill_in_ada_prototype,
2895 ada_finish_decode_line_1, all_sals_for_line
2896 ada_breakpoint_rewrite): replace calls to free() with xfree()
2897
2898 2002-07-12 Kevin Buettner <kevinb@redhat.com>
2899
2900 From Nicholas Duffek (with minor changes by Martin Hunt,
2901 Louis Hamilton, and Kevin Buettner):
2902 * aix-thread.c: New file.
2903
2904 2002-07-12 Petr Sorfa <petrs@caldera.com>
2905
2906 * dwarf2read.c (dwarf2_invalid_attrib_class): New
2907 complaint for invalid attribute class or form.
2908 (read_func_scope): DW_AT_frame_base
2909 better handling of DW_AT_block*.
2910 (dwarf2_add_member_fn): DW_AT_vtable_elem_location
2911 better handling of DW_AT_block*.
2912 (read_common_block): DW_AT_location
2913 better handling of DW_AT_block*.
2914 (read_partial_die): DW_AT_location better handling
2915 of DW_AT_block*.
2916 (new_symbol): DW_AT_external better handling of
2917 DW_AT_block*. Proper initialization of variable
2918 "addr".
2919 (attr_form_is_block): New function that returns true
2920 if the attribute's form is of DW_FORM_block*.
2921
2922 2002-07-12 Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
2923
2924 * valops.c (find_method_list): Remove comment about
2925 removed STATIC_MEMFUNCP argument.
2926 (value_find_oload_method_list): Likewise.
2927
2928 2002-07-12 Kevin Buettner <kevinb@redhat.com>
2929
2930 From Nicholas Duffek:
2931 * rs6000-nat.c (vmap_ldinfo, xcoff_relocate_core): Call
2932 target_new_objfile_hook.
2933
2934 2002-07-12 Kevin Buettner <kevinb@redhat.com>
2935
2936 From Nicholas Duffek:
2937 * xcoffread.c (scan_xcoff_symtab): Recognize XMC_TD as a data storage
2938 csect.
2939
2940 2002-07-12 Andrew Cagney <cagney@redhat.com>
2941
2942 * MAINTAINERS: Mention --enable-sim-build-warnings.
2943 (m68hc11-elf): Disable sim build warnings.
2944 (m32r-elf): Mark as broken obsolete candidate.
2945 (x86_64-linux-gnu): Mark as buildable with -Werror.
2946 (arm-elf): Change -w to ``,'' which enables warnings but not
2947 -Werror.
2948
2949 2002-07-12 Andrew Cagney <ac131313@redhat.com>
2950
2951 * bcache.h: Update copyright.
2952 (struct bstring, struct bcache): Move definition to "bcache.c".
2953 Replaced by opaque declaration.
2954 (bcache_xfree): Replace free_bcache.
2955 (bcache_xmalloc, bcache_memory_used): Declare.
2956
2957 * bcache.c: Update copyright.
2958 (struct bstring, struct bcache): Moved to here from "bcache.h".
2959 Update comments.
2960 (bcache_xmalloc, bcache_memory_used): New functions.
2961 (bcache_xfree): Replace function free_bcache.
2962
2963 * Makefile.in (objfiles.o): Add $(bcache_h).
2964 (objfiles_h): Remove $(bcache_h).
2965 (symfile.o): Add $(bcache_h).
2966
2967 * symmisc.c: Update copyright.
2968 (print_symbol_bcache_statistics): Pass psymbol_cache by value.
2969 (print_objfile_statistics): Use bcache_memory_used.
2970
2971 * symfile.c: Include "bcache.h".
2972 (reread_symbols): Use bcache_xfree.
2973 (reread_symbols): Use bcache_xmalloc and bcache_xfree.
2974 (add_psymbol_to_list): Pass psymbol_cache by value.
2975 (add_psymbol_with_dem_name_to_list): Ditto.
2976
2977 * objfiles.h: Update copyright.
2978 (struct bcache): Declare opaque. Do not include "bcache.h".
2979 (struct objfile): Change psymbol_cache and macro_cache to ``struct
2980 bcache'' pointers.
2981 * dwarf2read.c (macro_start_file): Pass macro_cache by value.
2982
2983 * objfiles.c: Include "bcache.h". Update copyright.
2984 (allocate_objfile): Use bcache_xmalloc to create psymbol_cache and
2985 macro_cache.
2986 (free_objfile): Use bcache_xfree.
2987
2988 2002-07-11 Grace Sainsbury <graces@redhat.com>
2989
2990 * monitor.c (monitor_fetch_register): Make name a constant.
2991 (monitor_store_register): Same.
2992
2993 2002-07-11 Daniel Jacobowitz <drow@mvista.com>
2994
2995 Based on patch from Daniel Berlin <dberlin@dberlin.org>.
2996 * buildsym.c: Include "demangle.h" for SYMBOL_INIT_DEMANGLED_NAME.
2997 (finish_block) For non-function blocks, hash the symbol table. For
2998 function blocks, mark the symbol table as unhashed.
2999 * minsyms.c (msymbol_hash): Return hash value without taking modulus.
3000 (msymbol_hash_iw): Likewise.
3001 (add_minsym_to_hash_table): Take modulus of msymbol_hash's return
3002 value.
3003 (add_minsym_to_demangled_hash_table): Likewise for msymbol_hash_iw.
3004 (lookup_minimal_symbol): Likewise for both.
3005 * symtab.h (struct block): Add `hashtable' flag. Comment the
3006 hashtable.
3007 (BLOCK_HASHTABLE, BLOCK_BUCKETS, BLOCK_BUCKET): New macro.
3008 (ALL_BLOCK_SYMBOLS): Update.
3009 (BLOCK_SHOULD_SORT): Do not sort hashed blocks.
3010 (struct symbol): Add `hash_next' pointer.
3011 * symtab.c (lookup_block_symbol): Search using the hash table when
3012 possible.
3013 (find_pc_sect_symtab): Use ALL_BLOCK_SYMBOLS.
3014 (search_symbols, find_addr_symbol): Likewise.
3015
3016 * dstread.c (process_dst_block): Clear hashtable bit for new block.
3017 (read_dst_symtab): Likewise.
3018 * jv-lang.c (get_java_class_symtab): Likewise.
3019 * mdebugread.c: Include "gdb_assert.h".
3020 (shrink_block): Assert that the block being modified is not hashed.
3021 * coffread.c (patch_opaque_types): Use ALL_BLOCK_SYMBOLS.
3022 * symmisc.c (free_symtab_block): Walk the hash table when freeing
3023 symbols.
3024 (dump_symtab): Recognize hashed blocks.
3025 * printcmd.c (print_frame_args): Assert that function blocks do not
3026 have hashed symbol tables.
3027 * ada-lang.c (symtab_for_sym): Use ALL_BLOCK_SYMBOLS.
3028 (fill_in_ada_prototype, debug_print_block): Likewise.
3029 (ada_add_block_symbols): Use ALL_BLOCK_SYMBOLS. Handle hash tables.
3030
3031 2002-07-11 Corinna Vinschen <vinschen@redhat.com>
3032
3033 * stack.c (print_frame): Use result of frame_address_in_block()
3034 instead of fi->pc when evaluating symbols.
3035 (backtrace_command_1): Ditto.
3036
3037 2002-07-11 Andrew Cagney <cagney@redhat.com>
3038
3039 * cris-tdep.c (cris_saved_pc_after_call): Fix parameter type.
3040 Make static.
3041
3042 * arm-tdep.c (arm_register_name): Make return type constant.
3043
3044 2002-07-10 Andrew Cagney <ac131313@redhat.com>
3045
3046 * win32-nat.c (has_detach_ability): Convert to strict ISO C
3047 prototype.
3048 * top.c (gdb_rl_operate_and_get_next_completion): Ditto.
3049 * s390-tdep.c (s390_fp_regnum): Ditto.
3050 (s390_read_fp): Ditto.
3051 (s390_pop_frame): Ditto.
3052 (_initialize_s390_tdep): Ditto.
3053 * remote.c (get_remote_state): Ditto.
3054 * procfs.c (mappingflags): Ditto.
3055 * memattr.c (_initialize_mem): Ditto.
3056 * mcore-tdep.c (mcore_pop_frame): Ditto.
3057 * m68klinux-nat.c (_initialize_m68k_linux_nat): Ditto.
3058 * m68k-tdep.c (m68k_register_bytes_ok): Ditto.
3059 * language.c (set_case_str): Ditto.
3060 * gnu-v3-abi.c (vtable_address_point_offset): Ditto.
3061 * frv-tdep.c (new_variant): Ditto.
3062 (frv_stopped_data_address): Ditto.
3063 * dwarf2cfi.c (fde_chunks_need_space): Ditto.
3064 (context_alloc): Ditto.
3065 (frame_state_alloc): Ditto.
3066 (unwind_tmp_obstack_init): Ditto.
3067 (unwind_tmp_obstack_free): Ditto.
3068 (cfi_read_fp): Ditto.
3069 * cris-tdep.c (cris_saved_pc_after_call): Ditto.
3070 (cris_pop_frame): Ditto.
3071 * c-lang.c (scanning_macro_expansion): Ditto.
3072 (finished_macro_expansion): Ditto.
3073 (c_preprocess_and_parse): Ditto.
3074 * gdbarch.sh: Ditto.
3075 * gdbarch.h, gdbarch.c: Regenerate.
3076 * config/mn10200/tm-mn10200.h: Adjust indentation.
3077 * target.c: Adjust indentation.
3078 * symtab.h: Adjust indentation.
3079 * stabsread.h: Adjust indentation.
3080 * remote-es.c: Adjust indentation.
3081 * os9kread.c: Adjust indentation.
3082
3083 2002-07-10 Andrew Cagney <ac131313@redhat.com>
3084
3085 * wince.c (_initialize_wince): Rename _initialize_inftarg.
3086 * win32-nat.c (_initialize_win32_nat): Rename _initialize_inftarg.
3087
3088 2002-07-10 Grace Sainsbury <graces@redhat.com>
3089
3090 * NEWS: Mention m68k, mcore multi-arching.
3091 * MAINTAINERS: Change status of m68k, mcore to reflect
3092 multi-arching.
3093
3094 2002-07-10 Daniel Jacobowitz <drow@mvista.com>
3095
3096 * valops.c (find_overload_match): Free oload_syms.
3097
3098 2002-07-09 Joel Brobecker <brobecker@gnat.com>
3099
3100 Define HAVE_SYS_PROC_H if sys/proc.h exists
3101 * configure.in: Add check for sys/proc.h
3102 * config.in: Regenerate.
3103 * configure: Regenerate.
3104
3105 2002-07-09 Grace Sainsbury <graces@redhat.com>
3106
3107 * config/m68k/tm-m68k.h: Remove macros wrapped in
3108 #if !GDB_MULTI_ARCH.
3109
3110 2002-07-08 Andrew Cagney <ac131313@redhat.com>
3111
3112 * config.in, configure: Regenerate.
3113
3114 2002-07-08 Mark Kettenis <kettenis@gnu.org>
3115
3116 * dwarf2cfi.c: Include "gcore.h".
3117 (execute_stack_op): Fix implementation of the
3118 DW_OP_deref and DW_OP_deref_size operators by letting do their
3119 lookup in the target.
3120
3121 2002-07-07 Mark Kettenis <kettenis@gnu.org>
3122
3123 From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de>:
3124 * i386-sol2-tdep.c (i386_sol2_init_abi): Correct value for
3125 tdep->sc_sp_offset.
3126
3127 2002-07-05 Daniel Jacobowitz <drow@mvista.com>
3128
3129 Fix PR gdb/595, gdb/602
3130 * gnu-v3-abi.c (gnuv3_baseclass_offset): Remove unused variables.
3131 Don't call value_cast, just read the vtable pointer; update comments
3132 to match.
3133
3134 2002-07-05 Grace Sainsbury <graces@redhat.com>
3135
3136 * config/mcore/tm-mcore.h: Remove file.
3137 * config/mcore/mcore.mt: Remove definition of TM_FILE
3138 * configure.tgt: Set gdb_multi_arch to yes for the mcore target.
3139
3140 2002-07-05 Mark Kettenis <kettenis@gnu.org>
3141
3142 * i386bsd-tdep.c: Include "gdb_string.h".
3143
3144 2002-07-04 Grace Sainsbury <graces@redhat.com>
3145
3146 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Set to 2.
3147 (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG,RETVAL_REGNUM): Move to
3148 mcore-tdep.
3149 (REG_STRUCT_HAS_ADDR, USE_STRUCT_CONVENTION, GET_SAVED_REGISTER)
3150 (TARGET_VIRTUAL_FRAME_POINTER, BELIEVE_PCC_PROMOTION): Remove.
3151 * mcore-tdep.c (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG)
3152 (RETVAL_REGNUM): Move macros from tm-mcore.h
3153 (mcore_reg_struct_has_addr): New function.
3154 (mcore_gdbarch_init): Added initializations for the macros removed
3155 from tm-mcore.h.
3156
3157 2002-07-04 Mark Kettenis <kettenis@gnu.org>
3158
3159 * osabi.c (generic_elf_osabi_sniffer): Add check for FreeBSD 3.x's
3160 traditonal string branding within the ELF header.
3161
3162 2002-07-04 Daniel Jacobowitz <drow@mvista.com>
3163
3164 * symtab.c (remove_params): New function.
3165 (make_symbol_overload_list): Use it instead of cplus_demangle.
3166 (overload_list_add_symbol): Likewise. Reorder. Fix memory leak.
3167
3168 2002-07-04 Mark Kettenis <kettenis@gnu.org>
3169
3170 * i386obsd-nat.c (_initialize_i386obsd_nat): Fix typo in prototype.
3171
3172 * i386bsd-tdep.c (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end):
3173 New variables.
3174 (i386nbsd_init_abi): Use these to initialize tdep->sigtramp_start
3175 and tdep->sigtramp_end.
3176 * i386obsd-nat.c: New file.
3177 * config/i386/obsd.mh (NATDEPFILES): Add i386obsd-nat.o.
3178
3179 * dwarf2cfi.c (cfi_pop_frame): Use alloca() for regbuf.
3180 Don't call get_current_frame().
3181
3182 2002-07-04 Pierre Muller <muller@ics.u-strasbg.fr>
3183
3184 * i386-nat.c (child_post_startup_inferior): New function
3185 calling i386_cleanup_dregs if
3186 I386_USE_GENERIC_WATCHPOINTS is defined.
3187 * config/i386/nm-i386.h: define CHILD_POST_STARTUP_INFERIOR
3188 conditional to acknowledge that i386-nat.c has its
3189 own child_post_startup_inferior function.
3190
3191 2002-07-04 Mark Kettenis <kettenis@gnu.org>
3192
3193 * i386-tdep.h (I386_MAX_REGISTER_SIZE): New define.
3194 * i386-tdep.c (i386_do_pop_frame): Use I386_MAX_REGISTER_SIZE
3195 instead of MAX_REGISTER_RAW_SIZE.
3196 (i386_extract_return_value, i386_extract_struct_value_address):
3197 Convert to use regcache.
3198 (i386_gdbarch_init): Set max_register_raw_size and
3199 max_register_virtual_size to I386_MAX_REGISTER_SIZE.
3200 Set extract_return_value and extract_struct_value_address instead
3201 of their deprecated variants.
3202
3203 Convert i386 target to generic dummy frames.
3204 * i386-tdep.c: Include "symfile.h".
3205 (i386_frameless_signal_p): Consider a function to be frameless if
3206 the pc points at the first instruction of the function.
3207 (i386_frame_chain): Handle (generic) call dummies.
3208 (i386_frame_saved_pc): Likewise.
3209 (i386_frame_init_saved_regs): Remove code dealing with call
3210 dummies on the stack.
3211 (i386_push_dummy_frame): Removed.
3212 (i386_call_dummy_words): Removed.
3213 (i386_fix_call_dummy): Removed.
3214 (i386_push_return_address): New function.
3215 (i386_do_pop_frame): Renamed from i386_pop_frame. Add FRAME
3216 parameter, and don't call get_current_frame.
3217 (i386_pop_frame): New function.
3218 (i386_gdbarch_init): Set use_generic_dummy_frames to 1, set
3219 call_dummy_location to AT_ENTRY_POINT, set call_dummy_address to
3220 entry_point_address, set call_dummy_breakpoint_offset to 0, set
3221 call_dummy_length to 0, set call_dummy_words to NULL, set
3222 sizeof_call_dummy_words to 0, set fix_call_dummy to
3223 generic_fix_call_dummy, set pc_in_call_dummy to
3224 pc_in_call_dummy_at_entry_point, set push_dummy_frame to
3225 generic_push_dummy_frame, set push_return_address to
3226 i386_push_return_address and set frame_chain_valid to
3227 generic_file_frame_chain_valid.
3228
3229 2002-07-03 Andrew Cagney <ac131313@redhat.com>
3230
3231 * gdbarch.sh (struct regcache): Add opaque declaration.
3232 (EXTRACT_RETURN_VALUE): New architecture method.
3233 (EXTRACT_STRUCT_VALUE_ADDRESS): Ditto.
3234 * gdbarch.h, gdbarch.c: Regenerate.
3235 * arch-utils.c (legacy_extract_return_value): New function.
3236 * arch-utils.h (legacy_extract_return_value): Declare.
3237 * values.c (value_being_returned): Re-enable code handling
3238 EXTRACT_STRUCT_VALUE_ADDRESS. Move
3239 deprecated_grub_regcache_for_registers call to block handling
3240 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
3241 (EXTRACT_RETURN_VALUE): Do not define.
3242
3243 2002-07-03 Grace Sainsbury <graces@redhat.com>
3244
3245 * config/mcore/tm-mcore.h (REGISTER_BYTES, NUM_REGS, PC_REGNUM)
3246 (SP_REGNUM, FP_REGNUM, FUNCTION_START_OFFSET, DECR_PC_AFTER_BREAK)
3247 (BREAKPOINT_FROM_PC, INNER_THAN, SAVED_PC_AFTER_CALL)
3248 (INIT_EXTRA_FRAME_INFO, FRAME_INIT_SAVED_REGS, INIT_FRAME_PC)
3249 (FRAME_CHAIN, FRAME_CHAIN_VALID, FRAME_SAVED_PC)
3250 (STORE_RETURN_VALUE, DEPRECATED_EXTRACT_RETURN_VALUE)
3251 (STORE_STRUCT_RETURN, DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
3252 (SKIP_PROLOGUE, FRAME_ARGS_SKIP, FRAME_ARGS_ADDRESS)
3253 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, POP_FRAME)
3254 (PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME, PUSH_ARGUMENTS): Remove.
3255 * mcore-tdep.c (mcore_init_extra_frame_info): Add fromleaf
3256 argument so the function fits the prototype in the architecture
3257 vector.
3258 (mcore_pop_frame): Remove argument so the function fits the
3259 prototype. Use get_current_frame instead of the argument.
3260 (mcore_push_arguments): Change type of struct_return so the
3261 function can be used in the architecture vector.
3262 (mcore_store_struct_return): Add.
3263 (mcore_frame_init_saved_regs): Add.
3264 (mcore_gdbarch_init): Add function calls to replace the macros
3265 removed from tm-mcore.h
3266
3267 2002-07-03 Andrew Cagney <ac131313@redhat.com>
3268
3269 * infcmd.c (print_return_value): Remove compatibility code calling
3270 deprecated_grub_regcache_for_registers.
3271
3272 * values.c: Include "regcache.h".
3273 (value_being_returned): Update. Use
3274 deprecated_grub_regcache_for_registers to extract the register
3275 buffer address.
3276 * value.h (value_being_returned): Change ``retbuf'' parameter to a
3277 ``struct regcache''.
3278 * Makefile.in (values.o): Add dependency on $(regcache_h).
3279
3280 * inferior.h (run_stack_dummy): Change type of second parameter to
3281 a ``struct regcache''.
3282 * valops.c (hand_function_call): Change type of retbuf to ``struct
3283 regcache''. Allocate using regcache_xmalloc, clean using
3284 make_cleanup_regcache_xfree.
3285 * infcmd.c (run_stack_dummy): Update. Use
3286 regcache_cpu_no_passthrough instead of memcpy to copy the buffer.
3287
3288 * regcache.c (do_regcache_xfree): New function.
3289 (make_cleanup_regcache_xfree): New function.
3290 * regcache.h (make_cleanup_regcache_xfree): Declare.
3291
3292 2002-07-03 Martin M. Hunt <hunt@redhat.com>
3293
3294 * event-top.c (command_line_handler): Don't read past
3295 beginning of buffer.
3296
3297 2002-07-03 Martin M. Hunt <hunt@redhat.com>
3298
3299 * varobj.c (struct varobj_root): Change frame from CORE_ADDR to
3300 struct frame_id.
3301 (varobj_create): Store frame_id for root.
3302 (varobj_gen_name): Use xasprintf.
3303 (varobj_update): Save and restore frame using get_frame_id() and
3304 frame_find_by_id().
3305 (create_child): Use xasprintf.
3306 (new_root_variable): Initialize frame_id.
3307 (c_name_of_child): Use xasprintf. Call find_frame_by_id().
3308 (c_value_of_variable): Use xasprintf. Move mem_fileopen call
3309 to prevent memory leak.
3310
3311 2002-07-03 Andrew Cagney <ac131313@redhat.com>
3312
3313 * valops.c (hand_function_call): Move declaration of retbuf to
3314 start of function, allocate using malloc, add a cleanup but before
3315 the inf_status cleanup, cleanup the buffer. Rename local variable
3316 old_chain to inf_status_cleanup.
3317
3318 2002-07-03 Martin M. Hunt <hunt@redhat.com>
3319
3320 * top.c (execute_command): Use cmd_func() and cmd_func_p().
3321
3322 * cli/cli-decode.c (cmd_func_p): New function.
3323 (cmd_func): New function.
3324
3325 * command.h: Add cmd_func() and cmd_func_p().
3326
3327 2002-07-03 Grace Sainsbury <graces@redhat.com>
3328
3329 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Add macro. Set to 0.
3330 (REGISTER_SIZE): Remove.
3331 (MAX_REGISTER_RAW_SIZE): Remove.
3332 (REGISTER_VIRTUAL_TYPE): Remove.
3333 (MAX_REGISTER_VIRTUAL_SIZE): Remove.
3334 (REGISTER_NAME): Remove.
3335 (USE_GENERIC_DUMMY_FRAMES): Remove.
3336 (CALL_DUMMY): Remove.
3337 (CALL_DUMMY_START_OFFSET): Remove.
3338 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
3339 (CALL_DUMMY_LOCATION): Remove.
3340 (FIX_CALL_DUMMY): Remove.
3341 (CALL_DUMMY_ADDRESS): Remove.
3342 (SIZEOF_CALL_DUMMY_WORDS): Remove.
3343 (SAVE_DUMMY_FRAME_TOS): Remove.
3344 * mcore-tdep.c (MCORE_REG_SIZE, MCORE_NUM_REGS): Add macros.
3345 (mcore_register_virtual_type): New function.
3346 (mcore_register_byte): New function.
3347 (mcore_register_size): New function.
3348 (mcore_register_name): New function.
3349 (mcore_gdbarch_init): New function. Add set_gdbarch calls for
3350 macros removed from tm-mcore.h.
3351 (mcore_dump_tdep): Add.
3352 (_initialize_mcore_tdep): Add gdbarch_register call.
3353
3354 2002-07-03 Mark Kettenis <kettenis@gnu.org>
3355
3356 * i386-tdep.c (i386_frameless_signal_p): Provide an argument in to
3357 frameless_look_for_prologue, such that we actually call this
3358 function.
3359
3360 2002-07-02 Joel Brobecker <brobecker@gnat.com>
3361
3362 * frame.h (frame_address_in_block): New function.
3363
3364 * blockframe.c (frame_address_in_block): New function extracted
3365 from get_frame_block().
3366 (get_frame_block): Use frame_address_in_block().
3367 (block_innermost_frame): Use frame_address_in_block() to match
3368 the frame pc address against the block boundaries rather than
3369 the frame pc directly. This prevents a failure when a frame pc
3370 is actually a return-address pointing immediately after the end
3371 of the given block.
3372
3373 2002-07-02 Grace Sainsbury <graces@redhat.com>
3374
3375 * MAINTAINERS: Add self under write after approval.
3376
3377 2002-07-02 Grace Sainsbury <graces@redhat.com>
3378
3379 * m68k-tdep.c (m68k_remote_breakpoint_from_pc): Add. Currently not
3380 used in architecture vector. The default is
3381 m68k_local_breakpoint_from_pc.
3382 (m68k_local_breakpoint_from_pc): Add.
3383 (enum): Add register numbers from tm-m68k.h.
3384 (m68k_gdbarch_init): Add breakpoint_from_pc to architecture
3385 vector.
3386 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Set to
3387 GDB_MULTI_ARCH_PARTIAL.
3388 (BPT_VECTOR, REGISTER_BYTES_FP, REGISTER_BYTES_NOFP)
3389 (NUM_FREGS, SIG_PC_FP_OFFSET, SP_ARG0, REMOTE_BPT_VECTOR): Move to
3390 m68k-tdep.c.
3391 (BREAKPOINT, REMOTE_BREAKPOINT): Remove.
3392 (A1_REGNUM, FP0_REGNUM, FPC_REGNUM, FPS_REGNUM, FPI_REGNUM): Move
3393 to enum in m68k-tdep.c
3394
3395 2002-07-02 Joel Brobecker <brobecker@gnat.com>
3396
3397 * solib-osf.c (open_map): Compute the list of shared libraries
3398 loaded by the inferior, rather than the list of libraries loaded
3399 by GDB itself. Otherwise, GDB ends up reading the symbols from
3400 the wrong shared libraries...
3401
3402 2002-07-02 Mark Kettenis <kettenis@gnu.org>
3403
3404 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Make static.
3405 (LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONEXT_SP_OFFSET): Remove
3406 macros.
3407 (i386_linux_sigtramp_saved_pc, i386_linux_sigtramp_saved_sp):
3408 Remove functions.
3409 (FRAMELESS_SIGNAL): Remove function.
3410 (i386_linux_frame_chain, i386_linux_frame_saved_pc,
3411 i386_linux_saved_pc_after_call): Removed.
3412 (i386_linux_init_abi): Initialize tdep->sigcontext_addr,
3413 tdep->sc_pc_offset and tdep->sc_sp_offset. Don't override
3414 frame_chain, frame_saved_pc and saved_pc_after_call any longer.
3415
3416 * i386-tdep.c (i386_frameless_signal_p): New function.
3417 (i386_frame_chain): Deal with frameless signals.
3418 (i386_sigtramp_saved_sp): New function.
3419 (i386_frame_saved_pc): Deal with frameless signals.
3420 (i386_saved_pc_after_call): Make sure the correct value is
3421 returned just after entry into a sigtramp.
3422 * i386bsd-tdep.c (i386bsd_sc_sp_offset, i386nbsd_sc_sp_offset,
3423 i386fbsd4_sc_sp_offset): New variables.
3424 (i386bsd_init_abi, i386nbsd_init_abi, i386fbsd4_init_abi): Use
3425 these variables to initialize tdep->sc_sp_offset. * i386bsd-nat.c
3426 (_initialize_i386bsd_nat): Add sanity check for sc_sp_offset
3427 similiar to what we already did for sc_pc_offset.
3428 * i386-sol2-tdep.c (i386_sol2_init_abi): Initialize
3429 tdep->sc_sp_offset.
3430
3431 * i386nbsd-tdep.c (fetch_elfcore_registers): Wrap long line.
3432
3433 2002-07-02 Michal Ludvig <mludvig@suse.cz>
3434
3435 * config/i386/tm-x86-64linux.h: New.
3436 * config/i386/x86-64linux.mt: Add GDB_MULTI_ARCH and TM_FILE
3437 definitions.
3438 * config/i386/nm-x86-64.h: Rename to ...
3439 * config/i386/nm-x86-64linux.h: ... this one.
3440 * config/i386/x86-64linux.mh: Reflect the above change.
3441
3442 2002-07-01 Mark Kettenis <kettenis@gnu.org>
3443
3444 * i386-tdep.h (struct gdbarch_tdep): Replace sigtramp_saved_pc
3445 with sigcontext_addr. Add sc_sp_offset.
3446 (i386bsd_sigtramp_saved_pc): Remove prototype.
3447 (i386bsd_sicontext_addr): Add prototype.
3448 * i386-tdep.c (i386_sigtramp_saved_pc): New function.
3449 (i386_frame_saved_pc): Rewrite to call i386_sigtramp_saved_pc.
3450 (i386_svr4_sigtramp_saved_pc): Removed.
3451 (i386_svr4_sigcontext_addr): New function.
3452 (i386_svr4_init_abi): Don't initialize tdep->sigtramp_saved_pc.
3453 Initialize tdep->sigcontext_addr instead. Initialize
3454 tdep->sc_pc_offset and tdep->sc_sp_offset.
3455 (i386_gdbarch_init): Likewise.
3456 * i386bsd-tdep.c (i386bsd_sigcontext_addr): Don't make it static
3457 any more.
3458 (i386bsd_sigtramp_saved_pc): Remove function.
3459 (i386bsd_init_abi): Don't initialize tdep->sigtramp_saved_pc.
3460 Initialize tdep->sigcontext_addr instead. Initialize
3461 tdep->sc_pc_offset.
3462 * i386-linux-tdep.c (i386_linux_init_abi): Remove initialization
3463 of tdep->sigtramp_saved_pc.
3464 * i386-sol2-tdep.c (i386_sol2_init_abi): Don't initialize
3465 tdep->sigtramp_saved_pc. Initialize tdep->sigcontext_addr
3466 instead.
3467
3468 * i386-tdep.c (i386_frameless_function_invocation,
3469 i386_frame_num_args, i386_frame_init_saved_regs,
3470 i386_skip_prologue, i386_push_dummy_frame, i386_fix_call_dummy,
3471 i386_pop_frame, i386_push_arguments, i386_store_struct_return,
3472 i386_extract_return_value, i386_store_return_value,
3473 i386_extract_struct_value_address, i386_register_virtual_type,
3474 i386_register_convertible, i386_register_convert_to_virtual,
3475 i386_register_convert_to_raw, i386_svr4_sigtramp_saved_pc,
3476 i386_go32_init_abi, i386_nw_init_abi, i386_gdbarch_init): Make
3477 static.
3478
3479 2002-07-01 Mark Kettenis <kettenis@gnu.org>
3480
3481 * i386bsd-tdep.c (i386bsd_frame_saved_pc): Removed.
3482
3483 * config/i386/tm-i386sol2.h (COERCE_FLOAT_TO_DOUBLE): Removed.
3484 * i386-sol2-tdep.c (i386_sol2_init_abi): Adjust for the removal of
3485 this macro. Include "value.h".
3486
3487 2002-06-30 Aidan Skinner <aidan@velvet.net>
3488
3489 * ada-exp.tab.c: remove as it's a generated file
3490 * ada-lex.c: remove as it's a generated file
3491
3492 2002-06-30 Mark Kettenis <kettenis@gnu.org>
3493
3494 * config/i386/tm-i386.h (struct frame_info, struct
3495 frame_saved_regs, struct value, struct type): Remove forward
3496 declarations.
3497
3498 * config/i386/tm-linux.h [HAVE_PTRACE_GETFPXREGS]
3499 (FILL_FPXREGSET, HAVE_SSE_REGS): Remove define.
3500 * config/i386/nm-linux.h [HAVE_PTRACE_GETFPXREGS]
3501 (FILL_FPXREGSET): Define.
3502
3503 * config/i386/tm-nbsd.h (HAVE_SSE_REGS): Remove define.
3504
3505 * configure.tgt (i[3456]86-*-openbsd*): Fold into
3506 i[3456]86-*-netbsd* case.
3507 * config/i386/tm-obsd.h: Removed.
3508 * config/i386/obsd.mt: Removed.
3509 * config/i386/obsd.mh (NATDEPFILES): Remove corelow.o and
3510 core-aout.o.
3511 (MH_CFLAGS): Add -DYYDEBUG=0.
3512
3513 * i386bsd-nat.c (_initialize_i386bsd_nat): Define SC_PC_OFFSET to
3514 i386nbsd_sc_pc_offset on OpenBSD too.
3515
3516 * config/i386/tm-fbsd.h [!SVR4_SHARED_LIBS]
3517 (IN_SOLIB_CALL_TRAMPOLINE): Remove define.
3518 * config/i386/tm-nbsdaout.h (IN_SOLIB_CALL_TRAMPOLINE): Remove
3519 define.
3520 * i386bsd-tdep.c: Include "arch-utils.h".
3521 (i386bsd_aout_in_solib_call_trampoline): New function.
3522 (i386bsd_init_abi): Set in_solib_call_trampoline to
3523 i386bsd_aout_in_solib_call_trampoline.
3524 (i386nbsdelf_init_abi, i386fbsd_init_abi): Set
3525 in_solib_call_trampoline to generic_in_solib_call_trampoline.
3526
3527 2002-06-28 Andrew Cagney <ac131313@redhat.com>
3528
3529 * macrotab.h: Do not include "obstack.h" or "bcache.h".
3530 (struct obstack, struct bcache): Add opaque declarations.
3531 * Makefile.in (macrotab_h): Update
3532
3533 2002-06-28 Andrew Cagney <ac131313@redhat.com>
3534
3535 * blockframe.c (generic_find_dummy_frame): Change return type to
3536 ``struct regcache''.
3537 (struct dummy_frame): Replace field ``registers'' with regcache, a
3538 struct regcache object.
3539 (generic_find_dummy_frame): Update.
3540 (generic_push_dummy_frame): Update. Use regcache_xfree,
3541 regcache_xmalloc and regcache_cpy.
3542 (generic_pop_dummy_frame): Update. Use regcache_cpy and
3543 regcache_xfree.
3544 (deprecated_generic_find_dummy_frame): Update.
3545 (generic_read_register_dummy): Update. Use
3546 regcache_read_as_address.
3547 (generic_call_dummy_register_unwind): Update. Use regcache_read.
3548 (generic_get_saved_register): Update. Use regcache_read.
3549
3550 2002-06-28 Andrew Cagney <ac131313@redhat.com>
3551
3552 * Makefile.in (objfiles_h): Add $(bcache_h).
3553 * objfiles.h: Include "bcache.h".
3554
3555 * Makefile.in (symtab_h): Remove $(bcache_h).
3556 * symtab.h: Do not include "bcache.h".
3557
3558 2002-06-28 Andrew Cagney <ac131313@redhat.com>
3559
3560 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Set frame_chain_valid to
3561 generic_func_frame_chain_valid.
3562
3563 2002-06-28 David O'Brien <obrien@FreeBSD.org>
3564
3565 * config/i386/nm-fbsd.h: Include <sys/param.h>.
3566 * config/i386/tm-fbsd.h: Likewise.
3567
3568 2002-06-28 Andrew Cagney <ac131313@redhat.com>
3569
3570 * rs6000-tdep.c (rs6000_gdbarch_init): Use
3571 generic_unwind_get_saved_register.
3572
3573 2002-06-27 Andrew Cagney <ac131313@redhat.com>
3574
3575 From 2002-06-27 John David Anglin <dave@hiauly1.hia.nrc.ca>:
3576 * regcache.c (supply_register): Add missing argument to
3577 register_buffer call.
3578
3579 2002-06-27 Andrew Cagney <ac131313@redhat.com>
3580
3581 * Makefile.in (init.c): Drop -e option to grep. Not necessary and
3582 Solaris /bin/grep does not not like it. From Peter Schauer.
3583
3584 2002-06-26 Tom Tromey <tromey@redhat.com>
3585
3586 * command.h (add_setshow_cmd): Declare.
3587 (add_setshow_cmd_full): Declare.
3588 * cli/cli-decode.c (add_setshow_cmd): No longer static. Now
3589 returns void. Use add_setshow_cmd_full.
3590 (add_setshow_cmd_full): New function.
3591 (add_setshow_auto_boolean_cmd): Use add_setshow_cmd_full.
3592 (add_setshow_boolean_cmd): Likewise.
3593
3594 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
3595
3596 * config/vax/tm-vax.h: Protect from multiple inclusion.
3597 (TARGET_UPAGES, TARGET_NBPG, STACK_END_ADDR)
3598 (SIGTRAMP_START, SIGTRAMP_END, SIGCONTEXT_PC_OFFSET): Move to...
3599 * config/vax/tm-vaxbsd.h: ...here. New file.
3600 * config/vax/vax.mt (TM_FILE): Set to tm-vaxbsd.h.
3601
3602 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
3603
3604 * config/vax/tm-vax.h (BREAKPOINT): Remove.
3605 (BELIEVE_PCC_PROMOTION): Remove.
3606 (AP_REGNUM): Move to...
3607 * config/vax/nm-vax.h: ...here.
3608 * vax-tdep.c: Use VAX_AP_REGNUM instead of AP_REGNUM.
3609 (vax_breakpoint_from_pc): New function.
3610 (vax_gdbarch_init): Initialize gdbarch_breakpoint_from_pc
3611 and gdbarch_believe_pcc_promotion.
3612
3613 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
3614
3615 * Makefile.in (vax_tdep_h): Define.
3616 (vax-tdep.o): Use $(vax_tdep_h).
3617 * vax-tdep.c (vax_gdbarch_init): Use generic OS ABI framework.
3618 (vax_dump_tdep): New function.
3619 (_initialize_vax_tdep): Register vax_dump_tdep.
3620 * vax-tdep.h: Include osabi.h.
3621 (struct gdbarch_tdep): New.
3622
3623 2002-06-26 Andrew Cagney <cagney@redhat.com>
3624
3625 * frame.h (deprecated_generic_find_dummy_frame): Rename
3626 generic_find_dummy_frame.
3627 * blockframe.c (generic_find_dummy_frame): Make static.
3628 (deprecated_generic_find_dummy_frame): New function.
3629 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Replace
3630 generic_find_dummy_frame with deprecated_find_dummy_frame.
3631 (sh64_nofp_frame_init_saved_regs): Ditto.
3632 (sh_fp_frame_init_saved_regs): Ditto.
3633 * s390-tdep.c (s390_frame_saved_pc_nofix): Ditto.
3634 (s390_frame_chain): Ditto.
3635 * cris-tdep.c (cris_frame_init_saved_regs): Ditto.
3636
3637 2002-06-26 Grace Sainsbury <graces@redhat.com>
3638
3639 * config/m68k/tm-m68k.h: Rearrange code so macros not in the
3640 gdbarch vector are at the top.
3641 (NUM_REGS): Remove.
3642 (FP_REGNUM, SP_REGNUM, PS_REGNUM, PC_REGNUM, FP0_REGNUM): Remove.
3643 (FRAME_ARGS_ADDRESS): Remove.
3644 (FRAME_LOCALS_ADDRESS): Remove.
3645 (FRAME_NUM_ARGS): Remove.
3646 (FRAME_ARGS_SKIP): Remove.
3647 * m68k-tdep.c (enum): Add eumeration of special register numbers.
3648 (m68k_gdbarch_init): Add gdbarch initializations for macros
3649 undefined in tm-m68k.h
3650
3651 2002-06-26 Grace Sainsbury <graces@redhat.com>
3652
3653 * monitor.h: Add the function regname to monitor_ops
3654 structure. This way NUM_REGS does not have to be a constant.
3655 * monitor.c (monitor_fetch_register): Added support for regname
3656 function. The function is called if the array regnames is NULL.
3657 (monitor_store_register): Same.
3658 * cpu32bug-rom.c (cpu32bug_regname): Add function. Replaces
3659 regnames array.
3660 (init_cpu32bug_cmds): set cpu32bug_cmds.regnames to NULL,
3661 cpu32bug_cmds.regname to point to new function.
3662 * abug-rom.c (abug_regname): Same as above.
3663 (init_abug_cmds): Same.
3664 * dbug-rom.c (dbug_regname): Same as above.
3665 (init_dbug_cmds): Same.
3666 * remote-est.c (est_regname): Same.
3667 (init_est_cmds): Same.
3668 * rom68k-rom.c (rom68k_regname): Same.
3669 (init_rom68k_cmds): Same.
3670
3671 2002-06-25 Tom Tromey <tromey@redhat.com>
3672
3673 * breakpoint.c (delete_command): Don't repeat `delete' commands.
3674
3675 2002-06-25 Andrew Cagney <cagney@redhat.com>
3676
3677 * infrun.c (stop_registers): Change variable's type to ``struct
3678 regcache'''.
3679 (xmalloc_inferior_status): Delete function.
3680 (free_inferior_status): Delete function.
3681 (normal_stop): Use regcache_cpy.
3682 (struct inferior_status): Change type of fields ``stop_registers''
3683 and ``registers'' to ``struct regcache''.
3684 (write_inferior_status_register): Use regcache_write.
3685 (save_inferior_status): Instead of calling
3686 xmalloc_inferior_status, allocate the inf_status buffer directly.
3687 Use regcache_dup_no_passthrough and regcache_dup to save the
3688 buffers.
3689 (restore_inferior_status): Use regcache_xfree and regcache_cpy.
3690 Replace the stop_registers regcache instead of overriding it. Use
3691 regcache_xfree. Instead of calling free_inferior_status, xfree
3692 the buffer directly.
3693 (discard_inferior_status): Use regcache_xfree. Instead of calling
3694 free_inferior_status, xfree the buffer directly.
3695 (build_infrun): Use regcache_xmalloc.
3696 (_initialize_infrun): Delete redundant call to build_infrun.
3697
3698 * Makefile.in (infcmd.o): Add $(regcache_h).
3699
3700 * infcmd.c: Include "regcache.h".
3701 (run_stack_dummy): Use deprecated_grub_regcache_for_registers to
3702 obtain the address of `stop_registers' register buffer.
3703 (print_return_value): Ditto.
3704
3705 * inferior.h (struct regcache): Add opaque declaration.
3706 (stop_registers): Change variable's declared type to ``struct
3707 regcache''.
3708
3709 2002-06-24 Tom Tromey <tromey@redhat.com>
3710
3711 * cli/cli-decode.c (add_show_from_set): Fixed typo in comment.
3712 * target.c (initialize_targets): Fixed typo in
3713 trust-readonly-sections `show' documentation.
3714
3715 * main.c: Marked all strings with _().
3716
3717 2002-06-24 Don Howard <dhoward@redhat.com>
3718
3719 * memattr.c (create_mem_region): Treat hi == 0 as a special case
3720 that means max CORE_ADDR+1.
3721 (lookup_mem_region): Ditto.
3722 (mem_info_command): Ditto.
3723
3724 2002-06-24 Grace Sainsbury <graces@redhat.com>
3725
3726 * config/m68k/tm-m68k.h (DECR_PC_AFTER_BREAK): Remove.
3727 (REGISTER_BYTES_OK): Remove.
3728 (REGISTER_BYTES): Remove.
3729 (STORE_STRUCT_RETURN): Remove.
3730 (DEPRECATED_EXTRACT_RETURN_VALUE): Remove.
3731 (STORE_RETURN_VALUE): Remove.
3732 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Remove.
3733 (FRAME_CHAIN): Remove.
3734 (FRAMELESS_FUNCTION_INVOCATION): Remove.
3735 (FRAME_SAVED_PC): Remove.
3736 * m68k-tdep.c (m68k_register_bytes_ok):Add.
3737 (m68k_store_struct_return): Add.
3738 (m68k_deprecated_extract_return_value): Add.
3739 (m68k_deprecated_extract_struct_value_address): Add.
3740 (m68k_store_return_value): Add.
3741 (m68k_frame_chain): Add.
3742 (m68k_frameless_function_invocation): Add.
3743 (m68k_frame_saved_pc): Add.
3744 (m68k_gdbarch_init): added set_gdbarch calls for new
3745 functions and deleted macros.
3746
3747 2002-06-23 Tom Tromey <tromey@redhat.com>
3748
3749 * Makefile.in (HFILES_NO_SRCDIR): Remove old files.
3750 (ALLDEPFILES): Likewise.
3751 (udiheaders): Removed.
3752 (udip2soc.o): Likewise.
3753 (udi2go32.o): Likewise.
3754 (udr.o): Likewise.
3755 (HFILES_WITH_SRCDIR): Don't mention udiheaders.
3756
3757 2002-06-22 Andrew Cagney <ac131313@redhat.com>
3758
3759 * infrun.c (_initialize_infrun): Delete unnecessary call to
3760 build_infrun.
3761
3762 * regcache.h: Update comments describing the regcache_cpy family
3763 of functions.
3764 (regcache_save, regcache_restore): Delete declaration.
3765 (regcache_save_no_passthrough): Delete declaration.
3766 (regcache_restore_no_passthrough): Delete declaration.
3767 * regcache.c (regcache_save): Delete function.
3768 (regcache_save_no_passthrough): Delete function.
3769 (regcache_restore): Delete function.
3770 (regcache_restore_no_passthrough): Delete function.
3771
3772 2002-06-21 Andrew Cagney <ac131313@redhat.com>
3773
3774 * config/m68k/tm-m68k.h: Fix typo.
3775 (FRAME_INIT_SAVED_REGS): Define when non-multi-arch.
3776 (m68k_frame_init_saved_regs): Declare.
3777
3778 2002-06-21 Jim Blandy <jimb@redhat.com>
3779
3780 Remove some vestiges of Harris 88k support.
3781 * dwarf2read.c (decode_locdesc): Remove `#if' block for Harris 88k
3782 register numbering quirk.
3783 * elfread.c (elf_symtab_read): Remove `#if' block for skipping
3784 odd symbols occurring in Harris 88k ELF targets.
3785
3786 2002-06-21 Tom Tromey <tromey@redhat.com>
3787
3788 * gdb_locale.h: New file.
3789 * Makefile.in (GDB_CFLAGS): Define LOCALEDIR.
3790 (defs_h): Added gdb_locale.h.
3791 * configure, config.in: Rebuilt.
3792 * configure.in (PACKAGE): Define.
3793 * defs.h: Include gdb_locale.h.
3794 * main.c (captured_main): Call setlocale, bindtextdomain,
3795 textdomain.
3796
3797 2002-06-21 Dave Brolley <brolley@redhat.com>
3798
3799 From Stan Shebs, Jim Blandy, Mark Salter, Kevin Buettner:
3800 * config/frv/frv.mt: New file.
3801 * config/frv/tm-frv.h: New file.
3802 * configure.tgt: Support frv-*-*.
3803 * Makefile.in (frv-tdep.o): New target.
3804 * frv-tdep.c: New file.
3805 * NEWS: Mention frv.
3806
3807 2002-06-21 Dave Brolley <brolley@redhat.com>
3808
3809 * MAINTAINERS: Add self to "Write After Approval" list.
3810
3811 2002-06-21 Grace Sainsbury <graces@redhat.com>
3812
3813 * config/m68k/tm-m68k.h (REGISTER_BYTE, REGISTER_RAW_SIZE)
3814 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
3815 (REGISTER_VIRTUAL_TYPE, REGISTER_NAMES, TARGET_LONG_DOUBLE_FORMAT)
3816 (FUNCTION_START_OFFSET, SKIP_PROLOGUE, SAVED_PC_AFTER_CALL)
3817 (INNER_THAN, STACK_ALIGN, REGISTER_SIZE): Remove macros.
3818
3819 * m68k-tdep.c: Include arch-utils.h
3820 (m68k_register_raw_size): Add.
3821 (m68k_register_virtual_size): Add.
3822 (m68k_register_virtual_type): Add.
3823 (m68k_register_name): Add.
3824 (m68k_stack_align): Add.
3825 (m68k_register_byte): Add.
3826 (m68k_gdbarch_init): Add set_gdbarch calls for macros removed in
3827 tm-m68k.h.
3828
3829 2002-06-21 Grace Sainsbury <graces@redhat.com>
3830
3831 * m68k-tdep.c (m68k_frame_init_saved_regs): Replace
3832 m68k_find_saved_regs.
3833 (m68k_pop_frame): Removed saved_regs structure, and replaced
3834 references to it with frame->saved_regs.
3835 (m68k_gdbarch_init): Added function calls to initialize the
3836 gdbarch structure.
3837 (m68k_fix_call_dummy): Add.
3838 * config/m68k/tm-m68k.h: (FRAME_FIND_SAVED_REGS): Remove.
3839 (CALL_DUMMY): Remove.
3840 (CALL_DUMMY_LENGTH): Remove.
3841 (CALL_DUMMY_START_OFFSET): Remove.
3842 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
3843 (FIX_CALL_DUMMY): Remove.
3844 (PUSH_DUMMY_FRAME): Remove.
3845 (POP_FRAME): Remove.
3846
3847 2002-06-19 Pierre Muller <muller@ics.u-strasbg.fr>
3848
3849 * parse.c (parse_fprintf): New function used to avoid calls to
3850 fprintf in bison parser generated debug code.
3851 * parser-defs.h: Declaration of new parse_fprintf function.
3852 * ada-exp.y, c-exp.y, f-exp.y, jv-exp.y, m2-exp.y, p-exp.y:
3853 Set YYDEBUG to 1 by default.
3854 Set YYFPRINTF as parse_fprintf.
3855
3856 2002-06-21 Michal Ludvig <mludvig@suse.cz>
3857
3858 * dwarf2cfi.c (read_encoded_pointer): Don't handle pointer
3859 encoding anymore.
3860 (pointer_encoding, enum ptr_encoding): New.
3861 (execute_cfa_program): Take care about pointer encoding.
3862 (dwarf2_build_frame_info): Only call parse_frame_info for
3863 .debug_frame and .eh_frame.
3864 (parse_frame_info): New, derived from former dwarf2_build_frame_info.
3865 fixed augmentation handling, added relative addressing,
3866 ignore duplicate FDEs. Added comments.
3867 * dwarf2cfi.c: Reindented.
3868
3869 2002-06-20 Elena Zannoni <ezannoni@redhat.com>
3870
3871 * event-top.c (command_handler): Don't use space_at_cmd_start
3872 unless there is sbrk() on the host. Assign time and space data
3873 to union fields of the appropriate length.
3874
3875 2002-06-20 Michal Ludvig <mludvig@suse.cz>
3876
3877 * x86-64-tdep.c (x86_64_register_nr2name): Rename to
3878 x86_64_register_name. Return type changed to 'const char *'.
3879 (x86_64_register_name2nr): Rename to x86_64_register_number.
3880 (x86_64_gdbarch_init): Update to reflect the change.
3881 * x86-64-tdep.h: Ditto.
3882 * x86-64-linux-nat.c (x86_64_fxsave_offset)
3883 (supply_fpregset): Ditto.
3884
3885 2002-06-19 Andrew Cagney <cagney@redhat.com>
3886
3887 * regcache.h: Update copyright.
3888 (struct regcache, struct gdbarch): Add opaque declarations.
3889 (current_regcache): Declare global variable.
3890 (regcache_read, regcache_write): Add gdbarch parameter.
3891 (regcache_save, regcache_save_no_passthrough)
3892 (regcache_restore, regcache_restore_no_passthrough)
3893 (regcache_dup, regcache_dup_no_passthrough)
3894 (regcache_cpy, regcache_cpy_no_passthrough)
3895 (deprecated_grub_regcache_for_registers)
3896 (deprecated_grub_regcache_for_register_valid)
3897 (regcache_valid_p): Add function declarations.
3898
3899 * regcache.c: Update copyright.
3900 (regcache_descr_handle): New global variable.
3901 (struct regcache_descr): Define.
3902 (init_legacy_regcache_descr, init_regcache_descr): New functions.
3903 (regcache_descr, xfree_regcache_descr): New functions.
3904 (struct regcache): Define.
3905 (regcache_xmalloc, regcache_xfree): New functions.
3906 (regcache_cpy, regcache_cpy_no_passthrough): New functions.
3907 (regcache_dup, regcache_dup_no_passthrough): New functions.
3908 (regcache_valid_p, regcache_read_as_address): New functions.
3909 (deprecated_grub_regcache_for_registers): New function.
3910 (deprecated_grub_regcache_for_register_valid): New function.
3911 (current_regcache): New global variable.
3912 (register_buffer): Add regcache parameter. Update calls.
3913 (regcache_read, regcache_write): Add regcache parameter. Rewrite.
3914 (read_register_gen, write_register_gen): Update register_buffer
3915 call. Test for legacy_p instead of gdbarch_register_read_p or
3916 gdbarch_register_write_p.
3917 (regcache_collect): Update register_buffer call.
3918 (build_regcache): Rewrite. Use deprecated grub functions.
3919 (regcache_save, regcache_save_no_passthrough): New functions.
3920 (regcache_restore, regcache_restore_no_passthrough): New
3921 functions.
3922 (_initialize_regcache): Create the regcache_data_handle. Swap
3923 current_regcache global variable.
3924
3925 * sh-tdep.c (sh_pseudo_register_read): Add current_regcache
3926 parameter to regcache_read and regcache_write calls.
3927 (sh4_register_read): Ditto.
3928 (sh64_pseudo_register_read): Ditto.
3929 (sh64_register_read): Ditto.
3930 (sh_pseudo_register_write): Ditto.
3931 (sh4_register_write): Ditto.
3932 (sh64_pseudo_register_write): Ditto.
3933 (sh64_register_write): Ditto.
3934
3935 * defs.h (XCALLOC): Define.
3936
3937 2002-06-19 Grace Sainsbury <graces@redhat.com>
3938
3939 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Added (set to 0).
3940 * m68k-tdep.c (m68k_gdbarch_init): Added.
3941 (m68k_dump_tdep): Added.
3942
3943 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
3944
3945 * ada-lang.c (fill_in_ada_prototype): Update comment.
3946
3947 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
3948
3949 * mips-tdep.c (enum mips_abi): Explicitly start at 0. Add
3950 MIPS_ABI_LAST.
3951 (mips_abi_string, mips_abi_strings): New.
3952 (struct gdbarch_tdep): Remove mips_abi_string, add found_abi.
3953 (mips_gdbarch_init): Set tdep->found_abi. Don't set
3954 tdep->mips_abi_string. Honor mips_abi_string. Default to
3955 O32 if no ABI is found.
3956 (mips_dump_tdep): Use mips_abi_strings.
3957 (mips_abi_update): New function.
3958 (_initialize_mips_tdep): Initialize mips_abi_string. Add
3959 ``set mips abi'' and ``show mips abi''. Check the size of
3960 mips_abi_strings.
3961
3962 2002-06-19 Andrew Cagney <cagney@redhat.com>
3963
3964 * i386-linux-tdep.c (i386_linux_register_name): Make return type
3965 constant.
3966
3967 2002-06-18 Joel Brobecker <brobecker@gnat.com>
3968
3969 * alpha-tdep.c (heuristic_proc_desc): Compute the size of the
3970 current frame using only the first stack size adjustment. All
3971 subsequent size adjustments are not considered to be part of
3972 the "static" part of the current frame.
3973 Compute the address of the saved registers relative to the
3974 Frame Pointer ($fp) instead of the Stack Pointer if $fp is
3975 in use in this frame.
3976
3977 2002-06-18 Don Howard <dhoward@redhat.com>
3978
3979 * valops.c (value_ind): Use value_at_lazy() when dereferencing
3980 type int expressions. Thanks to Jim Blandy <jimb@redhat.com> for
3981 suggesting this solution.
3982
3983 2002-06-18 Andrew Cagney <ac131313@redhat.com>
3984
3985 * config/romp/xm-rtbsd.h: Delete file.
3986 * config/romp/rtbsd.mh: Delete file.
3987
3988 2002-06-18 Keith Seitz <keiths@redhat.com>
3989
3990 * breakpoint.c (condition_command): Post breakpoint_modify
3991 when a condition is added to an existing breakpoint.
3992 (commands_command): Likewise for commands.
3993 (set_ignore_count): Likewise for ignore counts.
3994 If no tty, do not simply return, still need to send event
3995 notification.
3996 (ignore_command): Only print a newline if the command came
3997 from a tty.
3998 Don't call breakpoints_changed, since this is now properly
3999 handled by set_ignore_count.
4000
4001 2002-06-18 Andrew Cagney <cagney@redhat.com>
4002
4003 * MAINTAINERS: Note that cris-elf target can be compiled with
4004 -Werror.
4005 * cris-tdep.c (cris_register_name): Make return type constant.
4006 (cris_breakpoint_from_pc): Ditto.
4007
4008 2002-06-18 Michal Ludvig <mludvig@suse.cz>
4009
4010 * frame.h (struct frame_info): Change type of context to
4011 'struct context'.
4012
4013 2002-06-17 Andrew Cagney <cagney@redhat.com>
4014
4015 * gdbarch.sh (REGISTER_NAME): Change return type a constant string
4016 pointer.
4017 * gdbarch.h, gdbarch.c: Regenerate.
4018 * config/mips/tm-mips.h (mips_register_name): Update.
4019 * i386-tdep.h (i386_register_name): Update.
4020 * mips-tdep.c (mips_register_name): Update
4021 * alpha-tdep.c (alpha_register_name): Update.
4022 * arch-utils.c (legacy_register_name): Update.
4023 * arch-utils.h (legacy_register_name): Update.
4024 * avr-tdep.c (avr_register_name): Update.
4025 * ia64-tdep.c (ia64_register_name): Update.
4026 * i386-tdep.c (i386_register_name): Update.
4027 * sparc-tdep.c (sparc32_register_name): Update.
4028 (sparc64_register_name): Update.
4029 (sparclite_register_name): Update.
4030 (sparclet_register_name): Update.
4031 * sh-tdep.c (sh_generic_register_name): Update.
4032 (sh_sh_register_name): Update.
4033 (sh_sh3_register_name): Update.
4034 (sh_sh3e_register_name): Update.
4035 (sh_sh_dsp_register_name): Update.
4036 (sh_sh3_dsp_register_name): Update.
4037 (sh_sh4_register_name): Update.
4038 (sh_sh64_register_name): Update.
4039 * s390-tdep.c (s390_register_name): Update.
4040 * rs6000-tdep.c (rs6000_register_name): Update.
4041 * ns32k-tdep.c (ns32k_register_name_32082): Update.
4042 (ns32k_register_name_32382): Update.
4043 * d10v-tdep.c (d10v_ts2_register_name): Update.
4044 (d10v_ts3_register_name): Update.
4045 * xstormy16-tdep.c (xstormy16_register_name): Update.
4046 * vax-tdep.c (vax_register_name): Update.
4047 * v850-tdep.c (v850_register_name): Update.
4048 * m68hc11-tdep.c (m68hc11_register_name): Update.
4049 * mn10300-tdep.c (mn10300_generic_register_name): Update.
4050 (am33_register_name): Update.
4051
4052 2002-06-17 Grace Sainsbury <graces@redhat.com>
4053
4054 * m68k-tdep.c: Reindented.
4055
4056 2002-06-17 Andrew Cagney <ac131313@redhat.com>
4057
4058 * gdb_indent.sh: Add prgregset_t, fpregset_t, and gregset_t to the
4059 list of predefined types.
4060
4061 2002-06-16 Mark Kettenis <kettenis@gnu.org>
4062
4063 * config/i386/tm-i386.h (REGISTER_VIRTUAL_TYPE,
4064 REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL,
4065 REGISTER_CONVERT_TO_RAW): Remove defines.
4066 (i386_register_virtual_type, i386_register_convertible,
4067 i386_register_convert_to_virtual, i386_register_convert_to_raw):
4068 Remove prototypes.
4069 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
4070 macros mentioned above.
4071
4072 * config/i386/tm-i386lynx.h (SAVED_PC_AFTER_CALL): Remove define.
4073 (i386lynx_saved_pc_after_call): Remove prototype.
4074 * i386ly-tdep.c: Include "i386-tdep.h".
4075 (i386lynx_saved_pc_after_call): Make static. Use
4076 read_memory_nobpt instead of read_memory. Use
4077 read_memory_unsigned_integer instead of read_memory_integer.
4078 (i386lynx_init_abi): New function.
4079 (i386lynx_coff_osabi_sniffer): New function.
4080 (_initialize_i386bsd_tdep): New function.
4081
4082 * config/i386/tm-i386.h (PARM_BOUNDARY, CALL_DUMMY,
4083 CALL_DUMMY_LENGTH, CALL_DUMMY_START_OFFSET,
4084 CALL_DUMMY_BREAKPOINT_OFFSET, FIX_CALL_DUMMY): Remove defines.
4085 (i386_fix_call_dummy): Remove prototype.
4086 * i386-tdep.c (i386_call_dummy_words): New variable.
4087 (i386_gdbarch_init): Adjust for removal of the
4088 macros mentioned above.
4089
4090 2002-06-15 Andrew Cagney <ac131313@redhat.com>
4091
4092 * command.h (add_setshow_auto_boolean_cmd): Replace
4093 add_set_auto_boolean_cmd.
4094 * cli/cli-decode.c (add_setshow_auto_boolean_cmd): Replace
4095 add_set_auto_boolean_cmd.
4096 * cli/cli-decode.h (add_set_auto_boolean_cmd): Delete declaration.
4097 * mips-tdep.c (_initialize_mips_tdep): Update ``set mips
4098 mask-address'' command.
4099 (show_mask_address): Add cmd parameter.
4100 * remote.c (add_packet_config_cmd): Update. Change type of
4101 set_func and show_func to cmd_sfunc_ftype.
4102 (_initialize_remote): Update `set remote Z-packet'
4103 (show_remote_protocol_qSymbol_packet_cmd): Add cmd parameter.
4104 (show_remote_protocol_e_packet_cmd): Ditto.
4105 (show_remote_protocol_E_packet_cmd): Ditto.
4106 (show_remote_protocol_P_packet_cmd): Ditto.
4107 (show_remote_protocol_Z_software_bp_packet_cmd): Ditto.
4108 (show_remote_protocol_Z_hardware_bp_packet_cmd): Ditto.
4109 (show_remote_protocol_Z_write_wp_packet_cmd): Ditto.
4110 (show_remote_protocol_Z_read_wp_packet_cmd): Ditto.
4111 (show_remote_protocol_Z_access_wp_packet_cmd): Ditto.
4112 (show_remote_protocol_Z_packet_cmd): Ditto.
4113 (show_remote_protocol_binary_download_cmd): Ditto.
4114 (show_remote_cmd): Pass NULL to all of above.
4115
4116 2002-06-15 Mark Kettenis <kettenis@gnu.org>
4117
4118 * config/i386/tm-i386.h (PUSH_ARGUMENTS, STORE_STRUCT_RETURN,
4119 DEPRECATED_EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE,
4120 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS, PUSH_DUMMY_FRAME,
4121 POP_FRAME): Remove defines.
4122 (i386_push_arguments, i386_store_struct_return,
4123 i386_extract_return_value, i386_store_return_value,
4124 i386_extract_struct_value_address, i386_push_dummy_frame,
4125 i386_pop_frame): Renove prototypes.
4126 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
4127 macros mentioned above.
4128
4129 2002-06-15 Andrew Cagney <ac131313@redhat.com>
4130
4131 * cli/cli-decode.c (add_setshow_boolean_cmd): Replace
4132 add_set_boolean_cmd.
4133 (add_setshow_cmd): New function.
4134 * command.h (add_setshow_boolean_cmd): Replace
4135 add_set_boolean_cmd.
4136 * remote-rdi.c (_initialize_remote_rdi): Update ``set rdiheartbeat''
4137 and ``set rdiromatzero''.
4138 * maint.c (_initialize_maint_cmds): Update commented out code.
4139 * cli/cli-decode.h (add_set_boolean_cmd): Delete declaration.
4140 * target.c (initialize_targets): Update `set
4141 trust-readonly-sections'.
4142 * remote.c (_initialize_remote): Update `set remotebreak'.
4143
4144 2002-06-15 Mark Kettenis <kettenis@gnu.org>
4145
4146 * config/i386/tm-i386.h (FUNCTION_START_OFFSET, INNER_THAN,
4147 BREAKPOINT, DECR_PC_AFTER_BREAK): Removed.
4148 * i386-tdep.c (i386_skip_prologue): Adjust function signature to
4149 fit into multi-arch framework.
4150 (i386_breakpoint_from_pc): New function.
4151 (i386_gdbarch_init): Adjust for removal of the macros mentioned
4152 above.
4153
4154 * config/i386/tm-i386.h (FRAMELESS_FUNCTION_INVOCATION,
4155 FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS,
4156 FRAME_ARGS_SKIP, FRAME_INIT_SAVED_REGS): Remove defines.
4157 (i386_frameless_function_invocation, i386_frame_num_args,
4158 i386_frame_init_saved_regs): Remove prototypes.
4159 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
4160 macros mentioned above.
4161
4162 2002-06-15 Andrew Cagney <ac131313@redhat.com>
4163
4164 * cli/cli-decode.c (set_cmd_cfunc): Update.
4165 (set_cmd_sfunc): Update.
4166 * command.h (cmd_cfunc_ftype, cmd_sfunc_ftype): Declare.
4167 (set_cmd_sfunc, set_cmd_cfunc): Update.
4168 * cli/cli-decode.h: Update.
4169
4170 2002-06-15 Mark Kettenis <kettenis@gnu.org>
4171
4172 * i386-sol2-tdep.c (i386_sol2_osabi_sniffer): New function.
4173 (_initialize_i386_sol2_tdep): Register i386_sol2_osabi_sniffer.
4174
4175 2002-06-15 Andrew Cagney <ac131313@redhat.com>
4176
4177 * defs.h (auto_boolean): Declare enum.
4178 * command.h (cmd_auto_boolean): Delete enum.
4179 * mips-tdep.c (mask_address_var): Update.
4180 (mips_mask_address_p): Update.
4181 (show_mask_address): Update.
4182 * remote.c (struct packet_config): Update.
4183 (update_packet_config): Update.
4184 (show_packet_config_cmd): Update.
4185 (packet_ok): Update.
4186 (add_packet_config_cmd): Update.
4187 (_initialize_remote):
4188 * command.h: Update.
4189 * cli/cli-setshow.c (parse_auto_binary_operation): Update.
4190 (do_setshow_command): Update.
4191 * cli/cli-decode.c (add_set_auto_boolean_cmd): Update.
4192 * cli/cli-decode.h: Update.
4193
4194 2002-06-15 Mark Kettenis <kettenis@gnu.org>
4195
4196 * config/i386/tm-cygwin.h, config/i386/tm-fbsd.h,
4197 config/i386/tm-go32.h, config/i386/tm-i386gnu.h,
4198 config/i386/tm-i386sol2.h, config/i386/tm-i386v4.h,
4199 config/i386/tm-linux.h, config/i386/tm-nbsd.h,
4200 config/i386/tm-obsd.h (HAVE_I387_REGS): Remove define.
4201 * config/i386/tm-i386.h: Unconditionally define FLOAT_INFO.
4202
4203 * i386-tdep.c (i386_coff_osabi_sniffer): Add "coff-go32" to the
4204 list of DJGPP COFF targets.
4205
4206 * config/i386/tm-i386.h (REGISTER_SIZE): Remove define.
4207 (NUM_GREGS, NUM_FREGS, NUM_SSE_REGS): Remove defines.
4208 (FP_REGNUM, SP_REGNUM, PC_REGNUM, PS_REGNUM): Remove defines.
4209 (FP0_REGNUM): Remove define.
4210 (MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE,
4211 MAX_REGISTER_VIRTUAL_SIZE): Remove define.
4212 (i386_register_virtual_size): Remove protoype.
4213 * i386-tdep.c (i386_register_virtual_size): Removed.
4214 (i386_extract_return_value, i386_store_return_value): Use
4215 FP0_REGNUM instead of NUM_FREGS to determine whether the
4216 floating-point registers are available.
4217 (i386_gdbarch_init): Tweak FIXME about FPU registers.
4218 Adjust for removal of macros mentioned above.
4219
4220 2002-06-15 Mark Kettenis <kettenis@gnu.org>
4221
4222 * i386v4-nat.c: Include "i386-tdep.h". Reformat and tweak various
4223 comments.
4224 (fill_gregset, supply_gregset, supply_fpregset, fill_fpregset):
4225 Remove prototypes.
4226 (supply_gregset, fill_gregset): Remove use of register keyword and
4227 remove declaration for regmap. Use I386_NUM_GREGS instead of
4228 NUM_REGS and NUM_FREGS.
4229 (FPREGSET_FSAVE_OFFSET): Remove.
4230 (supply_fpregset, fill_fpregset): Use FPO_REGNUM instead of
4231 NUM_FREGS to determine whether the floating-point registers are
4232 available.
4233
4234 * i386gnu-nat.c (supply_gregset, gnu_fetch_registers,
4235 gnu_store_registers): Replace usage of NUM_GREGS with
4236 I386_NUM_GREGS.
4237
4238 * i386-linux-nat.c (OLD_CANNOT_FETCH_REGISTER,
4239 OLD_CANNOT_STORE_REGISTER, supply_gregset, fill_gregset): Replace
4240 usage of NUM_GREGS with I386_NUM_GREGS.
4241
4242 * i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
4243
4244 * i386bsd-nat.c: Include "i386-tdep.h".
4245 (supply_gregset, fill_gregset): Replace usage of NUM_GREGS with
4246 I386_NUM_GREGS.
4247
4248 * i386v-nat.c: Remove copnditional inclusion of <asm/debugreg.h>,
4249 and associated comment. They no longer make any sense, since we
4250 don't use this file anymore on Linux.
4251
4252 * config/i386/tm-i386.h (MAX_NUM_REGS): Removed.
4253 * i386-tdep.c (i386_register_offset, i386_register_size): Use
4254 I386_SSE_NUM_REGS instead of MAX_NUM_REGS for the number of
4255 elements in these arrays.
4256 (_initialize_i386_tdep): Use I386_SSE_NUM_REGS instead of
4257 MAX_NUM_REGS.
4258
4259 2002-06-15 Mark Kettenis <kettenis@gnu.org>
4260
4261 * osabi.h (gdb_osabi): Add GDB_OSABI_LYNXOS.
4262 * osabi.c (gdb_osabi_names): Add entry for "LynxOS".
4263
4264 2002-06-14 Andrew Cagney <cagney@redhat.com>
4265
4266 * gdbarch.sh (DEPRECATED_EXTRACT_RETURN_VALUE): Rename
4267 EXTRACT_RETURN_VALUE.
4268 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Rename
4269 EXTRACT_STRUCT_VALUE_ADDRESS.
4270 * gdbarch.h, gdbarch.c: Regenerate.
4271
4272 * values.c (value_being_returned): Handle
4273 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
4274 (EXTRACT_RETURN_VALUE): Define as DEPRECATED_EXTRACT_RETURN_VALUE.
4275
4276 * arm-linux-tdep.c (arm_linux_init_abi): Update.
4277 * arm-tdep.c (arm_gdbarch_init): Update.
4278 * avr-tdep.c (avr_gdbarch_init): Update.
4279 * cris-tdep.c (cris_gdbarch_init): Update.
4280 * d10v-tdep.c (d10v_gdbarch_init): Update.
4281 * ia64-tdep.c (ia64_gdbarch_init): Update.
4282 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
4283 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
4284 * s390-tdep.c (s390_gdbarch_init): Update.
4285 * sh-tdep.c (sh_gdbarch_init): Update.
4286 * s390-tdep.c (s390_gdbarch_init): Update.
4287 * sparc-tdep.c (sparc_gdbarch_init): Update.
4288 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
4289 * v850-tdep.c (v850_gdbarch_init): Update.
4290 * vax-tdep.c (vax_gdbarch_init): Update.
4291 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
4292 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
4293
4294 * config/arc/tm-arc.h: Update.
4295 * config/d30v/tm-d30v.h: Update.
4296 * config/fr30/tm-fr30.h: Update.
4297 * config/h8300/tm-h8300.h: Update.
4298 * config/h8500/tm-h8500.h: Update.
4299 * config/i386/tm-i386.h: Update.
4300 * config/i386/tm-ptx.h: Update.
4301 * config/i386/tm-symmetry.h: Update.
4302 * config/i960/tm-i960.h: Update.
4303 * config/m32r/tm-m32r.h: Update.
4304 * config/m68k/tm-delta68.h: Update.
4305 * config/m68k/tm-linux.h: Update.
4306 * config/m68k/tm-m68k.h: Update.
4307 * config/m88k/tm-m88k.h: Update.
4308 * config/mcore/tm-mcore.h: Update.
4309 * config/mips/tm-mips.h: Update.
4310 * config/mn10200/tm-mn10200.h: Update.
4311 * config/pa/tm-hppa.h: Update.
4312 * config/pa/tm-hppa64.h: Update.
4313 * config/sparc/tm-sp64.h: Update.
4314 * config/sparc/tm-sparc.h: Update.
4315 * config/sparc/tm-sparclet.h: Update.
4316 * config/z8k/tm-z8k.h: Update.
4317
4318 2002-06-14 Andrew Cagney <cagney@redhat.com>
4319
4320 * Makefile.in (i386_linux_tdep_h): Define.
4321 (i386_tdep_h, i387_tdep_h): Define.
4322 (i386-linux-nat.o): Add $(i386_linux_tdep_h),
4323 $(i386_tdep_h) and $(i387_tdep_h).
4324 * i386-linux-nat.c: Include "i386-linux-tdep.h".
4325
4326 2002-06-14 Mark Kettenis <kettenis@gnu.org>
4327
4328 * config/i386/tm-i386.h (START_INFERIOR_TRAPS_EXPECTED): Removed.
4329 Already covered by the default.
4330
4331 * config/i386/tm-i386.h (TARGET_LONG_DOUBLE_FORMAT,
4332 TARGET_LONG_DOUBLE_BIT): Remove. * i386-tdep.c
4333 (i386_gdbarch_init): Initialize long_double_format and long_double
4334 bit.
4335
4336 * config/i386/i386sol2.mt (TDEPFILES): Add i386-sol2-tdep.o and
4337 i386bsd-tdep.o. Remove solib.o, solib-svr4.o and solib-legacy.o.
4338 Move these to ...
4339 * config/i386/i386sol2.mh: ... here.
4340 * config/i386/tm-i386sol2.h (STAB_REG_TO_REGNUM): Remove define.
4341 (sigtramp_saved_pc, I386V4_SIGTRAMP_SAVED_PC): Don't #undef.
4342 (SIGCONTEXT_PC_OFFSET): Remove define.
4343 (IN_SIGTRAMP): Remove define.
4344 * i386-sol2-tdep.c: New file.
4345
4346 * config/i386/i386nw.mt (TM_FILE): Change to tm-i386.h.
4347 * config/i386/tm-i386nw.h: Removed.
4348
4349 * config/i386/tm-fbsd.h (STAB_REG_TO_REGNUM,
4350 USE_STRUCT_CONVENTION): Remove defines.
4351 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
4352 (get_longjmp_target): Remove prototype.
4353 (IN_SIGTRAMP): Remove define.
4354 (i386bsd_in_sigtramp): Remove prototype.
4355 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
4356 function. Update comment accordingly
4357 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
4358 (FRAME_SAVED_PC): Remove define.
4359 (i386bsd_frame_saved_pc): Remove prototype.
4360 * config/i386/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC,
4361 GET_LONGJMP_TARGET): Remove defines.
4362 (get_longjmp_target): Remove prototype.
4363 (IN_SIGTRAMP): Remove define.
4364 (i386bsd_in_sigtramp): Remove prototype.
4365 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
4366 function. Update comment accordingly
4367 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
4368 (FRAME_SAVED_PC): Remove define.
4369 (i386bsd_frame_saved_pc): Remove prototype.
4370 * config/i386/tm-nbsdaout.h (i386nbsd_aout_use_struct_convention):
4371 Remove prototype.
4372 (USE_STRUCT_CONVENTION): Remove prototype.
4373 * i386bsd-nat.c (i386bsd_sigcontext_pc_offset): Remove
4374 declaration.
4375 (_initialize_i386bsd_nat): Revise logic to determine some
4376 constants at compile time when compiling a native GDB. Warn if
4377 things don't match up with what we expect.
4378 * i386bsd-tdep.c (i386bsd_sigtramp_start, i386bsd_sigtramp_end):
4379 Remove variables.
4380 (i386bsd_in_sigtramp): Rename tp i386bsd_pc_in_sigtramp. Rewrite
4381 to use date stored in `struct gdbarch_tdep'.
4382 (i386bsd_sigcontext_offset): Remove varaible.
4383 (i386bsd_sigtramp_saved_pc): Make public. Rewrite to use data
4384 stored in `struct gdbarch_tdep'.
4385 (i386bsd_frame_saved_pc): Make static.
4386 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): New functions.
4387 (i386bsd_sc_pc_offset, i386nbsd_sc_pc_offset,
4388 i386fbsd_sigtramp_start, i386fbsd_sigtramp_end,
4389 i386fbsd4_sc_pc_offset): New variables.
4390 (i386bsd_init_abi, i386nbsd_init_abi, i386nbsdelf_init_abi,
4391 i386fbsdaout_init_abi, i386fbsd_init_abi, i386fbsd4_init_abi): New
4392 functions.
4393 (i386bsd_aout_osabi_sniffer, _initialize_i386bsd_tdep): New
4394 functions.
4395 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Fix type in comment.
4396 Modify the value of i386fbsd_sigtramp_start and
4397 i386fbsd_sigtramp_end instead of i386bsd_sigtramp_start and
4398 i386fbsd_sigtramp_end.
4399 * i386nbsd-tdep.c: (i386nbsd_aout_use_struct_convention): Remove
4400 function.
4401
4402 * config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): Move
4403 define to i386-linux-tdep.h.
4404 (NUM_REGS, MAX_NUM_REGS, REGISTER_BYTES, REGISTER_NAME,
4405 REGISTER_BYTE, REGISTER_RAW_SIZE, STAB_REG_TO_REGNUM): Remove
4406 defines.
4407 (i386_linux_register_name, i386_linux_register_byte,
4408 i386_linux_register_raw_size): Remove prototypes.
4409 (i386_linux_svr4_fetch_link_map_offsets): Remove prototype.
4410 (SVR4_FETCH_LINK_MAP_OFFSETS): Remove define.
4411 (IN_SIGTRAMP, FRAME_CHAIN, FRAME_SAVED_PC, SAVED_PC_AFTER_CALL,
4412 TARGET_WRITE_PC): Remove defines.
4413 (i386_linux_in_sigtramp, i386_linux_frame_chain,
4414 i386_linux_frame_saved_pc, i386_linux_saved_pc_after_call,
4415 i386_linux_write_pc): Remove prototypes.
4416 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
4417 (get_longjmp_target): Remove prototype.
4418 * i386-linux-tdep.h: New file.
4419 * i386-linux-nat.c: Include "i386-linux-tdep.h".
4420 * i386-linux-tdep.c: Include "i386-tdep.h" and
4421 "i386-linux-tdep.h".
4422 (i386_linux_register_name, i386_linux_register_byte,
4423 i386_linux_register_raw_size, i386_linux_in_sigtramp,
4424 i386_linux_write_pc, i386_linux_svr4_fetch_link_map_offsets):
4425 Make static.
4426 (i386_linux_init_abi): New function.
4427 (_initialize_i386_linux_tdep): New function.
4428
4429 * config/i386/tm-i386.h (SAVED_PC_AFTER_CALL): Remove define.
4430 (i386_saved_pc_after_call): Remove prototype.
4431 (MAX_NUM_REGS): Increase to deal with Linux's orig_eax "register".
4432 (REGISTER_NAME, STAB_REG_TO_REGNUM, SDB_REG_TO_REGNUM,
4433 DWARF_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM): Remove defines.
4434 (i386_register_name, i386_stab_reg_to_regnum,
4435 i386_dwarf_reg_to_regnum): Remove prototypes.
4436 (SIZEOF_GREGS, SIZEOF_FPU_REGS, SIZEOF_FPU_CTL_REGS,
4437 SIZEOF_SSE_REGS): Remove defines.
4438 (REGISTER_BYTES): Remove define.
4439 (REGISTER_BYTE, REGISTER_RAW_SIZE): Remove defines.
4440 (i386_register_byte, i386_register_raw_size): Remove prototypes.
4441 (FRAME_CHAIN, FRAME_SAVED_PC): Remove defines.
4442 (i386_frame_chain, i386_frame_saved_pc): Remove prototypes.
4443 * config/i386/tm-i386v4.h (FRAME_CHAIN_VALID): Remove define.
4444 (JB_ELEMENT_SIZE, JB_PC, JB_EBX, JB_ESI, JB_EDI, JB_EBP, JB_ESP,
4445 JB_EDX, GET_LONGJMP_TARGET): Remove defines.
4446 (get_longjmp_target): Remove prototype.
4447 (I386V4_SIGTRAMP_SAVED_PC, IN_SIGTRAMP): Remove defines.
4448 (sigtramp_saved_pc): Remove define.
4449 (i386v4_sigtramp_saved_pc): Remove prototype.
4450 * config/i386/tm-go32.h (FRAME_CHAIN,
4451 FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC): Remove defines.
4452 (i386go32_frame_saved_pc): Remove prototype.
4453 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
4454 (get_longjmp_target): Remove prototype.
4455 * i386-tdep.h: Include "osabi.h".
4456 (enum i386_abi): Removed.
4457 (enum struct_return): New enum.
4458 (struct gdbarch_tdep): Remove abi member, add osabi, jb_pc_offset,
4459 struct_return, sigtramp_saved_pc, sigtramp_start, sigtramp_end and
4460 sc_pc_offset members.
4461 (i386_gdbarch_register_os_abi): Remove prototype.
4462 (I386_NUM_GREGS, I386_NUM_FREGS, I386_NUM_XREGS,
4463 I386_SSE_NUM_REGS): New defines.
4464 (I386_SIZEOF_GREGS, I386_SIZEOF_FREGS, I386_SIZEOF_XREGS,
4465 I386_SSE_SIZEOF_REGS): New defines.
4466 (i386_register_name, i386_register_byte, i386_register_raw_size):
4467 New prototypes.
4468 (i386_elf_init_abi, i386_svr4_init_abi): New prototypes.
4469 (i386bsd_sigtramp_saved_pc): New prototype.
4470 * i386-tdep.c: Don't include "elf-bfd.h".
4471 (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum,
4472 i386_frame_chain, i386_saved_pc_after_call): Make static.
4473 (i386_frame_saved_pc): Rewrite to call architecture dependent
4474 function to deal with signal handlers. Make static.
4475 (i386go32_frame_saved_pc): Removed.
4476 [GET_LONGJMP_TARGET] (JB_PC, JB_ELEMENT_SIZE, get_longjmp_target):
4477 Removed.
4478 (i386_get_longjmp_target): New function.
4479 (default_struct_convention, pcc_struct_convention,
4480 reg_struct_convention, valid_conventions, struct_convention): New
4481 variables.
4482 (i386_use_struct_convention): New function.
4483 (i386v4_sigtramp_saved_pc): Renamed to
4484 i386_svr4_sigtramp_saved_pc. Made static. Moved.
4485 (i386_pc_in_sigtramp): New function.
4486 (i386_abi_names): Removed.
4487 (ABI_TAG_OS_GNU_LINUX, ABI_TAG_OS_GNU_HURD,
4488 ABI_TAG_OS_GNU_SOLARIS, ABI_TAG_OS_FREEBSD, ABI_TAG_OS_NETBSD):
4489 Removed.
4490 (process_note_sections, i386_elf_abi_from_note, i386_elf_abi,
4491 i386_gdbarch_register_os_abi): Removed.
4492 (struct i386_abi_handler): Removed.
4493 (i386_abi_handler_list): Removed.
4494 (i386_svr4_pc_in_sigtramp, i386_go32_pc_in_sigtramp): New
4495 functions.
4496 (i386_elf_init_abi, i386_svr4_init_abi, i386_go32_init_abi,
4497 i386_nw_init_abi): New functions.
4498 (i386_gdbarch_init): Rewritten to use generic OS ABI framework.
4499 Use set_gdbarch_xxx() calls instead of relying on macros for a
4500 number of calls.
4501 (i386_coff_osabi_sniffer, i386_nlm_osabi_sniffer): New functions.
4502 (_initialize_i386_tdep): Add new 'struct-convcention' command.
4503 Register the various architecture variants defined in this file.
4504
4505 2002-06-14 Daniel Jacobowitz <drow@mvista.com>
4506
4507 * gdbtypes.h (TYPE_FLAG_VARARGS): Update comment.
4508 (struct main_type): Remove arg_types member. Update comments for
4509 struct field.
4510 (TYPE_ARG_TYPES): Remove.
4511 (TYPE_FN_FIELD_ARGS): Update.
4512 (smash_to_method_type): Update prototype.
4513
4514 * c-typeprint.c (cp_type_print_method_args): Take method type
4515 instead of argument list. Use new argument layout. Simplify.
4516 (c_type_print_args): Use new argument layout. Simplify.
4517 (c_type_print_base): Update call to cp_type_print_method_args.
4518 * dwarf2read.c (dwarf2_add_member_fn): Remove unneeded type
4519 argument; use die->type instead. Update call to
4520 smash_to_method_type.
4521 (read_structure_scope): Update call to dwarf2_add_member_fn.
4522 * gdbtypes.c (allocate_stub_method): Update comment.
4523 (smash_to_method_type): Take new NARGS and VARARGS arguments.
4524 Use new argument layout.
4525 (check_stub_method): Use new argument layout. Don't count
4526 void as an argument.
4527 (print_arg_types): Update comments. Use new argument layout.
4528 (recursive_dump_type): Don't print arg_types member.
4529 * hpread.c (hpread_read_struct_type): Use new argument layout.
4530 (fixup_class_method_type): Likewise.
4531 (hpread_type_lookup): Likewise.
4532 * stabsread.c (read_type): Update calls to read_args and
4533 smash_to_method_type.
4534 (read_args): Use new argument layout. Simplify.
4535 * valops.c (typecmp): Use new argument layout. Update parameters
4536 and comments. Simplify.
4537 (hand_function_call): Use new argument layout.
4538 (search_struct_method): Update call to typecmp.
4539 (find_overload_match): Use new argument layout.
4540
4541 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
4542
4543 * NEWS: Mention multithreaded debug support for gdbserver.
4544
4545 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
4546
4547 * MAINTAINERS: Mention NEWS.
4548
4549 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
4550
4551 * mips-tdep.c (PROC_SYMBOL): Add warning comment.
4552 (struct mips_objfile_private, compare_pdr_entries): New.
4553 (non_heuristic_proc_desc): Read the ".pdr" section if it
4554 is present.
4555
4556 2002-06-12 Andrew Cagney <ac131313@redhat.com>
4557
4558 * arm-tdep.c (arm_push_arguments): Rewrite using a two-pass loop.
4559 (arm_debug): New static variable.
4560 (_initialize_arm_tdep): Add ``set debug arm'' command.
4561
4562 2002-06-12 Andrew Cagney <ac131313@redhat.com>
4563
4564 * Makefile.in (sim_arm_h): Define.
4565 (arm-tdep.o): Add $(sim_arm_h) and $(gdb_assert_h).
4566 * arm-tdep.c: Include "gdb/sim-arm.h" and "gdb_assert.h".
4567 (arm_register_sim_regno): New function, map an internal REGNUM
4568 onto a simulator register number.
4569 (arm_gdbarch_init): Set register_sim_regno.
4570
4571 2002-06-09 Aldy Hernandez <aldyh@redhat.com>
4572
4573 * MAINTAINERS: Add self.
4574
4575 2002-06-11 Jim Blandy <jimb@redhat.com>
4576
4577 * source.c (source_info): Mention whether the symtab has
4578 information about preprocessor macros.
4579
4580 Call the command `info macro', not `show macro'.
4581 * macrocmd.c (info_macro_command): Renamed from `show_macro_command'.
4582 Fix error message.
4583 (_initialize_macrocmd): Register `info_macro_command' in
4584 `infolist', not `showlist'.
4585
4586 2002-06-11 Daniel Jacobowitz <drow@mvista.com>
4587
4588 * mips-tdep.c (MIPS_FPU_TYPE, FP_REGISTER_DOUBLE, MIPS_EABI)
4589 (MIPS_LAST_FP_ARG_REGNUM, MIPS_LAST_ARG_REGNUM)
4590 (MIPS_DEFAULT_SAVED_REGSIZE, MIPS_REGS_HAVE_HOME_P)
4591 (MIPS_DEFAULT_STACK_ARGSIZE, GDB_TARGET_IS_MIPS64)
4592 (MIPS_DEFAULT_MASK_ADDRESS_P): Remove obsolete definitions. Define
4593 unconditionally.
4594 (set_mipsfpu_single_command, set_mipsfpu_double_command)
4595 (set_mipsfpu_none_command): Remove if (GDB_MULTI_ARCH).
4596 (_initialize_mips_tdep): Remove dead code.
4597 * config/mips/tm-irix5.h (MIPS_LAST_ARG_REGNUM)
4598 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
4599 * config/mips/tm-irix6.h (MIPS_LAST_ARG_REGNUM)
4600 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
4601 * config/mips/tm-mips.h (MIPS_EABI, MIPS_LAST_ARG_REGNUM,
4602 MIPS_LAST_FP_ARG_REGNUM): Remove.
4603
4604 2002-06-11 Michal Ludvig <mludvig@suse.cz>
4605
4606 * dwarf2cfi.c (unwind_tmp_obstack_init): New.
4607 (unwind_tmp_obstack_free, parse_frame_info)
4608 (update_context, cfi_read_fp, cfi_write_fp)
4609 (cfi_frame_chain, cfi_init_extra_frame_info)
4610 (cfi_virtual_frame_pointer): Use the above function.
4611 * dwarf2cfi.c: Reindented (using 'indent dwarf2cfi.c').
4612
4613 2002-06-11 Corinna Vinschen <vinschen@redhat.com>
4614
4615 * v850-tdep.c (v850_type_is_scalar): New function.
4616 (v850_use_struct_convention): Match current gcc implementation
4617 as close as possible.
4618 (v850_push_arguments): Fix stack_offset handling. Don't write
4619 struct_addr into register. This is done by v850_store_struct_return.
4620 (v850_extract_return_value): Care for structs.
4621 (v850_store_return_value): Ditto.
4622 (v850_store_struct_return): Actually write address.
4623
4624 2002-06-11 Michal Ludvig <mludvig@suse.cz>
4625
4626 * x86-64-tdep.c (x86_64_skip_prologue): Fix to work on functions
4627 without debug information too.
4628
4629 2002-06-10 Andrew Cagney <ac131313@redhat.com>
4630
4631 * gdbarch.sh (PRINT_FLOAT_INFO): Add frame and ui_file parameters.
4632 Make multi-arch pure.
4633 * gdbarch.h, gdbarch.c: Re-generate.
4634 * arm-tdep.c (arm_print_float_info): Update.
4635 * arch-utils.h (default_print_float_info): Update.
4636 * arch-utils.c (default_print_float_info): Update.
4637 * infcmd.c (float_info): Update call.
4638
4639 2002-06-10 Andrew Cagney <ac131313@redhat.com>
4640
4641 * Makefile.in (init.c): Move the call to _initialize_gdbtypes to
4642 the front of the initialize list.
4643
4644 2002-06-10 Andrew Cagney <ac131313@redhat.com>
4645
4646 * infrun.c (struct inferior_status): Replace fields
4647 selected_frame_address and selected_level with field
4648 selected_frame_id.
4649 (save_inferior_status): Update. Use get_frame_id.
4650 (struct restore_selected_frame_args): Delete.
4651 (restore_selected_frame): Update. Use frame_find_by_id.
4652 (restore_inferior_status): Update.
4653
4654 * breakpoint.h (struct breakpoint): Change type of
4655 watchpoint_frame to frame_id.
4656 * breakpoint.c (insert_breakpoints): Use frame_find_by_id. Remove
4657 call to get_current_frame.
4658 (do_enable_breakpoint): Use frame_find_by_id. Remove call to
4659 get_current_frame.
4660 (watchpoint_check): Use frame_find_by_id.
4661
4662 * frame.h (record_selected_frame): Delete declaration.
4663 * stack.c (record_selected_frame): Delete function.
4664
4665 * frame.h (struct frame_id): Define.
4666 (get_frame_id): Declare.
4667 (frame_find_by_id): Declare.
4668 * frame.c (frame_find_by_id): New function.
4669 (get_frame_id): New function.
4670
4671 2002-06-10 Andrey Volkov <avolkov@transas.com>
4672
4673 * ser-e7kpc.c: Fix duplicated define and call of
4674 _initialize_ser_e7000pc
4675
4676 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
4677
4678 * signals/signals.c (target_signal_from_host): Fix #ifdef
4679 SIGRTMIN case.
4680 (do_target_signal_to_host): Likewise.
4681
4682 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
4683
4684 * mips-tdep.c (mips_find_abi_section): New function.
4685 (mips_gdbarch_init): Call it.
4686
4687 2002-06-09 Mark Kettenis <kettenis@gnu.org>
4688
4689 * solib-svr4.c (init_fetch_link_map_offsets): Simply return
4690 legacy_fetch_link_map_offsets. Adjust comment to reflect reality
4691 after Andrew's 2002-06-08 gdbarch change.
4692
4693 2002-06-09 Mark Kettenis <kettenis@gnu.org>
4694
4695 * i386-linux-nat.c (suppy_gregset): Don't supply
4696 I386_LINUX_ORIG_EAX_REGNUM if there isn't room for it in GDB's
4697 register cache.
4698 (fill_gregset): Don't fetch it under the same circumstances.
4699
4700 2002-06-09 Andrew Cagney <cagney@redhat.com>
4701
4702 * Makefile.in (callback_h): Define.
4703 (remote_sim_h): Update path to remote-sim.h.
4704 (remote-rdp.o): Add $(callback_h).
4705 (remote-sim.o): Use $(callback_h).
4706 * remote-sim.c: Include "gdb/callback.h" and "gdb/remote-sim.h".
4707 * remote-rdp.c: Include "gdb/callback.h".
4708
4709 2002-06-09 Mark Kettenis <kettenis@gnu.org>
4710
4711 * osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
4712 * osabi.c (gdb_osabi_names): Add "DJGPP" and "NetWare".
4713
4714 2002-06-08 Andrew Cagney <ac131313@redhat.com>
4715
4716 * sparcl-tdep.c: Use __CYGWIN__ instead of __CYGWIN32__.
4717 * rdi-share/serpardr.c: Ditto.
4718 * rdi-share/unixcomm.c: Ditto.
4719 * rdi-share/serdrv.c: Ditto.
4720 * rdi-share/hostchan.h: Ditto.
4721 * rdi-share/hostchan.c: Ditto.
4722 * rdi-share/host.h: Ditto.
4723 * rdi-share/devsw.c: Ditto.
4724
4725 * objfiles.h: Change type of obj_private to void pointer.
4726 * pa64solib.c: Update copyright. Don't include "assert.h", use
4727 strcmp instead of STREQ, use LONGEST, do not use PTR
4728 * somsolib.c: Ditto.
4729
4730 * config/djgpp/fnchange.lst: Fix problems with bfd/elf32-i386.c,
4731 bfd/elf32-i386qnx.c, bfd/elf32-sh.c, bfd/elf32-sh64-nbsd.c,
4732 bfd/elf64-sh64-nbsd.c bfd/elf64-sh64.c.
4733
4734 2002-06-08 Andrew Cagney <ac131313@redhat.com>
4735
4736 * frame.c (GET_SAVED_REGISTER): Delete macro definition.
4737 (default_get_saved_register): Delete function.
4738 * gdbarch.sh (GET_SAVED_REGISTER): Set default to
4739 generic_unwind_get_saved_register.
4740 * gdbarch.h, gdbarch.c: Re-generate.
4741
4742 2002-06-08 Andrew Cagney <ac131313@redhat.com>
4743
4744 * gdbarch.sh (FRAME_CHAIN_VALID): Set default to
4745 generic_func_frame_chain_valid.
4746 * gdbarch.h, gdbarch.c: Re-generate.
4747 * blockframe.c (generic_func_frame_chain_valid): Only check
4748 PC_IN_CALL_DUMMY when generic dummy frames. Don't worry about
4749 passing FP to PC_IN_CALL_DUMMY.
4750 Fix PR gdb/360.
4751
4752 2002-06-08 Andrew Cagney <ac131313@redhat.com>
4753
4754 * gdbarch.sh (struct gdbarch_data): Add field init_p.
4755 (register_gdbarch_data): Initialize init_p.
4756 (gdbarch_data): Initialize data pointer using the init function.
4757 (init_gdbarch_data): Delete function.
4758 (gdbarch_update_p): Update.
4759 (initialize_non_multiarch): Update.
4760 (struct gdbarch): Add field initialized_p.
4761 * gdbarch.h, gdbarch.c: Re-generate.
4762
4763 2002-06-07 Michal Ludvig <mludvig@suse.cz>
4764
4765 * x86-64-linux-nat.c (x86_64_fxsave_offset): New.
4766 (supply_fpregset, fill_fpregset): Don't call i387_*_fxsave,
4767 better do the things actually here.
4768 * x86-64-tdep.c (x86_64_register_name2nr): New.
4769 (x86_64_register_name): Renamed to x86_64_register_nr2name.
4770 (x86_64_gdbarch_init): Respect the above change.
4771 * x86-64-tdep.h (x86_64_register_name2nr)
4772 (x86_64_register_nr2name): Add prototypes.
4773 * config/i386/x86-64linux.mt (TDEPFILES): Remove i387-tdep.o.
4774
4775 2002-06-06 Michael Snyder <msnyder@redhat.com>
4776
4777 * d10v-tdep.c (d10v_push_arguments): Handle struct_return.
4778 Delete extra braces and re-indent.
4779 (d10v_store_return_value): Char return values
4780 must be shifted over by one byte in R0.
4781 (d10v_extract_return_value): Delete extra braces, re-indent.
4782
4783 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
4784
4785 * d10v-tdep.c (d10v_read_sp, d10v_read_fp): Add prototype.
4786 (d10v_register_virtual_type): Make $fp and $sp be pointer to data.
4787 (d10v_integer_to_address): Rewrite.
4788 (d10v_frame_init_saved_regs): When reading fp and sp registers use
4789 the d10v specific functions which take care of converting to the
4790 correct space.
4791
4792 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
4793
4794 * config/djgpp/fnchange.lst: Add testsuite files altivec-abi.c,
4795 altivec-abi.exp, altivec-regs.c, altivec-regs.exp.
4796
4797 2002-06-02 Andrew Cagney <ac131313@redhat.com>
4798
4799 * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm
4800 includes.
4801 * config/tm-linux.h: Ditto.
4802 * config/alpha/tm-alphalinux.h: Ditto.
4803 * config/arm/nm-linux.h, config/arm/tm-linux.h: Ditto.
4804 * config/arm/xm-nbsd.h, config/i386/nm-gnu.h: Ditto.
4805 * config/i386/nm-i386lynx.h, config/i386/nm-i386sol2.h: Ditto.
4806 * config/i386/nm-i386v4.h, config/i386/nm-i386v42mp.h: Ditto.
4807 * config/i386/nm-linux.h, config/i386/nm-m3.h: Ditto.
4808 * config/i386/nm-ptx4.h, config/i386/nm-x86-64.h: Ditto.
4809 * config/i386/tm-i386gnu.h, config/i386/tm-i386lynx.h: Ditto.
4810 * config/i386/tm-i386m3.h, config/i386/tm-i386sco5.h: Ditto.
4811 * config/i386/tm-i386v4.h, config/i386/tm-linux.h: Ditto.
4812 * config/i386/tm-ptx4.h, config/i386/tm-vxworks.h: Ditto.
4813 * config/i386/xm-i386v4.h, config/i386/xm-nbsd.h: Ditto.
4814 * config/i386/xm-ptx.h, config/i386/xm-ptx4.h: Ditto.
4815 * config/i960/tm-vx960.h, config/ia64/nm-aix.h: Ditto.
4816 * config/ia64/nm-linux.h, config/ia64/tm-aix.h: Ditto.
4817 * config/ia64/tm-linux.h, config/ia64/xm-aix.h: Ditto.
4818 * config/m68k/nm-linux.h, config/m68k/nm-m68klynx.h: Ditto.
4819 * config/m68k/nm-sysv4.h, config/m68k/tm-linux.h: Ditto.
4820 * config/m68k/tm-m68klynx.h, config/m68k/tm-m68kv4.h: Ditto.
4821 * config/m68k/tm-sun2os4.h, config/m68k/tm-sun3os4.h: Ditto.
4822 * config/m68k/tm-vx68.h, config/m68k/xm-m68kv4.h: Ditto.
4823 * config/m68k/xm-nbsd.h, config/m88k/nm-delta88v4.h: Ditto.
4824 * config/m88k/tm-delta88v4.h, config/m88k/xm-delta88v4.h: Ditto.
4825 * config/mips/nm-irix5.h, config/mips/nm-linux.h: Ditto.
4826 * config/mips/tm-linux.h, config/mips/tm-mips64.h: Ditto.
4827 * config/mips/tm-mipsm3.h, config/mips/tm-mipsv4.h: Ditto.
4828 * config/mips/tm-vxmips.h, config/mips/xm-irix5.h: Ditto.
4829 * config/mips/xm-mipsv4.h, config/ns32k/xm-nbsd.h: Ditto.
4830 * config/pa/nm-hppao.h, config/powerpc/nm-linux.h: Ditto.
4831 * config/powerpc/tm-linux.h, config/powerpc/tm-vxworks.h: Ditto.
4832 * config/powerpc/xm-aix.h, config/rs6000/nm-rs6000ly.h: Ditto.
4833 * config/rs6000/tm-rs6000ly.h, config/rs6000/xm-aix4.h: Ditto.
4834 * config/sh/tm-linux.h, config/sparc/nm-linux.h: Ditto.
4835 * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4sol2.h: Ditto.
4836 * config/sparc/tm-linux.h, config/sparc/tm-sp64linux.h: Ditto.
4837 * config/sparc/tm-sp64sim.h, config/sparc/tm-sparclynx.h: Ditto.
4838 * config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h: Ditto.
4839 * config/sparc/tm-vxsparc.h, config/sparc/xm-sun4sol2.h: Ditto.
4840
4841 2002-05-04 Aidan Skinner <aidan@velvet.net>
4842
4843 * ada-exp.tab.c: New file
4844 * ada-exp.y: New file
4845 * ada-lang.c: New file
4846 * ada-lang.h: New file
4847 * ada-lex.c: New file
4848 * ada-lex.l: New file
4849 * ada-tasks.c: New file
4850 * ada-typeprint.c: New file
4851 * ada-valprint.c: New file
4852
4853 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
4854
4855 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Don't set
4856 use_struct_convention to ppc_sysv_abi_broken_use_struct_convention.
4857
4858 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
4859
4860 * config/rs6000/aix4.mt (TDEPFILES): Use ppc-sysv-tdep.o
4861 insetead of ppc-linux-tdep.o.
4862 * config/rs6000/rs6000.mt (TDEPFILES): Likewise.
4863 * config/rs6000/rs6000lynx.mt (TDEPFILES): Likewise.
4864
4865 2002-06-02 Andrew Cagney <ac131313@redhat.com>
4866
4867 2002-05-07 Christian Groessler <chris@groessler.org>
4868 * z8k-tdep.c (z8k_print_register_hook): Fix display of 32 and 64
4869 bit register contents for little endian hosts.
4870
4871 2002-06-01 Andrew Cagney <ac131313@redhat.com>
4872
4873 * MAINTAINERS: Mention that any `HP/UX reader' can be changed by
4874 any maintainer.
4875
4876 2002-06-01 Andrew Cagney <ac131313@redhat.com>
4877
4878 * gdbarch.h: Regenerate.
4879
4880 2002-06-01 Andrew Cagney <ac131313@redhat.com>
4881
4882 * MAINTAINERS: Add everyone to write-after-approval list.
4883
4884 2002-06-01 Andrew Cagney <ac131313@redhat.com>
4885
4886 * stack.c (frame_info): Use frame_register_unwind instead of
4887 saved_regs. Mention when the SP is on the stack or in a register.
4888
4889 * frame.h (frame_register_unwind_ftype): Define. Document.
4890 (struct frame_info): Add field register_unwind and
4891 register_unwind_cache.
4892 (frame_register_unwind): Declare.
4893 (generic_unwind_get_saved_register): Declare.
4894
4895 * frame.c (frame_register_unwind): New function.
4896 (generic_unwind_get_saved_register): New function.
4897
4898 * blockframe.c (generic_call_dummy_register_unwind): New function.
4899 (frame_saved_regs_register_unwind): New function.
4900 (set_unwind_by_pc): New function.
4901 (create_new_frame): New function.
4902 (get_prev_frame): New function.
4903
4904 2002-05-30 Andrew Cagney <ac131313@redhat.com>
4905
4906 * a29k-share/: Delete directory.
4907 * remote-vx29k.c: Delete file.
4908
4909 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
4910
4911 * config/djgpp/fnchange.lst: Add ns32knbsd-nat.c, ns32knbsd-tdep.c,
4912 ppcnbsd-nat.c, ppcnbsd-tdep.c, sparcnbsd-nat.c, and sparcnbsd-tdep.c.
4913
4914 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
4915
4916 * Makefile.in (ALLDEPFILES): Add sparc64nbsd-nat.c,
4917 sparcnbsd-nat.c, and sparcnbsd-tdep.c.
4918 (sparc64nbsd-nat.o)
4919 (sparcnbsd-nat.o)
4920 (sparcnbsd-tdep.o): New dependency lists.
4921 * NEWS: Note new UltraSPARC NetBSD native configuration.
4922 * configure.host (sparc64-*-netbsd*): New host.
4923 * configure.tgt (sparc-*-netbsdelf*)
4924 (sparc-*-netbsd*): Set gdb_target to nbsd.
4925 (sparc64-*-netbsd*): New target.
4926 * sparc64nbsd-nat.c: New file.
4927 * sparcnbsd-nat.c: New file.
4928 * sparcnbsd-tdep.c: New file.
4929 * sparcnbsd-tdep.h: New file.
4930 * config/sparc/nbsd.mt: New file.
4931 * config/sparc/nbsd64.mh: New file.
4932 * config/sparc/nbsd64.mt: New file.
4933 * config/sparc/nbsdaout.mh (NATDEPFILES): Remove corelow.o,
4934 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
4935 (HOST_IPC): Remove.
4936 * config/sparc/nbsdaout.mt: Remove.
4937 * config/sparc/nbsdelf.mh (NATDEPFILES): Remove corelow.o,
4938 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
4939 (HOST_IPC): Remove.
4940 * config/sparc/nbsdelf.mt: Remove.
4941 * config/sparc/nm-nbsd.h: Update copyright years. Remove all
4942 sparc-nat.c compatiblity defines.
4943 * config/sparc/tm-nbsd.h: Update copyright years. Include solib.h.
4944 (GDB_MULTI_ARCH): Set to GDB_MULTI_ARCH_PARTIAL.
4945 * config/sparc/tm-nbsd64.h: New file.
4946 * config/sparc/tm-nbsdaout.h: Remove.
4947 * config/sparc/xm-nbsd.h: Remove.
4948
4949 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
4950
4951 * Makefile.in (sparc-tdep.o): Add osabi.h to dependency list.
4952 * sparc-tdep.c: Include osabi.h.
4953 (gdbarch_tdep): Add osabi member.
4954 (_initialize_sparc_tdep): Use gdbarch_register.
4955 (sparc_gdbarch_init): Use generic OS ABI framework.
4956 (sparc_dump_tdep): New function.
4957
4958 2002-05-30 Kevin Buettner <kevinb@redhat.com>
4959
4960 * corefile.c (do_captured_read_memory_integer): Return non-zero
4961 result.
4962 (safe_read_memory_integer): Copy result of memory read when
4963 status is non-zero. Also, add comments.
4964
4965 2002-05-20 Jason Thorpe <thorpej@wasabisystems.com>
4966
4967 * Makefile.in (ppc_tdep_h): Define.
4968 (ppc-linux-nat.o)
4969 (ppc-linux-tdep.o)
4970 (rs6000-tdep.o): Use $(ppc_tdep_h).
4971 (ppc-sysv-tdep.o)
4972 (ppcnbsd-nat.o)
4973 (ppcnbsd-tdep.o): New dependency lists.
4974 * ppc-tdep.h: Use generic OS ABI framework.
4975 * ppc-linux-tdep.c (_initialize_ppc_linux_tdep)
4976 (ppc_linux_init_abi): New functions.
4977 (ppc_sysv_abi_broken_use_struct_convention)
4978 (ppc_sysv_abi_use_struct_convention)
4979 (ppc_sysv_abi_push_arguments): Move to...
4980 * ppc-sysv-tdep.c: ...here.
4981 * ppcnbsd-nat.c: Don't include gdbcore.h and regcache.h.
4982 * rs6000-tdep.c (process_note_abi_tag_sections)
4983 (get_elfosabi): Remove.
4984 (rs6000_gdbarch_init): Use generic OS ABI framework.
4985 (rs6000_dump_tdep): New function.
4986 (_initialize_rs6000_tdep): Use gdbarch_register.
4987 * config/powerpc/linux.mt (TDEPFILES): Add ppc-sysv-tdep.o.
4988 * config/powerpc/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
4989 * config/powerpc/aix.mt (TDEPFILES): Use ppc-sysv-tdep.o instead
4990 of ppc-linux-tdep.o.
4991 * config/powerpc/nbsd.mt (TDEPFILES): Likewise.
4992 * config/powerpc/ppc-eabi.mt (TDEPFILES): Likewise.
4993 * config/powerpc/ppc-sim.mt (TDEPFILES): Likewise.
4994 * config/powerpc/ppcle-eabi.mt (TDEPFILES): Likewise.
4995 * config/powerpc/ppcle-sim.mt (TDEPFILES): Likewise.
4996 * config/powerpc/vxworks.mt (TDEPFILES): Likewise.
4997
4998 2002-05-29 Jim Blandy <jimb@redhat.com>
4999
5000 * macroscope.c (default_macro_scope): Put `void' in empty argument
5001 list.
5002
5003 2002-05-29 Andrew Cagney <ac131313@redhat.com>
5004
5005 * Makefile.in (arch-utils.o): Add $(sim_regno_h).
5006 * arch-utils.c: Include "sim-regno.h".
5007 * gdbarch.sh: Don't include "sim-regno.h".
5008 * gdbarch.h, gdbarch.c: Regenerate.
5009 * sim-regno.h (legacy_register_sim_regno): Move declaration from
5010 here.
5011 * arch-utils.h (legacy_register_sim_regno): To here.
5012 * remote-sim.c (legacy_register_sim_regno): Move function from
5013 here.
5014 * arch-utils.c (legacy_register_sim_regno): To here.
5015
5016 2002-05-28 Andrew Cagney <ac131313@redhat.com>
5017
5018 * sim-regno.h: New file.
5019 * Makefile.in (sim_regno_h): Define.
5020 (d10v-tdep.o, remote-sim.o): Add dependency on $(sim_regno_h).
5021 * remote-sim.c: Include "sim-regno.h" and "gdb_assert.h".
5022 (legacy_register_sim_regno): New function.
5023 (one2one_register_sim_regno): New function.
5024 (gdbsim_fetch_register): Rewrite.
5025 (gdbsim_store_register): Only store a register when
5026 REGISTER_SIM_REGNO is valid.
5027 * d10v-tdep.c: Include "sim-regno.h".
5028 (d10v_ts2_register_sim_regno): Add legacy_regiter_sim_regno check.
5029 (d10v_ts3_register_sim_regno): Ditto.
5030 * gdbarch.sh: Include "sim-regno.h".
5031 (REGISTER_SIM_REGNO): Set default to legacy_register_sim_regno.
5032 * gdbarch.h, gdbarch.c: Regenerate.
5033 * arch-utils.h (default_register_sim_regno): Delete declaration.
5034 * arch-utils.c (default_register_sim_regno): Delete function.
5035
5036 2002-05-28 Jason Thorpe <thorpej@wasabisystems.com>
5037
5038 * ppcnbsd-nat.c: Rewrite.
5039 * ppcnbsd-tdep.c: New file.
5040 * ppcnbsd-tdep.h: New file.
5041 * config/powerpc/nbsd.mh (NATDEPFILES): Remove corelow.o,
5042 solib.o, and solib-svr4.o.
5043 * config/powerpc/nbsd.mt (TDEPFILES): Add ppcnbsd-tdep.o,
5044 nbsd-tdep.o, and corelow.o.
5045
5046 2002-05-28 Andrew Cagney <ac131313@redhat.com>
5047
5048 * MAINTAINERS (--enable-gdb-build-warnings): Rewrite script to use
5049 `tr' and `sed'. Mention that `broken' targets are not expected to
5050 build.
5051
5052 2002-05-27 Michal Ludvig <mludvig@suse.cz>
5053
5054 * x86-64-tdep.c (x86_64_skip_prologue): Remove obsolete note.
5055 Let PC point right after the prologue before looking up symbols.
5056
5057 2002-05-27 Martin M. Hunt <hunt@redhat.com>
5058
5059 * i386-tdep.c (i386_register_virtual_type): Return
5060 builtin_type_vec128i for SSE registers.
5061
5062 * gdbtypes.h (builtin_type_vec128i): Declare.
5063
5064 * gdbtypes.c (build_builtin_type_vec128i): New function.
5065 (builtin_type_v2_double, builtin_type_v4_int64): New types.
5066 (builtin_type_vec128i): New type for SSE2 128-bit registers.
5067 (build_gdbtypes): Initialize new builtin vector types.
5068 (_initialize_gdbtypes): Register new vector types with gdbarch.
5069
5070 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5071
5072 * MAINTAINERS: ns32k is not longer an obsolete candidate,
5073 since it has been multi-arch'd.
5074 * NEWS: Note that ns32k-*-* is now partial multi-arch.
5075 Move Alpha and VAX multi-arch news entries to same section
5076 as other multi-arch news.
5077
5078 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5079
5080 * ns32k-tdep.c: include gdbtypes.h, inferior.h, regcache.h,
5081 target.s, arch-utils.h, ns32k-tdep.h. Make many functions
5082 static. Rename some register numbers to put them in ns32k-tdep
5083 private namespace.
5084 (ns32k_get_saved_register, ns32k_gdbarch_init_32082,
5085 ns32k_gdbarch_init_32382, ns32k_gdbarch_init, ns32k_dump_tdep): New
5086 functions.
5087 (_initialize_ns32k_tdep): Use gdbarch_register.
5088 * ns32k-tdep.h: New file.
5089 * ns32knbsd-tdep.c: New file.
5090 * config/ns32k/nbsdaout.mt (TDEPFILES): Add ns32knbsd-tdep.o.
5091 * config/ns32k/tm-nbsd.h: Include "ns32k/tm-ns32k.h".
5092 (IN_SOLIB_CALL_TRAMPOLINE, REGISTER_NAME, NUM_REGS,
5093 REGISTER_BYTES, REGISTER_BYTE): Remove.
5094 * config/ns32k/tm-ns32k.h: New file.
5095 * config/ns32k/tm-umax.h: Remove.
5096
5097 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5098
5099 * ns32k-tdep.c (ns32k_saved_pc_after_call,
5100 ns32k_store_struct_return, ns32k_extract_return_value,
5101 ns32k_store_return_value, ns32k_extract_struct_value_address): New
5102 functions.
5103 * config/ns32k/tm-umax.h (SAVED_PC_AFTER_CALL): Define as
5104 ns32k_saved_pc_after_call.
5105 (STORE_STRUCT_RETURN): Define as ns32k_store_struct_return.
5106 (EXTRACT_RETURN_VALUE): Define as ns32k_extract_return_value.
5107 (STORE_RETURN_VALUE): Define as ns32k_store_return_value.
5108 (EXTRACT_STRUCT_VALUE_ADDRESS): Define as
5109 ns32k_extract_struct_value_address.
5110
5111 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5112
5113 * ns32k-tdep.c (ns32k_call_dummy_words, sizeof_ns32k_call_dummy_words,
5114 ns32k_fix_call_dummy): New.
5115 * config/ns32k/tm-umax.h (CALL_DUMMY_WORDS): Define as
5116 ns32k_call_dummy_words.
5117 (SIZEOF_CALL_DUMMY_WORDS): Define as sizeof_ns32k_call_dummy_words.
5118 (CALL_DUMMY, CALL_DUMMY_LENGTH, CALL_DUMMY_ADDR,
5119 CALL_DUMMY_NARGS): Remove.
5120 (FIX_CALL_DUMMY): Define as ns32k_fix_call_dummy.
5121
5122 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5123
5124 * ns32k-tdep.c (ns32k_breakpoint_from_pc, ns32k_frame_chain,
5125 ns32k_frame_saved_pc, ns32k_frame_args_address,
5126 ns32k_frame_locals_address, ns32k_frame_init_saved_regs,
5127 ns32k_push_dummy_frame, ns32k_pop_frame): New functions.
5128 * config/ns32k/tm-nbsd.h (FRAME_SAVED_PC): Remove.
5129 * config/ns32k/tm-umax.h (INNER_THAN): Define as core_addr_lessthan.
5130 (BREAKPOINT_FROM_PC): Define as ns32k_breakpoint_from_pc.
5131 (BREAKPOINT): Remove..
5132 (FRAME_CHAIN): Define as ns32k_frame_chain.
5133 (FRAME_SAVED_PC): Define as ns32k_frame_saved_pc.
5134 (FRAME_ARGS_ADDRESS): Define as ns32k_frame_args_address.
5135 (FRAME_LOCALS_ADDRESS): Define as ns32k_frame_locals_address.
5136 (FRAME_FIND_SAVED_REGS): Remove.
5137 (FRAME_INIT_SAVED_REGS): Define as ns32k_frame_init_saved_regs.
5138 (PUSH_DUMMY_FRAME): Define as ns32k_push_dummy_frame.
5139 (POP_FRAME): Define as ns32k_pop_frame.
5140
5141 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5142
5143 * ns32k-tdep.c (ns32k_register_byte_32082,
5144 ns32k_register_byte_32382, ns32k_register_raw_size,
5145 ns32k_register_virtual_size, ns32k_register_virtual_type): New
5146 functions.
5147 * config/ns32k/tm-nbsd.h (REGISTER_BYTE): Define as
5148 ns32k_register_byte_32382.
5149 * config/ns32k/tm-umax.h: Update copyright years.
5150 (REGISTER_BYTE): Define as ns32k_register_byte_32082.
5151 (REGISTER_RAW_SIZE): Define as ns32k_register_raw_size.
5152 (REGISTER_VIRTUAL_SIZE): Define as ns32k_register_virtual_size.
5153 (REGISTER_VIRTUAL_TYPE): Define as ns32k_register_virtual_type.
5154 (ns32k_get_enter_addr): Fix prototype.
5155
5156 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5157
5158 * ns32k-tdep.c: Update copyright years.
5159 (ns32k_register_name_32082): New function.
5160 (ns32k_register_name_32382): Ditto.
5161 * config/ns32k/tm-nbsd.h (REGISTER_NAMES): Remove.
5162 (REGISTER_NAME): Define as ns32k_register_name_32382.
5163 * config/ns32k/tm-umax.h (REGISTER_NAMES): Remove.
5164 (REGISTER_NAME): Define as ns32k_register_name_32082.
5165
5166 2002-05-24 Jim Blandy <jimb@redhat.com>
5167
5168 * dwarf2read.c (free_line_header): Use xfree, not free.
5169
5170 2002-05-24 Jason Thorpe <thorpej@wasabisystems.com>
5171
5172 * config/djgpp/fnchange.lst: Add alphabsd-nat.c,
5173 alphabsd-tdep.c, mipsnbsd-nat.c, and mipsnbsd-tdep.c
5174
5175 2002-05-23 Andrew Cagney <ac131313@redhat.com>
5176
5177 * PROBLEMS: Mention s390 and FreeBSD 4.4 build problems.
5178
5179 2002-05-23 Andrew Cagney <ac131313@redhat.com>
5180
5181 From Ross Alexander at NEC Europe:
5182 * config/pa/hpux11w.mh (NATDEPFILES): Add solib.o.
5183
5184 2002-05-23 Michael Snyder <msnyder@redhat.com>
5185
5186 * cli/cli-dump.c (restore_command): Use parse_and_eval_long
5187 for input, rather than parse_and_eval_address.
5188
5189 2002-05-23 Andrew Cagney <ac131313@redhat.com>
5190
5191 * d10v-tdep.c: Include "gdb/sim-d10v.h" instead of "sim-d10v.h".
5192 * Makefile.in (sim_d10v_h): Update definition.
5193
5194 2002-05-24 Andrew Cagney <cagney@redhat.com>
5195
5196 * d10v-tdep.c (d10v_gdbarch_init): Revert old code included in
5197 change `2002-05-22 Michael Snyder' below.
5198 (d10v_push_arguments): Ditto.
5199 (d10v_extract_return_value): Ditto.
5200
5201 2002-05-23 Jim Blandy <jimb@redhat.com>
5202
5203 * macrotab.c (check_for_redefinition): Don't complain if the new
5204 definition is the same as the previous one. Take more arguments
5205 to allow the comparison.
5206 (macro_define_object, macro_define_function): Pass more arguments
5207 to check_for_redefinition.
5208
5209 2002-05-22 Michael Snyder <msnyder@redhat.com>
5210
5211 * d10v-tdep.c: Change a few macros to enums for ease of debugging.
5212 (d10v_frame_chain_valid): Add PC_IN_CALL_DUMMY clause.
5213 (d10v_frame_saved_pc): Add PC_IN_CALL_DUMMY clause.
5214 (d10v_frame_chain): Bail immediately if PC_IN_CALL_DUMMY.
5215 Don't bail if return_pc is PC_IN_CALL_DUMMY.
5216 Add a temp variable to save a call (and a memory read).
5217 (d10v_init_extra_frame_info): Get fi->pc from callee's return_pc
5218 if possible (so that PC_IN_CALL_DUMMY will work).
5219
5220 2002-05-22 Corinna Vinschen <vinschen@redhat.com>
5221
5222 * MAINTAINERS: Remove status `OBSOLETE' from v850.
5223
5224 2002-05-22 Michal Ludvig <mludvig@suse.cz>
5225
5226 * dwarf2cfi.c (frame_state_for): Added safety check for a valid
5227 fde->cie_ptr.
5228 (dwarf2_build_frame_info): Corrected handling of eh_frame.
5229 (dwarf2_build_frame_info): Add offset to fde->initial_location
5230 so that frames of shared libraries are mapped correctly.
5231 (execute_stack_op): Change type of 'result' from ULONGEST to
5232 CORE_ADDR.
5233
5234 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
5235
5236 * config/alpha/tm-nbsd.h: Include solib.h.
5237
5238 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
5239
5240 * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Don't make
5241 assumptions about the host's byte order.
5242
5243 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
5244
5245 * Makefile.in (alphanbsd-tdep.o, shnbsd-tdep.o): Add solib-svr4.h
5246 to dependency list.
5247 * alphanbsd-tdep.c: Include solib-svr4.h.
5248 * shnbsd-tdep.c: Ditto.
5249
5250 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
5251
5252 * Makefile.in (armnbsd-tdep.o): Add solib-svr4.h and
5253 nbsd-tdep.h to dependency list.
5254 * configure.host (arm*-*-netbsdelf*, arm*-*-netbsd*,
5255 i[3456]86-*-netbsdaout*, i[3456]86-*-netbsd*, m68*-*-netbsd*,
5256 ns32k-*-netbsd*, sparc-*-netbsdaout*, sparc-*-netbsd*): Use
5257 nbsdaout.mh and nbsdelf.mh consistently.
5258 * configure.tgt (i[3456]86-*-netbsd*, m68*-*-netbsd*,
5259 ns32k-*-netbsd*, sparc-*-netbsdelf*, sparc-*-netbsd*) Use
5260 nbsdaout.mt and nbsdelf.mh consistently.
5261 * armnbsd-tdep.c: Include nbsd-tdep.h and solib-svr4.h.
5262 (arm_netbsd_elf_init_abi): Use set_solib_svr4_fetch_link_map_offsets
5263 to set nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
5264 * config/nm-nbsd.h: Garbage-collect SVR4_SHARED_LIBS. Move
5265 a.out shared library stuff from here...
5266 * config/nm-nbsdaout.h: ...to here.
5267 * config/tm-nbsd.h: Remove.
5268 * config/alpha/nm-nbsd.h (SVR4_SHARED_LIBS): Remove.
5269 * config/arm/nbsd.mh: Remove.
5270 * config/arm/nbsd.mt (TDEPFILES): Remove solib-sunos.o, add
5271 nbsd-tdep.o.
5272 * config/arm/nbsdaout.mh: New file.
5273 * config/arm/nbsdelf.mh: New file.
5274 * config/arm/nm-nbsdaout.h: New file.
5275 * config/i386/nbsd.mh: Remove.
5276 * config/i386/nbsd.mt: Remove.
5277 * config/i386/nbsdaout.mh: New file.
5278 * config/i386/nbsdaout.mt: New file.
5279 * config/i386/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
5280 * config/i386/nbsdelf.mt (TM_FILE): Use tm-nbsd.h.
5281 * config/i386/nm-nbsd.h (REGISTER_U_ADDR,
5282 i386_register_u_addr): Remove.
5283 * config/i386/nm-nbsdaout.h: New file.
5284 * config/i386/nm-nbsdelf.h: Remove.
5285 * config/i386/tm-nbsd.h: Don't include config/tm-nbsd.h.
5286 (USE_STRUCT_CONVENTION): Remove.
5287 * config/i386/tm-nbsdaout.h: New file.
5288 * config/i386/tm-nbsdelf.h: Remove.
5289 * config/m68k/nbsd.mh: Remove.
5290 * config/m68k/nbsd.mt: Remove.
5291 * config/m68k/nbsdaout.mh: New file.
5292 * config/m68k/nbsdaout.mt: New file.
5293 * config/m68k/nm-nbsd.h: Use config/nm-nbsd.h.
5294 * config/m68k/nm-nbsdaout.h: New file.
5295 * config/m68k/tm-nbsd.h: Don't include config/tm-nbsd.h.
5296 (IN_SOLIB_CALL_TRAMPOLINE): Define.
5297 * config/ns32k/nbsd.mh: Remove.
5298 * config/ns32k/nbsd.mt: Remove.
5299 * config/ns32k/nbsdaout.mh: New file.
5300 * config/ns32k/nbsdaout.mt: New file.
5301 * config/ns32k/nm-nbsd.h: Include config/nm-nbsd.h.
5302 * config/ns32k/nm-nbsdaout.h: New file.
5303 * config/ns32k/tm-nbsd.h: Don't include config/tm-nbsd.h.
5304 (IN_SOLIB_CALL_TRAMPOLINE): Define.
5305 * config/powerpc/nm-nbsd.h: Include config/nm-nbsd.h.
5306 (SVR4_SHARED_LIBS): Remove.
5307 * config/powerpc/tm-nbsd.h: Dont' include config/tm-nbsd.h.
5308 * config/sparc/nbsd.mh: Remove.
5309 * config/sparc/nbsd.mt: Remove.
5310 * config/sparc/nbsdaout.mh: New file.
5311 * config/sparc/nbsdaout.mt: New file.
5312 * config/sparc/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
5313 * config/sparc/nbsdelf.mt: New file.
5314 * config/sparc/nm-nbsdaout.h: New file.
5315 * config/sparc/nm-nbsdelf.h: Remove.
5316 * config/sparc/tm-nbsd.h: Don't include config/tm-nbsd.h.
5317 * config/sparc/tm-nbsdaout.h: New file.
5318
5319 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
5320
5321 * Makefile.in (ALLDEPFILES): Add mipsnbsd-nat.c and
5322 mipsnbsd-tdep.c
5323 (mipsnbsd-nat.o, mipsnbsd-tdep.o): New dependency lists.
5324
5325 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
5326
5327 * Makefile.in (ALLDEPFILES): Add shnbsd-tdep.c and
5328 shnbsd-nat.c.
5329 (shnbsd-tdep.o, shnbsd-nat.o): New dependency lists.
5330
5331 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
5332
5333 * NEWS: Note new MIPS NetBSD native configuration.
5334 * configure.host (mips*-*-netbsd*): New host.
5335 * configure.tgt (mips*-*-netbsd*): New target.
5336 * mipsnbsd-nat.c: New file.
5337 * mipsnbsd-tdep.c: New file.
5338 * mipsnbsd-tdep.h: New file.
5339 * config/mips/nbsd.mh: New file.
5340 * config/mips/nbsd.mt: New file.
5341 * config/mips/nm-nbsd.h: New file.
5342 * config/mips/tm-nbsd.h: New file.
5343
5344 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
5345
5346 * Makefile.in (SFILES): Add osabi.c.
5347 (COMMON_OBS): Add osabi.o.
5348 (osabi.o): New dependency list.
5349 * osabi.c: New file.
5350 * osabi.h: New file.
5351 * doc/gdbint.texinfo: Document new generic OS ABI framework.
5352
5353 * Makefile.in (alpha_tdep_h): Define and use instead of
5354 alpha-tdep.h.
5355 * alpha-tdep.c (alpha_abi_names, process_note_abi_tag_sections,
5356 get_elfosabi, alpha_abi_handler_list, alpha_gdbarch_register_os_abi):
5357 Remove.
5358 (alpha_gdbarch_init, alpha_dump_tdep): Use generic OS ABI framework.
5359 * alpha-tdep.h: Include osabi.h.
5360 (alpha_abi): Remove.
5361 (gdbarch_tdep): Use generic OS ABI framework.
5362 * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Use
5363 gdbarch_register_osabi.
5364 * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Likewise.
5365 * alphafbsd-tdep.c (_initialize_alphafbsd_tdep): Likewise.
5366 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Likewise.
5367
5368 * Makefile.in (sh_tdep_h): Add osabi.h.
5369 * sh-tdep.h (sh_osabi): Remove.
5370 (gdbarch_tdep): Use generic OS ABI framework.
5371 * sh-tdep.c (sh_osabi_names, process_note_abi_tag_sections,
5372 sh_osabi_handler_list, sh_gdbarch_register_os_abi): Remove.
5373 (sh_gdbarch_init, sh_dump_tdep): Use generic OS ABI framework.
5374 * shnbsd-tdep.c (_initialize_shnbsd_tdep): Use gdbarch_register_osabi.
5375
5376 * Makefile.in (arm_tdep_h): Define and use instead of arm-tdep.h.
5377 * arm-linux-tdep.c (_initialize_arm_linux_tdep): Use
5378 gdbarch_register_osabi.
5379 * arm-tdep.c (arm_abi_names, process_note_abi_tag_sections,
5380 arm_abi_handler_list, arm_gdbarch_register_os_abi): Remove.
5381 (get_elfosabi): Rename to...
5382 (arm_elf_osabi_sniffer): ...this. Adjust to use generic OS
5383 ABI framework support routines.
5384 (arm_gdbarch_init): Use generic OS ABI framework.
5385 (arm_dump_tdep): Likewise.
5386 (_initialize_arm_tdep): Likewise.
5387 * arm-tdep.h: Include osabi.h.
5388 (arm_abi): Remove.
5389 (gdbarch_tdep): Remove arm_abi and abi_name members. Add
5390 osabi member.
5391 (arm_gdbarch_register_os_abi): Remove prototype.
5392 * armnbsd-tdep.c (arm_netbsd_aout_osabi_sniffer): New function.
5393 (_initialize_arm_netbsd_tdep): Use gdbarch_register_osabi.
5394
5395 * Makefile.in (mips-tdep.o): Add osabi.h to dependency list.
5396 * mips-tdep.c: Include osabi.h.
5397 (gdbarch_tdep, mips_gdbarch_init, mips_dump_tdep): Use generic
5398 OS ABI framework.
5399
5400 2002-05-20 Kazu Hirata <kazu@cs.umass.edu>
5401
5402 * h8300-tdep.c: Fix formatting.
5403
5404 2002-05-20 Elena Zannoni <ezannoni@redhat.com>
5405
5406 * rs6000-tdep.c (rs6000_do_registers_info): Simplify code for
5407 printing vector registers.
5408
5409 2002-05-19 Andrew Cagney <ac131313@redhat.com>
5410
5411 From Fernando Nasser:
5412 * remote.c (remote_async_open_1): Re-throw the exception when the
5413 connection fails.
5414 (remote_cisco_open): Ditto.
5415 (remote_open_1): Ditto.
5416
5417 2002-05-19 Andrew Cagney <ac131313@redhat.com>
5418
5419 * remote.c (remote_start_remote_dummy): Add uiout parameter.
5420 (remote_start_remote): Add uiout parameter. Pass through to
5421 remote_start_remote_dummy.
5422 (remote_open_1): Use catch_exception instead of catch_errors.
5423 (remote_async_open_1): Ditto.
5424 (remote_cisco_open): Ditto.
5425
5426 2002-05-19 Andrew Cagney <ac131313@redhat.com>
5427
5428 * remote.c (remote_start_remote): Replace PTR with void pointer.
5429 (sigint_remote_twice_token, sigint_remote_token): Ditto. Make
5430 static.
5431
5432 2002-05-18 Andrew Cagney <ac131313@redhat.com>
5433
5434 * gdb_indent.sh: Allow the script to be run in the sim directory.
5435
5436 2002-05-18 Mark Kettenis <kettenis@gnu.org>
5437
5438 * config/i386/nm-cygwin.h (NO_PTRACE_H): Remove define.
5439 * config/i386/nm-go32.h (NO_PTRACE_H): Remove define.
5440
5441 * corelow.c (core_open): Only call set_gdbarch_from_file if
5442 exec_bfd is NULL.
5443
5444 2002-05-17 Andrey Volkov <avolkov@transas.com>
5445
5446 * h8300-tdep.c: Add support of EXR register
5447 * config/h8300/tm-h8300.h: Ditto.
5448
5449 2002-05-17 Andrey Volkov <avolkov@transas.com>
5450
5451 * h8300-tdep.c: Add additional CCR flags (I,UI,H,U)
5452
5453 2002-05-17 Andrey Volkov <avolkov@transas.com>
5454
5455 * h8300-tdep.c: Change literal regnums to REGNO.
5456
5457 2002-05-17 Jim Blandy <jimb@redhat.com>
5458
5459 * NEWS: Note addition of macro support.
5460
5461 Expand preprocessor macros in C expressions.
5462 * c-lang.h: #include "macroexp.h", for macro_lookup_ftype.
5463 (scan_macro_expansion, scanning_macro_expansion,
5464 finished_macro_expansion): New function declarations.
5465 (expression_macro_lookup_func, expression_macro_lookup_baton): New
5466 variable declarations.
5467 * parser-defs.h (expression_context_pc): New declaration.
5468 * parse.c (expression_context_pc): New variable.
5469 (parse_exp_1): Set expression_context_pc, as well as
5470 expression_context_block.
5471 * c-exp.y (yylex): If we're not already reading the result of a
5472 macro expansion, try to macro-expand the next token. When we're
5473 done scanning a macro expansion, switch back to the mainline text.
5474 Commas and `if's in a macro's expansion don't terminate the input.
5475 * c-lang.c: #include "macroscope.h" and "gdb_assert.h".
5476 (macro_original_text, macro_expanded_text,
5477 expression_macro_lookup_func, expression_macro_lookup_baton): New
5478 variables.
5479 (scan_macro_expansion, scanning_macro_expansion,
5480 finished_macro_expansion, scan_macro_cleanup, null_macro_lookup,
5481 c_preprocess_and_parse): New functions.
5482 (c_language_defn, cplus_language_defn, asm_language_defn): Call
5483 c_preprocess_and_parse, instead of c_parse.
5484 * Makefile.in (c_lang_h): Note that this #includes macroexp.h.
5485 (c-lang.o): Note dependency on macroscope.h and gdb_assert.h.
5486
5487 Fri May 17 14:26:19 2002 J"orn Rennecke <joern.rennecke@superh.com>
5488
5489 * sh-tdep.c (gdb_print_insn_sh64): Delete.
5490 (gdb_print_insn_sh): Just set info->endian and use print_insn_sh.
5491 (sh_gdbarch_init): Always use gdb_print_insn_sh.
5492
5493 2002-05-17 Corinna Vinschen <vinschen@redhat.com>
5494
5495 * NEWS: Add section for multi-arched targets. Add v850 to that section.
5496
5497 2002-05-17 Jason Thorpe <thorpej@wasabisystems.com>
5498
5499 * Makefile.in (sh_tdep_h): Define and use.
5500 * config/sh/tm-sh.h (sh_osabi, sh_abi, gdbarch_tdep,
5501 register enum): Move to...
5502 * * sh-tdep.h: ...here.
5503 * sh-tdep.c: Include sh-tdep.h.
5504 * sh3-rom.c: Likewise.
5505 * shnbsd-tdep.c: Likewise.
5506
5507 2002-05-16 Michael Snyder <msnyder@redhat.com>
5508
5509 * arm-tdep.c: Spelling fix in comment.
5510
5511 2002-05-16 Jim Blandy <jimb@redhat.com>
5512
5513 Add commands for manually expanding macros and showing their
5514 definitions.
5515 * macrocmd.c, macroscope.c, macroscope.h: New files.
5516 * Makefile.in (SFILES): Add macrocmd.c, macroscope.c.
5517 (macroscope_h): New variable.
5518 (HFILES_NO_SRCDIR): Add macroscope.h.
5519 (COMMON_OBS): Add macrocmd.o, macroscope.o.
5520 (macroscope.o, macrocmd.o): New rules.
5521
5522 Teach the Dwarf 2 reader to read macro information.
5523 * dwarf2read.c: #include "macrotab.h".
5524 (dwarf_macinfo_buffer): New variable.
5525 (struct dwarf2_pinfo): New members: dwarf_macinfo_buffer, and
5526 dwarf_macinfo_size.
5527 (DWARF_MACINFO_BUFFER, DWARF_MACINFO_SIZE): New macros.
5528 (dwarf2_missing_macinfo_section, dwarf2_macros_too_long,
5529 dwarf2_macros_not_terminated, dwarf2_macro_outside_file,
5530 dwarf2_macro_unmatched_end_file, dwarf2_macro_malformed_definition,
5531 dwarf2_macro_spaces_in_definition): New complaints.
5532 (dwarf2_has_info): Initialize dwarf_macinfo_offset.
5533 (dwarf2_build_psymtabs): Read the .dwarf_macinfo section.
5534 (dwarf2_build_psymtabs_hard): Record the buffer and its size in
5535 the partial symbol table.
5536 (psymtab_to_symtab_1): Set the macinfo buffer and size globals
5537 from what's recorded in the partial symbol table.
5538 (read_file_scope): If the compilation unit has a
5539 `DW_AT_macro_info' attribute, read its macro information.
5540 * Makefile.in (dwarf2read.o): Depend on macrotab.h.
5541
5542 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
5543
5544 Fix PR gdb/546
5545 * ser-tcp.c: Don't include <netinet/udp.h>.
5546
5547 2002-05-16 Stephane Carrez <stcarrez@nerim.fr>
5548
5549 * MAINTAINERS: Update my email address.
5550
5551 2002-05-16 Richard Earnshaw <rearnsha@arm.com>
5552
5553 * config/arm/nm-nbsd.h: Use "config/nm-nbsd.h" to include generic
5554 include file of the same name.
5555
5556 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
5557
5558 * configure.tgt: Mark v850 as multi-arched.
5559 * config/v850/tm-v850.h: Remove file.
5560 * config/v850/v850.mt: Eliminate TM_FILE.
5561
5562 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
5563
5564 * v850-tdep.c: Full multi-arch.
5565 * config/v850/tm-v850.h: Eliminate or move to v850-tdep.c everything.
5566 Define GDB_MULTI_ARCH to 2.
5567
5568 2002-05-16 Pierre Muller <muller@ics.u-strasbg.fr>
5569
5570 * p-exp.y (current_type): New static variable.
5571 Carries the type of the expression at the position that is parsed.
5572 (push_current_type, pop_current_type): Two new functions. Used
5573 to store/restore current_type in expression on specific tokens.
5574 (search_field): New static variable. Set to one after parsing a point
5575 as at that point only a FIELDNAME token should be searched.
5576 (FIELDNAME): New token. After a point only a token belonging to
5577 current_type type definition is allowed.
5578 (all over token rules): reset and change current_type according
5579 to rules.
5580 (exp '[' rule): insert implicit array index field if
5581 exp is a pascal string type.
5582
5583 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
5584
5585 * v850-tdep.c: Fix comment for v850_scan_prologue. Remove extra
5586 frame info. Use frame_info's saved_regs instead of matching member
5587 in extra_frame_info throughout.
5588 (v850_frame_init_saved_regs): New function.
5589 (v850_init_extra_frame_info): Move most functionality into
5590 v850_frame_init_saved_regs().
5591 * config/v850/tm-v850.h (EXTRA_FRAME_INFO): Remove definition.
5592 (v850_frame_find_saved_regs): Remove declaration.
5593 (FRAME_FIND_SAVED_REGS): Remove definition.
5594 (v850_frame_init_saved_regs): Add declaration.
5595 (FRAME_INIT_SAVED_REGS): Add definition.
5596
5597 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
5598
5599 * v850-tdep.c: Begin multi-arch'ing v850.
5600 (v850_target_architecture_hook): Remove function.
5601 (v850_gdbarch_init): New function. Add code previously in
5602 v850_target_architecture_hook().
5603 (_initialize_v850_tdep): Don't set target_architecture_hook.
5604 Call register_gdbarch_init() instead.
5605
5606 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
5607
5608 * gdbtypes.h (struct cplus_struct_type): Remove args field.
5609 * hpread.c (hpread_read_struct_type): Remove assignments to args.
5610 (fixup_class_method_type): Likewise.
5611
5612 2002-05-15 Jim Blandy <jimb@redhat.com>
5613
5614 Add macro structures to GDB's symbol tables. Nobody puts anything
5615 in them yet.
5616 * symtab.h (struct symtab): New member: `macro_table'.
5617 * buildsym.h (pending_macros): New global variable.
5618 * buildsym.c: #include "macrotab.h".
5619 (buildsym_init): Initialize `pending_macros'.
5620 (end_symtab): If we found macro information while reading a CU's
5621 debugging info, do build a symtab structure for it. Make the
5622 symtab point to the macro information, and clear the
5623 `pending_macros' pointer which held it while we were reading the
5624 debug info.
5625 (really_free_pendings): Free any pending macro table.
5626 * objfiles.h (struct objfile): New member: `macro_cache'.
5627 * objfiles.c (allocate_objfile): Set allocate and free functions
5628 for the macro cache's objstack.
5629 (free_objfile): Empty the macro cache's obstack.
5630 * symfile.c (reread_symbols): Empty the macro cache's obstack, and
5631 set new allocate and free functions for it.
5632 * solib-sunos.c (allocate_rt_common_objfile): Set allocate and
5633 free functions for the macro cache's objstack. (Why is this
5634 function building its own objfile?)
5635 * symmisc.c (print_objfile_statistics): Print statistics on the
5636 macro bcache.
5637 * Makefile.in: Note that buildsym.o depends on macrotab.h.
5638
5639 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
5640
5641 * config/arm/nm-nbsd.h: Use <> for include of config/nm-nbsd.h.
5642 (REGISTER_U_ADDR): Delete definition.
5643 (arm_register_u_addr): Delete declaration.
5644
5645 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
5646
5647 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Renamed from JB_PC.
5648 (ARM_LINUX_JB_ELEMENT_SIZE): Likewise.
5649
5650 2002-05-14 Andrew Cagney <ac131313@redhat.com>
5651
5652 * regcache.c (register_valid): Revise comments refering to "Not
5653 available" and "unavailable".
5654 * frame.c (frame_register_read): Ditto.
5655 * findvar.c (value_of_register): Ditto.
5656
5657 2002-05-15 Andrew Cagney <cagney@redhat.com>
5658
5659 * Makefile.in (remote_sim_h): Replace remote-sim_h.
5660 (remote-sim.o): Update dependencies.
5661 (d10v-tdep.o): Specify dependencies.
5662 (sim_d10v_h): Define.
5663
5664 2002-05-14 Jim Blandy <jimb@redhat.com>
5665
5666 * macroexp.c (init_buffer, gather_arguments, expand): Use NULL, not 0.
5667 * macrotab.c (macro_lookup_inclusion, find_definition,
5668 new_macro_table): Same.
5669
5670 * macroexp.c (currently_rescanning, expand): Use `strcmp () == 0',
5671 not `! strcmp ()'. This is a dubious improvement.
5672 * macrotab.c (macro_lookup_inclusion, find_definition): Same.
5673
5674 * macrotab.c (macro_lookup_inclusion): Initialize `best_depth',
5675 although it's not necessary, to avoid a warning.
5676
5677 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
5678
5679 * gdbtypes.h: Update accessor macros to use TYPE_MAIN_TYPE.
5680 (TYPE_CONST, TYPE_VOLATILE, TYPE_CODE_SPACE, TYPE_DATA_SPACE): Use
5681 TYPE_INSTANCE_FLAGS.
5682 (struct main_type): New.
5683 (struct type): Move most members to struct main_type. Change
5684 cv_type and as_type to new type_chain member. Add instance_flags.
5685 (TYPE_MAIN_TYPE, TYPE_CHAIN, TYPE_INSTANCE_FLAGS): New macros.
5686 (TYPE_CV_TYPE, TYPE_AS_TYPE): Remove.
5687 (finish_cv_type): Remove prototype.
5688 * gdbtypes.c (alloc_type): Update comment. Allocate TYPE_MAIN_TYPE.
5689 Set TYPE_CHAIN.
5690 (alloc_type_instance): New function.
5691 (smash_type): New function.
5692 (make_pointer_type, make_reference_type, make_function_type)
5693 (smash_to_member_type, smash_to_method_type): Call smash_type.
5694 (make_qualified_type): New function.
5695 (make_type_with_address_space): Call make_qualified_type.
5696 (make_cv_type): Likewise.
5697 (finish_cv_type): Remove unnecessary function.
5698 (replace_type): Update comment. Copy TYPE_MAIN_TYPE.
5699 (recursive_dump_type): Dump TYPE_CHAIN and TYPE_INSTANCE_FLAGS;
5700 remove TYPE_CV_TYPE and TYPE_AS_TYPE.
5701 * c-typeprint.c (c_type_print_modifier): Use TYPE_INSTANCE_FLAGS.
5702 * dwarf2read.c (read_structure_scope): Don't call finish_cv_type.
5703 * hpread.c (hpread_read_struct_type): Likewise.
5704 * stabsread.c (read_struct_type): Likewise.
5705
5706 2002-05-14 Elena Zannoni <ezannoni@redhat.com>
5707
5708 * configure.tgt: Add a catch all sh* target, for cases like
5709 sh[2,3,4]-elf and sh-hms.
5710
5711 2002-05-14 Keith Seitz <keiths@redhat.com>
5712
5713 * event-loop.c (create_file_handler): Don't do anything but
5714 update data when we are given a fd which we are already
5715 monitoring.
5716
5717 2002-05-14 Michal Ludvig <mludvig@suse.cz>
5718
5719 * dwarf2cfi.c (context_cpy): Copy registers correctly.
5720 (update_context): Use __func__ in warnings.
5721
5722 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
5723
5724 * ser-tcp.c: Include <netinet/udp.h>. Rename tcp_open
5725 and tcp_close to net_open and net_close.
5726 (net_open): Accept "udp:" and "tcp:" specifications. Connect
5727 using UDP if requested. Don't try to disable Nagle on UDP
5728 sockets.
5729 * remote.c (remote_serial_open): New function. Warn about UDP.
5730 (remote_open_1, remote_async_open_1, remote_cisco_open): Call it.
5731
5732 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
5733
5734 * MAINTAINERS: List sh-elf as buildable with ,-Werror.
5735
5736 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
5737
5738 * configure.tgt: Remove sh-hms target.
5739 * MAINTAINERS: Don't list sh-hms as a separate target.
5740
5741 2002-05-13 Jim Blandy <jimb@redhat.com>
5742
5743 Add first preprocessor macro-expansion files.
5744 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
5745 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
5746 (splay_tree_h, macroexp_h, macrotab_h): New variable.
5747 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
5748 (COMMON_OBS): Add macrotab.o, macroexp.o.
5749 (macroexp.o, macrotab.o): New rules.
5750
5751 2002-05-13 Andrew Cagney <ac131313@redhat.com>
5752
5753 * config/m88k/tm-m88k.h: Update copyright.
5754 (m88k_target_write_pc): Declare
5755 (TARGET_WRITE_PC): Redefine using m88k_target_write_pc.
5756 (M88K_NNPC_REGNUM): Rename NNPC_REGNUM.
5757 (SHIFT_INST_REGS): Update definition.
5758 * m88k-tdep.c (m88k_target_write_pc): New function. Implement
5759 using old definition of TARGET_WRITE_PC.
5760 * regcache.c (generic_target_write_pc): Delete code handling
5761 NNPC_REGNUM.
5762 * gdbarch.sh (NNPC_REGNUM): Delete.
5763 * gdbarch.h, gdbarch.c: Regenerate.
5764
5765 2002-05-13 Richard Earnshaw <rearnsha@arm.com>
5766
5767 * builtin-regs.c (value_of_builtin_reg): Correctly calculate the
5768 builtin reg number.
5769
5770 2002-05-13 Daniel Jacobowitz <drow@mvista.com>
5771
5772 * ax-gdb.c (gen_sign_extend, gen_fetch, gen_usual_unary)
5773 (gen_cast, gen_scale, gen_add, gen_sub, gen_binop, gen_deref)
5774 (gen_address_of, gen_struct_ref, gen_repeat): Use type
5775 access macros.
5776 * c-typeprint.c (cp_type_print_method_args): Likewise.
5777 (c_type_print_args): Likewise.
5778 * d10v-tdep.c (d10v_push_arguments): Likewise.
5779 (d10v_extract_return_value): Likewise.
5780 * expprint.c (print_subexp): Likewise.
5781 * gdbtypes.c (lookup_primitive_typename): Likewise.
5782 (lookup_template_type, add_mangled_type, print_arg_types): Likewise.
5783 * gdbtypes.h (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB)
5784 (TYPE_TARGET_STUB, TYPE_STATIC, TYPE_CONST, TYPE_VOLATILE)
5785 (TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_CODE_SPACE, TYPE_VARARGS)
5786 (TYPE_VECTOR): Likewise.
5787 * hpread.c (hpread_read_struct_type)
5788 (fix_static_member_physnames, fixup_class_method_type)
5789 (hpread_type_lookup): Likewise.
5790 * mdebugread.c (parse_symbol, parse_type): Likewise.
5791 * p-lang.c (is_pascal_string_type): Likewise.
5792 * valops.c (hand_function_call): Likewise.
5793 * x86-64-tdep.c (classify_argument): Likewise.
5794
5795 * hpread.c (hpread_read_function_type)
5796 (hpread_read_doc_function_type): Call replace_type.
5797 * dstread.c (create_new_type): Delete.
5798 (decode_dst_structure, process_dst_function): Call alloc_type.
5799 Use type access macros.
5800
5801 2002-05-12 Mark Kettenis <kettenis@gnu.org>
5802
5803 * i387-tdep.c (i387_supply_fxsave): Skip the SSE registers if
5804 the're not supported by the current architecture.
5805 (i387_fill_fxsave): Likewise.
5806
5807 2002-05-12 Fred Fish <fnf@redhat.com>
5808
5809 * symfile.c (default_symfile_offsets): Arrange for uninitialized
5810 sect_index_xxx members to index the first slot in section_offsets
5811 if all of the section_offsets are zero.
5812
5813 2002-05-12 Mark Kettenis <kettenis@gnu.org>
5814
5815 * configure.tgt (sparc-*openbsd): Remove entry accidentially
5816 checked in with last change.
5817
5818 2002-05-12 Mark Kettenis <kettenis@gnu.org>
5819
5820 * configure.tgt (i[3456]86-*-unixware*, i[3456]86-*-unixware2*):
5821 Remove targets. These are canonicalized to i386-*-sysv4.2uw by
5822 config.sub.
5823
5824 2002-05-12 Daniel Jacobowitz <drow@mvista.com>
5825
5826 * Makefile.in: Update dependencies.
5827
5828 2002-05-11 Andrew Cagney <ac131313@redhat.com>
5829
5830 * language.c (local_hex_string_custom): Simplify. Do not depend
5831 on PRINTF_HAS_LONG_LONG or CC_HAS_LONG_LONG.
5832
5833 * memattr.c (mem_info_command): Replace calls to
5834 longest_local_hex_string and longest_local_hex_string_custom.
5835 * buildsym.c (make_blockvector): Ditto.
5836 * solib.c (info_sharedlibrary_command): Ditto.
5837 * tracepoint.c (tracepoints_info): Ditto.
5838 * symtab.c (print_msymbol_info): Ditto.
5839
5840 * language.c (local_hex_string): Delete.
5841 (local_hex_string_custom): Delete.
5842 (longest_local_hex_string): Rename to local_hex_string.
5843 (longest_local_hex_string_custom): Rename to
5844 local_hex_string_custom.
5845 * language.h (local_hex_string): Change parameter type to LONGEST.
5846 (local_hex_string_custom): Ditto.
5847 (longest_local_hex_string): Delete declaration.
5848 (longest_local_hex_string_custom): Ditto.
5849
5850 * solib.c: Update copyright.
5851 * memattr.c: Update copyright.
5852
5853 2002-05-11 Andrew Cagney <ac131313@redhat.com>
5854
5855 * arch-utils.h (legacy_register_to_value): Declare.
5856 (legacy_value_to_register): Declare.
5857 (legacy_convert_register_p): Declare.
5858 * arch-utils.c (legacy_register_to_value): New function.
5859 (legacy_value_to_register): New function.
5860 (legacy_convert_register_p): New function.
5861
5862 * gdbarch.sh (REGISTER_TO_VALUE): Define.
5863 (VALUE_TO_REGISTER): Define.
5864 (CONVERT_REGISTER_P): Define.
5865 * gdbarch.h, gdbarch.c: Regenerate.
5866
5867 * valops.c (value_assign): Use CONVERT_REGISTER_P and
5868 VALUE_TO_REGISTER.
5869 * findvar.c (value_from_register): Use REGISTER_TO_VALUE and
5870 CONVERT_REGISTER_P.
5871
5872 2005-05-11 Daniel Jacobowitz <drow@mvista.com>
5873 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
5874
5875 * Makefile.in: Update dependencies for valops.c.
5876 * valops.c: Include "gdb_assert.h".
5877 (typecmp): Skip THIS parameter to methods.
5878 (find_method_list): Remove static_memfuncp argument,
5879 update callers. Check for stub methods.
5880 (find_value_oload_method_list): Don't set *static_memfuncp.
5881 (find_overload_match): Don't check for stub methods. Assert
5882 that methods are not stubbed. Handle static methods.
5883 (value_find_oload_method_list): Remove static_memfuncp argument.
5884 * gdbtypes.c (check_stub_method): Do not add THIS pointer
5885 to the argument list for static stub methods.
5886 * value.h (value_find_oload_method_list): Update prototype.
5887
5888 2002-05-11 Andrew Cagney <ac131313@redhat.com>
5889
5890 * arch-utils.h (generic_register_size): Declare.
5891 (generic_register_raw_size, generic_register_virtual_size): Delete
5892 declarations.
5893 * arch-utils.c (generic_register_raw_size): Delete.
5894 (generic_register_size): New function.
5895 (generic_register_virtual_size): Delete.
5896
5897 * gdbarch.sh (REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE): Make
5898 default generic_register_size.
5899 * gdbarch.h, gdbarch.c: Re-generate.
5900
5901 * d10v-tdep.c (d10v_gdbarch_init): Use generic_register_size for
5902 register_virtual_size.
5903 * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
5904 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
5905
5906 2002-05-11 Andrew Cagney <ac131313@redhat.com>
5907
5908 * gdbarch.sh (gdbarch_data): Add gdbarch parameter.
5909 * gdbarch.h, gdbarch.c: Regenerate.
5910 * gnu-v3-abi.c: Update copyright.
5911 (vtable_address_point_offset): Update.
5912 (gnuv3_rtti_type): Update.
5913 (gnuv3_baseclass_offset): Update.
5914 * solib-svr4.c (svr4_fetch_link_map_offsets): Update.
5915 (init_fetch_link_map_offsets): Update.
5916 * remote.c (get_remote_state): Update.
5917
5918 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
5919
5920 * TODO: Remove value_headof/value_from_vtable_info comment.
5921 * printcmd.c (print_command_1): Don't call value_from_vtable_info.
5922 * values.c (value_headof, value_from_vtable_info): Delete.
5923 * value.h (value_from_vtable_info): Delete prototype.
5924
5925 2002-05-11 Andrew Cagney <ac131313@redhat.com>
5926
5927 * Makefile.in: Replace gdb_assert.h with $(gdb_assert_h),
5928 gdb_string.h with $(gdb_string_h) and gdb_regex.h with
5929 $(gdb_regex_h).
5930 (gdb_assert_h): Define.
5931 (gdb_wait_h): Define.
5932 (gdb_regex_h): Define.
5933
5934 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
5935
5936 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
5937 * linespec.c (find_methods): Handle GCC 3.x template constructors.
5938
5939 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
5940
5941 * nbsd-tdep.c: Fix comment.
5942
5943 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
5944
5945 * Makefile.in (ALLDEPFILES): Add nbsd-tdep.c.
5946 (alphanbsd-tdep.o): Add nbsd-tdep.h to dependency list.
5947 (nbsd-tdep.o): New dependency list.
5948 * alphanbsd-tdep.c: Don't include solib-svr4.h. Include
5949 nbsd-tdep.h.
5950 (alphanbsd_solib_svr4_fetch_link_map_offsets): Remove.
5951 (alphanbsd_init_abi): Use nbsd_lp64_solib_svr4_fetch_link_map_offsets.
5952 * nbsd-tdep.c: New file.
5953 * nbsd-tdep.h: New file.
5954 * shnbsd-tdep.c: Don't include solib-svr4.h. Include
5955 nbsd-tdep.h.
5956 (shnbsd_solib_svr4_fetch_link_map_offsets): Remove.
5957 (shnbsd_init_abi): Use nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
5958 * config/alpha/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
5959 * config/sh/nbsd.mt (TDEPFILES): Ditto.
5960
5961 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
5962
5963 * config/alpha/nbsd.mh (NATDEPFILES): Remove corelow.o.
5964 * config/alpha/nbsd.mt (TDEPFILES): Add corelow.o.
5965 * config/i386/nbsd.mh (NATDEPFILES): Remove corelow.o.
5966 * config/i386/nbsd.mt (TDEPFILES): Add corelow.o.
5967 * config/i386/nbsdelf.mh (NATDEPFILES): Remove corelow.o.
5968 * config/i386/nbsdelf.mt (TDEPFILES): Add corelow.o.
5969
5970 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
5971
5972 * config/i386/nbsd.mh (NATDEPFILES): Use line continuations.
5973 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
5974 * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
5975 * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
5976 * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
5977 * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
5978 * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
5979
5980 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
5981
5982 * i386nbsd-nat.c: Delete file. Move fetch_core_registers and
5983 fetch_elfcore_registers to...
5984 * i386nbsd-tdep.c: ...here.
5985 (i386nbsd_use_struct_convention): Rename to...
5986 (i386nbsd_aout_use_struct_convention): ...this.
5987 (i386nbsd_supply_reg): New function.
5988 (i386nbsd_fill_reg): New function.
5989 (fetch_core_registers): Use i386nbsd_supply_reg.
5990 (fetch_elfcore_registers): Likewise.
5991 (_initialize_i386nbsd_tdep): New function.
5992 * config/i386/nbsd.mh (NATDEPFILES): Remove i386nbsd-nat.o.
5993 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
5994 * config/i386/nbsdelf.mt (TDEPFILES): Add i386nbsd-tdep.o.
5995 * config/i386/tm-nbsd.h (i386nbsd_use_struct_convention): Rename to...
5996 (i386nbsd_aout_use_struct_convention): ...this.
5997
5998 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
5999
6000 * shnbsd-nat.c (fetch_inferior_registers): Use shnbsd_supply_reg.
6001 (store_inferior_registers): Use shnbsd_fill_reg.
6002 * shnbsd-tdep.c (sh_nbsd_supply_registers,
6003 sh_nbsd_supply_register): Collapse into...
6004 (shnbsd_supply_reg): ...this.
6005 (sh_nbsd_fill_registers, sh_nbsd_fill_register): Collapse into...
6006 (shnbsd_fill_reg): ...this.
6007 (sh_nbsd_solib_svr4_fetch_link_map_offsets): Rename to...
6008 (shnbsd_solib_svr4_fetch_link_map_offsets): ...this.
6009 (fetch_core_registers): Use shnbsd_supply_reg.
6010 (fetch_elfcore_registers): Use shnbsd_supply_reg.
6011 (sh_nbsd_core_fns): Rename to...
6012 (shnbsd_core_fns): ...this.
6013 (sh_nbsd_elfcore_fns): Rename to...
6014 (shnbsd_elfcore_fns): ...this.
6015 (sh_nbsd_init_abi): Rename to...
6016 (shnbsd_init_abi): ...this.
6017 (_initialize_sh_nbsd_tdep): Rename to...
6018 (_initialize_shnbsd_tdep): ...this.
6019 * shnbsd-tdep.h (sh_nbsd_supply_registers,
6020 sh_nbsd_supply_register, sh_nbsd_fill_registers,
6021 sh_nbsd_fill_register): Remove prototypes.
6022 (shnbsd_supply_reg, shnbsd_fill_reg): Add prototypes.
6023
6024 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6025
6026 * Makefile.in (ALLDEPFILES): Remove i387-nat.c.
6027 (i387-nat.o): Delete dependency list.
6028 (go32-nat.o): Change i387-nat.h to i387-tdep.h.
6029 (x86-64-linux-nat.o): Likewise.
6030 * i387-nat.c: Delete file, moving contents to...
6031 * i387-tdep.c: ...here.
6032 * i387-nat.h: Rename...
6033 * i387-tdep.h: ...to this.
6034 * go32-nat.c: Include i387-tdep.h instead of i387-nat.h.
6035 * i386-linux-nat.c: Likewise.
6036 * i386bsd-nat.c: Likewise.
6037 * i386gnu-nat.c: Likewise.
6038 * i386nbsd-nat.c: Likewise.
6039 * i386v4-nat.c: Likewise.
6040 * x86-64-linux-nat.c: Likewise.
6041 * config/i386/fbsd.mh (NATDEPFILES): Remove i387-nat.o.
6042 * config/i386/go32.mh (NATDEPFILES): Likewise.
6043 * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
6044 * config/i386/i386sol2.mh (NATDEPFILES): Likewise.
6045 * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
6046 * config/i386/linux.mh (NATDEPFILES): Likewise.
6047 * config/i386/nbsd.mh (NATDEPFILES): Likewise.
6048 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
6049 * config/i386/obsd.mh (NATDEPFILES): Likewise.
6050 * config/i386/x86-64linux.mh (NATDEPFILES): Likewise.
6051
6052 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6053
6054 * Makefile.in (ALLDEPFILES): Remove alphanbsd-nat.c.
6055 (alphanbsd-nat.o): Remove dependency list.
6056 (alphanbsd-tdep.o): Add $(regcache_h) to dependency list.
6057 * alphanbsd-nat.c: Delete. Contents moved to...
6058 * alphanbsd-tdep.c: ...here.
6059 (_initialize_alphanbsd_tdep): Register core functions.
6060 * config/alpha/nbsd.mh (NATDEPFILES): Remove alphanbsd-nat.o.
6061
6062 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6063
6064 * Makefile.in (ALLDEPFILES): Add alphabsd-tdep.c.
6065 (alphabsd-nat.o): Depend on alphabsd-tdep.h.
6066 (alphanbsd-nat.o): Likewise.
6067 (alphabsd-tdep.o): New dependency list.
6068 * alphabsd-nat.c (supply_gregset): Use alphabsd_supply_reg.
6069 (fill_gregset): Use alphabsd_fill_reg.
6070 (supply_fpregset): Use alphabsd_supply_fpreg.
6071 (fill_fpregset): Use alphabsd_fill_fpreg.
6072 (fetch_inferior_registers): Use struct reg and struct fpreg
6073 rather than gregset_t and fpregset_t. Use alphabsd_supply_reg
6074 and alphabsd_supply_fpreg.
6075 (store_inferior_registers): Use struct reg and struct fpreg
6076 rather than gregset_t and fpregset_t. Use alphabsd_fill_reg
6077 and alphabsd_fill_fpreg.
6078 * alphabsd-tdep.c: New file.
6079 * alphabsd-tdep.h: New file.
6080 * alphanbsd-nat.c (fetch_core_registers): Use alphabsd_supply_fpreg.
6081 (fetch_elfcore_registers): Use alphabsd_supply_reg and
6082 alphabsd_supply_fpreg.
6083 * config/alpha/fbsd.mt (TDEPFILES): Add alphabsd-tdep.o.
6084 * config/alpha/nbsd.mt (TDEPFILES): Likewise.
6085
6086 2002-05-11 Eric Christopher <echristo@redhat.com>
6087
6088 * mips-tdep.c (mips_double_register_type): Fix thinko.
6089 (mips_single_register_type): Ditto.
6090 * MAINTAINERS: Add self.
6091
6092 2002-05-11 Mark Kettenis <kettenis@gnu.org>
6093
6094 * i387-nat.c (i387_supply_register, i387_fill_fsave,
6095 i387_supply_fxsave, i387_fill_fxsave): Rewrite in order to do the
6096 right thing on architectures with different endianness and/or
6097 integer sizes.
6098
6099 2002-05-10 Jason Thorpe <thorpej@wasabisystems.com>
6100
6101 From Christian Limpach <chris@Pin.LU>
6102 * configure.in: Change sed expression which comments out
6103 NATDEPFILES to also comment out continuation lines.
6104 * configure: Regenerate.
6105
6106 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
6107
6108 * sh-tdep.c: Clean up code erroneously reintroduced by previous
6109 big patch.
6110
6111 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
6112
6113 * sh-tdep.c: Include correct file.
6114
6115 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
6116
6117 New support for sh64-elf (sh5) target.
6118
6119 * configure.tgt: For sh64-elf target, default to sh-elf.
6120
6121 * config/sh/tm-sh.h (enum sh-abi): Possible ABI's.
6122 (struct gdbarch_tdep): Add new fields for new registers and ABI
6123 info.
6124
6125 * sh-tdep.c: Include elf-bfd.h, elf/sh.h, gdb/sim-sh.h.
6126 (NUM_PSEUDO_REGS_SH_MEDIA, NUM_PSEUDO_REGS_SH_COMPACT,
6127 MSYMBOL_IS_SPECIAL, IS_ISA32_ADDR, MAKE_ISA32_ADDR,
6128 UNMAKE_ISA32_ADDR, IS_PTABSL_R18, IS_STS_R0, IS_STS_PR,
6129 IS_MOV_TO_R15, IS_MOV_R14, IS_STQ_R18_R14, IS_STQ_R18_R15,
6130 IS_STL_R18_R15, IS_STQ_R14_R15, IS_STL_R14_R15, IS_ADDIL_SP_MEDIA,
6131 IS_ADDI_SP_MEDIA, IS_ADDL_SP_FP_MEDIA, IS_ADD_SP_FP_MEDIA,
6132 IS_MOV_SP_FP_MEDIA, IS_MOV_R0, IS_MOVL_R0, IS_ADD_SP_R0,
6133 IS_MOV_R14_R0, IS_MEDIA_IND_ARG_MOV, IS_MEDIA_ARG_MOV,
6134 IS_MEDIA_MOV_TO_R14, IS_COMPACT_IND_ARG_MOV, IS_COMPACT_ARG_MOV,
6135 IS_COMPACT_MOV_TO_R14, IS_JSR_R0, IS_NOP): New macros.
6136 (sh_sh64_register_name, sh64_elf_make_msymbol_special,
6137 pc_is_isa32, sh_sh64_breakpoint_from_pc, look_for_args_moves,
6138 sh64_skip_prologue_hard_way, sh64_use_struct_convention,
6139 gdb_print_insn_sh64, translate_insn_rn, sh64_frame_chain,
6140 sh64_get_saved_pr, fpp_reg_base_num, is_media_pseudo,
6141 sh64_get_gdb_regnum, sh64_media_reg_base_num,
6142 sh64_compact_reg_base_num, translate_rn_to_arch_reg_num,
6143 sign_extend, sh64_nofp_frame_init_saved_regs,
6144 sh64_init_extra_frame_info, sh64_get_saved_register,
6145 sh64_extract_struct_value_address, sh64_pop_frame,
6146 sh64_push_arguments, sh64_extract_return_value,
6147 sh64_store_return_value, sh64_show_media_regs,
6148 sh64_show_compact_regs, sh64_show_regs, sh_sh64_register_byte,
6149 sh_sh64_register_raw_size, sh_sh64_register_virtual_size,
6150 sh_sh64_register_virtual_type,
6151 sh_sh64_register_convert_to_virtual,
6152 sh_sh64_register_convert_to_raw, sh64_pseudo_register_read,
6153 sh64_register_read, sh64_pseudo_register_write,
6154 sh64_register_write, do_fv_c_register_info, do_dr_c_register_info,
6155 do_r_c_register_info, do_fpp_register_info, do_cr_c_register_info,
6156 sh64_do_pseudo_register, sh_compact_do_registers_info,
6157 sh64_do_registers_info, sh_gdbarch_init): New functions.
6158
6159 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
6160
6161 * sh-tdep.c (sh_breakpoint_from_pc): Add 'const' to return type.
6162
6163 2002-05-10 Daniel Jacobowitz <drow@mvista.com>
6164
6165 * linespec.c (decode_line_1): Check for a double quote after
6166 a filename correctly.
6167
6168 2002-05-10 Jim Blandy <jimb@redhat.com>
6169
6170 Properly track the size of the current objfile's .debug_line section.
6171 * dwarf2read.c (struct dwarf2_pinfo): New member: dwarf_line_size.
6172 (DWARF_LINE_SIZE): New macro.
6173 (dwarf2_build_psymtabs_hard): Record the line section's size in
6174 the partial symbol table.
6175 (psymtab_to_symtab_1): Restore dwarf_line_size from the partial
6176 symbol table.
6177
6178 2002-05-10 Petr Sorfa <petrs@caldera.com>
6179
6180 * ia64-tdep.c: Handle breakpoints on L instruction type
6181 in MLX instruction bundle by moving the breakpoint to
6182 the third slot (X instruction type) as L holds only data.
6183
6184 2002-05-10 Kevin Buettner <kevinb@redhat.com>
6185
6186 * dbxread.c (discarding_local_symbols_complaint): New complaint.
6187 (process_one_symbol): Complain about discarding local symbols
6188 due to a misplaced N_LBRAC entry.
6189
6190 2002-05-09 Elena Zannoni <ezannoni@redhat.com>
6191
6192 From Daniel Berlin <dan@cgsoftware.com>
6193 * linespec.c (find_toplevel_char): '<' and '>' also increase and
6194 decrease the depth we are at, in the case of templates.
6195
6196 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
6197
6198 * mips-tdep.c (mips_float_register_type): New function.
6199 (mips_double_register_type): New function.
6200 (mips_print_register): Use them.
6201 (do_fp_register_row): Likewise.
6202
6203 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
6204
6205 * signals/signals.c (signals): Remove conditional compilation around
6206 Mach-specific signals. Move them to after TARGET_SIGNAL_DEFAULT.
6207 (target_signal_from_name): Loop until TARGET_SIGNAL_LAST.
6208
6209 2002-05-09 Michael Snyder <msnyder@redhat.com>
6210
6211 * remote-rdp.c (remote_rdp_can_run): Remove.
6212
6213 2002-05-09 Tom Tromey <tromey@redhat.com>
6214
6215 * jv-valprint.c (java_val_print): Handle `char' as a special case
6216 of TYPE_CODE_INT.
6217
6218 2002-05-09 Michael Snyder <msnyder@redhat.com>
6219
6220 * arm-tdep.c (arm_scan_prologue): Accept strb r(0123),[r11,#-nn],
6221 strh r(0123),[r11,#-nn], str r(0123),[r11,#-nn], as well as
6222 strb r(0123),[sp,#nn], strh r(0123),[sp,#nn] and
6223 str r(0123),[sp,#nn].
6224 (arm_skip_prologue): Ditto. Also make disassembly
6225 order-independent by placing it in a loop.
6226
6227 2002-05-06 Michael Snyder <msnyder@redhat.com>
6228
6229 * stabsread.c (read_type): Add recognition for new attribute:
6230 "@V;" means that an array type is actually a vector.
6231 This is analogous to the vector flag that's been added to dwarf2.
6232
6233 2002-05-09 Mark Kettenis <kettenis@gnu.org>
6234
6235 * i386-tdep.h (i386_abi): New enum.
6236 (struct gdbarch_tdep): Replace os_ident member with abi.
6237 (i386_gdbarch_register_os_abi): New prototype.
6238 * i386-tdep.c (i386_abi_names): New array.
6239 (process_note_abi_tag_sections): Removed.
6240 (process_note_sections): New function.
6241 (i386_elf_abi_from_note, i386_elf_abi): New functions.
6242 (struct i386_abi_handler): New struct.
6243 (i386_abi_handler_list): New variable.
6244 (i386_gdbarch_register_os_abi): New function.
6245 (i386_gdbarch_init): Adapt for the changes given above.
6246
6247 2002-05-08 Daniel Jacobowitz <drow@mvista.com>
6248
6249 * gregset.h: Say "GNU/Linux".
6250
6251 2002-05-08 Elena Zannoni <ezannoni@redhat.com>
6252
6253 * gdbtypes.c : Add new builtin type for 64 bit vectors.
6254 (build_gdbtypes): Build builtin_type_v2_float.
6255 (_initialize_gdbtypes): Register new builtin type.
6256
6257 2002-05-08 Andrew Cagney <ac131313@redhat.com>
6258
6259 * gdbarch.sh (init_gdbarch_swap): Do not clear the swap section.
6260 (clear_gdbarch_swap): New function.
6261 (initialize_non_multiarch): Call.
6262 (gdbarch_update_p): Before calling init(), swap out and clear the
6263 existing architecture.
6264 * gdbarch.c: Regenerate.
6265
6266 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
6267
6268 * config/djgpp/fnchange.lst: Add alphanbsd-nat.c and
6269 alphanbsd-tdep.c.
6270
6271 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
6272
6273 * sh-nbsd-nat.c: Rename to...
6274 * shnbsd-nat.c: ...this.
6275 * sh-nbsd-tdep.c: Rename to...
6276 * shnbsd-tdep.c: ...this.
6277 * sh-nbsd-tdep.h: Rename to...
6278 * shnbsd-tdep.h: ...this.
6279 * config/sh/nbsd.mh: Use shnbsd-nat.o.
6280 * config/sh/nbsd.mt: Use shnbsd-tdep.o.
6281
6282 2002-05-08 Richard Earnshaw <rearnsha@arm.com>
6283
6284 * remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
6285 concatenation for command help messages.
6286
6287 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
6288
6289 * NEWS: Note new sh*-*-netbsdelf* configuration.
6290 * configure.host: Set gdb_host_cpu to sh for all sh*.
6291 (sh*-*-netbsdelf*): New host.
6292 * configure.tgt: Set gdb_target_cpu to sh for all sh*.
6293 (sh*-*-netbsdelf*): New target.
6294 * sh-nbsd-nat.c: New file.
6295 * sh-nbsd-tdep.c: New file.
6296 * sh-nbsd-tdep.h: New file.
6297 * config/sh/nbsd.mh: New file.
6298 * config/sh/nbsd.mt: New file.
6299 * config/sh/nm-nbsd.h: New file.
6300 * config/sh/tm-nbsd.h: New file.
6301
6302 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
6303
6304 * sh-tdep.c (sh_osabi_names): Declare.
6305 (process_note_abi_tag_sections): New function.
6306 (get_elfosabi): Ditto.
6307 (sh_gdbarch_register_os_abi): Ditto.
6308 (sh_dump_tdep): Ditto.
6309 _initialize_sh_tdep): Use gdbarch_register to register
6310 sh_gdbarch_init and sh_dump_tdep.
6311 * config/sh/tm-sh.h (sh_osabi): Declare.
6312 (gdbarch_tdep): Add sh_osabi and osabi_name members.
6313
6314 2002-05-07 Andrew Cagney <ac131313@redhat.com>
6315
6316 * arm-tdep.c (arm_skip_prologue): Handle generic dummy frames.
6317 (thumb_scan_prologue): Ditto.
6318 (arm_find_callers_reg): Ditto.
6319 (arm_frame_chain): Ditto.
6320 (arm_init_extra_frame_info): Ditto.
6321 (arm_frame_saved_pc): Ditto.
6322 (arm_pop_frame): Ditto.
6323 (arm_push_return_address): New function.
6324 (arm_gdbarch_init): Initialize use_generic_dummy_frames,
6325 call_dummy_location, call_dummy_breakpoint_offset_p,
6326 call_dummy_breakpoint_offset, call_dummy_p,
6327 call_dummy_stack_adjust_p, call_dummy_words,
6328 sizeof_call_dummy_words, call_dummy_start_offset,
6329 call_dummy_length, fix_call_dummy, pc_in_call_dummy,
6330 call_dummy_address, push_return_address and push_dummy_frame for
6331 generic dummy frames.
6332
6333 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
6334
6335 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Fix error in
6336 size computation for alloca.
6337 (sh_fp_frame_init_saved_regs): Likewise.
6338
6339 2002-05-07 Richard Earnshaw <rearnsha@arm.com>
6340
6341 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE): Define.
6342 (ARM_MAX_REGISTER_VIRTUAL_SIZE): Define.
6343 * arm-tdep.c (arm_store_return_value): Use them.
6344 Use FP_REGISTER_RAW_SIZE when setting the FPA return value.
6345 * remote-rdp.c (remote_rdp_fetch_register): Use
6346 ARM_MAX_REGISTER_RAW_SIZE.
6347 (remote_rdp_store_register): Likewise.
6348
6349 2002-05-07 Michal Ludvig <mludvig@suse.cz>
6350
6351 * dwarf2cfi.c: Code cleanup, removed unused variables,
6352 added default labels to switch {} statements.
6353 * x86-64-tdep.c: Ditto.
6354 * x86-64-linux-nat.c: Ditto.
6355
6356 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
6357
6358 * solib.h: Protect against multiple inclusion.
6359
6360 2002-05-06 Jim Blandy <jimb@redhat.com>
6361
6362 Add first preprocessor macro-expansion files.
6363 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
6364 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
6365 (splay_tree_h, macroexp_h, macrotab_h): New variable.
6366 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
6367 (COMMON_OBS): Add macrotab.o, macroexp.o.
6368 (macroexp.o, macrotab.o): New rules.
6369
6370 Separate the job of reading the line number info statement program
6371 header (...expialidocious) out into its own function.
6372 * dwarf2read.c (struct line_head, struct filenames, struct
6373 directories): Replace with...
6374 (struct line_header): New structure, containing the full
6375 contents of the statement program header, including the
6376 include directory and file name tables.
6377 (read_file_scope): If we have line number info, instead of just
6378 calling dwarf_decode_lines to do all the work, call
6379 dwarf_decode_line_header first to get a `struct line_header'
6380 containing the data in the statement program header, and then
6381 pass that to dwarf_decode_lines, which will pick up where that
6382 left off. Be sure to clean up the `struct line_header' object.
6383 (dwarf_decode_line_header, free_line_header, add_include_dir,
6384 add_file_name): New functions.
6385 (dwarf_decode_lines): Move all the code to read the statement
6386 program header into dwarf_decode_line_header. Take the line
6387 header it built as the first argument, instead of the offset to
6388 the compilation unit's line number info. Use the new `struct
6389 line_header' type instead of the old structures. No need to do
6390 cleanups here now, since we don't allocate anything.
6391 (dwarf2_statement_list_fits_in_line_number_section,
6392 dwarf2_line_header_too_long): New complaints.
6393
6394 2002-05-06 Elena Zannoni <ezannoni@redhat.com>
6395
6396 * gdbtypes.c (init_vector_type): New function.
6397 (build_builtin_type_vec128): Simplify the representation of SIMD
6398 registers.
6399 (build_gdbtypes): Initialize new builtin vector types.
6400 (_initialize_gdbtypes): Register new vector types with gdbarch.
6401 (builtin_type_v4_float, builtin_type_v4_int32,
6402 builtin_type_v8_int16, builtin_type_v16_int8,
6403 builtin_type_v2_int32, builtin_type_v4_int16,
6404 builtin_type_v8_int8): New (renamed) SIMD types.
6405
6406 2002-05-06 Mark Kettenis <kettenis@gnu.org>
6407
6408 * i387-nat.c (i387_fill_fsave): Use regcache_collect.
6409 (i387_fill_fxsave): Likewise.
6410
6411 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
6412
6413 * alpha-tdep.c (alpha_extract_return_value): Don't use
6414 non-constant array size in prototype.
6415
6416 2002-05-04 Andrew Cagney <ac131313@redhat.com>
6417
6418 From Brian Taylor <briant at model dot com>:
6419 * ui-out.c (ui_out_field_core_addr): Use the function
6420 longest_local_hex_string_custom'to format addresses > 32 bits
6421 wide.
6422
6423 * ui-out.c (ui_out_field_core_addr): Update comment.
6424
6425 2002-05-04 Andrew Cagney <ac131313@redhat.com>
6426
6427 * stack.c (select_and_print_frame): Make static. Delete the
6428 parameter `level'.
6429 (func_command): Update call.
6430 (select_frame_command): Delete code computing the frame level.
6431 * frame.h (select_and_print_frame): Delete declaration.
6432
6433 2002-05-04 Andrew Cagney <ac131313@redhat.com>
6434
6435 * sparc-tdep.c (sparc_get_saved_register): Comment why
6436 get_prev_frame call is safe.
6437
6438 2002-05-04 Andrew Cagney <ac131313@redhat.com>
6439
6440 * frame.h (select_frame): Delete level parameter.
6441 * stack.c (select_frame): Update. Use frame_relative_level to
6442 obtain the frame's level.
6443 (select_and_print_frame): Update call.
6444 (select_frame_command): Ditto.
6445 (up_silently_base): Ditto.
6446 (down_silently_base): Ditto.
6447 * ocd.c (ocd_start_remote): Ditto.
6448 * remote-rdp.c (remote_rdp_open): Ditto.
6449 * remote-mips.c (mips_initialize): Ditto.
6450 (common_open): Ditto.
6451 * remote-e7000.c (e7000_start_remote): Ditto.
6452 * m3-nat.c (select_thread): Ditto.
6453 * hppa-tdep.c (child_get_current_exception_event): Ditto.
6454 (child_get_current_exception_event): Ditto.
6455 * varobj.c (varobj_create): Ditto.
6456 (varobj_update): Ditto.
6457 (c_value_of_root): Ditto.
6458 * tracepoint.c (finish_tfind_command): Ditto.
6459 * corelow.c (core_open): Ditto.
6460 * arch-utils.c (generic_prepare_to_proceed): Ditto.
6461 * thread.c (info_threads_command): Ditto.
6462 (switch_to_thread): Ditto.
6463 * infrun.c (normal_stop): Ditto.
6464 (restore_selected_frame): Ditto.
6465 (restore_inferior_status): Ditto.
6466 * breakpoint.c (insert_breakpoints): Ditto.
6467 (watchpoint_check): Ditto.
6468 (bpstat_stop_status): Ditto.
6469 (do_enable_breakpoint): Ditto.
6470 * blockframe.c (flush_cached_frames): Ditto.
6471 (reinit_frame_cache): Ditto.
6472
6473 2002-05-04 Andrew Cagney <ac131313@redhat.com>
6474
6475 * MAINTAINERS (Host/Native): Add Jason Thorpe as NetBSD
6476 maintainer.
6477
6478 2002-05-04 Jim Blandy <jimb@redhat.com>
6479
6480 * gdbtypes.c (replace_type): Doc fix.
6481
6482 2002-05-04 Andrew Cagney <ac131313@redhat.com>
6483
6484 * valprint.c (strcat_longest): Delete commented out function.
6485 Update copyright.
6486
6487 2002-05-04 Andrew Cagney <ac131313@redhat.com>
6488
6489 * MAINTAINERS: Mark a29k as deleted.
6490 * NEWS: Mention that a29k was removed. Add OBSOLETE section.
6491 Move new configurations to the top.
6492 * configure.tgt: Remove a29k.
6493 * config/a29k/tm-vx29k.h: Delete.
6494 * config/a29k/vx29k.mt: Delete.
6495 * config/a29k/tm-a29k.h: Delete.
6496 * config/a29k/a29k-udi.mt: Delete.
6497 * config/a29k/a29k.mt: Delete.
6498 * a29k-tdep.c: Delete.
6499 * remote-udi.c: Delete.
6500 * remote-mm.c: Delete.
6501 * remote-eb.c: Delete.
6502 * remote-adapt.c: Delete.
6503 * Makefile.in: Remove obsolete code.
6504 * config/s390/s390x.mt: Ditto.
6505 * config/s390/s390.mt: Ditto.
6506 * config/sparc/sparclynx.mh: Ditto.
6507 * config/sparc/linux.mh: Ditto.
6508 * config/pa/hppaosf.mh: Ditto.
6509 * config/pa/hppabsd.mh: Ditto.
6510 * config/ns32k/nbsd.mt: Ditto.
6511 * config/mips/vr5000.mt: Ditto.
6512 * config/m68k/sun3os4.mh: Ditto.
6513 * config/m68k/nbsd.mt: Ditto.
6514 * config/m68k/m68klynx.mh: Ditto.
6515 * config/m32r/m32r.mt: Ditto.
6516 * config/i386/x86-64linux.mt: Ditto.
6517 * config/i386/nbsdelf.mt: Ditto.
6518 * config/i386/nbsd.mt: Ditto.
6519 * config/i386/i386lynx.mh: Ditto.
6520
6521 2002-05-04 Andrew Cagney <ac131313@redhat.com>
6522
6523 * target.c (debug_print_register): New function. Handle oversize
6524 registers.
6525 (debug_to_fetch_registers): Call.
6526 (debug_to_store_registers): Call.
6527
6528 2002-05-03 Jim Blandy <jimb@redhat.com>
6529
6530 * stabsread.c (cleanup_undefined_types): Use replace_type, not memcpy.
6531 (read_type): Doc fix.
6532 * gdbtypes.c (replace_type): Doc fix.
6533
6534 * stabsread.c (multiply_defined_struct): New complaint.
6535 (read_struct_type): If the type we were passed isn't empty, or
6536 incomplete, don't read the new struct type into it; complain,
6537 and return the original type unchanged. Take a new `type_code'
6538 argument, which is the type code for the new type.
6539 (read_type): Rather than storing the type's type code here, pass
6540 it as an argument to read_struct_type, and let that take care of
6541 storing it. That way, we don't overwrite the original type code,
6542 so read_struct_type can use it to decide whether we're overwriting
6543 something we shouldn't.
6544 (complain_about_struct_wipeout): New function.
6545
6546 2002-05-03 Andrew Cagney <ac131313@redhat.com>
6547
6548 * gdbarch.sh: Assert that gdbarch is non-NULL.
6549 * gdbarch.c: Regenerate.
6550
6551 2002-05-03 Jason Merrill <jason@redhat.com>
6552
6553 * gnu-v3-abi.c (gnuv3_rtti_type): If we get confused, just warn
6554 and return NULL.
6555
6556 2002-05-03 Michal Ludvig <mludvig@suse.cz>
6557
6558 * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map),
6559 (x86_64_dwarf2gdb_regno_map_length),
6560 (x86_64_dwarf2_reg_to_regnum): Added.
6561 (x86_64_gdbarch_init): Added registration of x86_64_dwarf2_reg_to_regnum.
6562 (x86_64_gdbarch_init): Renamed from i386_gdbarch_init.
6563 (_initialize_x86_64_tdep): Synced with the change above.
6564 (x86_64_skip_prologue): Reformulated message.
6565
6566 2002-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
6567
6568 * f-exp.y: Also use new prev_lexptr variable
6569 to improve error reporting. Based on Michael Snyder
6570 2002-04-24 dated patch to c-exp.y.
6571 * jv-exp.y: Likewise.
6572 * m2-exp.y: Likewise.
6573
6574 2002-05-02 Elena Zannoni <ezannoni@redhat.com>
6575
6576 * valops.c (value_arg_coerce): Don't coerce arrays to pointers if
6577 we are dealing with vectors.
6578
6579 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
6580
6581 * config/m68k/tm-nbsd.h: Obvious fix,
6582 correct machine name.
6583
6584 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
6585
6586 * p-typeprint.c (pascal_type_print_base): Add support
6587 for TYPE_CODE_STRING and TYPE_CODE_BITSTRING.
6588
6589 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
6590
6591 * p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
6592 for fondamental pascal 'char' type.
6593
6594 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
6595
6596 * p-lang.h (is_pascal_string_type): Declaration changed,
6597 new sixth argument of type char ** added.
6598 * p-lang.c (is_pascal_string_type): Implementation
6599 changed. Args length_pos, length_size, string_pos, char_size
6600 can now be NULL. New argument arrayname set to the field
6601 name of the char array. Return value set to char array
6602 field index plus one.
6603 * p-valprint.c (pascal_val_print): Adapt to new declaration of
6604 is_pascal_string_type function.
6605
6606 2002-05-02 Andrew Cagney <cagney@redhat.com>
6607
6608 * gdbarch.sh (gdbarch_update_p): Revert 2002-05-02 Andrew Cagney
6609 <cagney@redhat.com> change.
6610 * gdbarch.c: Regenerate.
6611
6612 2002-05-02 Andrew Cagney <cagney@redhat.com>
6613
6614 * gdbarch.sh (gdbarch_update_p): Swap out the old architecture
6615 before probing for a new one. Detect errorenous gdbarch_init
6616 functions.
6617 * gdbarch.c: Regenerate.
6618
6619 2002-05-01 Andrew Cagney <cagney@redhat.com>
6620
6621 * config/mn10200/tm-mn10200.h: Include "symfile.h" and "symtab.h".
6622 * config/mcore/tm-mcore.h: Ditto. Update copyright.
6623 * config/v850/tm-v850.h: Ditto. Update copyright.
6624
6625 2002-04-30 Andrew Cagney <ac131313@redhat.com>
6626
6627 * cris-tdep.c (cris_gdbarch_init): Use arches instead of
6628 current_gdbarch.
6629
6630 2002-04-30 Michael Snyder <msnyder@redhat.com>
6631
6632 * arm-tdep.c: Whitespace clean-ups.
6633 (arm_skip_prologue): Fix thinko; two lines
6634 should have been removed as part of 4/24 change.
6635
6636 2002-04-30 Kevin Buettner <kevinb@redhat.com>
6637
6638 * rs6000-tdep.c: Added comment describing how fpscr register
6639 numbers were chosen.
6640
6641 2002-04-30 Michael Snyder <msnyder@redhat.com>
6642
6643 * gnu-nat.c (gnu_find_memory_regions): Fix merge botch.
6644
6645 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
6646
6647 * hpread.c (DNTT_TYPE_VECTOR): Rename from TYPE_VECTOR.
6648 (DNTT_TYPE_VECTOR_LENGTH): Rename from TYPE_VECTOR_LENGTH.
6649 (hpread_symfile_init, hpread_lookup_type): Substitute throughout.
6650
6651 2002-04-29 Kevin Buettner <kevinb@redhat.com>
6652
6653 From Louis Hamilton <hamilton@redhat.com>:
6654 * rs6000-tdep.c (coff/xcoff.h, libxcoff.h): Include.
6655 * xcoffread.c (coff/xcoff.h, libxcoff.h): Likewise.
6656 * rs6000-tdep.c (rs6000_gdbarch_init): Use bfd_xcoff_is_xcoff64(),
6657 not bfd-private xcoff data, to determine wordsize.
6658 * xcoffread.c (read_xcoff_xymtab, read_symbol_lineno): Likewise.
6659
6660 2002-04-29 Andrew Cagney <ac131313@redhat.com>
6661
6662 GDB 5.2 released from 5.2 branch.
6663
6664 2002-04-29 Michal Ludvig <mludvig@suse.cz>
6665
6666 * x86-64-linux-nat.c (fill_gregset): Explicit cast to avoid warning.
6667 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
6668 (x86_64_register_info_table): Added comments with register numbers.
6669
6670 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
6671
6672 * rs6000-tdep.c (rs6000_extract_return_value,
6673 rs6000_store_return_value): Handle returning vectors.
6674 (rs6000_gdbarch_init): Use
6675 ppc_sysv_abi_broken_use_struct_convention for native sysv cases.
6676 * ppc-linux-tdep.c (ppc_sysv_abi_broken_use_struct_convention):
6677 New function.
6678 (ppc_sysv_abi_use_struct_convention): Deal with functions returning
6679 vectors.
6680 (ppc_sysv_abi_push_arguments): Handle vector parameters.
6681 * ppc-tdep.h (ppc_sysv_abi_broken_use_struct_convention): Export.
6682
6683 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
6684
6685 * hpread.c (hpread_psymtab_to_symtab_1,
6686 hpread_psymtab_to_symtab): Replace fprintf tab_to_s...)
6687 with fprintf_unfiltered (gdb_stderr,...).
6688
6689 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
6690
6691 * remote-array.c (printf_monitor, write_monitor,
6692 array_insert_breakpoint, array_remove_breakpoint ):
6693 Replace fprintf (stderr,...
6694 with fprintf_unfiltered (gdb_stderr,....
6695 * remote-es.c: Likewise.
6696 * remote-os9k.c: Likewise.
6697 * remote-st.c: Likewise.
6698
6699 2002-04-28 Andreas Schwab <schwab@suse.de>
6700
6701 * config/s390/s390.mh (NATDEPFILES): Remove solib.o, add
6702 linux-proc.o and gcore.o.
6703
6704 2002-04-26 Michal Ludvig <mludvig@suse.cz>
6705
6706 * x86-64-tdep.c (x86_64_skip_prologue): Print note when debugging
6707 code without frame pointers.
6708
6709 2002-04-26 Andrew Cagney <ac131313@redhat.com>
6710
6711 * sparc-tdep.c (sparc_gdbarch_init): Add comment explaining why
6712 ON_STACK is needed.
6713
6714 2002-04-26 Ben Elliston <bje@redhat.com>
6715
6716 * target.c (do_xfer_memory): Correct reference to the new option
6717 "trust-readonly-sections".
6718
6719 2002-04-26 Elena Zannoni <ezannoni@redhat.com>
6720
6721 * gdbtypes.h (TYPE_FLAG_VECTOR, TYPE_VECTOR): Define.
6722 * gdbtypes.c (recursive_dump_type): Output the vector flag.
6723 * dwarf2read.c (dwarf_attr_name): Handle new attribute for
6724 vectors.
6725 (read_array_type): Record the fact that this array type is really a
6726 vector (i.e. are passed in by value).
6727
6728 2002-04-26 Jason Thorpe <thorpej@wasabisystems.com>
6729
6730 * alpha-tdep.h (gdbarch_tdep): Add sigcontext_addr member.
6731 * alpha-tdep.c (alpha_sigcontext_addr): New function.
6732 (alpha_find_saved_regs): Use alpha_sigcontext_addr.
6733 (alpha_gdbarch_init): Initialize tdep->sigcontext_addr.
6734 * alpha-linux-tdep.c: Include frame.h.
6735 (alpha_linux_sigcontext_addr): New function.
6736 (alpha_linux_init_abi): Set tdep->sigcontext_addr to
6737 alpha_linux_sigcontext_addr.
6738 * alpha-osf1-tdep.c: Include gdbcore.h.
6739 (alpha_osf1_sigcontext_addr): New function.
6740 (alpha_osf1_init_abi): Set tdep->sigcontext_addr to
6741 alpha_osf1_sigcontext_addr.
6742 * config/alpha/tm-alpha.h (SIGCONTEXT_ADDR): Remove.
6743 * config/alpha/tm-alphalinux.h (SIGCONTEXT_ADDR): Remove.
6744
6745 2002-04-26 Andrew Cagney <ac131313@redhat.com>
6746
6747 * stack.c (selected_frame_level):
6748 (select_frame): Do not set selected_frame_level.
6749 * frame.h (selected_frame_level): Delete declaration.
6750
6751 2002-04-26 Andrew Cagney <ac131313@redhat.com>
6752
6753 * rs6000-tdep.c (rs6000_gdbarch_init): Only set
6754 convert_from_func_ptr-addr when AIX / PowerOpen.
6755
6756 2002-04-25 Andrew Cagney <ac131313@redhat.com>
6757
6758 * valops.c (hand_function_call): Call
6759 generic_save_call_dummy_addr.
6760 * frame.h (generic_save_call_dummy_addr): Declare.
6761 * blockframe.c (struct dummy_frame): Add fields call_lo and
6762 call_hi.
6763 (generic_find_dummy_frame): Check for PC in range call_lo to
6764 call_hi instead of entry_point_address.
6765 (generic_pc_in_call_dummy): Search the dummy frames for a PC in
6766 the call_lo to call_hi range. Allow for DECR_PC_AFTER_BREAK.
6767 (generic_save_call_dummy_addr): New function.
6768
6769 2002-04-24 David S. Miller <davem@redhat.com>
6770
6771 * sparc-tdep.c (sparc_gdbarch_skip_prologue): Kill, duplicates
6772 sparc_skip_prologue.
6773 (sparc_skip_prologue): Kill frameless_p arg, and use line number
6774 information to find prologue when possible.
6775 (sparc_prologue_frameless_p): Call examine_prologue directly.
6776 (sparc_gdbarch_init): Update set_gdbarch_skip_prologue call.
6777 * config/sparc/tm-sparc.h (sparc_skip_prologue): Update for killed
6778 second argument.
6779 (SKIP_PROLOGUE): Likewise.
6780
6781 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
6782
6783 * alpha-tdep.c (alpha_skip_prologue_internal): Remove
6784 GDB_TARGET_HAS_SHARED_LIBS #ifdef and update comment to
6785 indicate that the condition it was testing is always true.
6786 * config/alpha/nm-linux.h (GDB_TARGET_HAS_SHARED_LIBS): Remove.
6787 * config/alpha/nm-nbsd.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
6788 * config/alpha/nm-osf.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
6789
6790 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
6791
6792 * alpha-tdep.h (gdbarch_tdep): Add jb_pc and jb_elt_size members.
6793 * alpha-linux-tdep.c (alpha_linux_init_abi): Initialize
6794 tdep->jb_pc and tdep->jb_elt_size.
6795 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Likewise.
6796 * alphafbsd-tdep.c (alphafbsd_init_abi): Likewise.
6797 * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
6798 * alpha-nat.c (get_longjmp_target): Remove.
6799 (JB_ELEMENT_SIZE): Ditto.
6800 (JB_PC): Ditto.
6801 * alpha-tdep.c (alpha_get_longjmp_target): New function.
6802 (alpha_gdbarch_init): Default tdep->jb_pc to -1. If the
6803 OS ABI sets jb_pc to a valid value, set gdbarch_get_longjmp_target
6804 to alpha_get_longjmp_target.
6805 (alpha_dump_tdep): Report tdep->jb_pc and tdep->jb_elt_size.
6806 * config/alpha/nm-linux.h (GET_LONGJMP_TARGET): Remove.
6807 * config/alpha/nm-osf.h (GET_LONGJMP_TARGET): Remove.
6808
6809 2002-04-25 Andrew Cagney <ac131313@redhat.com>
6810
6811 * README: Update to GDB 5.2.
6812
6813 2002-04-25 Andrew Cagney <ac131313@redhat.com>
6814
6815 * gdbarch.sh (LC_ALL): Set to `c'.
6816
6817 2002-04-25 Theodore A. Roth <troth@verinet.com>
6818
6819 * avr-tdep.c: Ran through gdb_indent.sh.
6820
6821 2002-04-25 Theodore A. Roth <troth@verinet.com>
6822
6823 * MAINTAINERS: Add myself as AVR maintainer.
6824 * NEWS: Note new target avr.
6825
6826 2002-04-25 Theodore A. Roth <troth@verinet.com>
6827
6828 * Makefile.in: Add support for AVR target.
6829 * configure.tgt: Add support for AVR target.
6830 * avr-tdep.c: New file
6831 * config/avr/avr.mt: New file.
6832
6833 2002-04-25 Theodore A. Roth <troth@verinet.com>
6834
6835 * MAINTAINERS: Add myself to write-after-approval.
6836
6837 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
6838
6839 * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,...
6840 with fprintf_unfiltered (gdb_stderr,....
6841
6842 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
6843
6844 Fix PR gdb/508.
6845 * symfile.c (add_filename_language): Fix wrong xrealloc size argument.
6846
6847 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
6848
6849 * p-exp.y: Also use new prev_lexptr variable
6850 to improve error reporting. Based on Michael Snyder
6851 2002-04-24 dated patch to c-exp.y.
6852
6853 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
6854
6855 * alpha-tdep.c (alpha_breakpoint_from_pc): New function.
6856 (alpha_gdbarch_init): Set gdbarch_breakpoint_from_pc to
6857 alpha_breakpoint_from_pc. Set gdbarch_function_start_offset
6858 to 0.
6859 * config/alpha/tm-alpha.h: Remove forward decls of struct type
6860 and struct value.
6861 (FUNCTION_START_OFFSET): Remove.
6862 (BREAKPOINT): Ditto.
6863
6864 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
6865
6866 * MAINTAINERS: Reflect that multi-arch is enabled for VAX.
6867 * NEWS: Ditto.
6868
6869 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
6870
6871 * alpha-linux-tdep.c (alpha_linux_pc_in_sigtramp): New function.
6872 (alpha_linux_init_abi): Set gdbarch_pc_in_sigtramp to
6873 alpha_linux_pc_in_sigtramp.
6874 * alpha-osf1-tdep.c (alpha_osf1_pc_in_sigtramp): New function.
6875 (alpha_osf1_init_abi): Set gdbarch_pc_in_sigtramp to
6876 alpha_osf1_pc_in_sigtramp.
6877 * alpha-tdep.c (alpha_osf_in_sigtramp): Remove.
6878 * alphafbsd-tdep.c (alphafbsd_pc_in_sigtramp): New function.
6879 (alphafbsd_init_abi): Set gdbarch_pc_in_sigtramp to
6880 alphafbsd_pc_in_sigtramp.
6881 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): New function.
6882 (alphanbsd_init_abi): Set gdbarch_pc_in_sigtramp to
6883 alphanbsd_pc_in_sigtramp.
6884 * config/alpha/tm-alpha.h (IN_SIGTRAMP): Remove.
6885 * config/alpha/tm-alphalinux.h (IN_SIGTRAMP): Remove.
6886
6887 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
6888
6889 * config/alpha/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
6890
6891 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
6892
6893 * Makefile.in (ALLDEPFILES): Add alphanbsd-nat.c and
6894 alphanbsd-tdep.c.
6895 (alphanbsd-nat.o): New dependency list.
6896 (alphanbsd-tdep.o): Ditto.
6897 * NEWS: Note new native NetBSD/alpha configuration.
6898 * alphanbsd-nat.c: New file.
6899 * alphanbsd-tdep.c: Ditto.
6900 * configure.host (alpha*-*-netbsd*): New host.
6901 * configure.tgt (alpha*-*-netbsd*): New target.
6902 * config/alpha/nbsd.mh: New file.
6903 * config/alpha/nbsd.mt: Ditto.
6904 * config/alpha/nm-nbsd.h: Ditto.
6905 * config/alpha/tm-nbsd.h: Ditto.
6906
6907 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
6908
6909 * Makefile.in (ALLDEPFILES): Add alpha-osf1-tdep.c.
6910 (alpha-osf1-tdep.o): New dependency list.
6911 * alpha-tdep.h (gdbarch_tdep): Add dynamic_sigtramp_offset
6912 and skip_sigtramp_frame members.
6913 * alpha-linux-tdep.c: Include gdbcore.h.
6914 (alpha_linux_sigtramp_offset): Change return type to LONGEST.
6915 (alpha_linux_init_abi): Initialize tdep->dynamic_sigtramp_offset.
6916 * alpha-osf1-tdep.c: New file.
6917 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Moved to
6918 alpha-osf1-dep.c.
6919 (alpha_frame_past_sigtramp_frame): New function.
6920 (alpha_dynamic_sigtramp_offset): Ditto.
6921 (alpha_proc_desc_is_dyn_sigtramp): Ditto.
6922 (alpha_set_proc_desc_is_dyn_sigtramp): Ditto.
6923 (ALPHA_PROC_SIGTRAMP_MAGIC): Define.
6924 (push_sigtramp_desc): Use alpha_set_proc_desc_is_dyn_sigtramp.
6925 (after_prologue): Use alpha_proc_desc_is_dyn_sigtramp.
6926 (find_proc_desc): Use alpha_dynamic_sigtramp_offset.
6927 (alpha_frame_chain): Use alpha_frame_past_sigtramp_frame.
6928 (alpha_init_extra_frame_info): Use alpha_proc_desc_is_dyn_sigtramp.
6929 (alpha_pop_frame): Use alpha_proc_desc_is_dyn_sigtramp.
6930 (alpha_gdbarch_init): Initialize tdep->dynamic_sigtramp_offset
6931 and tdep->skip_sigtramp_frame. Set gdbarch_skip_trampoline_code
6932 to find_solib_trampoline_target.
6933 * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-osf1-tdep.o.
6934 * config/alpha/tm-alpha.h: Remove inclusion of regcache.h.
6935 (SKIP_TRAMPOLINE_CODE): Remove.
6936 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
6937 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
6938 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
6939 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
6940 * config/alpha/tm-alphalinux.h (PROC_DESC_IS_DYN_SIGTRAMP): Remove.
6941 (PROC_SIGTRAMP_MAGIC): Ditto.
6942 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
6943 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
6944 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
6945 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
6946 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
6947
6948 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
6949
6950 * NEWS: Note that Alpha targets are now multi-arch.
6951
6952 2002-04-24 Michael Snyder <msnyder@redhat.com>
6953
6954 * parser-defs.h (prev_lexptr): New external variable.
6955 * parse.c (parse_exp_1): Set prev_lexptr to null before
6956 calling the language-specific parser.
6957 * c-exp.y (yylex): Set prev_lexptr to start of current token.
6958 (yyerror): Use prev_lexptr in error reporting.
6959
6960 2002-04-24 Daniel Jacobowitz <drow@mvista.com>
6961
6962 * config/i386/tm-linux.h: Define FILL_FPXREGSET.
6963 * gregset.h: If FILL_FPXREGSET is defined, provide
6964 gdb_fpxregset_t, supply_fpxregset, and fill_fpxregset.
6965 * linux-proc.c (linux_do_thread_registers): If FILL_FPXREGSET
6966 is defined, call fill_fpxregset.
6967
6968 2002-04-24 Roland McGrath <roland@frob.com>
6969
6970 * config/i386/i386gnu.mh (NATDEPFILES): Add core-regset.o here.
6971 * i386gnu-nat.c [HAVE_SYS_PROCFS_H]
6972 (supply_gregset, supply_fpregset): New functions.
6973
6974 * gnu-nat.c (gnu_find_memory_regions): New function.
6975 (init_gnu_ops): Set `to_find_memory_regions' hook to that.
6976 (gnu_xfer_memory): Add a cast.
6977
6978 2002-04-24 Michael Snyder <msnyder@redhat.com>
6979
6980 * arm-tdep.c (arm_scan_prologue): Move "mov ip, sp" into the
6981 loop. Add handling for "str lr, [sp, #-4]!" and for saves
6982 of argument regs ("str r(0123), [r11, #-nn"]).
6983 (arm_skip_prologue): Better handling for frameless functions.
6984 Treat "mov ip, sp" as optional. Recognize "str lr, [sp, #-4]".
6985 (arm_skip_prologue): Recognize str r(0123), [r11, #-nn].
6986
6987 Wed Apr 24 14:22:21 2002 Andrew Cagney <cagney@redhat.com>
6988
6989 * arm-tdep.c (arm_gdbarch_init): Add comment that NUM_REGS nor
6990 NUM_PSEUDO_REGS can be used.
6991
6992 2002-04-24 Andrew Cagney <ac131313@redhat.com>
6993
6994 * arch-utils.h: Update copyright.
6995
6996 * gdbarch.sh (PC_IN_SIGTRAMP): Add.
6997 * gdbarch.h, gdbarch.c: Re-generate.
6998
6999 * inferior.h (IN_SIGTRAMP): Delete definition.
7000 * arch-utils.c (legacy_pc_in_sigtramp): New function.
7001 * arch-utils.h (legacy_pc_in_sigtramp): Declare.
7002
7003 * mips-tdep.c (mips_init_extra_frame_info): Use PC_IN_SIGTRAMP.
7004 (mips_dump_tdep): Do not print value of IN_SIGTRAMP.
7005 * hppa-tdep.c (pc_in_interrupt_handler): Use PC_IN_SIGTRAMP.
7006 (find_proc_framesize): Ditto.
7007 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Ditto.
7008 (alpha_init_extra_frame_info): Ditto.
7009 * infrun.c (handle_inferior_event): Ditto.
7010 (handle_inferior_event): Ditto.
7011 (check_sigtramp2): Ditto.
7012 * blockframe.c (create_new_frame): Ditto.
7013 (get_prev_frame): Ditto.
7014 * ppc-linux-tdep.c: Update comments.
7015 * i386-linux-tdep.c: Update comments.
7016 * breakpoint.c (bpstat_what): Update comment.
7017
7018 2002-04-24 David S. Miller <davem@redhat.com>
7019
7020 * i960-tdep.c (register_in_window_p): New function.
7021 (i960_find_saved_register): Use it instead of
7022 REGISTER_IN_WINDOW_P.
7023 * config/i960/tm-i960.h (REGISTER_IN_WINDOW): Delete.
7024
7025 * symtab.h (find_stab_function_addr): Kill extern.
7026 * minsyms.c (find_stab_function_addr): Remove from here...
7027 * dbxread.c: ... to here, and mark it static.
7028
7029 2002-04-20 David S. Miller <davem@redhat.com>
7030
7031 * sparc-tdep.c (sparc_pop_frame): Only need to allocate
7032 SPARC_INTREG_SIZE * 16 bytes for reg_temp.
7033
7034 2002-04-21 David S. Miller <davem@redhat.com>
7035
7036 * remote-vxsparc.c (vx_read_register): Fix typo, we want
7037 REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
7038 (vx_write_register): Likewise.
7039
7040 2002-04-23 J. Brobecker <brobecker@gnat.com>
7041
7042 * source.c (is_regular_file): New function.
7043 (openp): Check wether file to open is a regular file
7044 to avoid opening directories.
7045
7046 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7047
7048 * findvar.c (extract_signed_integer): Cast printf argument
7049 to suppress format warning.
7050 (extract_unsigned_integer): Likewise.
7051 * infcmd.c (registers_info): Likewise.
7052 * top.c (get_prompt_1): Likewise.
7053 * valops.c (value_assign): Likewise.
7054 * valprint.c (print_decimal): Likewise.
7055
7056 2002-04-22 H.J. Lu (hjl@gnu.org)
7057
7058 * c-exp.y (typebase): Support
7059
7060 [long|long long|short] [signed|unsigned] [int|]
7061
7062 and
7063
7064 signed [long|long long|short] int
7065
7066 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7067
7068 * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
7069 and vax-tdep.h.
7070 * vax-tdep.h: New file.
7071 * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
7072 Make several routines static.
7073 (vax_get_saved_register): New function.
7074 (vax_gdbarch_init): New function.
7075 (_initialize_vax_tdep): Register vax_gdbarch_init.
7076 * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
7077 Remove macros now under the control of gdbarch.
7078
7079 2002-04-22 Michael Snyder <msnyder@redhat.com>
7080
7081 * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
7082 Some whitespace and coding standards tweaks.
7083
7084 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7085
7086 * vax-tdep.c: Include regcache.h.
7087 (vax_call_dummy_words): New.
7088 (sizeof_vax_call_dummy_words): New.
7089 (vax_fix_call_dummy): New function.
7090 (vax_saved_pc_after_call): Ditto.
7091 * config/vax/tm-vax.h: Don't include regcache.h.
7092 (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
7093 (CALL_DUMMY): Remove.
7094 (CALL_DUMMY_WORDS): Define.
7095 (SIZEOF_CALL_DUMMY_WORDS): Define.
7096 (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
7097
7098 2002-04-18 Michael Snyder <msnyder@redhat.com>
7099
7100 * arm-tdep.h: Change regnum defines to enums for ease of debugging.
7101
7102 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7103
7104 * vax-tdep.c (vax_frame_chain): New function.
7105 (vax_push_dummy_frame): Ditto.
7106 (vax_pop_frame): Ditto.
7107 * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
7108 (FRAMELESS_FUNCTION_INVOCATION): Use
7109 generic_frameless_function_invocation_not.
7110 (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
7111 (POP_FRAME): Use vax_pop_frame.
7112
7113 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7114
7115 * vax-tdep.c (vax_store_struct_return): New function.
7116 (vax_extract_return_value): Ditto.
7117 (vax_store_return_value): Ditto.
7118 (vax_extract_struct_value_address): Ditto.
7119 * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
7120 vax_store_struct_return.
7121 (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
7122 (STORE_RETURN_VALUE): Use vax_store_return_value.
7123 (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
7124
7125 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7126
7127 * vax-tdep.c (vax_frame_saved_pc): New function.
7128 (vax_frame_args_address_correct): Ditto.
7129 (vax_frame_args_address): Ditto.
7130 (vax_frame_locals_address): Ditto.
7131 (vax_frame_num_args): Move code to be in proximity to
7132 other frame-related functions.
7133 * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
7134 (FRAME_SAVED_PC): Use vax_frame_saved_pc.
7135 (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
7136 (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
7137 (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
7138
7139 2002-04-22 H.J. Lu (hjl@gnu.org)
7140
7141 * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
7142 includedir.
7143
7144 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7145
7146 * vax-tdep.c (vax_frame_init_saved_regs): New function.
7147 * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
7148 (FRAME_INIT_SAVED_REGS): New macro.
7149
7150 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7151
7152 * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
7153
7154 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7155
7156 * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
7157 where needed.
7158 (fetch_osf_core_registers): Likewise.
7159 (supply_gregset): Likewise.
7160
7161 2002-04-22 J. Brobecker <brobecker@gnat.com>
7162
7163 * symfile.h (get_section_index): Define.
7164 * symfile.c (get_section_index): New function.
7165 * mdebugread.c (SC_IS_SBSS): New macro.
7166 (SC_IS_BSS): Return true for the scBss storage class only, as
7167 the scSBss storage class refers to the .sbss section.
7168 (parse_partial_symbols): Discard the symbols which associated
7169 section does not exist.
7170 Make sure to use the .sbss section index for symbols which
7171 storage class is scBss, rather than using the .bss section index.
7172
7173 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7174
7175 * vax-tdep.c: Update copyright years.
7176 (vax_register_name): New function.
7177 (vax_register_byte): Ditto.
7178 (vax_register_raw_size): Ditto.
7179 (vax_register_virtual_size): Ditto.
7180 (vax_register_virtual_type): Ditto.
7181 * config/vax/tm-vax.h: Update copyright years.
7182 (REGISTER_NAMES): Remove.
7183 (REGISTER_NAME): Define.
7184 (REGISTER_BYTE): Use vax_register_byte.
7185 (REGISTER_RAW_SIZE): Use vax_register_raw_size.
7186 (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
7187 (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
7188
7189 2002-04-21 Andrew Cagney <ac131313@redhat.com>
7190
7191 * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
7192 declaration
7193 * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
7194
7195 2002-04-21 David S. Miller <davem@redhat.com>
7196
7197 * arch-utils.c (generic_prologue_frameless_p): Kill
7198 SKIP_PROLOGUE_FRAMELESS_P code.
7199 * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
7200 references.
7201 (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
7202 * arc-tdep.c (arc_prologue_frameless_p): Implement.
7203 * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
7204 references.
7205 (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
7206 * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
7207 (sparc_gdbarch_init): Pass it to
7208 set_gdbarch_prologue_frameless_p.
7209
7210 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7211
7212 * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
7213 (alphabsd-nat.o): New dependency list.
7214
7215 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7216
7217 * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
7218 alphafbsd-tdep.c.
7219 (alpha-linux-tdep.o): New dependency list.
7220 (alphafbsd-tdep.o): Likewise.
7221
7222 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7223
7224 * alpha-linux-tdep.c: New file. Move alpha_linux_sigtramp_offset
7225 to here...
7226 * alpha-tdep.c: ...from here.
7227 * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
7228
7229 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7230
7231 * config/alpha/tm-alpha.h: Move alpha_software_single_step
7232 prototype from here...
7233 * alpha-tdep.h: ...to here.
7234
7235 2002-04-21 Andrew Cagney <ac131313@redhat.com>
7236
7237 * frame.h (selected_frame_level): Document as deprecated.
7238 (frame_relative_level): Declare.
7239 * stack.c (frame_relative_level): New function.
7240 (selected_frame_level): Document as deprecated.
7241 (select_frame): Do not set the selected_frame_level.
7242
7243 * stack.c (frame_info, record_selected_frame): Update.
7244 (frame_command, current_frame_command): Update.
7245 (up_silently_base, up_command, down_silently_base): Update.
7246 (down_command): Update.
7247 * inflow.c (kill_command): Update.
7248 * tracepoint.c (finish_tfind_command): Update.
7249 * corelow.c (core_open): Update.
7250 * thread.c (info_threads_command): Update.
7251 (do_captured_thread_select): Update.
7252 * infcmd.c (finish_command): Update.
7253 * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
7254
7255 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7256
7257 * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
7258
7259 2002-04-21 Andrew Cagney <ac131313@redhat.com>
7260
7261 * arm-tdep.c (arm_breakpoint_from_pc): Make static. Make return
7262 type const.
7263
7264 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7265
7266 * alphafbsd-tdep.c: Update copyright years. Include
7267 alpha-tdep.h.
7268 (alphafbsd_use_struct_convention): Make static.
7269 (alphafbsd_init_abi): New function.
7270 (_initialize_alphafbsd_tdep): New function.
7271 * config/alpha/tm-fbsd.h: Update copyright years.
7272 (USE_STRUCT_CONVENTION): Remove.
7273
7274 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7275
7276 * alpha-tdep.c (alpha_abi_handler): New structure to describe
7277 an Alpha ABI variant.
7278 (alpha_abi_handler_list): Declare.
7279 (alpha_gdbarch_register_os_abi): New function.
7280 (alpha_gdbarch_init): Give registered ABI variant handlers a
7281 chance to tweak the gdbarch once we have set up defaults.
7282 * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
7283
7284 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7285
7286 * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
7287 to standard_coerce_float_to_double.
7288 * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
7289
7290 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7291
7292 * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
7293 * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
7294 from gdbarch_tdep rather than a constant.
7295 (alpha_gdbarch_init): Initialize tdep->vm_min_address to
7296 the default text address for all Alpha Unix ABIs.
7297 (alpha_dump_tdep): Report the value of tdep->vm_min_address.
7298 * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
7299
7300 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7301
7302 * alpha-tdep.h: New file. Includes several Alpha target constants
7303 taken from...
7304 * config/alpha/tm-alpha.h: ...here. Remove macros that we now
7305 let gdbarch deal with.
7306 (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
7307 * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
7308 to dependency list.
7309 * alpha-nat.c: Include alpha-tdep.h. Update for adjusted
7310 Alpha target register names.
7311 * alphabsd-nat.c: Likewise.
7312 * alpha-tdep.c: Include alpha-tdep.h. Update for adjusted
7313 Alpha target register names. Make serveral routines static.
7314 (alpha_get_saved_register): New function.
7315 (alpha_abi_names): New.
7316 (process_note_abi_tag_sections): New function.
7317 (get_elfosabi): New function.
7318 (alpha_gdbarch_init): New function.
7319 (alpha_dump_tdep): New function.
7320 (_initialize_alpha_tdep): Register alpha_gdbarch_init.
7321
7322 2002-04-21 Andrew Cagney <ac131313@redhat.com>
7323
7324 * frame.c (find_saved_register): Delete #ifdef
7325 HAVE_REGISTER_WINDOWS code.
7326 * config/sparc/tm-sparc.h: Update comments.
7327 * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
7328
7329 2002-04-21 Andrew Cagney <ac131313@redhat.com>
7330
7331 * i960-tdep.c (i960_find_saved_register): New function.
7332 (i960_get_saved_register): New function.
7333 * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
7334 (i960_get_saved_register): Declare.
7335 * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
7336
7337 2002-04-20 David S. Miller <davem@redhat.com>
7338
7339 * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
7340
7341 2002-04-20 Andrew Cagney <ac131313@redhat.com>
7342
7343 * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
7344 instead of NUM_PSEUDO_REGS.
7345
7346 2002-04-20 David S. Miller <davem@redhat.com>
7347
7348 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
7349 GDB_MULTI_ARCH_PARTIAL
7350 * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
7351 define, let tm-sp64.h do it.
7352
7353 2002-04-20 Jason Thorpe <thorpej@wasabisystems.com>
7354
7355 * frame.c (find_saved_register): Avoid a NULL pointer
7356 dereference and actually walk the frame list.
7357
7358 2002-04-20 Andrew Cagney <ac131313@redhat.com>
7359
7360 * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
7361 sorted in most most-recent-used order. Document.
7362 * gdbarch.h, gdbarch.c: Regenerate.
7363
7364 2002-04-19 Andrew Cagney <ac131313@redhat.com>
7365
7366 * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
7367 instead of ->prev.
7368 * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
7369 * s390-tdep.c (s390_frame_chain): Do not use ->prev.
7370 * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
7371 instead of ->prev.
7372
7373 2002-04-19 Elena Zannoni <ezannoni@redhat.com>
7374
7375 Fix PR gdb/471.
7376 * gdbtypes.c (init_simd_type): Rewrite using new functions.
7377 (build_builtin_type_vec128): Ditto.
7378 (append_composite_type_field): Fix calculation of type length in
7379 union case.
7380
7381 2002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
7382
7383 * config/djgpp/README: Update.
7384
7385 * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
7386 compiler warnings.
7387
7388 2002-04-19 Jason Thorpe <thorpej@wasabisystems.com>
7389
7390 * alpha-tdep.c (setup_arbitrary_frame): Rename...
7391 (alpha_setup_arbitrary_frame): ...to this.
7392 * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
7393 for alpha_setup_arbitrary_frame.
7394
7395 2002-04-18 Andrew Cagney <cagney@redhat.com>
7396
7397 * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
7398 * gdbarch.h, gdbarch.c: Regenerate.
7399
7400 * defs.h (breakpoint_from_pc_fn): Delete type definition.
7401 * target.h (memory_breakpoint_from_pc): Update declaration.
7402 * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
7403
7404 * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
7405 * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
7406 * mem-break.c (memory_breakpoint_from_pc): Ditto.
7407 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
7408 * s390-tdep.c (s390_breakpoint_from_pc): Ditto
7409 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
7410 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
7411 * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
7412 * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
7413 * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
7414 * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
7415 * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
7416
7417 * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
7418 const pointer.
7419 * monitor.c (monitor_insert_breakpoint): Ditto.
7420 * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
7421
7422 * config/mcore/tm-mcore.h: Update copyright.
7423 * mem-break.c: Ditto.
7424 * xstormy16-tdep.c: Ditto.
7425
7426 2002-04-18 Pierre Muller <muller@ics.u-strasbg.fr>
7427
7428 * p-exp.y: Add precedence rule for '^' token.
7429 This removes the shift/reduce conflicts.
7430 Remove the comment concerning these shift/reduce conflicts.
7431
7432 2002-04-18 Elena Zannoni <ezannoni@redhat.com>
7433
7434 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
7435 (registers_powerpc_nofp): New register set for processors
7436 without floating point unit.
7437
7438 2002-04-18 David S. Miller <davem@redhat.com>
7439
7440 * MAINTAINERS: Add myself to write-after-approval.
7441
7442 2002-04-17 Michael Snyder <msnyder@redhat.com>
7443
7444 * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
7445
7446 2002-04-17 Andrew Cagney <ac131313@redhat.com>
7447
7448 * rs6000-tdep.c (frame_initial_stack_address): Use
7449 frame_register_read to read the alloca_reg.
7450
7451 2002-04-17 Andrew Cagney <ac131313@redhat.com>
7452
7453 * frame.c (find_saved_register): Find saved registers in the next
7454 not prev frame.
7455 Fix PR gdb/365.
7456
7457 2002-04-17 Andrew Cagney <ac131313@redhat.com>
7458
7459 * gdbarch.sh (LANG): Set to ``c''.
7460
7461 2002-04-15 Andrew Cagney <ac131313@redhat.com>
7462
7463 * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
7464
7465 2002-04-15 Andrew Cagney <ac131313@redhat.com>
7466
7467 * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
7468 Update copyright.
7469
7470 * hpread.c (hpread_get_lntt): Add declaration.
7471 Also fix PR gdb/391.
7472
7473 2002-04-14 Andrew Cagney <ac131313@redhat.com>
7474
7475 * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
7476 * aclocal.m4, configure: Re-generate.
7477 Fix PR gdb/391.
7478
7479 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
7480
7481 * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
7482 instead of tm_print_insn.
7483
7484 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
7485
7486 * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
7487
7488 2002-04-14 Andrew Cagney <ac131313@redhat.com>
7489
7490 * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
7491 * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
7492 (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
7493
7494 2002-04-12 Don Howard <dhoward@redhat.com>
7495
7496 * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
7497 max_user_call_depth.
7498 (init_cmd_lists): Initialize the new value;
7499 * cli/cli-script.c (execute_user_command): Limit the call depth of
7500 user defined commands. This avoids a core-dump when user commands
7501 are infinitly recursive.
7502
7503 2002-04-12 Kevin Buettner <kevinb@redhat.com>
7504
7505 * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
7506 * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
7507 from tdep struct instead of DEFAULT_LR_SAVE.
7508 (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
7509 * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
7510 * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
7511
7512 2002-04-12 Michael Snyder <msnyder@redhat.com>
7513
7514 * Remote.c: Spelling fix.
7515 * gcore.c (default_derive_heap_segment): Use bfd_section_name.
7516 If no symbol found for "sbrk", try "_sbrk".
7517 (make_output_phdrs): Use bfd_section_name.
7518 (gcore_copy_callback): Use bfd_section_name.
7519 * eval.c: Indentation fix-ups.
7520 * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
7521 in case it gets applied to an address that is already
7522 in the instruction space.
7523 * cli/cli-decode.c (help_list): Allow long lines to wrap.
7524 * symfile.c: Fix indentation, long lines.
7525 * source.c: White space fix-up.
7526
7527 2002-04-12 Andrew Cagney <cagney@redhat.com>
7528
7529 * defs.h (read_relative_register_raw_bytes): Delete declaration.
7530 * frame.c (frame_register_read): New function. Return non-zero on
7531 success.
7532 (read_relative_register_raw_bytes_for_frame): Delete.
7533 (read_relative_register_raw_bytes): Delete.
7534 * frame.h (frame_register_read): Declare.
7535 * d30v-tdep.c: Update Copyright. Use frame_register_read.
7536 * sh-tdep.c: Ditto.
7537 * infcmd.c (do_registers_info): Ditto.
7538 * hppa-tdep.c: Ditto.
7539 * rs6000-tdep.c: Ditto.
7540 * h8500-tdep.c: Ditto.
7541 * mips-tdep.c: Ditto.
7542 * h8300-tdep.c: Ditto.
7543 * z8k-tdep.c: Ditto.
7544
7545 2002-04-12 Kevin Buettner <kevinb@redhat.com>
7546
7547 From Jimi X <jimix@watson.ibm.com>:
7548 * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
7549 64-bit SysV ABI.
7550
7551 2002-04-12 Kevin Buettner <kevinb@redhat.com>
7552
7553 From Jimi X <jimix@watson.ibm.com>:
7554 * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
7555 bfd info.
7556
7557 2002-04-12 Kevin Buettner <kevinb@redhat.com>
7558
7559 From Jimi X <jimix@watson.ibm.com>:
7560 * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
7561 register sets for these processor variants.
7562
7563 2002-04-11 Daniel Jacobowitz <drow@mvista.com>
7564
7565 * regformats/reg-ppc.dat: Support FPSCR.
7566
7567 2002-04-11 Kevin Buettner <kevinb@redhat.com>
7568
7569 * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
7570 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
7571 Add fpscr as an invalid/unfetchable register.
7572 * ppc-linux-nat.c (ppc_register_u_addr, store_register)
7573 (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
7574 (fill_fpregset): Add support for register fpscr.
7575 (fetch_ppc_registers, store_ppc_registers, supply_gregset)
7576 (fill_gregset): Account for the fact that register ``mq'' might
7577 not exist.
7578 * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
7579 (registers_power): Add fpscr to register set at slot 71.
7580 (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
7581 exist on most PPC architectures. Initialize ppc_fpscr_regnum.
7582
7583 2002-04-11 Michael Snyder <msnyder@redhat.com>
7584
7585 * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
7586 * configure: Regenerate.
7587 * config.in: Regenerate.
7588 * acconfig.h: Add define for _SYSCALL32.
7589 * core-sol2.c: Remove #define _SYSCALL32.
7590 * solib-legacy.c: Remove #define _SYSCALL32.
7591
7592 2002-04-10 Andrew Cagney <ac131313@redhat.com>
7593
7594 * stack.c (select_frame): Cleanup internal error message, do not
7595 use %p.
7596
7597 2002-04-10 Andrew Cagney <ac131313@redhat.com>
7598
7599 * stack.c (select_frame): Check that selected_frame and the
7600 specified level are as expected.
7601 * blockframe.c (get_prev_frame): Set the `level' from next_frame.
7602 Update copyright.
7603 * frame.h (struct frame_info): Add field `level'. Update
7604 copyright.
7605 Work-in-progress PR gdb/464.
7606
7607 2002-04-10 Andrew Cagney <ac131313@redhat.com>
7608
7609 * maint.c (maint_print_section_info): Rename print_section_info.
7610 (print_bfd_section_info, print_objfile_section_info): Update.
7611 * inferior.h (struct gdbarch): Add opaque declaration.
7612 * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
7613 * gdbarch.h: Regenerate.
7614
7615 2002-04-10 Michal Ludvig <mludvig@suse.cz>
7616
7617 * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
7618 (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
7619 (kernel_u_size): Added.
7620 * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
7621 (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
7622
7623 2002-04-04 Jim Ingham <jingham@apple.com>
7624
7625 * valarith.c (find_size_for_pointer_math): New function, either returns
7626 the size for a pointer's target, returns 1 for void *, or errors for
7627 incomplete types.
7628 (value_add, value_sub): use find_size_for_pointer_math.
7629
7630 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
7631
7632 * linux-low.c (linux_look_up_symbols): New hook.
7633 (linux_target_ops): Add linux_look_up_symbols.
7634 * remote-utils.c (decode_address): New function.
7635 (look_up_one_symbol): New function.
7636 * server.c (handle_query): Call target look_up_symbols hook.
7637 * server.h (look_up_one_symbol): Add prototype.
7638 * target.h (struct target_ops): Add look_up_symbols hook.
7639
7640 2002-04-09 Andrew Cagney <ac131313@redhat.com>
7641
7642 * frame.c (read_relative_register_raw_bytes_for_frame): Do not
7643 override FP_REGNUM with frame->fp. Update copyright.
7644 * parse.c (num_std_regs, std_regs): Delete.
7645 (target_map_name_to_register): Do not search std_regs. Update
7646 function description.
7647 * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
7648 declarations. Update copyright.
7649 Fix PR gdb/251.
7650
7651 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
7652
7653 * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
7654 after the last symbol in a block.
7655
7656 2002-04-09 Pierre Muller <muller@ics.u-strasbg.fr>
7657
7658 * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
7659 is non zero as a found symbol.
7660
7661 2002-04-08 Andrew Cagney <ac131313@redhat.com>
7662
7663 * findvar.c: Include "builtin-regs.h".
7664 (value_of_register): Call value_of_builtin_reg when applicable.
7665 * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
7666 (target_map_name_to_register): Call
7667 builtin_reg_map_name_to_regnum.
7668 * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
7669 (COMMON_OBS): Add builtin-regs.o and std-regs.o.
7670 (builtin_regs_h): Define.
7671 (builtin-regs.o): New target.
7672 (findvar.o): Add $(builtin_regs_h).
7673 * builtin-regs.c, builtin-regs.h: New files.
7674 * std-regs.c: New file.
7675 Partial fix for PR gdb/251.
7676
7677 2002-04-08 Kevin Buettner <kevinb@redhat.com>
7678
7679 * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
7680 it's no longer required.
7681
7682 2002-04-08 Andrew Cagney <ac131313@redhat.com>
7683
7684 * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
7685
7686 2002-04-08 Kevin Buettner <kevinb@redhat.com>
7687
7688 From Jimi X <jimix@watson.ibm.com>:
7689 * rs6000-tdep.c (rs6000_software_single_step): Use
7690 rs6000_breakpoint_from_pc() to fetch breakpoint instruction
7691 and size. Use target_insert_breakpoint() and
7692 target_remove_breakpoint() to insert and remove breakpoints
7693 instead of explicit memory reads and writes.
7694
7695 2002-04-08 Kevin Buettner <kevinb@redhat.com>
7696
7697 * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
7698 * rs6000-tdep.c (rs6000_push_arguments): Eliminate
7699 ELF_OBJECT_FORMAT ifdef.
7700
7701 2002-04-08 Kevin Buettner <kevinb@redhat.com>
7702
7703 From Jimi X <jimix@watson.ibm.com>:
7704 * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
7705
7706 2002-04-08 Kevin Buettner <kevinb@redhat.com>
7707
7708 From Jimi X <jimix@watson.ibm.com>:
7709 * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
7710 definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
7711
7712 2002-04-07 Mark Kettenis <kettenis@gnu.org>
7713
7714 * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
7715 s/asprintf/xasprintf/.
7716 (fbsd_make_corefile_notes): s/strdup/xstrdup/.
7717
7718 2002-04-07 Andrew Cagney <ac131313@redhat.com>
7719
7720 I believe Jeff Law denies responsability for this one:
7721 * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
7722 * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
7723 * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
7724 Work-around for PR gdb/366.
7725
7726 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
7727
7728 * remote-e7000.c (write_small, e7000_read_inferior_memory,
7729 e7000_read_inferior_memory_large, e7000_insert_breakpoint,
7730 e7000_remove_breakpoint): Use paddr_nz() to print addresses.
7731
7732 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
7733
7734 * sh-tdep.c (sh_fp_frame_init_saved_regs,
7735 sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
7736 information.
7737
7738 2002-04-07 Andrew Cagney <ac131313@redhat.com>
7739
7740 * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
7741 maintainer.
7742
7743 2002-04-07 Andrew Cagney <ac131313@redhat.com>
7744
7745 * README (Reporting Bugs in GDB): Document the bug web page as the
7746 prefered way of submitting bugs.
7747 Fix PR gdb/402.
7748
7749 2002-04-06 Andrew Cagney <ac131313@redhat.com>
7750
7751 * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
7752 -1. Update comment.
7753 * gdbarch.h, gdbarch.c: Re-generate.
7754
7755 2002-04-07 Andreas Schwab <schwab@suse.de>
7756
7757 * m68klinux-nat.c (fill_fpregset): Properly pass address of
7758 buffer to regcache_collect.
7759
7760 2002-04-06 Andrew Cagney <ac131313@redhat.com>
7761
7762 * gdbarch.sh (PS_REGNUM): Add. Document. Default to -1.
7763 * gdbarch.c, gdbarch.h: Re-generate.
7764
7765 2002-04-06 Andrew Cagney <ac131313@redhat.com>
7766
7767 * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
7768 declaration. Fix -Werror.
7769
7770 2002-04-05 Daniel Jacobowitz <drow@mvista.com>
7771
7772 * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
7773 * gdbarch.c: Regenerate.
7774
7775 2002-04-05 Michael Snyder <msnyder@redhat.com>
7776
7777 * breakpoint.c (clear_command): Rewrite middle section to
7778 combine two loops with identical control conditions.
7779 Add a cleanup to eliminate a memory leak.
7780 * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
7781
7782 2002-04-05 H.J. Lu (hjl@gnu.org)
7783
7784 * solib-svr4.c (bkpt_names): Add "__start".
7785
7786 2002-04-04 Andrew Cagney <ac131313@redhat.com>
7787
7788 * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
7789 as test for 64 bit target.
7790
7791 2002-04-05 Andrew Cagney <ac131313@redhat.com>
7792
7793 * h8500-tdep.c (h8500_write_fp): Delete function.
7794 * dwarf2cfi.c (cfi_write_fp): Document as not used.
7795 * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
7796 * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
7797 * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
7798 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
7799 * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
7800 (s390_write_fp):
7801 * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
7802 * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
7803 * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
7804 (d10v_write_fp): Delete function.
7805 * inferior.h (write_fp, generic_target_write_fp): Delete
7806 declarations.
7807 * regcache.c (generic_target_write_fp): Delete function.
7808 (write_fp): Delete function.
7809 * gdbarch.sh (TARGET_WRITE_FP): Delete.
7810 * gdbarch.h, gdbarch.c: Regenerate.
7811 * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
7812 * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
7813 (sparc64_write_fp): Delete declaration.
7814 * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
7815 (h8500_write_fp): Delete declaration.
7816
7817 2002-04-04 Andrew Cagney <ac131313@redhat.com>
7818
7819 * sparc-tdep.c (sparc64_write_fp): Delete.
7820 (sparc_push_dummy_frame): Replace write_fp call with code to store
7821 the FP directly.
7822 (sparc_gdbarch_init): Do not initialize write_fp.
7823
7824 2002-04-05 Kevin Buettner <kevinb@redhat.com>
7825
7826 * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
7827 clause.
7828
7829 2002-03-29 Jim Blandy <jimb@redhat.com>
7830
7831 * stack.c (get_selected_block): Add new argument `addr_in_block',
7832 used to return the exact code address we used to select the block,
7833 not just the block.
7834 * blockframe.c (get_frame_block, get_current_block): Same.
7835 * frame.h (get_frame_block, get_current_block,
7836 get_selected_block): Update declarations.
7837 * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
7838 linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
7839
7840 2002-04-05 Michael Snyder <msnyder@redhat.com>
7841
7842 * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
7843 warning message.
7844
7845 2002-04-05 J. Brobecker <brobecker@gnat.com>
7846
7847 * utils.c (xfullpath): New function.
7848 * defs.h (xfullpath): Add declaration.
7849 * source.c (openp): Use xfullpath in place of gdb_realpath to
7850 avoid resolving the basename part of filenames when the
7851 associated file is a symbolic link. This fixes a potential
7852 inconsistency between the filenames known to GDB and the
7853 filenames it prints in the annotations.
7854 * symtab.c (lookup_symtab): Use the new xfullpath function, in order
7855 to be able to match a filename with either the real filename, or
7856 the name of any symbolic link to this file.
7857 (lookup_partial_symtab): Ditto.
7858
7859 2002-04-04 Michael Snyder <msnyder@redhat.com>
7860
7861 * breakpoint.c: Add support for hardware breakpoints in overlays.
7862 (overlay_events_enabled): New state variable.
7863 (insert_breakpoints): Use overlay_events_enabled to decide
7864 whether to attempt to set a breakpoint at the overlay load addr.
7865 Handle bp_hardware_breakpoint as well as bp_breakpoint.
7866 (remove_breakpoint): Use overlay_events_enabled to decide
7867 whether breakpoints need to be removed from overlay load addr.
7868 Handle bp_hardware_breakpoint as well as bp_breakpoint.
7869 (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
7870 (create_overlay_event_breakpoint, enable_overlay_breakpoints,
7871 disable_overlay_breakpoints): Update overlay_events_enabled.
7872
7873 2002-04-04 Daniel Jacobowitz <drow@mvista.com>
7874
7875 * dwarf2read.c (struct function_range): New.
7876 (cu_first_fn, cu_last_fn, cu_cached_fn): New.
7877 (check_cu_functions): New.
7878 (read_file_scope): Initialize global function lists.
7879 Call dwarf_decode_line after processing children.
7880 (read_func_scope): Add to global function list.
7881 (dwarf_decode_lines): Call check_cu_functions everywhere
7882 record_line is called. Call record_line with a linenumber
7883 of 0 to mark sequence ends.
7884
7885 2002-04-04 Michal Ludvig <mludvig@suse.cz>
7886
7887 * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
7888 change sync with glibc.
7889
7890 2002-04-03 Jim Blandy <jimb@redhat.com>
7891
7892 * configure.in: Call AC_C_INLINE.
7893 * configure: Regenerated.
7894
7895 2002-04-01 Daniel Jacobowitz <drow@mvista.com>
7896
7897 * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
7898 and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
7899
7900 2002-03-31 Mark Kettenis <kettenis@gnu.org>
7901
7902 * NEWS: Mention gcore support on FreeBSD/i386.
7903
7904 * fbsd-proc.c: New file.
7905 * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
7906 * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
7907
7908 * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
7909 while statement.
7910
7911 2002-03-29 Jim Blandy <jimb@redhat.com>
7912
7913 * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
7914 unescaped newlines in string literals, but newer ones don't. So
7915 escape them.
7916
7917 2002-03-26 Michael Snyder <msnyder@redhat.com>
7918 Andrew Cagney <cagney@redhat.com>
7919
7920 * cli/cli-dump.c: New file. Dump memory to file,
7921 restore file to memory.
7922 * cli/cli-dump.h: New file.
7923 * Makefile.in: Add rules, dependencies for cli-dump.o.
7924 * NEWS: Mention new commands.
7925
7926 2002-03-28 Michael Snyder <msnyder@redhat.com>
7927
7928 * symfile.c (symbol_file_add): Move test for null symbols to later.
7929
7930 2002-03-27 Andrew Cagney <ac131313@redhat.com>
7931
7932 From veksler at il.ibm.com:
7933 * utils.c (gdb_realpath): If canonicalize_file_name fails, return
7934 the xstrduped original path.
7935 Fix PR gdb/417.
7936
7937 2002-03-27 Michael Snyder <msnyder@redhat.com>
7938
7939 * breakpoint.c (_initialize_breakpoint): Clean up help string.
7940 * infcmd.c (_initialize_infcmd): Ditto.
7941 * language.c (_initialize_language): Ditto.
7942 * symfile.c (_initialize_symfile): Ditto.
7943 * top.c (_init_main): Ditto.
7944 * cli/cli-cmds.c (init_cli_cmds): Ditto.
7945
7946 2002-03-27 Elena Zannoni <ezannoni@redhat.com>
7947
7948 * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
7949 vector registers handling.
7950 (skip_prologue): Handle new AltiVec instructions. Fill in new
7951 fields of frame data.
7952 (frame_get_saved_regs): Fill in information for AltiVec registers.
7953
7954 2002-03-27 Jim Blandy <jimb@redhat.com>
7955
7956 * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
7957 a function; leave this macro here to invoke that function.
7958 (symbol_init_mangled_name): Declaration for that function.
7959 * symtab.c (symbol_init_mangled_name): New function.
7960
7961 2002-03-27 Andrew Cagney <ac131313@redhat.com>
7962
7963 * valarith.c: Replace strerror with safe_strerror.
7964 * tracepoint.c: Ditto.
7965 * lin-lwp.c: Ditto.
7966 * go32-nat.c: Ditto.
7967 * inflow.c: Ditto.
7968 * gnu-nat.c: Ditto.
7969
7970 2002-03-27 Andreas Schwab <schwab@suse.de>
7971
7972 * event-top.c (command_line_handler): Remove useless if.
7973
7974 2002-03-27 Andreas Jaeger <aj@suse.de>
7975
7976 * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
7977 comment.
7978
7979 2002-03-27 Michal Ludvig <mludvig@suse.cz>
7980
7981 * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
7982 (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
7983 * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
7984 (x86_64_linux_dr_get_status, supply_gregset),
7985 (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
7986 * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
7987 (x86_64_register_info_table): Add.
7988 (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
7989 (x86_64_register_raw_size, x86_64_register_virtual_type),
7990 (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
7991 general x86_64_register_info_table.
7992 (i386_gdbarch_init): gdbarch_register_bytes is now set
7993 dynamicaly during initialization.
7994 * regformats/reg-x86-64.dat: Synced with changes to registers above.
7995 * gdbserver/linux-x86-64-low.c: Ditto.
7996
7997 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
7998
7999 * gdbserver/server.c (main): Call target_signal_to_host_p
8000 and target_signal_to_host on signals received from the remote.
8001 * gdbserver/remote-utils.c (prepare_resume_reply): Call
8002 target_signal_from_host on signals sent to the remote.
8003 * gdbserver/server.h: Add prototypes. Include "gdb/signals.h".
8004 * gdbserver/Makefile.in: Add signals.o. Add -I${INCLUDE_DIR}.
8005
8006 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
8007
8008 * signals/signals.c: Include "server.h" in gdbserver build.
8009 (target_signal_from_name): Don't use STREQ.
8010 (_initialize_signals): Likewise. Don't include function in
8011 gdbserver build.
8012
8013 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
8014
8015 * signals.c: Moved to...
8016 * signals/signals.c: Here.
8017 * Makefile (signals.o): Update.
8018
8019 2002-03-26 Jeff Law (law@redhat.com)
8020
8021 * somread.c (som_symtab_read): Remove some commented out code and
8022 updated related comments. Do not set the minimal symbol table to
8023 mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
8024 in a dynamic executable.
8025 * hppa-tdep.c (find_proc_framesize): Sanely handle the case
8026 where we are unable to find the minimal symbol for the given
8027 PC value.
8028
8029 2002-03-25 Jeff Law (law@redhat.com)
8030
8031 * linux-proc.c (read_mapping): Scan up to end of line for filename.
8032
8033 2002-03-25 Michal Ludvig <mludvig@suse.cz>
8034
8035 * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
8036
8037 2002-03-23 Andrew Cagney <ac131313@redhat.com>
8038
8039 * command.h: Update copyright.
8040 (struct cmd_list_element): Replace definition with opaque
8041 declaration.
8042 (enum cmd_types): Document that it will eventually be moved to
8043 cli/cli-decode.h
8044 (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
8045 (MALLOCED_REPLACEMENT): Delete macro.
8046 * Makefile.in (cli_decode_h): Add $(command_h).
8047 (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
8048 * top.c: Include "cli/cli-decode.h".
8049 * completer.c: Include "cli/cli-decode.h".
8050 * maint.c: Include "cli/cli-decode.h".
8051 * cli/cli-decode.h: Include "command.h".
8052 (enum command_class): Delete.
8053 (enum cmd_types): Comment out.
8054 (enum cmd_auto_boolean): Delete.
8055 (enum var_types): Delete.
8056
8057 2002-03-23 Andrew Cagney <ac131313@redhat.com>
8058
8059 * cli/cli-decode.c: Include "gdb_assert.h".
8060 (add_set_or_show_cmd): New static function.
8061 (add_set_cmd): Rewrite. Use add_set_or_show_cmd.
8062 (add_show_from_set): Rewrite. Use add_set_or_show_cmd. Don't copy
8063 all fields, such as func, from the set command.
8064
8065 2002-03-23 Andrew Cagney <ac131313@redhat.com>
8066
8067 * MAINTAINERS (sh-elf): Change warning flag to -w.
8068
8069 2002-03-23 Andrew Cagney <cagney@redhat.com>
8070
8071 * defs.h (error): Add printf format attribute.
8072 * thread-db.c (thread_from_lwp): Fix error format string.
8073 * stack.c (parse_frame_specification): Ditto.
8074 * cli/cli-decode.c (undef_cmd_error): Ditto.
8075 * scm-lang.c (scm_lookup_name): Ditto.
8076 * tracepoint.c (trace_error): Ditto.
8077 * remote-utils.c (usage): Ditto.
8078 * remote.c (compare_sections_command): Ditto.
8079 Fix PR gdb/328.
8080
8081 2002-03-22 Andrew Cagney <ac131313@redhat.com>
8082
8083 * gdbtypes.c (append_composite_type_field): New function.
8084 (init_composite_type): New function.
8085 * gdbtypes.h (append_composite_type_field): Declare.
8086 (init_composite_type): Ditto.
8087
8088 2002-03-22 Elena Zannoni <ezannoni@redhat.com>
8089
8090 * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
8091 function.
8092 * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
8093 * rs6000-tdep.c (rs6000_gdbarch_init): Use different
8094 structure returning convention for SYSV ABI case, but not
8095 for GNU/Linux, FreeBSD, or NetBSD.
8096
8097 2002-03-22 Daniel Jacobowitz <drow@mvista.com>
8098
8099 * symtab.h (lookup_block_symbol): Add mangled_name argument
8100 to prototype.
8101
8102 * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
8103 with new mangled_name argument.
8104 * linespec.c (decode_line_1): Likewise.
8105 * valops (value_of_this): Likewise.
8106 * symtab.c (lookup_transparent_type): Likewise.
8107 (lookup_symbol_aux): Likewise. Accept new mangled_name argument.
8108 (lookup_symbol): If we are given a mangled name, pass it down
8109 to lookup_symbol_aux.
8110 (lookup_block_symbol): If we are given a mangled name to check
8111 against, only return symbols which match it.
8112
8113 2002-03-22 Christopher Faylor <cgf@redhat.com>
8114
8115 * win32-nat.c (child_create_inferior): Check for proper shell to use
8116 here, in case the user changes it on the fly.
8117 (_initialize_inftarg): Remove shell path considerations.
8118
8119 2002-03-21 Elena Zannoni <ezannoni@redhat.com>
8120
8121 * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
8122 for gdbarch_max_register_raw_size and max_register_virtual_size.
8123 Adjust copyright year.
8124
8125 2002-03-21 Daniel Jacobowitz <drow@mvista.com>
8126
8127 * dbxread.c (process_one_symbol): Extend the first N_SLINE
8128 in a function to cover the entire beginning of the function
8129 as well if it does not already.
8130
8131 2002-03-21 Tom Rix <trix@redhat.com>
8132
8133 * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
8134 (rs6000_ptrace64): Renamed from ptrace64.
8135
8136 2002-03-20 Martin M. Hunt <hunt@redhat.com>
8137
8138 * gdbserver/remote-utils.c (remote_open): Don't call
8139 getprotobyname, we're all using TCP here so just use
8140 IPPROTO_TCP.
8141 * gdbserver/gdbreplay.c (remote_open): Ditto.
8142
8143 2002-03-20 Martin M. Hunt <hunt@redhat.com>
8144
8145 * regcache.c (_initialize_regcache): No need to call
8146 build_regcache() at this time; it gets called whenever
8147 the gdbarch changes.
8148
8149 2002-03-20 David O'Brien <obrien@FreeBSD.org>
8150
8151 * sparc-nat.c: Include sys/param.h where possible.
8152
8153 2002-03-20 Daniel Jacobowitz <drow@mvista.com>
8154
8155 Fix PR gdb/422.
8156 * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
8157 FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
8158 * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
8159 complex types.
8160 * stabsread.c (rs6000_builtin_type): Likewise.
8161 (read_sun_floating_type): Likewise.
8162
8163 2002-03-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8164
8165 * stabsread.c (read_member_functions): Remove skip code for duplicate
8166 constructor/destructor methods. Use standard parsing for these
8167 methods and just do not chain them to the list of methods after
8168 parsing.
8169
8170 2002-03-19 Alexandre Oliva <aoliva@redhat.com>
8171
8172 * coffread.c: Remove redundant static declarations. Replace
8173 occurrences of `PTR' with `void *'.
8174 * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
8175 * top.h (quit_cover): Likewise.
8176 * defs.h (catch_errors): Likewise.
8177
8178 2002-03-18 Andrew Cagney <ac131313@redhat.com>
8179
8180 * defs.h (XMALLOC): Define.
8181 * gdb-events.sh (XMALLOC): Delete macro.
8182 * gdb-events.c, gdb-events.h: Regenerate.
8183 * gdbarch.sh (XMALLOC): Delete macro.
8184 * gdbarch.c: Regenerate.
8185 * serial.c (XMALLOC): Delete macro.
8186 * ui-file.c (XMALLOC): Ditto.
8187 * ser-unix.h (XMALLOC): Ditto.
8188 * sh-tdep.c (XMALLOC): Ditto.
8189 * ui-out.c (XMALLOC): Ditto.
8190 * utils.c (XMALLOC): Ditto.
8191 * i386-tdep.c (XMALLOC): Ditto.
8192 * gdb-events.c (XMALLOC): Ditto.
8193 * d10v-tdep.c (XMALLOC): Ditto.
8194 * cli-out.c (XMALLOC): Ditto.
8195
8196 * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
8197 * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
8198 * ui-file.c, ui-out.c: Ditto.
8199
8200 2002-03-18 Andrew Cagney <ac131313@redhat.com>
8201
8202 * command.h (struct cmd_list_element): Add field context.
8203 (set_cmd_context, get_cmd_context): Declare.
8204 * cli/cli-decode.h: Ditto.
8205 * cli/cli-decode.c (get_cmd_context): New function.
8206 (set_cmd_context): New function.
8207 (add_cmd): Initialize context.
8208 Part of fixing PR gdb/145 and PR gdb/146.
8209
8210 2002-03-17 Andrew Cagney <ac131313@redhat.com>
8211
8212 * cli/cli-decode.c (cmd_type): New function.
8213 * command.h (cmd_type): Declare.
8214 * infrun.c (set_schedlock_func): Call function cmd_type.
8215 * kod.c (kod_set_os): Call cmd_type.
8216 * cris-tdep.c (cris_version_update): Use function cmd_type.
8217 (cris_mode_update, cris_abi_update): Ditto.
8218
8219 * command.h: (execute_cmd_post_hook): Declare.
8220 (execute_cmd_pre_hook): Declare.
8221 * cli/cli-script.c (clear_hook_in_cleanup): New function.
8222 (execute_cmd_post_hook, execute_cmd_pre_hook): New
8223 functions. Execute pre/post hook while ensuring that afterwords
8224 hook_in is cleared.
8225 * top.c (execute_command): Use execute_cmd_post_hook, and
8226 execute_cmd_pre_hook to execute pre/post commands.
8227 * infrun.c (normal_stop): Pass stop_command and not pre_hook to
8228 hook_stop_stub.
8229 (hook_stop_stub): Call execute_cmd_pre_hook.
8230
8231 2002-03-17 Andrew Cagney <ac131313@redhat.com>
8232
8233 * kod.c (kod_set_os): Revert previous change. Is called by ``info
8234 set'' and this leads to a core dump. Move xstrdup of
8235 operating_system to after check that it is not NULL.
8236
8237 2002-03-17 Andrew Cagney <ac131313@redhat.com>
8238
8239 * kod.c (kod_set_os): Remove unnecessary check that
8240 ``command->type'' is set_cmd.
8241
8242 * valprint.c (set_input_radix): Use input_radix.
8243 (set_output_radix): Use output_radix.
8244 (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
8245 isn't reverted.
8246
8247 2002-03-16 Andrew Cagney <ac131313@redhat.com>
8248
8249 * value.h (struct value): Delete field ``substring_addr''. Change
8250 aligner fields to force_doublest_align, force_longest_align,
8251 force_core_addr_align and force_pointer_aligh.
8252
8253 * value.h (struct value): Fix typo in above change.
8254
8255 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8256
8257 * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
8258 to fix internal_error from ``maintenance print architecture''.
8259
8260 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8261
8262 * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
8263 for gcc versions after gcc-2.8.1.
8264
8265 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8266
8267 * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
8268 for method resolution. Restore adjustment of ``this'' pointer after
8269 calling value_struct_elt, which was accidentally removed during the
8270 HP merge.
8271
8272 2002-03-15 Andrew Cagney <ac131313@redhat.com>
8273
8274 * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
8275 value_of_register.
8276 * findvar.c (value_of_register): Add ``frame'' parameter. Pass to
8277 get_saved_register.
8278 * value.h (value_of_register): Update.
8279
8280 2002-03-14 Richard Henderson <rth@redhat.com>
8281
8282 * configure.in: Detect declaration for canonicalize_file_name.
8283 * utils.c (canonicalize_file_name): Declare, if needed.
8284 (gdb_realpath): Prefer realpath if available and usable.
8285 * config.in, configure: Rebuild.
8286
8287 2002-03-14 Richard Henderson <rth@redhat.com>
8288
8289 * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
8290 a constant array bound.
8291
8292 * MAINTAINERS: Add myself to write-after-approval.
8293
8294 2002-03-14 Michael Snyder <msnyder@redhat.com>
8295
8296 * symfile.c (syms_from_objfile): Return immediately if no syms.
8297 (symbol_file_add): Return immediately if no syms.
8298 (find_sym_fns): Return immediately if no syms.
8299
8300 2002-03-13 Michal Ludvig <mludvig@suse.cz>
8301
8302 * gdbserver/remote-util.c (remote_open): Print remote-side's
8303 IP address when remote debugging over the network.
8304
8305 2002-03-12 David O'Brien <obrien@FreeBSD.org>
8306
8307 * config/sparc/fbsd.mh: Fix copyright.
8308 * config/sparc/fbsd.mt: Likewise.
8309
8310 2002-03-11 Richard Earnshaw <rearnsha@arm.com>
8311
8312 * MAINTAINERS: Fix typo in name of gdb warnings option.
8313 (x86-64): Fix formating so that this can be parsed by awk.
8314
8315 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
8316
8317 * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
8318 * defs.h: Include "gdb/signals.h".
8319 (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
8320
8321 2002-03-10 Michal Ludvig <mludvig@suse.cz>
8322
8323 * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
8324 * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
8325 from x86-64-tdep.h
8326
8327 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
8328 Don Howard <dhoward@redhat.com>
8329
8330 * mips-tdep.c (ST0_FR): Define.
8331 (mips2_fp_compat): New function, temporarily disabled.
8332 (mips_read_fp_register_single): New function.
8333 (mips_read_fp_register_double): New function.
8334 (mips_print_register): Use them.
8335 (do_fp_register_row): Likewise.
8336
8337 2002-03-09 Andrew Cagney <ac131313@redhat.com>
8338
8339 * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
8340 approval''.
8341
8342 2002-03-08 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8343
8344 * stabsread.c (read_member_functions): Fix is_stub test for
8345 static member functions, improve comment.
8346
8347 2002-03-07 Richard Earnshaw <rearnsha@arm.com>
8348
8349 * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
8350 (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
8351 (_initialize_remote_rdi): Use add_set_boolean_cmd to register
8352 commands that set boolean values.
8353 (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
8354 (arm_rdi_resume): Always initialize PC.
8355 (arm_rdi_open): Don't use rslt as a boolean.
8356 (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
8357 (arm_rdi_fetch_registers, arm_rdi_store_registers)
8358 (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
8359 (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
8360
8361 2002-03-06 Alexandre Oliva <aoliva@redhat.com>
8362
8363 * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
8364 * configure: Rebuilt.
8365
8366 2002-03-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
8367
8368 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
8369 (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
8370
8371 2002-03-06 Andrew Cagney <ac131313@redhat.com>
8372
8373 * cli/cli-decode.c (set_cmd_completer): New function.
8374 * command.h (set_cmd_completer): Declare.
8375 * cli/cli-decode.h (set_cmd_completer): Ditto.
8376
8377 * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
8378 * cli/cli-cmds.c (init_cli_cmds): Ditto.
8379 * win32-nat.c (_initialize_inftarg): Ditto.
8380 * remote-rdi.c (_initialize_remote_rdi): Ditto.
8381 * proc-api.c (_initialize_proc_api): Ditto.
8382 * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
8383 * source.c (_initialize_source): Ditto.
8384 * exec.c (_initialize_exec): Ditto.
8385 * solib.c (_initialize_solib): Ditto.
8386 * top.c (init_main): Ditto.
8387 * tracepoint.c (_initialize_tracepoint): Ditto.
8388 * symfile.c (_initialize_symfile): Ditto.
8389 * printcmd.c (_initialize_printcmd): Ditto.
8390 * infcmd.c (_initialize_infcmd): Ditto.
8391 * corefile.c (_initialize_core): Ditto.
8392
8393 2002-03-05 Andrew Cagney <ac131313@redhat.com>
8394
8395 * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
8396
8397 2002-03-05 Andrew Cagney <ac131313@redhat.com>
8398
8399 * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
8400
8401 2002-03-05 Andrew Cagney <ac131313@redhat.com>
8402
8403 * NEWS: Update headings, 5.2 has branched.
8404
8405 2002-03-04 Daniel Jacobowitz <drow@mvista.com>
8406
8407 * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
8408 (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
8409 (register_addr, REGISTER_RAW_SIZE): Likewise.
8410 (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
8411 * gdbserver/linux-x86-64-low.c: Remove extra #endif.
8412
8413 2002-03-03 Michal Ludvig <mludvig@suse.cz>
8414
8415 * MAINTAINERS (x86-64): Add myself.
8416 * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
8417 changed value_ptr -> struct value *
8418
8419 2002-03-01 David O'Brien <obrien@FreeBSD.org>
8420
8421 * configure.host (sparc64-*-freebsd): Add.
8422 * configure.tgt: Likewise.
8423 * config/sparc/fbsd.mh: New file.
8424 * config/sparc/fbsd.mt: Likewise.
8425 * config/sparc/nm-fbsd.h: Likewise.
8426 * config/sparc/tm-fbsd.h: Likewise.
8427
8428 2002-03-01 Daniel Jacobowitz <drow@mvista.com>
8429
8430 * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
8431 regformats/reg-s390x.dat.
8432
8433 2002-03-01 Andrew Cagney <ac131313@redhat.com>
8434
8435 * utils.c: Add FIXME explaining true/false problem.
8436
8437 2002-02-28 Andrew Cagney <ac131313@redhat.com>
8438
8439 * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
8440
8441 2002-02-28 Michael Chastain <mec@shout.net>
8442
8443 * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
8444
8445 2002-02-28 Daniel Jacobowitz <drow@mvista.com>
8446
8447 * gdbserver/linux-s390-low.c: New file.
8448 * regformats/reg-s390.dat: New file.
8449 * regformats/reg-s390x.dat: New file.
8450 * gdbserver/configure.srv: Add S/390.
8451 * gdbserver/Makefile.in: Add S/390.
8452 * configure.tgt: Enable gdbserver for S/390.
8453
8454 2002-02-28 Eli Zaretskii <eliz@is.elta.co.il>
8455
8456 * go32-nat.c (_initialize_go32_nat): Don't use periods in the
8457 first line of the doc string for "info dos", except at the end of
8458 the sentence, since the short help stops at the first period.
8459
8460 2002-02-28 Jason Merrill <jason@redhat.com>
8461
8462 * dwarf2read.c (dwarf_cfi_name): Add new codes.
8463
8464 2002-02-27 Fred Fish <fnf@redhat.com>
8465
8466 * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
8467 comment (dumy -> dummy).
8468
8469 2002-02-27 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8470
8471 * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
8472
8473 2002-02-27 Rodney Brown <rbrown64@csc.com.au>
8474
8475 * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
8476
8477 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
8478
8479 * gdbserver/acconfig.h: New file.
8480 * gdbserver/i387-fp.c: New file.
8481 * gdbserver/i387-fp.h: New file.
8482 * gdbserver/linux-x86-64.c: New file.
8483 * regformats/reg-x86-64.dat: New file.
8484 * configure.tgt: Add x86_64-*-linux* gdbserver support.
8485 * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
8486 * gdbserver/configure.in: Add support for regsets.
8487 * gdbserver/config.in: Regenerate.
8488 * gdbserver/configure: Regenerate.
8489 * gdbserver/Makefile.in: Likewise. Add $(linux_low_h).
8490 * gdbserver/linux-low.h: New file.
8491 * gdbserver/linux-low.c: Include "linux-low.h". Add support
8492 for regsets.
8493 * gdbserver/linux-arm-low.c: Include "linux-low.h".
8494 * gdbserver/linux-ia64-low.c: Include "linux-low.h".
8495 * gdbserver/linux-m68k-low.c: Include "linux-low.h".
8496 * gdbserver/linux-mips-low.c: Include "linux-low.h".
8497 * gdbserver/linux-ppc-low.c: Include "linux-low.h".
8498 * gdbserver/linux-sh-low.c: Include "linux-low.h".
8499 * gdbserver/linux-i386-low.c: Include "linux-low.h". Include
8500 "i387-fp.h". Add PTRACE_GETREGS and friends.
8501 * gdbserver/regcache.c (supply_register): New function.
8502 (supply_register_by_name): New function.
8503 (collect_register): New function.
8504 (collect_register_by_name): New function.
8505
8506 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
8507
8508 * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
8509 (config.status): Add configure.srv dependency.
8510 (server_h): Add config.h dependency.
8511
8512 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
8513
8514 * regformats/reg-i386-linux.dat: New file, with $orig_eax.
8515 * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
8516 * gdbserver/configure.srv: Change i386-*-linux* to use
8517 reg-i386-linux.o.
8518
8519 2002-02-26 Andrew Cagney <ac131313@redhat.com>
8520
8521 * x86-64-tdep.c: Re-indent. Update copyright date.
8522
8523 2002-02-26 Andrew Cagney <ac131313@redhat.com>
8524
8525 From Michal Ludvig <mludvig@suse.cz>:
8526 * x86-64-tdep.c (value.h): Delete.
8527 (gdb_assert.h): Include.
8528 (x86_64_register_convert_to_virtual,
8529 x86_64_register_convert_to_raw ): Add check which lets only
8530 floating-point values to be converted.
8531 (value_push): Delete.
8532 (x86_64_push_arguments): Order of arguments pushed on stack fixed.
8533 (i386_gdbarch_init): Number of register_bytes fixed.
8534
8535 2002-02-26 Andrew Cagney <ac131313@redhat.com>
8536
8537 * MAINTAINERS: Add x86-64 target.
8538
8539 2002-02-26 Andrew Cagney <ac131313@redhat.com>
8540
8541 * memattr.c (mem_command): Eliminate ``true'' and ``false''.
8542 * osfsolib.c (solib_map_sections): Ditto.
8543 * irix5-nat.c (solib_map_sections): Ditto.
8544 * corelow.c (gdb_check_format): Ditto.
8545 * symfile.c (symfile_bfd_open): Ditto.
8546 * solib.c (solib_map_sections): Ditto.
8547 Fix PR gdb/354.
8548
8549 2002-02-26 Andrew Cagney <ac131313@redhat.com>
8550
8551 * remote.c (_initialize_remote): By default, disable ``e'' and
8552 ``E'' step out-of-range packets.
8553
8554 2002-02-26 Andreas Schwab <schwab@suse.de>
8555
8556 * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
8557 m68k_linux_frame_saved_pc.
8558 (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
8559 in_sigtramp.
8560 (SIGCONTEXT_PC_OFFSET): Remove.
8561 * m68klinux-nat.c (m68k_linux_frame_saved_pc,
8562 m68k_linux_sigtramp_saved_pc): New functions.
8563 (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
8564 (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
8565 (UCONTEXT_PC_OFFSET): Define.
8566 (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
8567 non-RT and RT signal trampolines.
8568
8569 2002-02-26 Richard Earnshaw <rearnsha@arm.com>
8570
8571 * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
8572 (TARGET_NBPG, STACK_END_ADDR): Delete
8573 (VARIABLES_INSIDE_BLOCK): Delete.
8574
8575 2002-02-25 Andrew Cagney <ac131313@redhat.com>
8576
8577 * utils.c (perror_with_name): Make string parameter constant.
8578 (print_sys_errmsg): Ditto.
8579 (query): Ditto.
8580 * defs.h (perror_with_name): Update.
8581 (print_sys_errmsg): Update.
8582 (query): Update.
8583
8584 2002-02-25 Daniel Jacobowitz <drow@mvista.com>
8585
8586 From Eliot Dresselhaus <eliot@ayrnetworks.com>:
8587 * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
8588
8589 2002-02-25 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8590
8591 * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
8592 if it already matches the current architecture from the exec file.
8593 Include arch-utils.h for gdbarch_info_init prototype.
8594 * Makefile.in (rs6000-nat.o): Update dependencies.
8595
8596 2002-02-25 Eli Zaretskii <eliz@is.elta.co.il>
8597
8598 * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
8599 list of exported variables.
8600
8601 2002-02-24 Daniel Jacobowitz <drow@mvista.com>
8602
8603 * gdbserver/configure.srv: New file.
8604 * gdbserver/configure.in: Use configure.srv instead
8605 of the host/target makefile fragments. Set GDBSERVER_DEPFILES
8606 from it.
8607 * gdbserver/configure: Regenerated.
8608 * gdbserver/terminal.h: New file.
8609 * gdbserver/Makefile.in: Update for configure changes. Remove
8610 more unneeded include paths.
8611
8612 2002-02-24 Andrew Cagney <ac131313@redhat.com>
8613
8614 From wiz at danbala:
8615 * config/sparc/tm-sp64.h: Fix grammar and typos.
8616 Fix PR gdb/287.
8617
8618 2002-02-24 Andrew Cagney <ac131313@redhat.com>
8619
8620 * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
8621 with either ``GNU/Linux'' or ``Linux kernel''. Update copyright.
8622 * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
8623 * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
8624 * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
8625 * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
8626 * s390-tdep.c: Ditto.
8627 * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
8628 * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
8629 * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
8630 * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
8631 * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
8632 * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
8633 * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
8634 * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
8635 * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
8636 * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
8637 Fix PR gdb/378.
8638
8639 2002-02-23 Andrew Cagney <ac131313@redhat.com>
8640
8641 * lin-thread.c: Delete file.
8642 * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
8643 to gdb_proc_service.h.
8644 * configure: Re-generate.
8645
8646 * ocd.c (ocd_open): Do not try to open the "ocd" device.
8647 * serial.c (serial_open): Delete check for "ocd".
8648 Fix PR gdb/349.
8649
8650 * Makefile.in (linux-thread.o): Delete target.
8651 * linux-thread.c: Delete file.
8652
8653 * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c. Tweak other
8654 renamed SH files to be consistent.
8655
8656 * symtab.c (sort_search_symbols): Use xfree.
8657
8658 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
8659
8660 * arm-linux-tdep.c (arm_linux_init_abi): Register
8661 IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
8662 * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
8663 definition with undef, since we don't want the sysvr4 definition.
8664 (SKIP_TRAMPOLINE_CODE): Likewise.
8665
8666 2002-02-23 Andrew Cagney <ac131313@redhat.com>
8667
8668 From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
8669
8670 * configure.in: (AC_CHECK_FUNCS) Added test for
8671 canonicalize_file_name Regenerated.
8672 * config.in, configure: Regenerated.
8673 * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
8674 defined use canonicalize_file_name.
8675
8676 2002-02-23 Michael Chastain <mec@shout.net>
8677
8678 * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
8679
8680 2002-02-23 Andrew Cagney <ac131313@redhat.com>
8681
8682 * README: Remove references to cygnus.com.
8683 * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
8684 dot com'' form. Remove references to cygnus.com and sourceware.
8685
8686 2002-02-23 Andrew Cagney <ac131313@redhat.com>
8687
8688 From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
8689 * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
8690 1003.1-2001 no longer allows "head -1".
8691 * gdb/Makefile.in (version.c): Likewise.
8692 * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
8693 * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
8694 equivalent. POSIX 1003.1-2001 no longer allows "diff -c3".
8695
8696 2002-02-23 Andrew Cagney <ac131313@redhat.com>
8697
8698 * cli/cli-decode.c (cmd_cfunc_eq): New function.
8699 * command.h (cmd_cfunc_eq): Declare.
8700 * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
8701
8702 * cli/cli-cmds.h (is_complete_command): Change parameter to a
8703 ``struct cmd_list_element *''.
8704 * cli/cli-cmds.c (is_complete_command): Update. Use
8705 cmd_cfunc_eq.
8706 * top.c (execute_command): Pass the command to
8707 is_complete_command.
8708 * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
8709
8710 2002-02-23 Andrew Cagney <ac131313@redhat.com>
8711
8712 From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
8713 * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
8714 architecture defines.
8715 * s390-tdep.c (s390_gdbarch_init): Likewise.
8716
8717 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
8718
8719 * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
8720 (arm_linux_push_arguments): Likewise.
8721 (arm_linux_init_abi): Register them. Also register linux-specific
8722 call_dummy_words.
8723 (find_minsym_and_objfile): Use strcmp, not STREQ.
8724 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
8725 (arm_linux_call_dummy_words): Delete declaration.
8726 (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
8727 (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
8728 declarations.
8729 (LOWEST_PC): Delete.
8730
8731 2002-02-23 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8732
8733 * maint.c (print_section_info): Do not prepend `0x' to filepos
8734 output, it will be handled by local_hex_string_custom.
8735
8736 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
8737
8738 * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
8739 (store_newfpe_double, store_newfpe_extended, store_fpregister)
8740 (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
8741
8742 2002-02-22 Jim Blandy <jimb@redhat.com>
8743
8744 Indicate that the bcache functions don't change the strings
8745 they're passed.
8746 * bcache.h (bcache, hash): Add `const' keywords to declarations.
8747 * bcache.c (bcache, hash): Add `const' keywords to definitions.
8748
8749 2002-02-22 Pierre Muller <muller@ics.u-strasbg.fr>
8750
8751 * win32-nat.c (child_create_inferior): Fix create flags setting bug.
8752
8753 2002-02-21 Christopher Faylor <cgf@redhat.com>
8754
8755 * win32-nat.c (register_loaded_dll): Just use raw name when we can't
8756 find the complete path to a loaded DLL.
8757
8758 2002-02-21 Fred Fish <fnf@redhat.com>
8759
8760 * dbxread.c (process_one_symbol): When finding an N_FUN symbol
8761 that marks the end of the range of a function, enter a line number
8762 entry that has a line number of zero and a PC offset that matches
8763 the end of the function. This starts a range of PC's for which no
8764 line number information is known.
8765 * symtab.c (find_pc_sect_line): If our best fit is in a range of
8766 PC's for which no line number info is found (line number is zero)
8767 then we didn't find any valid line information.
8768 * symtab.h: Document use of zero line number entry.
8769
8770 2002-02-21 Elena Zannoni <ezannoni@redhat.com>
8771
8772 * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
8773 (have_ptrace_getvrregs): Define for run time checks.
8774 (gdb_vrregset_t): New type for Altivec register handling.
8775 (fetch_register, store_register): Fetch/store altivec register
8776 when needed.
8777 (fetch_altivec_register, store_altivec_register): New functions.
8778 (supply_vrregset, fill_vrregset): New functions.
8779 (fetch_altivec_registers, store_altivec_registers): New functions.
8780 (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
8781 registers as well.
8782
8783 2002-02-21 Jiri Smid <smid@suse.cz>
8784
8785 * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
8786
8787 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
8788
8789 * Makefile.in (armnbsd-nat.o): Update dependencies.
8790 * armnbsd-nat.c (supply_gregset): New function. Common code to
8791 supply the integer register set.
8792 (supply_fparegset): New function. Similar for FPA registers.
8793 (fetch_regs, fetch_fp_regs): Use them.
8794 (fetch_core_registers): Likewise.
8795 (fetch_elfcore_registers): New function.
8796 (arm_netbsd_elfcore_fns): New core-file type specification.
8797 (_initialize_arm_netbsd_nat): Register it.
8798
8799 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
8800
8801 * armnbsd-nat.c: Include gdbcore.h.
8802 (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
8803 (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
8804 'void' to declaration, to shut up ARI.
8805 (fetch_core_registers): Make static. Rewrite using supply_register.
8806 (arm_netbsd_core_fns): New core-file type specification.
8807 (_initialize_arm_netbsd_nat): New function.
8808
8809 2002-02-21 Christopher Faylor <cgf@redhat.com>
8810
8811 * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
8812 value.
8813
8814 2002-02-20 Christopher Faylor <cgf@redhat.com>
8815
8816 * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
8817 fails.
8818
8819 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
8820
8821 * jv-exp.y (parse_number): Change type of implicit longs
8822 to builtin_type_uint64.
8823
8824 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
8825
8826 * gdbserver/linux-low.c (mywait): Change argument to waitpid
8827 to be an integer instead of a `union wait'.
8828
8829 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
8830
8831 * mips-linux-nat.c: Call the operating system GNU/Linux.
8832 * mips-linux-tdep.c: Likewise.
8833 * mips-tdep.c: Likewise.
8834
8835 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
8836
8837 Fix PR gdb/265.
8838 * jv-exp.y (parse_number): Handle 64-bit integers.
8839
8840 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
8841
8842 * gdbserver/configure.in: Remove AM_PROC_CC_STDC. Change
8843 AC_STDC_HEADERS to AC_HEADER_STDC.
8844 * gdbserver/configure: Regenerated.
8845
8846 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
8847
8848 * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
8849 is defined.
8850 * sparc-tdep.c (get_longjmp_target): Likewise.
8851
8852 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
8853
8854 * News: Add news about ARM and Multi-arch. Mention the new target
8855 arm*-*-netbsd*.
8856
8857 2002-02-19 Jim Blandy <jimb@redhat.com>
8858
8859 * stabsread.c (error_type_complaint): Improve error message.
8860
8861 2002-02-19 Daniel Jacobowitz <drow@mvista.com>
8862
8863 * gdbserver/README: Update documentation.
8864 * gdbserver/configure.in: Update configury to match documentation.
8865 * gdbserver/Makefile.in: Likewise.
8866 * gdbserver/configure: Regenerated.
8867 * gdbserver/aclocal.m4: New file, generated by aclocal.
8868 * gdbserver/config.in: New file, generated by autoheader.
8869
8870 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
8871
8872 * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
8873 armnbsd-nat.c.
8874
8875 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
8876
8877 * arm-tdep.h (enum arm_float_model): New enum.
8878 (struct gdbarch_tdep): Add fp_model.
8879 * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep. Defer setting
8880 up floating-point conversions until we know the floating-point model
8881 in use by the inferior. Don't complain about being unable to
8882 determine the ABI of the inferior when we don't have one.
8883 (arm_extract_return_value): Support different floating-point models.
8884 (arm_store_return_value): Likewise.
8885 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
8886 ARM_FLOAT_SOFT.
8887 (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
8888
8889 2002-02-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8890
8891 * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
8892 of ``current_gdbarch''.
8893
8894 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
8895
8896 * armnbsd-nat.c : ANSIfy all function declarations.
8897 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
8898 (fetch_inferior_registers): Re-implement in terms of above.
8899 (store_register, store_regs, store_fp_register, store_fp_regs): New.
8900 (store_inferior_registers): Re-implement in terms of above.
8901
8902 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
8903
8904 * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
8905 kernel.
8906 * arm-linux-tdep.c: Likewise.
8907 * config/arm/tm-linux.h: Likewise.
8908
8909 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
8910
8911 * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
8912 * config/arm/nbsd.mt (TM_FILE): Delete.
8913 * config/arm/tm-nbsd.h: Delete.
8914
8915 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
8916
8917 * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
8918 Initialize CALL_DUMMY_LENGTH.
8919
8920 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
8921
8922 * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
8923 function.
8924 (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
8925 * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
8926 defines one thing and that is incorrect for this port.
8927 (IN_SOLIB_CALL_TRAMPOLINE): Delete.
8928
8929 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
8930
8931 * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
8932
8933 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
8934
8935 * win32-nat.c (display_selector): New function. Displays information
8936 about the information returned by GetThreadSelectorEntry API function.
8937 (display_selectors): New function. Displays the infomation of
8938 the selector given as argument, or of CS, DS ans FS selectors
8939 if no argument is given.
8940 ( _initialize_inftarg): Add "w32" as info prefix command.
8941 Add "info w32 selector" as command calling display_selectors.
8942
8943 2002-02-19 Pierre Muller <muller@ics.u-strasbg.fr>
8944
8945 * i386-tdep.c (get_longjmp_target): Fix compilation failure
8946 by setting dummy values to JB_PC and JB_ELEMENT_SIZE
8947 if not defined.
8948
8949 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
8950
8951 * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
8952
8953 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
8954
8955 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
8956 (arm_fix_call_dummy): Call it.
8957 (arm_call_dummy_breakpoint_offset): Delete.
8958 (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
8959 * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
8960
8961 2002-02-18 Andrew Cagney <ac131313@redhat.com>
8962
8963 * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
8964 Default to func_frame_chain_valid.
8965 * gdbarch.h, gdbarch.c: Re-generate.
8966 * frame.h (FRAME_CHAIN_VALID): Delete definition.
8967
8968 2002-02-18 Elena Zannoni <ezannoni@redhat.com>
8969
8970 * ppc-linux-nat.c: Update copyright.
8971 (fetch_register, store_register): Add tid parameter, don't compute
8972 tid here.
8973 (fetch_ppc_registers, store_ppc_registers): Add tid
8974 parameter. Pass it along to callees.
8975 (fetch_inferior_registers, store_inferior_registers): Compute tid
8976 here, and pass it to calleed functions.
8977 (fill_gregset, supply_fpregset): Clean up formatting.
8978
8979 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
8980
8981 * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
8982 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
8983
8984 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
8985
8986 * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
8987 * gdbarch.c gdbarch.h: Regenerate.
8988 * breakpoint.c (create_longjmp_breakpoint): Always compile this
8989 function.
8990 (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
8991 * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
8992 (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
8993
8994 * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
8995 * arm-tdep.c (arm_get_longjmp_target): New function.
8996 (arm_gdbarch_init): Initialize jb_pc to -1. If ABI handler changes
8997 this to a positive value register arm_get_longjmp_target as the
8998 longjmp handler.
8999 * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
9000 (arm_linux_init_abi): Set up longjmp description in tdep.
9001 * armnbsd-nat.c (get_longjmp_target): Delete.
9002 * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
9003 description in tdep.
9004 * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
9005 (get_longjmp_target): Delete declaration.
9006 (GET_LONGJMP_TARGET): Delete.
9007 * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
9008 (GET_LONGJMP_TARGET): Delete.
9009
9010 2002-02-17 Kevin Buettner <kevinb@redhat.com>
9011
9012 From Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
9013 * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
9014 of ``current_gdbarch''.
9015
9016 2002-02-17 Tom Tromey <tromey@redhat.com>
9017
9018 * cli/cli-cmds.c (compare_strings): New function.
9019 (complete_command): Only print each unique item once.
9020 * completer.h (complete_line): Declare.
9021 * completer.c (complete_line): New function.
9022 (line_completion_function): Use it.
9023
9024 2002-02-16 Andrew Cagney <ac131313@redhat.com>
9025
9026 * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
9027 * gdbarch.h, gdbarch.c: Re-generate.
9028
9029 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
9030
9031 * valarith.c (value_x_unop): Fix decrement; support post-decrement.
9032
9033 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
9034
9035 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
9036 * valops.c (value_arg_coerce): Don't take the address of a reference
9037 to convert an argument to a reference.
9038
9039 2002-02-15 Christopher Faylor <cgf@redhat.com>
9040
9041 * win32-nat.c (get_image_name): New function.
9042 (handle_load_dll): Use get_image_name function.
9043 (get_child_debug_event): Avoid registering debug events until possibly
9044 execed process is started.
9045 (child_create_inferior): Allow invocation via shell so that command
9046 line redirection, etc. works ok.
9047 (_initialize_inftarg): Add new command: "set shell" to control whether
9048 a shell is used to start a process.
9049
9050 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
9051
9052 * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
9053 instead of find_register_by_number.
9054 (cannot_store_register): Likewise.
9055
9056 2002-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
9057
9058 * dwarf2read.c: Replace fprintf (stderr, ...) by
9059 fprintf_unfiltered (gdb_stderr, ...).
9060
9061 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
9062
9063 * gdbserver/gdbserver.1: Document --attach.
9064
9065 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
9066
9067 * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
9068 descriptions.
9069 * arm-tdep.c (arm_default_arm_le_breakpoint)
9070 (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
9071 (arm_default_thumb_be_breakpoint): New. Initialize them from
9072 traditional breakpoint defines.
9073 (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
9074 (arm_gdbarch_init): Initialize new breakpoint variables.
9075 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
9076 (arm_linux_init_abi): Initialize linux-specific breakpoint.
9077 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
9078 (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
9079 code out to ...
9080 (arm_netbsd_init_abi_common): ... here; new function.
9081 * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
9082 (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
9083 * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
9084 * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
9085
9086 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
9087
9088 * arm-tdep.h (enum arm_abi): New enum.
9089 (struct gdbarch_tdep): New structure.
9090 (LOWEST_PC): Provide a default.
9091 (arm_gdbarch_register_os_abi): Declare new function.
9092 * arm-tdep.c (arm_abi_names): New array.
9093 (process_note_abi_tag_sections): New function.
9094 (get_elfosabi): New function.
9095 (arm_gdbarch_register_os_abi): New function.
9096 (arm_gdbarch_init): Try to determine the ABI of the inferior. If
9097 support for that ABI has been built in, then call the appropriate
9098 configuration routine. Use gdbarch_num_regs() to get the number
9099 of registers.
9100 (arm_dump_tdep): New function.
9101 (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
9102 place-holder functions.
9103 (_initialize_arm_tdep): Register them.
9104 * config/arm/tm-arm.h (LOWEST_PC): Delete.
9105
9106 * armnbsd-tdep.c: New file.
9107 * Makefile.in (armnbsd-tdep.o): Add dependencies.
9108 * config/arm/nbsd.mt (TDEPFILES): Add it.
9109 * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
9110
9111 * armnbsd-nat.c: Include regcache.h.
9112 * Makefile.in (armnbsd-nat.o): Update dependency list.
9113
9114 * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
9115
9116 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
9117
9118 * gdbserver/Makefile.in: Fix typos in target rules.
9119
9120 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
9121
9122 Fix part of PR gdb/267.
9123 * linespec.c (find_methods): Handle constructors specially for now.
9124
9125 2002-02-14 Corinna Vinschen <vinschen@redhat.com>
9126
9127 * arm-tdep.c (arm_push_arguments): Eliminate special float type
9128 handling.
9129 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
9130 standard_coerce_float_to_double().
9131
9132 2002-02-14 Christopher Faylor <cgf@redhat.com>
9133
9134 * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
9135 GDBINIT_FILENAME.
9136
9137 2002-02-14 Elena Zannoni <ezannoni@redhat.com>
9138
9139 * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
9140 find_variant_by_name, because it confuses the multiarch
9141 framework. Return NULL if there isn't an architecture with the
9142 user supplied name, instead of forcing a different one without
9143 recording the change with the multiarch machinery.
9144 (find_variant_by_name): Delete.
9145
9146 2002-02-14 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9147
9148 * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
9149 i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
9150
9151 2002-02-13 Martin M. Hunt <hunt@redhat.com>
9152
9153 * stack.c (print_frame_info_base): When calling
9154 print_frame_info_listing_hook, set current_source_symtab.
9155
9156 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
9157
9158 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
9159 and remove unused $(INCLUDE_DIR).
9160 Add regcache.c to OBS.
9161 Add generated register protocol files to clean target.
9162 Update dependencies for new objects, obsolete old target code.
9163
9164 * gdbserver/linux-low.c: Remove all platform-specific code to
9165 new files. Remove various dead code. Update to use regcache
9166 functionality.
9167 * gdbserver/remote-utils.c (fromhex): Add return statement
9168 to quiet warning.
9169 (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
9170 constant.
9171 (input_interrupt): Add integer parameter to match prototype
9172 of a signal handler.
9173 (outreg): Use register_data ().
9174 (prepare_resume_reply): Use gdbserver_expedite_regs.
9175 * gdbserver/server.c (main): Dynamically allocate own_buf because
9176 PBUFSIZ is no longer constant. Use registers_to_string () and
9177 registers_from_string ().
9178 * gdbserver/server.h: No longer include "defs.h". Add prototypes
9179 for error (), fatal (), and warning (). Update definition of
9180 PBUFSIZ to use regcache functionality. Add include guard.
9181 * gdbserver/utils.c (fatal): Add missing ``const''.
9182 (warning): New function.
9183
9184 * regformats/regdat.sh: Include "regcache.h" in generated files.
9185 Provide init_registers () function.
9186 * regformats/regdef.h: Add prototype for set_register_cache ().
9187 Add include guard.
9188
9189 * gdbserver/linux-arm-low.c: New file.
9190 * gdbserver/linux-i386-low.c: New file.
9191 * gdbserver/linux-ia64-low.c: New file.
9192 * gdbserver/linux-m68k-low.c: New file.
9193 * gdbserver/linux-mips-low.c: New file.
9194 * gdbserver/linux-ppc-low.c: New file.
9195 * gdbserver/linux-sh-low.c: New file.
9196
9197 * gdbserver/regcache.c: New file.
9198 * gdbserver/regcache.h: New file.
9199
9200 * gdbserver/low-linux.c: Removed obsolete file.
9201
9202 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
9203
9204 * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
9205 * config/i386/linux.mt: Likewise.
9206 * config/ia64/linux.mt: Likewise.
9207 * config/m68k/linux.mh: Likewise.
9208 * config/powerpc/linux.mh: Likewise.
9209 * config/mips/linux.mt: Likewise.
9210
9211 * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
9212
9213 * config/i386/i386lynx.mh: Mark gdbserver variables
9214 as (currently) obsolete for this target.
9215 * config/i386/nbsd.mt: Likewise.
9216 * config/i386/nbsdelf.mt: Likewise.
9217 * config/m32r/m32r.mt: Likewise.
9218 * config/m68k/m68klynx.mh: Likewise.
9219 * config/m68k/nbsd.mt: Likewise.
9220 * config/m68k/sun3os4.mh: Likewise.
9221 * config/mips/vr5000.mt: Likewise.
9222 * config/ns32k/nbsd.mt: Likewise.
9223 * config/pa/hppabsd.mh: Likewise.
9224 * config/pa/hppaosf.mh: Likewise.
9225 * config/powerpc/nbsd.mt: Likewise.
9226 * config/rs6000/rs6000lynx.mh: Likewise.
9227 * config/s390/s390.mt: Likewise.
9228 * config/s390/s390x.mt: Likewise.
9229 * config/sparc/sparclynx.mh: Likewise.
9230 * config/sparc/sun4os4.mh: Likewise.
9231 * config/i386/x86-64linux.mt: Likewise.
9232 * config/sparc/linux.mh: Likewise.
9233
9234 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
9235
9236 * configure.tgt: Configure gdbserver only for known working
9237 targets. Set ${build_gdbserver} instead of modifying ${configdirs}.
9238 * configure.in: Check ${build_gdbserver}. Put gdbserver/ into
9239 SUBDIRS if it is configured. Update comment for ${nativefile}.
9240 * configure: Regenerated.
9241
9242 2002-02-13 Michael Snyder <msnyder@redhat.com>
9243
9244 * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
9245
9246 * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
9247 (default_gcore_mach): Just return 0, work around a problem in bfd.
9248 (default_gcore_target): OK to return NULL if exec_bfd is null.
9249 (make_mem_sec): Use a cast, avoid a warning.
9250
9251 * procfs.c (find_memory_regions_callback): Use a cast instead of
9252 calling host_pointer_to_address (which complains if
9253 sizeof (host pointer) != sizeof (target pointer)).
9254 (procfs_make_note_section): Avoid overflow in psargs string.
9255
9256 * procfs.c (procfs_make_note_section): Make the default
9257 implementation return an error.
9258
9259 2002-02-13 Rodney Brown <rbrown64@csc.com.au>
9260
9261 * procfs.c (procfs_make_note_section): Provide a default definition
9262 (for alpha-dec-osf4.0f). Fix typos.
9263
9264 2002-02-13 Elena Zannoni <ezannoni@redhat.com>
9265
9266 * linux-proc.c: Add include of regcache.h.
9267 * Makefile.in (linux-proc.o): Add dependency on regcache.h.
9268
9269 2002-02-13 Andrew Cagney <ac131313@redhat.com>
9270
9271 From 2002-01-18 Greg McGary <greg@mcgary.org>:
9272 * memattr.c (create_mem_region): Disallow useless empty region.
9273 Regions are half-open intervals, so allow [A..B) [B..C) as
9274 non-overlapping.
9275
9276 2002-02-13 Michael Chastain <mec@shout.net>
9277
9278 * defs.h: Kill CONST_PTR.
9279 * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
9280 * c-lang.c (c_builtin_types): Likewise.
9281 * ch-lang.c (ch_builtin_types): Likewise.
9282 * f-lang.c (f_builtin_types): Likewise.
9283 * language.c (unknown_builtin_types): Likewise.
9284 * m2-lang.c (m2_builtin_types): Likewise.
9285 * p-lang.c (pascal_builtin_types): Likewise.
9286 * scm-lang.c (c_builtin_types): Likewise.
9287
9288 2002-02-13 Keith Seitz <keiths@redhat.com>
9289
9290 * arm-tdep.h (arm_get_next_pc): Add declaration.
9291
9292 2002-02-13 Richard Earnshaw <rearnsha@arm.com>
9293
9294 * arm-tdep.c (arm_use_struct_convention): Make static. Move to be
9295 with other related struct-returning functions.
9296 (arm_extract_struct_value_address): New function.
9297 (arm_gdbarch_init): Initialize the above in multi-arch vector. Also
9298 initialize float_format, double_format and long_double_format as
9299 appropriate to the endianness of the target.
9300 * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
9301 (arm_use_struct_convention): Delete declaration.
9302 (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
9303
9304 2002-02-13 Keith Seitz <keiths@redhat.com>
9305
9306 * defs.h (core_addr_to_string_nz): New function.
9307
9308 2002-02-13 Mark Kettenis <kettenis@gnu.org>
9309
9310 Apply missing bits of 2002-01-15 patch.
9311 * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
9312 (fill_fpregset): Use i387_fill_fsave.
9313
9314 2002-02-12 Keith Seitz <keiths@redhat.com>
9315
9316 * utils.c (core_addr_to_string): Use phex instead of phex_nz.
9317 (core_addr_to_string_nz): New function.
9318
9319 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
9320
9321 * arm-linux-nat.c: Really include arm-tdep.h.
9322 * config/arm/tm-linux.h (struct type, struct value): Declare.
9323
9324 2002-02-11 Michael Snyder <msnyder@redhat.com>
9325
9326 * procfs.c: Include elf-bfd.h (for elfcore_write functions).
9327 (gcore section): Ifdef for Solaris and Unixware only.
9328 (procfs_do_thread_registers): Unixware needs one lwpstatus
9329 per thread (not one prstatus or pstatus).
9330 (procfs_make_note_section): Iterate only over kernel threads (lwps),
9331 not over all gdb threads. For unixware, call elfcore_write_pstatus
9332 once before iterating over threads.
9333
9334 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
9335
9336 * arm-tdep.h: New file.
9337 * arm-tdep.c: Include arm-tdep.h.
9338 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
9339 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
9340 (arm_print_float_info, arm_register_type, convert_to_extended)
9341 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
9342 (arm_extract_return_value, arm_register_name): Make static.
9343 (arm_software_single_step): Similarly. Fix types in declaration.
9344 (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
9345 (arm_store_return_value, arm_store_struct_return): New functions.
9346 (arm_gdbarch_init): Register the above functions. Also register
9347 call_dummy_start_offset, sizeof_call_dummy_words,
9348 function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
9349 sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
9350 max_register_virtual_size, register_size. Set up
9351 prologue_cache.saved_regs here, rather than ...
9352 (_initialize_arm_tdep): ... here.
9353 * config/arm/tm-arm.h (struct type, struct value): Delete forward
9354 declarations.
9355 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
9356 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
9357 (arm_print_float_info, arm_register_type, convert_to_extended)
9358 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
9359 (arm_extract_return_value, arm_register_name): Delete declarations.
9360 (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
9361 (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
9362 (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
9363 (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
9364 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
9365 (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
9366 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
9367 (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
9368 (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
9369 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
9370 (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
9371 (arm_get_next_pc): No-longer static -- these are needed by the RDI
9372 interface.
9373 * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
9374 * remote-rdi.c remote-rdp.c: Likewise.
9375 * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
9376 (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
9377 * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
9378 definition.
9379
9380 * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
9381 (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
9382 (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
9383 from non-ARM_ prefixed definitions.
9384 * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
9385 all uses of above.
9386 * remote-rdi.c remote-rdp.c: Likewise.
9387 * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
9388
9389 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
9390
9391 * arm-tdep.c (arm_frameless_function_invocation)
9392 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
9393 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
9394 (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
9395 (arm_pop_frame, arm_get_next_pc): Make static.
9396 (arm_gdbarch_init): Register above in gdbarch structure.
9397 (arm_read_fp): Renamed from arm_target_read_fp.
9398 (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
9399 * config/arm/tm-arm.h (arm_frameless_function_invocation)
9400 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
9401 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
9402 (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
9403 (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
9404 (arm_pc_is_thumb_dummy): Delete declarations.
9405 (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
9406 (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
9407 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
9408 (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
9409
9410 2002-02-10 Daniel Jacobowitz <drow@mvista.com>
9411
9412 * symtab.c (compare_search_syms): New function.
9413 (sort_search_symbols): New function.
9414 (search_symbols): Sort symbols after searching rather than
9415 before.
9416
9417 2002-02-10 Andrew Cagney <ac131313@redhat.com>
9418
9419 * NEWS: Linux -> GNU/Linux.
9420
9421 2002-02-10 Andrew Cagney <ac131313@redhat.com>
9422
9423 * gdbarch.sh: For for level one methods, disallow a definition
9424 when partially multi-arched. Add comments explaining rationale.
9425 * gdbarch.h: Re-generate.
9426
9427 2002-02-10 Andrew Cagney <ac131313@redhat.com>
9428
9429 * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
9430 multi-arch partial.
9431
9432 2002-02-10 Andrew Cagney <ac131313@redhat.com>
9433
9434 * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL. Exit on bad
9435 field. Use diff -u.
9436 * gdbarch.c: Re-generate.
9437
9438 2002-02-10 Andrew Cagney <ac131313@redhat.com>
9439
9440 * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
9441 * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
9442 partial.
9443
9444 2002-02-10 Andrew Cagney <ac131313@redhat.com>
9445
9446 * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
9447 multi-arch partial.
9448 (PUSH_ARGUMENTS): Switch to using predefault.
9449 * gdbarch.c: Regenerate.
9450
9451 2002-02-10 Andrew Cagney <ac131313@redhat.com>
9452
9453 * valops.c (PUSH_ARGUMENTS): Delete definition.
9454 * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
9455 partial. Default to default_push_arguments.
9456 * gdbarch.h, gdbarch.c: Regenerate.
9457
9458 2002-02-09 Andrew Cagney <ac131313@redhat.com>
9459
9460 * defs.h (throw_exception): Rename return_to_top_level. Update
9461 comments.
9462 * utils.c (error_stream, internal_verror, quit): Ditto.
9463 * top.c (throw_exception, catcher): Ditto.
9464 * sparclet-rom.c (sparclet_load): Ditto.
9465 * remote.c (interrupt_query, minitelnet): Ditto.
9466 * remote-sds.c (interrupt_query): Ditto.
9467 * remote-mips.c (mips_error, mips_kill): Ditto.
9468 * ocd.c (interrupt_query): Ditto.
9469 * monitor.c (monitor_interrupt_query): Ditto.
9470 * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
9471 * target.h: Update comment.
9472
9473 * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
9474
9475 2002-02-09 Andrew Cagney <ac131313@redhat.com>
9476
9477 * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
9478 default_double_format.
9479 * gdbarch.h, gdbarch.c: Re-generate.
9480 * findvar.c (floatformat_unknown): Delete variable definition.
9481 * doublest.h (floatformat_unknown): Delete variable declaration.
9482
9483 2002-02-09 Jim Blandy <jimb@redhat.com>
9484
9485 * stabsread.c (read_type): Add code to parse Sun's syntax for
9486 prototyped function types.
9487
9488 2002-02-09 Andrew Cagney <ac131313@redhat.com>
9489
9490 * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
9491 (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
9492
9493 2002-02-09 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9494
9495 * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
9496 _initialize_solib. Fixes name clash with solib.c:_initialize_solib,
9497 now _initialize_xcoffsolib gets called again and overrides the
9498 commands from solib.c in a native configuration.
9499
9500 2002-02-09 Mark Kettenis <kettenis@gnu.org>
9501
9502 * doublest.c (store_typed_floating): Don't try to return a value.
9503 Fixes PR gdb/290.
9504
9505 2002-02-08 Jim Blandy <jimb@redhat.com>
9506
9507 * c-typeprint.c (c_type_print_varspec_suffix): If a function type
9508 is prototyped and has no arguments, print its argument list as
9509 `(void)'.
9510
9511 2002-02-08 Chris Demetriou <cgd@broadcom.com>
9512
9513 * MAINTAINERS (write-after-approval): Add myself.
9514 (paper-trail): I've escaped!
9515
9516 2002-02-08 Christopher Faylor <cgf@redhat.com>
9517
9518 * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
9519 changes.
9520 (_initialize_check_for_gdb_ini): Ditto.
9521
9522 2002-02-08 Martin M. Hunt <hunt@redhat.com>
9523
9524 * win32-nat.c (cygwin_pid_to_str): Fix typo.
9525 xaprintf -> xasprintf.
9526
9527 2002-02-08 Pierre Muller <muller@ics.u-strasbg.fr>
9528
9529 * win32-nat.c: Remove use of printf and sprintf functions.
9530
9531 2002-02-08 Richard Earnshaw <rearnsha@arm.com>
9532
9533 * arm-tdep.c (arm_frame_chain_valid): Make static.
9534 (arm_push_arguments): Likewise.
9535 (arm_gdbarch_init): New function.
9536 (_initialize_arm_tdep): Call it.
9537 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
9538 (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
9539 (FRAME_CHAIN_VALID): Delete.
9540 (arm_frame_chain_valid): Delete declaration.
9541 (PUSH_ARGUMENTS): Delete.
9542 (arm_push_arguments): Delete declaration.
9543 (CALL_DUMMY_P): Delete.
9544
9545 2002-02-08 Andrew Cagney <ac131313@redhat.com>
9546 Corinna Vinschen <vinschen@redhat.com>
9547
9548 * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
9549 on builtin float types.
9550
9551 2002-02-08 Daniel Jacobowitz <drow@mvista.com>
9552
9553 * utils.c: Include <curses.h> before "bfd.h".
9554 * tui/tui-hooks.c: Likewise.
9555 * tui/tui.c: Likewise.
9556 * tui/tuiCommand.c: Likewise.
9557 * tui/tuiData.c: Likewise.
9558 * tui/tuiDataWin.c: Likewise.
9559 * tui/tuiDisassem.c: Likewise.
9560 * tui/tuiGeneralWin.c: Likewise.
9561 * tui/tuiIO.c: Likewise.
9562 * tui/tuiLayout.c: Likewise.
9563 * tui/tuiRegs.c: Likewise.
9564 * tui/tuiSource.c: Likewise.
9565 * tui/tuiSourceWin.c: Likewise.
9566 * tui/tuiStack.c: Likewise.
9567 * tui/tuiWin.c: Likewise.
9568
9569 2002-02-07 Elena Zannoni <ezannoni@redhat.com>
9570
9571 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
9572 to include space for pseudoregs as well. Update loops accordingly.
9573 (sh_fp_frame_init_saved_regs): Ditto.
9574 (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
9575
9576 2002-02-07 Andrew Cagney <ac131313@redhat.com>
9577
9578 * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
9579 Add Richard Earnshaw to Arm maintainers.
9580
9581 2002-02-07 Andrew Cagney <ac131313@redhat.com>
9582
9583 * defs.h (warning_begin): Delete declaration.
9584
9585 * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
9586 Delete macro.
9587
9588 2002-02-07 Michael Snyder <msnyder@redhat.com>
9589
9590 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
9591 Logic bug, remove misplaced else.
9592
9593 2002-02-07 Klee Dienes <klee@apple.com>
9594
9595 * fork-inferior.c (fork_inferior): Add '!' to the list of
9596 characters that need to be quoted when building a string for the
9597 shell. Quote '!' specifically with a backslash, since CSH chokes
9598 when trying to evaluate "str!str".
9599
9600 2002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
9601
9602 * rdi-share/host.h: Only provide a typedef for bool if it is not
9603 defined.
9604
9605 2002-02-04 Michael Snyder <msnyder@redhat.com>
9606
9607 * breakpoint.h (enum bptype): Add new overlay event bp type.
9608 (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
9609
9610 * breakpoint.c (create_internal_breakpoint): New function.
9611 (internal_breakpoint_number): Moved into create_internal_breakpoint.
9612 (create_longjmp_breakpoint): Use create_internal_breakpoint.
9613 (create_thread_event_breakpoint): Ditto.
9614 (create_solib_event_breakpoint): Ditto.
9615 (create_overlay_event_breakpoint): New function.
9616 (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
9617 (update_breakpoints_after_exec): Delete and re-initialize
9618 overlay event breakpoints after an exec. Add FIXME comment
9619 about longjmp breakpoint.
9620 (print_it_typical): Ignore overlay event breakpoints.
9621 (print_one_breakpoint): Ditto.
9622 (mention): Ditto.
9623 (bpstat_what): Do not stop for overlay event breakpoints.
9624 (delete_breakpoint): Don't delete overlay event breakpoints.
9625 (breakpoint_re_set_one): Delete the overlay event breakpoint.
9626 (breakpoint_re_set): Re-create overlay event breakpoint.
9627
9628 * symfile.c (overlay_auto_command): Enable overlay breakpoints.
9629 (overlay_manual_command): Disable overlay breakpoints.
9630 (overlay_off_command): Disable overlay breakpoints.
9631
9632 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
9633
9634 * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
9635 (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
9636 to here from config/tm-arm.h.
9637 (coff_sym_is_thumb): Make static.
9638 (arm_elf_make_msymbol_special): New function.
9639 (arm_coff_make_msymbol_special): New function.
9640 * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
9641 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
9642 (coff_sym_is_thumb): Delete declaration.
9643 (arm_elf_make_msymbol_special): Declare.
9644 (arm_coff_make_msymbol_special): Declare.
9645 (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
9646 (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
9647
9648 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
9649
9650 * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
9651
9652 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
9653
9654 * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
9655 * gdbarch.c gdbarch.h: Regenerate.
9656 * arch-utils.c (default_print_float_info): New function.
9657 * arch-utils.h (default_print_float_info): Prototype it.
9658 * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
9659 * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
9660 (PRINT_FLOAT_INFO): Document it.
9661
9662 * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
9663 * config/arm/tm-arm.h (FLOAT_INFO): Delete.
9664 (PRINT_FLOAT_INFO): Define.
9665
9666 2002-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
9667
9668 * win32-nat.c (_initialize_check_for_gdb_ini):
9669 Add typecast to sprintf argument to suppress a warning.
9670
9671 2002-02-05 Pierre Muller <muller@ics.u-strasbg.fr>
9672
9673 * win32-nat.c (last_sig): Changed type of variable to target_signal,
9674 to allow easier handling of pass state.
9675 (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
9676 that gives exception name and address.
9677 (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
9678 and set last_sig value to ourstatus->value.sig. Some missing
9679 exceptions added.
9680 (child_continue): Correctly report continue_status.
9681 (get_child_debug_event,do_initial_child_stuff): Set last_sig to
9682 TARGET_SIGNAL_0 (new default value).
9683 (child_resume): consider sig argument passed to decide if
9684 the exception should be passed to debuggee or not.
9685
9686 2002-02-05 Michael Snyder <msnyder@redhat.com>
9687
9688 * regcache.c (fetch_register): Call target_fetch_register
9689 only if we don't call FETCH_PSEUDO_REGISTER.
9690 (store_register): Call target_store_register only if we
9691 don't call STORE_PSEUDO_REGISTER.
9692
9693 2002-02-05 Elena Zannoni <ezannoni@redhat.com>
9694
9695 * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
9696 ELF_MAKE_MSYMBOL_SPECIAL.
9697 * gdbarch.c, gdbarch.h: Regenerate.
9698 * arch-utils.c (default_make_msymbol_special): New function.
9699 * arch-utils.h (default_make_msymbol_special): Export.
9700 * elfread.c (elf_symtab_read): Compile use of
9701 ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
9702 multiarched.
9703 * coffread.c (coff_symtab_read): Ditto, for
9704 COFF_MAKE_MSYMBOL_SPECIAL.
9705
9706 2002-02-05 Jim Blandy <jimb@redhat.com>
9707
9708 * solib-svr4.c (svr4_truncate_ptr): New function.
9709 (svr4_relocate_section_addresses): Do the address arithmetic with
9710 the appropriate truncation for target addresses, even when
9711 CORE_ADDR is larger than a target address.
9712
9713 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
9714
9715 * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
9716 to (int *).
9717
9718 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
9719
9720 * gdbserver/linux-low.c (kill_inferior): Remove commented out
9721 code.
9722
9723 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
9724
9725 * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
9726
9727 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
9728
9729 * gdbserver/linux-low.c: Remove unused include files.
9730
9731 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
9732
9733 * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
9734 (read_inferior_memory): Use it.
9735 (write_inferior_memory): Likewise.
9736
9737 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
9738
9739 * gdbserver/linux-low.c (create_inferior): Call strerror instead of
9740 grubbing through sys_errlist.
9741
9742 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
9743
9744 * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
9745
9746 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
9747 * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
9748
9749 2002-02-04 Andrew Cagney <ac131313@redhat.com>
9750
9751 * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
9752 (do_sfunc, set_cmd_sfunc): New functions.
9753
9754 * command.h (struct cmd_list_element): Add field func.
9755 * cli/cli-decode.h (struct cmd_list_element): Ditto.
9756 * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
9757 * cli/cli-decode.h: Ditto.
9758
9759 * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
9760 (help_all, help_cmd_list): Ditto.
9761 (find_cmd, complete_on_cmdlist): Ditto.
9762 * top.c (execute_command): Ditto.
9763
9764 * cli/cli-setshow.c (do_setshow_command): Call func instead of
9765 function.sfunc.
9766
9767 * infcmd.c (notice_args_read): Fix function signature.
9768
9769 * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
9770 * cli/cli-decode.c (add_set_cmd): Ditto.
9771 * utils.c (initialize_utils): Ditto.
9772 * maint.c (_initialize_maint_cmds): Ditto.
9773 * infrun.c (_initialize_infrun): Ditto.
9774 * demangle.c (_initialize_demangler): Ditto.
9775 * remote.c (add_packet_config_cmd): Ditto.
9776 * mips-tdep.c (_initialize_mips_tdep): Ditto.
9777 * cris-tdep.c (_initialize_cris_tdep): Ditto.
9778 * proc-api.c (_initialize_proc_api): Ditto.
9779 * kod.c (_initialize_kod): Ditto.
9780 * valprint.c (_initialize_valprint): Ditto.
9781 * top.c (init_main): Ditto.
9782 * infcmd.c (_initialize_infcmd): Ditto.
9783 * corefile.c (_initialize_core): Ditto.
9784 * arm-tdep.c (_initialize_arm_tdep): Ditto.
9785 * arch-utils.c (initialize_current_architecture): Ditto.
9786 (_initialize_gdbarch_utils): Ditto.
9787 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
9788
9789 * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
9790 * wince.c (_initialize_inftarg): Ditto.
9791 * symfile.c (_initialize_symfile): Ditto.
9792 * mips-tdep.c (_initialize_mips_tdep): Ditto.
9793 * language.c (_initialize_language): Ditto.
9794 * arc-tdep.c (_initialize_arc_tdep): Ditto.
9795
9796 2002-02-04 Michael Snyder <msnyder@redhat.com>
9797
9798 * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
9799
9800 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
9801
9802 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
9803 Add rules for building the register data files.
9804
9805 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
9806
9807 * regformats/regdat.sh: Add braces to the definition of
9808 expedite_regs_${arch}.
9809
9810 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
9811
9812 * regformats/regdef.h (struct reg): Add comment describing the
9813 requirements for offset and size fields.
9814
9815 2002-02-04 Andreas Schwab <schwab@suse.de>
9816
9817 * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
9818 * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
9819
9820 2002-02-04 Richard Earnshaw <rearnsha@arm.com>
9821
9822 * gdbarch.sh (copyright): Update years in generated header.
9823 (SMASH_TEXT_ADDRESS): Add rule.
9824 * gdbarch.h, gdbarch.c: Re-generate.
9825 * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
9826 * dbxread.c: Likewise.
9827 * dwarfread.c: Likewise.
9828 * elfread.c: Likewise.
9829 * somread.c: Likewise.
9830
9831 * arm-tdep.c (arm_smash_text_address): New function.
9832 * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
9833
9834 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
9835
9836 Add support for hardware watchpoints on win32 native.
9837 * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
9838 CONTEXT_DEBUG_REGISTERS.
9839 (dr variable): New variable. Static array containing a local copy
9840 of debug registers.
9841 (debug_registers_changed): New variable. Reflects when debug registers
9842 are changed and need to be written to inferior.
9843 (debug_registers_used): New variable. Reflects when any debug register
9844 was set, used when new threads are created.
9845 (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
9846 i386-nat code.
9847 (thread_rec): Set dr array if id is the thread of current_event .
9848 (child_continue, child_resume): Change the debug registers for all
9849 threads if debug_registers_changed.
9850 (child_add_thread): Change the debug registers if debug_registers_used.
9851 * config/i386/cygwin.mh: Add use of i386-nat.o file.
9852 Link nm.h to new nm-cygwin.h file.
9853 + config/i386/nm-cygwin.h: New file. Contains the macros used for use
9854 of hardware registers.
9855
9856 2002-02-03 Andrew Cagney <ac131313@redhat.com>
9857
9858 * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
9859 Restore behavour broken by 2002-01-20 Andrew Cagney
9860 <ac131313@redhat.com> IEEE_FLOAT removal.
9861
9862 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
9863
9864 * c-valprint.c (c_val_print): Pass a proper valaddr to
9865 cp_print_class_method.
9866 * valops.c (search_struct_method): If there is only one method
9867 and args is NULL, return that method.
9868
9869 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
9870
9871 * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
9872 accessing tag_name directly.
9873
9874 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
9875
9876 * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
9877 of accessing tag_name directly.
9878
9879 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
9880
9881 PR gdb/280
9882 * gdbtypes.c (replace_type): New function.
9883 * gdbtypes.h (replace_type): Add prototype.
9884 * stabsread.c (read_type): Use replace_type.
9885
9886 2002-02-03 Richard Earnshaw <rearnsha@arm.com>
9887
9888 * Makefile.in (memattr.o): Add missing dependencies rule.
9889
9890 2002-02-03 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9891
9892 * breakpoint.c (break_at_finish_command): Really export.
9893 (break_at_finish_at_depth_command): Ditto.
9894 (tbreak_at_finish_command): Ditto.
9895 * hppa-tdep.c: Include completer.h.
9896 * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
9897 (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
9898
9899 2002-02-01 Andrew Cagney <ac131313@redhat.com>
9900
9901 * utils.c (do_write): New function.
9902 (error_stream): Rewrite combining the code from error_begin and
9903 verror.
9904 (verror): Rewrite using error_stream.
9905 (error_begin): Delete function.
9906
9907 2002-02-01 Andrew Cagney <ac131313@redhat.com>
9908
9909 * utils.c (error_begin): Make static.
9910 * defs.h (error_begin): Delete declaration.
9911
9912 * linespec.c (cplusplus_error): Replace cplusplus_hint.
9913 (decode_line_1): Use cplusplus_error instead of error_begin,
9914 cplusplus_hint and return_to_top_level.
9915 * coffread.c (coff_symfile_read): Use error instead of error_begin
9916 and return_to_top_level.
9917 * infrun.c (default_skip_permanent_breakpoint): Ditto.
9918
9919 2002-02-01 Andrew Cagney <ac131313@redhat.com>
9920
9921 * language.h (type_error, range_error): Make string parameter
9922 constant.
9923 * language.c (warning_pre_print): Delete extern declaration.
9924 * dwarfread.c (warning_pre_print): Ditto.
9925 * language.c (type_error, range_error): Rewrite to use verror and
9926 vwarning instead of warning_begin.
9927
9928 2002-02-01 Michael Snyder <msnyder@redhat.com>
9929
9930 * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
9931 (set_ignore_count): Move misplaced comment back where it belongs.
9932
9933 2002-02-01 Andrew Cagney <ac131313@redhat.com>
9934
9935 * command.h (NO_FUNCTION): Delete macro.
9936 * cli/cli-decode.h (NO_FUNCTION): Ditto.
9937 * top.c (execute_command): Replace NO_FUNCTION with NULL.
9938 * tracepoint.c (_initialize_tracepoint): Ditto.
9939 * cli/cli-decode.c (add_set_cmd): Ditto.
9940 * cli/cli-cmds.c (init_cli_cmds): Ditto.
9941
9942 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
9943
9944 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
9945 Update ``this'' pointer when calling virtual functions.
9946
9947 2002-02-01 Michael Snyder <msnyder@redhat.com>
9948
9949 * breakpoint.c (create_temp_exception_breakpoint): Delete.
9950 * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
9951
9952 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
9953
9954 * regformats/reg-arm.dat: New file.
9955 * regformats/reg-i386.dat: New file.
9956 * regformats/reg-ia64.dat: New file.
9957 * regformats/reg-m68k.dat: New file.
9958 * regformats/reg-mips.dat: New file.
9959 * regformats/reg-ppc.dat: New file.
9960 * regformats/reg-sh.dat: New file.
9961 * regformats/regdef.h: New file.
9962 * regformats/regdat.sh: New file.
9963
9964 2002-02-01 Richard Earnshaw <reanrsha@arm.com>
9965
9966 * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
9967 (arm_frame_args_address, arm_frame_locals_address): New functions.
9968 (arm_frame_num_args): New function.
9969 * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
9970 (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
9971 (FRMA_NUM_ARGS): Call arm_frame_num_args.
9972
9973 2002-01-31 Michael Snyder <msnyder@redhat.com>
9974
9975 * breakpoint.c (break_at_finish_command): Export.
9976 (break_at_finish_at_depth_command): Export.
9977 (tbreak_at_finish_command): Export.
9978 (_initialize_breakpoint): Delete "xbreak" and "tbreak" commands.
9979 * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
9980 "tbreak" commands, which are HPPA specific.
9981
9982 * printcmd.c (disassemble_command): Remove an ancient
9983 artifact of an old merge.
9984
9985 * symfile.h (enum overlay_debugging_state):
9986 Define enum constant values for overlay mode.
9987 * symfile.c (overlay_debugging): Use enums instead of literals.
9988 (overlay_is_mapped, overlay_auto_command,
9989 overlay_manual_command): Ditto.
9990
9991 * breakpoint.c (insert_breakpoints, remove_breakpoint,
9992 breakpoint_here_p, breakpoint_inserted_here_p,
9993 breakpoint_thread_match, bpstat_stop_status,
9994 describe_other_breakpoints, check_duplicates, clear_command):
9995 Coding standard fixes.
9996
9997 * target.c (target_xfer_memory): Add spaces, coding standard.
9998 (do_xfer_memory): Add missing line to trust-readonly
9999 code: check bfd SEC_READONLY flag for section.
10000
10001 2002-01-31 Andrew Cagney <ac131313@redhat.com>
10002
10003 * PROBLEMS: Fix typo, 5.1->5.1.1.
10004
10005 2002-01-30 Daniel Jacobowitz <drow@mvista.com>
10006
10007 * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
10008 data symbols, since we search based on textlow and texthigh.
10009 (find_pc_sect_symtab): Likewise.
10010
10011 2002-01-30 Andrew Cagney <ac131313@redhat.com>
10012
10013 * defs.h (vwarning): Declare.
10014 * utils.c (vwarning): New function.
10015 (warning): Call vwarning.
10016 (warning_begin): Delete function.
10017
10018 * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
10019 the warning message.
10020 * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
10021 warning_begin.
10022
10023 2002-01-30 Michael Snyder <msnyder@redhat.com>
10024
10025 * NEWS: Mention "set trust-readonly-sections" command.
10026 Mention generate-core-file command.
10027
10028 2002-01-15 Michael Snyder <msnyder@redhat.com>
10029
10030 * target.c: New command, "set trust-readonly-sections on".
10031 (do_xfer_memory): Honor the suggestion to trust readonly sections
10032 by reading them from the object file instead of from the target.
10033 (initialize_targets): Register command "set trust-readonly-sections".
10034
10035 2002-01-29 Andrew Cagney <ac131313@redhat.com>
10036
10037 * parse.c (target_map_name_to_register): Simplify, search regs and
10038 pseudo-regs using a single loop.
10039
10040 2002-01-30 Andrew Cagney <ac131313@redhat.com>
10041
10042 * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
10043
10044 2002-01-15 Rodney Brown <rbrown64@csc.com.au>
10045
10046 * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
10047 * config/i386/i386v42mp.mh: Add i387-nat.o .
10048 * i386v4-nat.c: Include i387-nat.h.
10049 (supply_fpregset): Use i387_supply_fsave.
10050 (fill_fpregset): Use i387_fill_fsave.
10051
10052 2002-01-30 Richard Earnshaw <rearnsha@arm.com>
10053
10054 * arm-tdep.c (arm_call_dummy_words): Define.
10055 * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
10056 * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
10057 (CALL_DUMMY_WORDS): Define.
10058 (arm_call_dummy_words): Declare.
10059 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
10060 (arm_linux_call_dummy_words): Declare.
10061
10062 2002-01-30 Andreas Schwab <schwab@suse.de>
10063
10064 * m68klinux-nat.c: Fix last change to use regcache_collect
10065 instead of referencing registers[] directly.
10066
10067 2002-01-29 Andrew Cagney <ac131313@redhat.com>
10068
10069 * parse.c (target_map_name_to_register): Delete code wrapped in
10070 #ifdef REGISTER_NAME_ALIAS_HOOK.
10071
10072 2002-01-28 Michael Snyder <msnyder@redhat.com>
10073
10074 * regcache.c (legacy_read_register_gen): Need to be able to
10075 read pseudo-register as well as real register.
10076 (legacy_write_register_gen): Ditto.
10077
10078 2002-01-28 Andrew Cagney <ac131313@redhat.com>
10079
10080 * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
10081 * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
10082 * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
10083 * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
10084 * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
10085 * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
10086 * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
10087 * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
10088 * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
10089 * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
10090 * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
10091 * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
10092 * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
10093 * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
10094 * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
10095 * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
10096 * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
10097 * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
10098 * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
10099 * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
10100
10101 2002-01-28 Andrew Cagney <ac131313@redhat.com>
10102
10103 * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
10104 (target_byte_order): Initialize to BFD_ENDIAN_BIG.
10105 (initialize_current_architecture): Update target_byte_order using
10106 information from BFD.
10107 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
10108 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
10109
10110 2002-01-28 Andrew Cagney <ac131313@redhat.com>
10111
10112 * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
10113 * vax-tdep.c (INVALID_FLOAT): To here. Document why it is broken.
10114
10115 * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
10116 #ifdef INVALID_FLOAT.
10117 * infcmd.c (do_registers_info): Ditto.
10118 * values.c (unpack_double): Ditto. Add comment.
10119
10120 * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
10121 already commented out.
10122
10123 2002-01-26 Andreas Schwab <schwab@suse.de>
10124
10125 * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
10126 * m68klinux-nat.c: Update ptrace interface for fetching/storing
10127 registers and add support for PTRACE_GETREGS.
10128
10129 2002-01-24 Andrew Cagney <ac131313@redhat.com>
10130
10131 GDB 5.1.1 released from 5.1 branch.
10132 * NEWS: Add 5.1.1 news.
10133 * README: Sync with 5.1 branch.
10134
10135 2002-01-23 Fred Fish <fnf@redhat.com>
10136
10137 * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
10138 stabstring on initial malloc. Reallocing will copy it for us,
10139 if necessary.
10140
10141 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
10142
10143 * Makefile.in (hpread_h): Delete.
10144 (HFILES_NO_SRCDIR): Remove hpread.h.
10145 (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
10146 (hpread.o): Update dependencies.
10147 (hp-psymtab-read.o, hp-symtab-read.o): Remove.
10148
10149 * hp-psymtab-read.c: Remove file.
10150 * hp-symtab-read.c: Remove file.
10151 * hpread.h: Remove file.
10152
10153 * hpread.c: Merge all contents of hp-psymtab-read.c,
10154 hp-symtab-read.c and hpread.h into this file, as it was prior to
10155 January 1999.
10156
10157 * config/pa/hpux11w.mh, config/pa/hpux11.mh,
10158 config/pa/hpux1020.mh, config/pa/hppaosf.mh,
10159 config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
10160 Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
10161
10162 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
10163
10164 * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
10165 fill_gregset): Call gdbarch_tdep() just once, assign result to
10166 variable and use that, instead of calling the function several
10167 times.
10168
10169 2002-01-24 Alexandre Oliva <aoliva@redhat.com>
10170
10171 * configure.host: Accept sparcv9 as alias for sparc64.
10172 * configure.tgt: Likewise.
10173
10174 2002-01-22 Kevin Buettner <kevinb@redhat.com>
10175
10176 * solib-aix5.c (build_so_list_from_mapfile)
10177 (aix5_relocate_main_executable): Fix xcalloc() calls so order of
10178 arguments is not reversed.
10179 * solib-sunos.c (sunos_relocate_main_executable): Likewise.
10180 * solib-svr4.c (svr4_relocate_main_executable): Likewise.
10181
10182 2002-01-22 Elena Zannoni <ezannoni@redhat.com>
10183
10184 * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
10185 modified version of obsolete sh_fetch_pseudo_register.
10186 (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
10187 (sh4_register_read): New function.
10188 (sh_pseudo_register_write): New function. Renamed and modified
10189 version of obsolete sh_store_pseudo_register.
10190 (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
10191 (sh4_register_write): New function.
10192 (sh_gdbarch_init): Remove setting of gdbarch function
10193 fetch_pseudo_register and store_pseudo_register. Remove setting of
10194 register_convert_to_raw, register_convert_to_virtual,
10195 register_convertible.
10196 (sh_sh4_register_convertible): Delete. No longer needed. All is
10197 taken care by architecture specific functions
10198 register_read/register_write.
10199 (sh_sh4_register_convert_to_virtual): Make static.
10200 (sh_sh4_register_convert_to_raw): Ditto.
10201
10202 2002-01-22 Andrew Cagney <ac131313@redhat.com>
10203
10204 * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
10205 (floatformat_is_nan, floatformat_mantissa): Ditto.
10206
10207 * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
10208 for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
10209 builtin_type_ieee_double_little,
10210 builtin_type_ieee_double_littlebyte_bigword,
10211 builtin_type_m68881_ext, builtin_type_i960_ext,
10212 builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
10213 builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
10214 builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
10215 builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
10216
10217 2002-01-22 Corinna Vinschen <vinschen@redhat.com>
10218
10219 * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
10220 parameter. Set frameless flag if it exists and depended of
10221 whether the scanned function is frameless or not.
10222 (xstormy16_skip_prologue): If function is frameless, return
10223 result of xstormy16_scan_prologue().
10224 (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
10225 call.
10226
10227 2002-01-21 Elena Zannoni <ezannoni@redhat.com>
10228
10229 * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
10230 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
10231 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
10232 sh_sh4_register_byte, sh_sh4_register_raw_size,
10233 sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
10234 sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
10235 sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
10236 sh_store_pseudo_register, sh_do_pseudo_register): Call
10237 gdbarch_tdep() just once, assign result to variable and use that,
10238 instead of calling the function several times.
10239
10240 2002-01-20 Mark Kettenis <kettenis@gnu.org>
10241
10242 * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
10243 macros instead of LAST_FPU_CTRL_REGNUM.
10244 (store_register): Likewise.
10245
10246 2002-01-21 Jim Blandy <jimb@redhat.com>
10247
10248 * infcmd.c (run_command): Check that the `exec' target layer's BFD
10249 is up-to-date before running the program, not just when a program
10250 exits.
10251
10252 2002-01-21 Fred Fish <fnf@redhat.com>
10253
10254 * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
10255 when we have found all instructions we are looking for.
10256
10257 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
10258
10259 * arm-tdep.c (arm_register_name): New function.
10260 (arm_registers_names): Make static.
10261 * config/arm/tm-arm.h (arm_register_names): Delete declaration.
10262 (arm_register_name): Declare.
10263 (REGISTER_NAME): Use it.
10264
10265 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
10266 Kevin Buettner <kevinb@redhat.com>
10267
10268 Convert arm targets to new FRAME interface.
10269 * arm-tdep.c (struct frame_extra_info): Remove fsr.
10270 (arm_frame_find_save_regs): Delete.
10271 (arm_frame_init_saved_regs): New.
10272 (arm_init_extra_frame_info): Alloacte saved_regs as required.
10273 Allocate extra_info as required. Convert all uses of fsr.regs
10274 to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
10275 to use extra_info.
10276 (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
10277 (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
10278 (check_prologue_cache, save_prologue_cache): Likewise.
10279 (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
10280 * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
10281 (FRAME_FIND_SAVED_REGS): Delete.
10282 (arm_frame_find_saved_regs): Delete prototype.
10283 (arm_frame_init_saved_regs): New prototype.
10284 (FRAME_INIT_SAVED_REGS): Define.
10285
10286 2002-01-20 Andrew Cagney <ac131313@redhat.com>
10287
10288 * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
10289
10290 2002-01-20 Andrew Cagney <ac131313@redhat.com>
10291
10292 From Jeff Law <law@redhat.com>:
10293 * infttrace.c: Include <sys/pstat.h>.
10294 (child_pid_to_exec_file): Revamp. Use pstat call to get the
10295 exec file if the ttrace equivalent fails.
10296
10297 2002-01-20 Andrew Cagney <ac131313@redhat.com>
10298
10299 * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
10300 (closeLogFile): Ditto.
10301
10302 2002-01-20 Michael Chastain <mec@shout.net>
10303
10304 * top.c (print_gdb_version): Bump copyright year to 2002.
10305
10306 2002-01-20 Andrew Cagney <ac131313@redhat.com>
10307
10308 * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
10309 Zannoni and Eli Zaretskii.
10310
10311 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
10312
10313 * buildsym.c: Update copyright years.
10314 * c-typeprint.c: Likewise.
10315 * dwarf2read.c: Likewise.
10316 * f-typeprint.c: Likewise.
10317 * gdbtypes.c: Likewise.
10318 * gdbtypes.h: Likewise.
10319 * hp-symtab-read.c: Likewise.
10320 * hpread.c: Likewise.
10321 * mdebugread.c: Likewise.
10322 * p-typeprint.c: Likewise.
10323
10324 2002-01-20 Andrew Cagney <ac131313@redhat.com>
10325
10326 * remote-sim.c (gdbsim_open): Simplify code testing the macro
10327 TARGET_BYTE_ORDER_SELECTABLE_P. Assume the target is always
10328 byte-order selectable.
10329 * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
10330 * arch-utils.c: Ditto.
10331 (set_endian): Ditto.
10332 (set_endian_from_file): Ditto.
10333 * gdbserver/low-sim.c (create_inferior): Ditto.
10334 * gdbarch.sh: Ditto.
10335 * gdbarch.h: Re-generate.
10336 * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
10337 * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
10338 * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
10339 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
10340 * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
10341 * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
10342 * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
10343 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
10344 macro definition.
10345 * config/mips/tm-wince.h: Remove #undef of macro
10346 TARGET_BYTE_ORDER_SELECTABLE.
10347 * config/sh/tm-wince.h: Ditto.
10348
10349 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
10350
10351 * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
10352 member function fields. Add accessor macro
10353 TYPE_FN_FIELD_ARTIFICIAL.
10354 * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
10355 * c-typeprint.c (c_type_print_base): Skip artificial member
10356 functions.
10357
10358 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
10359
10360 * f-typeprint.c: Delete unused function f_type_print_args.
10361 * p-typeprint.c: Delete unused function pascal_type_print_args.
10362
10363 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
10364
10365 * gdbtypes.h (struct type): Fix whitespace. Remove obsolete
10366 comment. Add ``artificial'' to ``union field_location''.
10367
10368 * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
10369
10370 * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
10371 * mdebugread.c (parse_symbol): Likewise.
10372 * stabsread.c (define_symbol): Likewise.
10373 * hp-symtab-read.c (hpread_function_type): Likewise, instead of
10374 initializing TYPE_FIELD_BITPOS to n (obsolete).
10375 (hpread_doc_function_type): Likewise.
10376 * hpread.c (hpread_function_type): Likewise.
10377
10378 2002-01-20 Andrew Cagney <ac131313@redhat.com>
10379
10380 * configure.in (host_makefile_frag): Only require a host makefile
10381 fragment when a native build.
10382 * configure: Re-generate.
10383
10384 2002-01-20 Andrew Cagney <ac131313@redhat.com>
10385
10386 * doublest.h (floatformat_from_type): Declare.
10387 * doublest.c (floatformat_from_type): New function.
10388 (convert_typed_floating): Use.
10389
10390 * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
10391 call to function floatformat_from_type.
10392
10393 * gdbarch.sh (IEEE_FLOAT): Delete.
10394 * gdbarch.h, gdbarch.c: Re-generate.
10395 * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
10396 * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
10397 * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
10398 * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
10399 * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
10400 * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
10401 * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
10402 * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
10403 * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
10404 * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
10405 * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
10406 * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
10407
10408 * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
10409 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
10410 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
10411 * sh-tdep.c (sh_gdbarch_init): Ditto.
10412 * mips-tdep.c (mips_gdbarch_init): Ditto.
10413 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
10414 * cris-tdep.c (cris_gdbarch_init): Ditto.
10415
10416 2002-01-20 Jiri Smid <smid@suse.cz>
10417
10418 * configure.host, configure.tgt: Support x86-64.
10419 * NEWS: Note new target x86-64.
10420
10421 * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
10422 * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
10423 * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
10424 * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
10425 x86-64-linux-nat.o): Fix dependencies.
10426
10427 2002-01-19 Andrew Cagney <ac131313@redhat.com>
10428
10429 * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
10430 * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
10431 * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
10432 * config/sparc/xm-sun4os4.h: Delete file.
10433 * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
10434
10435 2002-01-19 Andrew Cagney <ac131313@redhat.com>
10436
10437 * config/sparc/sparclynx.mh (XM_FILE): Delete.
10438 * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
10439 * config/m68k/m68klynx.mh (XM_FILE): Delete.
10440 * config/i386/i386lynx.mh (XM_FILE): Delete.
10441 * config/rs6000/xm-rs6000ly.h: Delete file.
10442 * config/sparc/xm-sparclynx.h: Delete file.
10443 * config/m68k/xm-m68klynx.h: Delete file.
10444 * config/i386/xm-i386lynx.h: Delete file.
10445 * config/xm-lynx.h: Delete file.
10446 * config/djgpp/fnchange.lst: Update.
10447
10448 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
10449
10450 * alpha-tdep.c (alpha_register_byte): New function.
10451 (alpha_register_raw_size): Ditto.
10452 (alpha_register_virtual_size): Ditto.
10453 (alpha_skip_prologue_internal): Renamed from
10454 alpha_skip_prologue.
10455 (alpha_skip_prologue): New version that calls
10456 alpha_skip_prologue_internal.
10457 (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
10458 * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
10459 second argument from alpha_skip_prologue.
10460 (REGISTER_BYTE): Use alpha_register_byte.
10461 (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
10462 (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
10463 (FRAMELESS_FUNCTION_INVOCATION): Use
10464 generic_frameless_function_invocation_not.
10465 (FRAME_NUM_ARGS): Use frame_num_args_unknown.
10466 (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
10467
10468 2002-01-19 Andrew Cagney <ac131313@redhat.com>
10469
10470 * config/mips/xm-news-mips.h: Delete file.
10471 * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
10472
10473 * config/m88k/xm-m88k.h: Delete file.
10474 * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
10475 * config/m88k/xm-delta88v4.h: Ditto.
10476 * config/m88k/xm-delta88.h: Ditto.
10477
10478 * config/alpha/xm-fbsd.h: Delete file.
10479 * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
10480
10481 * config/sparc/xm-sparc.h: Delete file.
10482 * Makefile.in (xm-sun4os4.h): Delete dependency.
10483 * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
10484 * config/sparc/xm-sun4os4.h: Ditto.
10485 * config/sparc/xm-linux.h: Ditto.
10486
10487 * config/i386/xm-windows.h: Delete file.
10488
10489 2002-01-19 Andrew Cagney <ac131313@redhat.com>
10490
10491 * utils.c: Include <sys/param.h> for MAXPATHLEN.
10492 (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
10493
10494 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
10495
10496 * alpha-tdep.c (alpha_call_dummy_words): New.
10497 * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
10498 (CALL_DUMMY_P): Define.
10499 (CALL_DUMMY_WORDS): Define.
10500 (SIZEOF_CALL_DUMMY_WORDS): Define.
10501
10502 2002-01-19 Per Bothner <per@bothner.com>
10503
10504 * gnu-v3-abi.c (gnuv3_rtti_type): Guard that vtable_symbol_name
10505 isn't NULL, which can happen with some gcj-3.x-produced code.
10506
10507 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
10508
10509 * alpha-tdep.c (alpha_register_virtual_type): New function.
10510 (alpha_init_frame_pc_first): Ditto.
10511 (alpha_fix_call_dummy): Ditto.
10512 (alpha_store_struct_return): Ditto.
10513 (alpha_extract_struct_value_address): Ditto.
10514 * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
10515 alpha_register_virtual_type.
10516 (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
10517 (EXTRACT_STRUCT_VALUE_ADDRESS): Use
10518 alpha_extract_struct_value_address.
10519 (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
10520 (INIT_FRAME_PC): Use init_frame_pc_noop.
10521 (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
10522
10523 2002-01-19 Mark Kettenis <kettenis@gnu.org>
10524
10525 * i386gnu-nat.c: Include "i386-tdep.h".
10526 (fetch_fpregs): Simplify code dealing with uninitialized floating
10527 point states such that it doesn't require FP7_REGNUM.
10528
10529 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
10530
10531 * alpha-tdep.c (frame_extra_info): New.
10532 (alpha_find_saved_regs): Make static. Use
10533 frame->extra_info.
10534 (alpha_frame_init_saved_regs): New function.
10535 (alpha_frame_saved_pc): Use frame->extra_info.
10536 (temp_saved_regs): Don't declare as struct frame_saved_regs.
10537 (heuristic_proc_desc): Adjust for temp_saved_regs changes.
10538 (init_extra_frame_info): Rename to...
10539 (alpha_init_extra_frame_info): ...this. Use frame->extra_info.
10540 (alpha_print_extra_frame_info): New function.
10541 (alpha_frame_locals_address): Ditto.
10542 (alpha_frame_args_address): Ditto.
10543 (alpha_pop_frame): Use frame->extra_info.
10544 * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
10545 alpha_frame_args_address.
10546 (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
10547 (alpha_find_saved_regs): Remove prototype.
10548 (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
10549 (EXTRA_FRAME_INFO): Remove.
10550 (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
10551 (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
10552
10553 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
10554
10555 * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
10556 (alpha_cannot_fetch_register): Ditto.
10557 (alpha_cannot_store_register): Ditto.
10558 (alpha_register_convertible): Ditto.
10559 (alpha_use_struct_convention): Ditto.
10560 * config/alpha/tm-alpha.h: Update copyright years.
10561 (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
10562 (INNER_THAN): Use core_addr_lessthan.
10563 (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
10564 (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
10565 (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
10566 (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
10567 (FRAME_CHAIN): Remove unnecessary cast.
10568
10569 2002-01-18 Andrew Cagney <ac131313@redhat.com>
10570
10571 * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
10572 obsolete.
10573
10574 2002-01-18 Andrew Cagney <ac131313@redhat.com>
10575
10576 * infptrace.c: Remove ATTRIBUTE_UNUSED. Update copyright.
10577 * monitor.c, remote-array.c, remote-bug.c: Ditto.
10578 * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
10579 * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
10580 * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
10581 * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
10582 * x86-64-linux-nat.c: Ditto.
10583
10584 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
10585
10586 * alpha-tdep.c (alpha_register_name): New function.
10587 * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
10588 (REGISTER_NAME): Define.
10589
10590 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
10591
10592 * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
10593
10594 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
10595
10596 * alpha-tdep.c: Update copyright years.
10597 (alpha_next_pc): New function.
10598 (alpha_software_single_step): Ditto.
10599 * config/alpha/tm-alpha.h: Add prototype for
10600 alpha_software_single_step.
10601
10602 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
10603
10604 * alphabsd-nat.c: Update copyright years.
10605 (fill_gregset): Use regcache_collect.
10606 (fill_fpregset): Likewise.
10607 (fetch_inferior_registers): Only fetch integer registers
10608 if requested to do so.
10609 (store_inferior_registers): Only store integer registers
10610 if requested to do so.
10611
10612 2002-01-17 Andrew Cagney <ac131313@redhat.com>
10613
10614 * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
10615 * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
10616 * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
10617 * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
10618 * config/alpha/fbsd.mh (XDEPFILES): Delete.
10619 * config/arm/linux.mh (XDEPFILES): Delete.
10620 * config/arm/nbsd.mh (XDEPFILES): Delete.
10621 * config/i386/i386dgux.mh (XDEPFILES): Delete.
10622 * config/i386/i386sol2.mh (XDEPFILES): Delete.
10623 * config/i386/i386m3.mh (XDEPFILES): Delete.
10624 (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
10625 * config/i386/i386gnu.mh (XDEPFILES): Delete.
10626 * config/i386/fbsd.mh (XDEPFILES): Delete.
10627 * config/i386/i386bsd.mh (XDEPFILES): Delete.
10628 * config/i386/i386sco5.mh (XDEPFILES): Delete.
10629 * config/i386/i386v4.mh (XDEPFILES): Delete.
10630 * config/i386/i386v42mp.mh (XDEPFILES): Delete.
10631 * config/i386/i386sco4.mh (XDEPFILES): Delete.
10632 * config/i386/i386aix.mh (XDEPFILES): Delete.
10633 * config/i386/go32.mh (XDEPFILES): Delete.
10634 * config/i386/cygwin.mh (XDEPFILES): Delete.
10635 * config/i386/i386lynx.mh (XDEPFILES): Delete.
10636 * config/i386/i386mach.mh (XDEPFILES): Delete.
10637 * config/i386/i386v32.mh (XDEPFILES): Delete.
10638 * config/i386/linux.mh (XDEPFILES): Delete.
10639 * config/i386/nbsdelf.mh (XDEPFILES): Delete.
10640 * config/i386/ncr3000.mh (XDEPFILES): Delete.
10641 * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
10642 * config/i386/i386sco.mh (XDEPFILES): Delete.
10643 * config/i386/i386v.mh (XDEPFILES): Delete.
10644 * config/i386/nbsd.mh (XDEPFILES): Delete.
10645 * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
10646 * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
10647 * config/i386/symmetry.mh (XDEPFILES): Delete.
10648 * config/i386/obsd.mh (XDEPFILES): Delete.
10649 * config/i386/x86-64linux.mh (XDEPFILES): Delete.
10650 * config/ia64/linux.mh (XDEPFILES): Delete.
10651 * config/ia64/aix.mh (XDEPFILES): Delete.
10652 * config/m68k/apollo68b.mh (XDEPFILES): Delete.
10653 * config/m68k/dpx2.mh (XDEPFILES): Delete.
10654 * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
10655 * config/m68k/apollo68v.mh (XDEPFILES): Delete.
10656 * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
10657 * config/m68k/linux.mh (XDEPFILES): Delete.
10658 * config/m68k/m68klynx.mh (XDEPFILES): Delete.
10659 * config/m68k/m68kv4.mh (XDEPFILES): Delete.
10660 * config/m68k/nbsd.mh (XDEPFILES): Delete.
10661 * config/m68k/sun2os3.mh (XDEPFILES): Delete.
10662 * config/m68k/sun2os4.mh (XDEPFILES): Delete.
10663 * config/m68k/sun3os3.mh (XDEPFILES): Delete.
10664 * config/m68k/sun3os4.mh (XDEPFILES): Delete.
10665 * config/m88k/delta88.mh (XDEPFILES): Delete.
10666 * config/m88k/delta88v4.mh (XDEPFILES): Delete.
10667 * config/m88k/m88k.mh (XDEPFILES): Delete.
10668 * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
10669 * config/mips/linux.mh (XDEPFILES): Delete.
10670 * config/mips/irix6.mh (XDEPFILES): Delete.
10671 * config/mips/irix5.mh (XDEPFILES): Delete.
10672 * config/mips/irix4.mh (XDEPFILES): Delete.
10673 * config/mips/irix3.mh (XDEPFILES): Delete.
10674 * config/mips/decstation.mh (XDEPFILES): Delete.
10675 * config/mips/mipsm3.mh (XDEPFILES): Delete.
10676 (NATDEPFILES): Move core-aout.o to here.
10677 * config/ns32k/nbsd.mh (XDEPFILES): Delete.
10678 * config/pa/hpux1020.mh (XDEPFILES): Delete.
10679 * config/pa/hppabsd.mh (XDEPFILES): Delete.
10680 * config/pa/hppahpux.mh (XDEPFILES): Delete.
10681 * config/pa/hpux11w.mh (XDEPFILES): Delete.
10682 * config/pa/hppaosf.mh (XDEPFILES): Delete.
10683 * config/pa/hpux11.mh (XDEPFILES): Delete.
10684 * config/powerpc/aix.mh (XDEPFILES): Delete.
10685 * config/powerpc/nbsd.mh (XDEPFILES): Delete.
10686 * config/powerpc/linux.mh (XDEPFILES): Delete.
10687 * config/romp/rtbsd.mh: Rename XDEPFILES.
10688 * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
10689 * config/rs6000/aix4.mh (XDEPFILES): Delete.
10690 * config/rs6000/rs6000.mh (XDEPFILES): Delete.
10691 * config/s390/s390.mh (XDEPFILES): Delete.
10692 * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
10693 * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
10694 * config/sparc/sun4os4.mh (XDEPFILES): Delete.
10695 * config/sparc/sparclynx.mh (XDEPFILES): Delete.
10696 * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
10697 * config/sparc/nbsd.mh (XDEPFILES): Delete.
10698 * config/sparc/linux.mh (XDEPFILES): Delete.
10699 * config/vax/vaxult.mh (XDEPFILES): Delete.
10700 * config/vax/vaxult2.mh (XDEPFILES): Delete.
10701 * Makefile.in (DEPFILES): Remove XDEPFILES.
10702
10703 2002-01-17 Andrew Cagney <ac131313@redhat.com>
10704
10705 * utils.c (internal_verror): Fix comments, default is yes not no.
10706 Update queries to match. Default to quit and dump core.
10707
10708 2002-01-17 Andrew Cagney <ac131313@redhat.com>
10709
10710 * breakpoint.c: Update assuming #if UI_OUT is always true. Update
10711 copyright.
10712 * defs.h, event-top.c, gdbcmd.h: Ditto.
10713 * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
10714 * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
10715 * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
10716 * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
10717 * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
10718 * mi/mi-main.c:Ditto.
10719
10720 * stack.c, symfile.c: Update copyright.
10721
10722 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
10723
10724 * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
10725 gdbserver/low-nbsd.c, gdbserver/low-sim.c,
10726 gdbserver/low-sparc.c, gdbserver/low-sun3.c,
10727 gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
10728
10729 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
10730
10731 * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
10732 * gdbserver/low-lynx.c (myattach): Likewise.
10733 * gdbserver/low-nbsd.c (myattach): Likewise.
10734 * gdbserver/low-sim.c (myattach): Likewise.
10735 * gdbserver/low-sparc.c (myattach): Likewise.
10736 * gdbserver/low-sun3.c (myattach): Likewise.
10737
10738 * gdbserver/low-linux.c (myattach): New function.
10739
10740 * gdbserver/server.c (attach_inferior): New function.
10741 (main): Handle "--attach".
10742
10743 2002-01-16 Andrew Cagney <ac131313@redhat.com>
10744
10745 * MAINTAINERS (language support): Daniel Jacobwitz is C++
10746 maintainer.
10747
10748 2002-01-15 Daniel Jacobowitz <drow@mvista.com>
10749
10750 * c-typeprint.c (is_type_conversion_operator): Add additional
10751 check for non-conversion operators.
10752
10753 2002-01-15 Michael Snyder <msnyder@redhat.com>
10754
10755 * linux-proc.c: Add "info proc" command, a la procfs.c.
10756 (read_mapping): New function, abstract and re-use code.
10757 (linux_find_memory_regions): Use new func read_mapping.
10758 (linux_info_proc_cmd): New function, implement "info proc".
10759 (_initialize_linux_proc): Add new command "info proc".
10760
10761 2002-01-15 Michael Snyder <msnyder@redhat.com>
10762
10763 * symfile.c (generic_load): Use bfd_map_over_sections method
10764 instead of manipulating bfd structure members directly.
10765 (add_section_size_callback): New function, bfd sections callback
10766 used by generic_load.
10767 (load_sections_callback): New function, bfd sections callback
10768 used by generic_load.
10769
10770 2002-01-15 Elena Zannoni <ezannoni@redhat.com>
10771
10772 [Based on work by Jim Blandy]
10773 * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
10774 (builtin_type_vec128): Export.
10775 * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
10776 types.
10777 (builtin_type_vec128): New builtin type for 128 bit vector
10778 registers.
10779 (build_gdbtypes): Initialize builtin_type_v16qi and
10780 builtin_type_v8hi. Create the vec128 register builtin type
10781 structure.
10782 (build_builtin_type_vec128): New function.
10783 (_initialize_gdbtypes): Register builtin_type_v16qi and
10784 builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
10785 * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
10786 AltiVec register to new builtin type.
10787
10788 2001-01-15 Daniel Jacobowitz <drow@mvista.com>
10789
10790 * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
10791 to make_cv_type.
10792
10793 2002-01-14 Andrew Cagney <ac131313@redhat.com>
10794
10795 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
10796 CLEAN_UP_REGISTER_VALUE.
10797 * regcache.c (supply_register): Update only call.
10798
10799 2002-01-14 Andrew Cagney <ac131313@redhat.com>
10800
10801 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
10802 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
10803 a29k-*-vxworks* targets as obsolete.
10804
10805 2002-01-14 Michael Snyder <msnyder@redhat.com>
10806
10807 * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
10808 until we can resolve portability issues.
10809 * gregset.h: Remove references to fpxregs.
10810 * gcore.c (gcore_command): Initialize note_sec to NULL.
10811
10812 2002-01-13 Andrew Cagney <ac131313@redhat.com>
10813
10814 * signals.c (target_signal_to_name): Rewrite. Only use
10815 signals[].name when in bounds and non-NULL.
10816
10817 2002-01-13 Andrew Cagney <ac131313@redhat.com>
10818
10819 From Petr Ledvina <ledvinap@kae.zcu.cz>:
10820 * signals.c (target_signal_to_name): Verify that SIG is within the
10821 bounds of the signals array.
10822
10823 2002-01-13 Andrew Cagney <ac131313@redhat.com>
10824
10825 * MAINTAINERS: Remove arm-coff and arm-pe from target list.
10826
10827 2002-01-13 Keith Seitz <keiths@redhat.com>
10828
10829 * stack.c (print_frame_info_base): Print the frame's pc
10830 only if when print_frame_info_listing_hook is not defined.
10831
10832 2002-01-13 Keith Seitz <keiths@redhat.com>
10833
10834 * varobj.c (varobj_set_value): Make sure that there were no
10835 errors evaluating the object before attempting to set its
10836 value.
10837 value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
10838 so this offset adjustment is no longer necessary.
10839 (create_child): Don't set the error flag if the child is
10840 a CPLUS_FAKE_CHILD.
10841 (value_of_child): If value_fetch_lazy fails, return NULL
10842 so that callers will be notified that an error occurred.
10843 (c_value_of_variable): Delay check of variable's validity
10844 until later. We actually want all structs and unions to have
10845 the value "{...}".
10846 Do not return "???" for variables which could not be evaluated.
10847 This error condition must be returned to the caller so that it
10848 can get the error condition from gdb.
10849 (cplus_name_of_child): Adjust index for vptr before figuring
10850 out the name of the child.
10851 (cplus_value_of_child): If a child's (real) parent is not valid,
10852 don't even bother trying to give a value for it. Just return
10853 an error. Change all instances in this function.
10854 (cplus_type_of_child): If our parent is one of the "fake"
10855 parents, we need to get at the type of the real parent, and
10856 derive the child's true type using this information.
10857
10858 2002-01-13 Andrew Cagney <ac131313@redhat.com>
10859
10860 From 2002-01-09 John Marshall <johnm@falch.net>:
10861 * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
10862 sources.redhat.com, and tweak some related URLs which had
10863 suffered from linkrot.
10864
10865 2002-01-13 Andrew Cagney <ac131313@redhat.com>
10866
10867 From Jeff law:
10868 * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
10869 structures passed in registers.
10870
10871 2002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
10872
10873 * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
10874 white space which prevented compilation. Reported by DSK
10875 <dsk@student.unsw.edu.au>.
10876
10877 2002-01-11 Michael Snyder <msnyder@redhat.com>
10878
10879 * symfile.c (build_section_addr_info_from_section_tab):
10880 Use bfd access method instead of manipulating bfd directly.
10881 (syms_from_objfile): Ditto.
10882 (simple_overlay_update_1): Ditto.
10883 (simple_overlay_update): Ditto.
10884 (generic_load): Ditto.
10885 (overlay_unmapped_address): FIXME comment, bfd access methods.
10886 (sections_overlap): FIXME comment, bfd access methods.
10887 (pc_in_mapped_range): FIXME comment, bfd access methods.
10888 (pc_in_unmapped_range): FIXME comment, bfd access methods.
10889 (section_is_mapped): FIXME comment, bfd access methods.
10890 (section_is_overlay): FIXME comment, bfd access methods.
10891
10892 * symfile.c (generic_load): Whitespace and long line cleanups.
10893 Remove duplicate variable, change several local variables to
10894 more appropriate data types.
10895 (print_transfer_performance): Use %lu instead of %ld for ulongs.
10896
10897 2002-01-12 Andrew Cagney <ac131313@redhat.com>
10898
10899 From Peter Schauer:
10900 * language.c (longest_local_hex_string_custom): Use phex_nz to
10901 convert NUM to a hex string.
10902
10903 2002-01-12 Elena Zannoni <ezannoni@redhat.com>
10904
10905 * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
10906 the function.
10907 Update Copyright year.
10908
10909 2002-01-12 Andrew Cagney <ac131313@redhat.com>
10910
10911 * language.c (longest_raw_hex_string): Delete unused function.
10912
10913 2002-01-11 Petr Sorfa <petrs@caldera.com>
10914
10915 * MAINTAINERS (write-after-approval): Add myself.
10916 * dwarf2read.c (read_tag_string_type): Handling of
10917 DW_AT_byte_size.
10918 (read_tag_string_type): FORTRAN fix to prevent propagation of
10919 first string size.
10920 (set_cu_language): Handling of DW_LANG_Fortran95
10921
10922 2002-01-11 Richard Earnshaw <rearnsha@arm.com>
10923
10924 * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
10925 GETPID(inferior_ptid).
10926 (store_inferior_registers): Likewise.
10927
10928 2002-01-10 Jason Merrill <jason@redhat.com>
10929
10930 * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
10931 Fix DW_OP_minus.
10932
10933 2002-01-10 Andrew Cagney <ac131313@redhat.com>
10934
10935 * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
10936 and bfd/elf32-sh-nbsd.c.
10937
10938 2002-01-10 Michael Snyder <msnyder@redhat.com>
10939
10940 * NEWS: Mention --pid and corefile/proc-id behavior change.
10941
10942 * Makefile.in: Add rules for gcore.o and linux-proc.o.
10943 * gcore.c: Include cli/cli-decode.h instead of command.h.
10944
10945 * main.c (captured_main): Add new command line option "--pid".
10946 If the second command line argument (following the symbol-file)
10947 begins with a digit, try to attach to it before trying to open
10948 it as a corefile.
10949 (print_gdb_help): Document the "--pid" argument.
10950
10951 2002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
10952
10953 * completer.c (command_completer): New function.
10954
10955 * completer.h <command_completer>: Add prototype.
10956
10957 * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
10958 completer for the "help" command.
10959
10960 2002-01-09 Jason Merrill <jason@redhat.com>
10961
10962 * c-typeprint.c (is_type_conversion_operator): Fix thinko.
10963
10964 2002-01-09 Michael Snyder <msnyder@redhat.com>
10965
10966 * i386-linux-nat.c (fill_fpxregset): Make global.
10967 (store_fpxregset): Ditto.
10968
10969 * gregset.h (gdb_fpxregset_t): Define.
10970 (supply_fpxregset): Prototype.
10971 (fill_fpxregset): Prototype.
10972
10973 * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
10974
10975 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
10976
10977 * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
10978 * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
10979 * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
10980
10981 2002-01-09 Andrew Cagney <ac131313@redhat.com>
10982
10983 * MAINTAINERS: Update target maintainer rules so that any
10984 Maintainer can approve a tested patch for a maintenance-only
10985 target.
10986
10987 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
10988
10989 * MAINTAINERS (write-after-approval): Add myself.
10990
10991 * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
10992 IN_SIGTRAMP.
10993
10994 2002-01-08 Michael Snyder <msnyder@redhat.com>
10995
10996 * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
10997 real name of the executable, rather than the /proc name.
10998
10999 2002-01-03 Michael Snyder <msnyder@redhat.com>
11000
11001 Implement a "generate-core-file" command in gdb, save target state.
11002 * gcore.c: New file. Implement new command 'generate-core-file'.
11003 Save a corefile image of the current state of the inferior.
11004 * linux-proc.c: Add linux-specific code for saving corefiles.
11005 * target.h (struct target_ops): Add new target vectors for saving
11006 corefiles; to_find_memory_regions and to_make_corefile_notes.
11007 (target_find_memory_regions): New macro.
11008 (target_make_corefile_notes): New macro.
11009 * target.c (update_current_target): Inherit new target methods.
11010 (dummy_find_memory_regions): New place-holder method.
11011 (dummy_make_corefile_notes): New place-holder method.
11012 (init_dummy_target): Initialize new dummy target vectors.
11013 * exec.c (exec_set_find_memory_regions): New function.
11014 Allow the exec_ops vector for memory regions to be taken over.
11015 (exec_make_note_section): New function, target vector method.
11016 * defs.h (exec_set_find_memory_regions): Export prototype.
11017 * procfs.c (proc_find_memory_regions): New function, corefile method.
11018 (procfs_make_note_section): New function, corefile method.
11019 (init_procfs_ops): Set new target vector pointers.
11020 (find_memory_regions_callback): New function.
11021 (procfs_do_thread_registers): New function.
11022 (procfs_corefile_thread_callback): New function.
11023 * sol-thread.c (sol_find_memory_regions): New function.
11024 (sol_make_note_section): New function.
11025 (init_sol_thread_ops): Initialize new target vectors.
11026 * inftarg.c (inftarg_set_find_memory_regions): New function.
11027 Allow to_find_memory_regions vector to be taken over.
11028 (inftarg_set_make_corefile_notes): New function.
11029 Allow to_make_corefile_notes vector to be taken over.
11030 * thread-db.c (thread_db_new_objfile): Don't activate thread-db
11031 interface layer if not target_has_execution (may be a corefile).
11032 * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
11033 * config/sparc/sun4sol2.mh: Ditto.
11034 * config/alpha/alpha-linux.mh: Ditto.
11035 * config/arm/linux.mh: Ditto.
11036 * config/i386/x86-64linux.mh: Ditto.
11037 * config/ia64/linux.mh: Ditto.
11038 * config/m68k/linux.mh: Ditto.
11039 * config/mips/linux.mh: Ditto.
11040 * config/powerpc/linux.mh: Ditto.
11041 * config/sparc/linux.mh: Ditto.
11042
11043 2002-01-07 Michael Snyder <msnyder@redhat.com>
11044
11045 * arm-linux-nat.c: Remove references to regcache.c internal data
11046 (registers[] and register_valid[]).
11047
11048 2002-01-07 Michael Snyder <msnyder@redhat.com>
11049
11050 * linux-proc.c: New file. Implement child_pid_to_exec_file,
11051 so that attaching to a pid will automatically read the process's
11052 symbol file and shlibs.
11053 * Makefile.in: Add rule for linux-proc.o.
11054 * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
11055 * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
11056 * config/arm/linux.mh: Ditto.
11057 * config/i386/linux.mh: Ditto.
11058 * config/i386/x86-64linux.mh: Ditto.
11059 * config/ia64/linux.mh: Ditto.
11060 * config/m68k/linux.mh: Ditto.
11061 * config/mips/linux.mh: Ditto.
11062 * config/powerpc/linux.mh: Ditto.
11063 * config/sparc/linux.mh: Ditto.
11064
11065 2002-01-06 Pierre Muller <muller@ics.u-strasbg.fr>
11066
11067 * win32-nat.c: Add i386-tdep.h dependency.
11068
11069 2002-01-07 Michael Snyder <msnyder@redhat.com>
11070
11071 * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
11072 instead of bfd_get_arch_size. Don't bail out just because
11073 there's no exec_bfd.
11074
11075 * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
11076 * p-valprint.c (pascal_object_print_value): Ditto.
11077 * somread.c (som_symtab_read): Ditto.
11078 * symfile.c (simple_free_overlay_region_table): Ditto.
11079 * valops.c (value_assign): Ditto.
11080
11081 * tracepoint.c (tracepoint_save_command): From Klee Dienes --
11082 use tilde_expand and strerror for opening save-tracepoints file.
11083
11084 * thread-db.c (thread_db_new_objfile): Indendation fix.
11085
11086 * infptrace.c (GDB_MAX_ALLOCA): New define.
11087 (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
11088 size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
11089 can be overridden with whatever value is appropriate to the host).
11090 * infttrace.c (child_xfer_memory): Add FIXME warning about use of
11091 alloca to allocate potentially large buffer.
11092 * rs6000-nat.c (child_xfer_memory): Ditto.
11093 * symm-nat.c (child_xfer_memory): Ditto.
11094 * x86-64-linux-nat.c (child_xfer_memory): Ditto.
11095
11096 2002-01-07 Jackie Smith Cashion <jsmith@redhat.com>
11097
11098 From Nick Clifton <nickc@redhat.com>
11099 * d10v-tdep.c: Set STACK_START to 0x200bffe.
11100
11101 2002-01-07 Michael Snyder <msnyder@redhat.com>
11102
11103 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
11104 Don't use exec_bfd if it's NULL.
11105
11106 2002-01-06 Mark Kettenis <kettenis@gnu.org>
11107
11108 * valops.c (value_arg_coerce): Fix formatting.
11109
11110 2002-01-06 Andrew Cagney <ac131313@redhat.com>
11111
11112 * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
11113 * gnu-nat.c: Ditto.
11114
11115 2002-01-06 Andrew Cagney <ac131313@redhat.com>
11116
11117 * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
11118 arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
11119 i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
11120 ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
11121 z8k-coff have not been multi-arched. Update z8k-coff build
11122 status.
11123
11124 2002-01-06 Andrew Cagney <ac131313@redhat.com>
11125
11126 * MAINTAINERS: Mark a29k target as obsolete.
11127 * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
11128 (remote-mm.o, remote-udi.o): Obsolete. Remove references in
11129 comments.
11130 * NEWS: Note that a29k targets are obsolete.
11131 * a29k-tdep.c: Mark as obsolete.
11132 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
11133 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
11134 a29k-*-vxworks* targets as obsolete.
11135 * remote-adapt.c: Obsolete.
11136 * remote-eb.c: Obsolete.
11137 * remote-mm.c: Obsolete.
11138 * remote-udi.c: Obsolete.
11139 * config/a29k/a29k-udi.mt: Obsolete.
11140 * config/a29k/a29k.mt: Obsolete.
11141 * config/a29k/tm-a29k.h: Obsolete.
11142 * config/a29k/tm-vx29k.h: Obsolete.
11143 * config/a29k/vx29k.mt: Obsolete.
11144
11145 2002-01-05 Andrew Cagney <ac131313@redhat.com>
11146
11147 * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
11148 with BFD_ENDIAN_BIG.
11149
11150 2002-01-05 Andrew Cagney <ac131313@redhat.com>
11151
11152 * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
11153 * configure, config.in: Re-generate.
11154 * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
11155 * defs.h: Do not include <endian.h>.
11156
11157 2002-01-05 Jason Thorpe <thorpej@wasabisystems.com>
11158
11159 * acconfig.h (HAVE_PT_GETXMMREGS): New.
11160 * config.in: Regenerate.
11161 * configure.in: Update copyright years.
11162 Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
11163 * configure: Regenerate.
11164 * i386bsd-nat.c: Update copyright years.
11165 (fill_gregset): Use regcache_collect.
11166 (fetch_inferior_registers): Only fetch integer registers
11167 if requested to do so. Add support for XMM registers
11168 using PT_GETXMMREGS.
11169 (store_inferior_registers): Only store integer registers
11170 if requested to do so. Add support for XMM registers
11171 using PT_SETXMMREGS.
11172 * i386nbsd-nat.c (fetch_inferior_registers): Remove.
11173 (store_inferior_registers): Remove.
11174 (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
11175 (fetch_elfcore_registers): New function.
11176 (i386nbsd_elfcore_fns): New.
11177 (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
11178 * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
11179 i386bsd-nat.o.
11180 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
11181 * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
11182 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
11183 * config/i386/tm-nbsd.h: Update copyright years.
11184 (HAVE_SSE_REGS): Define.
11185 (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
11186 (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
11187 (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
11188 (SIGCONTEXT_PC_OFFSET): Remove.
11189 (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
11190
11191 2002-01-05 Andrew Cagney <ac131313@redhat.com>
11192
11193 * configure.tgt: Remove powerpc-*-macos* target.
11194 * config/m68k/xm-mpw.h: Delete file.
11195 * config/xm-mpw.h: Delete file.
11196 * ser-mac.c: Delete file.
11197 * mpw-make.sed: Delete file.
11198 * mpw-config.in: Delete file.
11199 * mac-xdep.c: Delete file.
11200 * mac-gdb.r: Delete file.
11201 * mac-defs.h: Delete file.
11202 * mac-nat.c: Delete file.
11203 * config/powerpc/macos.mh: Delete file.
11204 * config/powerpc/macos.mt: Delete file.
11205 * config/powerpc/nm-macos.h: Delete file.
11206 * config/powerpc/tm-macos.h: Delete file.
11207 * source.c (openp, open_source_file): Remove obsolete code.
11208 * top.c (gdb_readline): Ditto.
11209 * utils.c (query): Ditto.
11210 * event-top.c (display_gdb_prompt): Ditto.
11211 * Makefile.in (ser-mac.o): Delete obsolete target.
11212 * NEWS: Update.
11213
11214 2002-01-04 Andrew Cagney <ac131313@redhat.com>
11215
11216 * defs.h (BIG_ENDIAN): Delete macro definition.
11217 * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
11218 coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
11219 findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
11220 printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
11221 remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
11222 stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
11223 config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
11224 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
11225 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
11226 config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
11227 config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
11228 config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
11229 mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
11230 * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
11231 * gdbarch.c: Re-generate.
11232
11233 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
11234
11235 * thread-db.c (thread_db_new_objfile): Do not enable thread_db
11236 for core files.
11237
11238 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
11239
11240 * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
11241
11242 2002-01-04 Andrew Cagney <ac131313@redhat.com>
11243
11244 * value.h (value_ptr): Delete typedef.
11245
11246 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
11247
11248 * i386nbsd-nat.c: Update copyright years.
11249 Include i386-tdep.h.
11250
11251 2002-01-04 Elena Zannoni <ezannoni@redhat.com>
11252
11253 * stabsread.c: Update copyright years.
11254
11255 From Debashis Mahata <debashis.mahata@wipro.com>:
11256 (read_struct_fields): Deal with Sun C compiler erroneous stab
11257 output for structs and unions.
11258 Fix PR gdb/269.
11259
11260 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
11261
11262 * p-valprint.c: Include "cp-abi.h" for baseclass_offset
11263 prototype.
11264
11265 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
11266
11267 * cp-abi.c: Fix whitespace.
11268 (baseclass_offset): New wrapper function.
11269 * cp-abi.h (baseclass_offset): Add prototype.
11270 (struct cp_abi_ops): Add baseclass_offset pointer.
11271
11272 * valops.c (vb_match): Move to...
11273 * gnu-v2-abi.c (vb_match): here.
11274 * valops.c (baseclass_offset): Move to...
11275 * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
11276
11277 * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
11278
11279 * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
11280 * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
11281 * hpacc-abi.c (init_hpacc_ops): Likewise.
11282
11283 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
11284
11285 * valops.c (find_overload_match): Accept obj as a
11286 reference parameter. Update it before returning.
11287 * value.h (find_overload_match): Update prototype.
11288 * eval.c (evaluate_subexp_standard): Pass object to
11289 find_overload_match by reference.
11290
11291 2002-01-03 Andrew Cagney <ac131313@redhat.com>
11292
11293 * valarith.c: Replace value_ptr with struct value pointer. Remove
11294 register attribute from value declarations.
11295 * valops.c: Ditto.
11296 * value.h: Ditto.
11297 * scm-lang.c (scm_lookup_name): Ditto.
11298
11299 2002-01-03 Michael Snyder <msnyder@redhat.com>
11300
11301 Abstract the functionality of iterating over mapped memory
11302 regions into a general purpose iterator function.
11303 * procfs.c (iterate_over_mappings): New function, general purpose
11304 iterator for memory sections.
11305 (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
11306 (solib_mappings_callback): New function, callback for above.
11307 (info_proc_mappings): Reimpliment using iterate_over_mappings.
11308 (info_mappings_callback): New function, callback for above.
11309
11310 * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
11311
11312 2002-01-01 Mark Kettenis <kettenis@gnu.org>
11313
11314 * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
11315 * i386-tdep.c: Include "elf-bfd.h".
11316 (process_note_abi_tag_sections): New function.
11317 (i386_gdbarch_init): Add code to recognize various OS/ABI
11318 combinations.
11319
11320 * maint.c (_initialize_maint_cmds): Add missing \ in
11321 string-literal.
11322
11323 For older changes see ChangeLog-2001
11324 \f
11325 Local Variables:
11326 mode: change-log
11327 left-margin: 8
11328 fill-column: 74
11329 version-control: never
11330 End:
This page took 0.247845 seconds and 3 git commands to generate.